Skip to content

Commit

Permalink
xWebConfigKeyValue: Updated schema.mof to include description for Ens…
Browse files Browse the repository at this point in the history
…ure (dsccommunity#505)

- Changes to xWebConfigKeyValue
  - Updated schema.mof to include a description for the Ensure property (issue dsccommunity#455]).
  • Loading branch information
mcbobke authored and Gregory Storme committed Feb 14, 2020
1 parent 965c1cc commit a3540cb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@
single comma-separated string of flags ([issue #332](https://github.com/PowerShell/xWebAdministration/issues/332)).
- Changes to xSslSettings
- Updated casing of `xSslSettings` in all file names, folder names, schema, and documentation

([issue #461](https://github.com/PowerShell/xWebAdministration/issues/461)).
- Changes to xWebConfigKeyValue
- Updated schema.mof to include a description for the Ensure property ([issue #455](https://github.com/PowerShell/xWebAdministration/issues/455)).

## 2.8.0.0

- Fix multiple HTTPS bindings on one xWebsite receiving the first binding's certificate [#332](https://github.com/PowerShell/xWebAdministration/issues/332)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ class MSFT_xWebConfigKeyValue : OMI_BaseResource
{
[Key, Description("Path to website location(IIS or WebAdministration format)")] String WebsitePath;
[Key, Description("Config Section to be update"), ValueMap{"AppSettings"}, Values{"AppSettings"}] String ConfigSection;
[Key, Description("Key for AppSettings")] String Key;
[Write, ValueMap{"Present","Absent"}, Values{"Present","Absent"}] String Ensure;
[Key, Description("Key for AppSettings")] String Key;
[Write, Description("Indicates if the property and value should be present or absent. Defaults to Present."), ValueMap{"Present","Absent"}, Values{"Present","Absent"}] String Ensure;
[Write, Description("Value for AppSettings")] String Value;
[Write, Description("If the given key value pair is for attribute, default is element")] Boolean IsAttribute;
};

0 comments on commit a3540cb

Please sign in to comment.