-
Notifications
You must be signed in to change notification settings - Fork 225
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #101 from PowerShell/dev
Release of version 1.8.0.0 of xSQLServer
- Loading branch information
Showing
29 changed files
with
2,674 additions
and
166 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 19 additions & 17 deletions
36
DSCResources/MSFT_xSQLAOGroupEnsure/MSFT_xSQLAOGroupEnsure.schema.mof
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,19 @@ | ||
|
||
[ClassVersion("1.0.0.0"), FriendlyName("xSQLAOGroupEnsure")] | ||
class MSFT_xSQLAOGroupEnsure : OMI_BaseResource | ||
{ | ||
[Key, ValueMap{"Present","Absent"}, Values{"Present","Absent"}] String Ensure; | ||
[Key] String AvailabilityGroupName; | ||
[Write] String AvailabilityGroupNameListener; | ||
[Write] String AvailabilityGroupNameIP[]; | ||
[Write] String AvailabilityGroupSubMask[]; | ||
[Write] Uint32 AvailabilityGroupPort; | ||
[Write, ValueMap{"None","ReadOnly","ReadIntent"}, Values{"None","ReadOnly","ReadIntent"}] String ReadableSecondary; | ||
[Write, ValueMap{"Primary","Secondary"}, Values{"Primary","Secondary"}] String AutoBackupPrefernce; | ||
[Write] String SQLServer; | ||
[Write] String SQLInstanceName; | ||
[Required, EmbeddedInstance("MSFT_Credential"), Description("Credential to be used to Grant Permissions in SQL.")] String SetupCredential; | ||
}; | ||
|
||
|
||
[ClassVersion("1.0.0.0"), FriendlyName("xSQLAOGroupEnsure")] | ||
class MSFT_xSQLAOGroupEnsure : OMI_BaseResource | ||
{ | ||
[Key, ValueMap{"Present","Absent"}, Values{"Present","Absent"}] String Ensure; | ||
[Key] String AvailabilityGroupName; | ||
[Write] String AvailabilityGroupNameListener; | ||
[Write] String AvailabilityGroupNameIP[]; | ||
[Write] String AvailabilityGroupSubMask[]; | ||
[Write] Uint32 AvailabilityGroupPort; | ||
[Write, ValueMap{"None","ReadOnly","ReadIntent"}, Values{"None","ReadOnly","ReadIntent"}] String ReadableSecondary; | ||
[Write, ValueMap{"Primary","Secondary"}, Values{"Primary","Secondary"}] String AutoBackupPreference; | ||
[Write] Uint32 BackupPriority; | ||
[Write] Uint32 EndPointPort; | ||
[Write] String SQLServer; | ||
[Write] String SQLInstanceName; | ||
[Required, EmbeddedInstance("MSFT_Credential"), Description("Credential to be used to Grant Permissions in SQL.")] String SetupCredential; | ||
}; | ||
|
Oops, something went wrong.