-
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.
BREAKING CHANGE: SqlServerDsc: Implement all suggested fixes from iss…
…ue 851 (#902) - BREAKING CHANGE: Significant rename to reduce length of resource names. See issue #851 for a complete table mapping rename changes. Impact to all resources.
- Loading branch information
1 parent
50f4e99
commit b333565
Showing
200 changed files
with
3,956 additions
and
3,944 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
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
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
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
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
2 changes: 1 addition & 1 deletion
2
..._xSQLServerAlwaysOnAvailabilityGroup.psm1 → DSCResources/MSFT_SqlAG/MSFT_SqlAG.psm1
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
4 changes: 2 additions & 2 deletions
4
...erverAlwaysOnAvailabilityGroup.schema.mof → ...esources/MSFT_SqlAG/MSFT_SqlAG.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
4 changes: 2 additions & 2 deletions
4
...nAvailabilityGroupDatabaseMembership.psm1 → ...SFT_SqlAGDatabase/MSFT_SqlAGDatabase.psm1
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
4 changes: 2 additions & 2 deletions
4
...abilityGroupDatabaseMembership.schema.mof → ...lAGDatabase/MSFT_SqlAGDatabase.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
2 changes: 1 addition & 1 deletion
2
...ilityGroupDatabaseMembership.strings.psd1 → ...ase/en-US/MSFT_SqlAGDatabase.strings.psd1
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
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
..._xSQLServerAvailabilityGroupListener.psm1 → ...SFT_SqlAGListener/MSFT_SqlAGListener.psm1
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
4 changes: 2 additions & 2 deletions
4
...erverAvailabilityGroupListener.schema.mof → ...lAGListener/MSFT_SqlAGListener.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
2 changes: 1 addition & 1 deletion
2
...rverAlwaysOnAvailabilityGroupReplica.psm1 → .../MSFT_SqlAGReplica/MSFT_SqlAGReplica.psm1
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
4 changes: 2 additions & 2 deletions
4
...waysOnAvailabilityGroupReplica.schema.mof → ...SqlAGReplica/MSFT_SqlAGReplica.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
2 changes: 1 addition & 1 deletion
2
...xSQLServerAlias/MSFT_xSQLServerAlias.psm1 → ...esources/MSFT_SqlAlias/MSFT_SqlAlias.psm1
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
4 changes: 2 additions & 2 deletions
4
...rverAlias/MSFT_xSQLServerAlias.schema.mof → ...es/MSFT_SqlAlias/MSFT_SqlAlias.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
2 changes: 1 addition & 1 deletion
2
...rvice/MSFT_xSQLServerAlwaysOnService.psm1 → ...aysOnService/MSFT_SqlAlwaysOnService.psm1
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
18 changes: 9 additions & 9 deletions
18
...MSFT_xSQLServerAlwaysOnService.schema.mof → ...ervice/MSFT_SqlAlwaysOnService.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,9 +1,9 @@ | ||
[ClassVersion("1.0.0.0"), FriendlyName("xSQLServerAlwaysOnService")] | ||
class MSFT_xSQLServerAlwaysOnService : OMI_BaseResource | ||
{ | ||
[Required, Description("An enumerated value that describes if the SQL Server should have Always On high availability and disaster recovery (HADR) property enabled ('Present') or disabled ('Absent')."), ValueMap{"Present","Absent"}, Values{"Present","Absent"}] String Ensure; | ||
[Key, Description("The hostname of the SQL Server to be configured.")] String SQLServer; | ||
[Key, Description("The name of the SQL instance to be configured.")] String SQLInstanceName; | ||
[Write, Description("The length of time, in seconds, to wait for the service to restart. Default is 120 seconds.")] Uint32 RestartTimeout; | ||
[Read, Description("Returns the status of AlwaysOn high availability and disaster recovery (HADR).")] Boolean IsHadrEnabled; | ||
}; | ||
[ClassVersion("1.0.0.0"), FriendlyName("SqlAlwaysOnService")] | ||
class MSFT_SqlAlwaysOnService : OMI_BaseResource | ||
{ | ||
[Required, Description("An enumerated value that describes if the SQL Server should have Always On high availability and disaster recovery (HADR) property enabled ('Present') or disabled ('Absent')."), ValueMap{"Present","Absent"}, Values{"Present","Absent"}] String Ensure; | ||
[Key, Description("The hostname of the SQL Server to be configured.")] String SQLServer; | ||
[Key, Description("The name of the SQL instance to be configured.")] String SQLInstanceName; | ||
[Write, Description("The length of time, in seconds, to wait for the service to restart. Default is 120 seconds.")] Uint32 RestartTimeout; | ||
[Read, Description("Returns the status of AlwaysOn high availability and disaster recovery (HADR).")] Boolean IsHadrEnabled; | ||
}; |
2 changes: 1 addition & 1 deletion
2
...rverDatabase/MSFT_xSQLServerDatabase.psm1 → ...es/MSFT_SqlDatabase/MSFT_SqlDatabase.psm1
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
4 changes: 2 additions & 2 deletions
4
...tabase/MSFT_xSQLServerDatabase.schema.mof → ...T_SqlDatabase/MSFT_SqlDatabase.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
4 changes: 2 additions & 2 deletions
4
...FT_xSQLServerDatabaseDefaultLocation.psm1 → ...tion/MSFT_SqlDatabaseDefaultLocation.psm1
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
4 changes: 2 additions & 2 deletions
4
...LServerDatabaseDefaultLocation.schema.mof → ...SFT_SqlDatabaseDefaultLocation.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
2 changes: 1 addition & 1 deletion
2
...erverDatabaseDefaultLocation.strings.psd1 → ...T_SqlDatabaseDefaultLocation.strings.psd1
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
2 changes: 1 addition & 1 deletion
2
...seOwner/MSFT_xSQLServerDatabaseOwner.psm1 → ...lDatabaseOwner/MSFT_SqlDatabaseOwner.psm1
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
4 changes: 2 additions & 2 deletions
4
...r/MSFT_xSQLServerDatabaseOwner.schema.mof → ...aseOwner/MSFT_SqlDatabaseOwner.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
2 changes: 1 addition & 1 deletion
2
...on/MSFT_xSQLServerDatabasePermission.psm1 → ...ermission/MSFT_SqlDatabasePermission.psm1
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
4 changes: 2 additions & 2 deletions
4
...T_xSQLServerDatabasePermission.schema.mof → ...ion/MSFT_SqlDatabasePermission.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
2 changes: 1 addition & 1 deletion
2
...MSFT_xSQLServerDatabaseRecoveryModel.psm1 → ...yModel/MSFT_SqlDatabaseRecoveryModel.psm1
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
4 changes: 2 additions & 2 deletions
4
...SQLServerDatabaseRecoveryModel.schema.mof → .../MSFT_SqlDatabaseRecoveryModel.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
Oops, something went wrong.