Skip to content

Commit

Permalink
SqlServerDsc: Changed all resource prefixes (#1497)
Browse files Browse the repository at this point in the history
- SqlServerDsc
  - Changed all resource prefixes from `MSFT_` to `DSC_` (issue #1496).
  • Loading branch information
johlju authored Apr 26, 2020
1 parent d18827b commit 8b8dd8f
Show file tree
Hide file tree
Showing 193 changed files with 430 additions and 393 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ For older change log history see the [historic changelog](HISTORIC_CHANGELOG.md)

### Changed

- SqlServerDsc
- Changed all resource prefixes from `MSFT_` to `DSC_` ([issue #1496](https://github.com/dsccommunity/SqlServerDsc/issues/1496)).
- SqlAlwaysOnService
- BREAKING CHANGE: The parameter `ServerName` is now non-mandatory and
defaults to `$env:COMPUTERNAME` ([issue #319](https://github.com/dsccommunity/SqlServerDsc/issues/319)).
Expand Down
78 changes: 39 additions & 39 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ trigger:
- master
paths:
include:
- source/**/*
- source/*
tags:
include:
- "v*"
Expand Down Expand Up @@ -140,29 +140,29 @@ stages:
./build.ps1 -Tasks test -CodeCoverageThreshold 0 -PesterScript @(
# Run the integration tests in a specific group order.
# Group 1
'tests/Integration/MSFT_SqlSetup.Integration.Tests.ps1'
'tests/Integration/DSC_SqlSetup.Integration.Tests.ps1'
# Group 2
'tests/Integration/MSFT_SqlAgentAlert.Integration.Tests.ps1'
'tests/Integration/MSFT_SqlServerNetwork.Integration.Tests.ps1'
'tests/Integration/MSFT_SqlServerLogin.Integration.Tests.ps1'
'tests/Integration/MSFT_SqlServerEndPoint.Integration.Tests.ps1'
'tests/Integration/MSFT_SqlServerDatabaseMail.Integration.Tests.ps1'
'tests/Integration/MSFT_SqlRSSetup.Integration.Tests.ps1'
'tests/Integration/MSFT_SqlDatabaseDefaultLocation.Integration.Tests.ps1'
'tests/Integration/MSFT_SqlDatabase.Integration.Tests.ps1'
'tests/Integration/MSFT_SqlAlwaysOnService.Integration.Tests.ps1'
'tests/Integration/MSFT_SqlAgentOperator.Integration.Tests.ps1'
'tests/Integration/MSFT_SqlServiceAccount.Integration.Tests.ps1'
'tests/Integration/MSFT_SqlAgentFailsafe.Integration.Tests.ps1'
'tests/Integration/DSC_SqlAgentAlert.Integration.Tests.ps1'
'tests/Integration/DSC_SqlServerNetwork.Integration.Tests.ps1'
'tests/Integration/DSC_SqlServerLogin.Integration.Tests.ps1'
'tests/Integration/DSC_SqlServerEndPoint.Integration.Tests.ps1'
'tests/Integration/DSC_SqlServerDatabaseMail.Integration.Tests.ps1'
'tests/Integration/DSC_SqlRSSetup.Integration.Tests.ps1'
'tests/Integration/DSC_SqlDatabaseDefaultLocation.Integration.Tests.ps1'
'tests/Integration/DSC_SqlDatabase.Integration.Tests.ps1'
'tests/Integration/DSC_SqlAlwaysOnService.Integration.Tests.ps1'
'tests/Integration/DSC_SqlAgentOperator.Integration.Tests.ps1'
'tests/Integration/DSC_SqlServiceAccount.Integration.Tests.ps1'
'tests/Integration/DSC_SqlAgentFailsafe.Integration.Tests.ps1'
# Group 3
'tests/Integration/MSFT_SqlServerRole.Integration.Tests.ps1'
'tests/Integration/MSFT_SqlRS.Integration.Tests.ps1'
'tests/Integration/MSFT_SqlDatabaseUser.Integration.Tests.ps1'
'tests/Integration/DSC_SqlServerRole.Integration.Tests.ps1'
'tests/Integration/DSC_SqlRS.Integration.Tests.ps1'
'tests/Integration/DSC_SqlDatabaseUser.Integration.Tests.ps1'
# Group 4
'tests/Integration/MSFT_SqlScript.Integration.Tests.ps1'
'tests/Integration/DSC_SqlScript.Integration.Tests.ps1'
# Group 5
'tests/Integration/MSFT_SqlServerSecureConnection.Integration.Tests.ps1'
'tests/Integration/MSFT_SqlScriptQuery.Integration.Tests.ps1'
'tests/Integration/DSC_SqlServerSecureConnection.Integration.Tests.ps1'
'tests/Integration/DSC_SqlScriptQuery.Integration.Tests.ps1'
)
name: test
displayName: 'Run Integration Test'
Expand Down Expand Up @@ -203,29 +203,29 @@ stages:
./build.ps1 -Tasks test -CodeCoverageThreshold 0 -PesterScript @(
# Run the integration tests in a specific group order.
# Group 1
'tests/Integration/MSFT_SqlSetup.Integration.Tests.ps1'
'tests/Integration/DSC_SqlSetup.Integration.Tests.ps1'
# Group 2
'tests/Integration/MSFT_SqlAgentAlert.Integration.Tests.ps1'
'tests/Integration/MSFT_SqlServerNetwork.Integration.Tests.ps1'
'tests/Integration/MSFT_SqlServerLogin.Integration.Tests.ps1'
'tests/Integration/MSFT_SqlServerEndPoint.Integration.Tests.ps1'
'tests/Integration/MSFT_SqlServerDatabaseMail.Integration.Tests.ps1'
'tests/Integration/MSFT_SqlRSSetup.Integration.Tests.ps1'
'tests/Integration/MSFT_SqlDatabaseDefaultLocation.Integration.Tests.ps1'
'tests/Integration/MSFT_SqlDatabase.Integration.Tests.ps1'
'tests/Integration/MSFT_SqlAlwaysOnService.Integration.Tests.ps1'
'tests/Integration/MSFT_SqlAgentOperator.Integration.Tests.ps1'
'tests/Integration/MSFT_SqlServiceAccount.Integration.Tests.ps1'
'tests/Integration/MSFT_SqlAgentFailsafe.Integration.Tests.ps1'
'tests/Integration/DSC_SqlAgentAlert.Integration.Tests.ps1'
'tests/Integration/DSC_SqlServerNetwork.Integration.Tests.ps1'
'tests/Integration/DSC_SqlServerLogin.Integration.Tests.ps1'
'tests/Integration/DSC_SqlServerEndPoint.Integration.Tests.ps1'
'tests/Integration/DSC_SqlServerDatabaseMail.Integration.Tests.ps1'
'tests/Integration/DSC_SqlRSSetup.Integration.Tests.ps1'
'tests/Integration/DSC_SqlDatabaseDefaultLocation.Integration.Tests.ps1'
'tests/Integration/DSC_SqlDatabase.Integration.Tests.ps1'
'tests/Integration/DSC_SqlAlwaysOnService.Integration.Tests.ps1'
'tests/Integration/DSC_SqlAgentOperator.Integration.Tests.ps1'
'tests/Integration/DSC_SqlServiceAccount.Integration.Tests.ps1'
'tests/Integration/DSC_SqlAgentFailsafe.Integration.Tests.ps1'
# Group 3
'tests/Integration/MSFT_SqlServerRole.Integration.Tests.ps1'
'tests/Integration/MSFT_SqlRS.Integration.Tests.ps1'
'tests/Integration/MSFT_SqlDatabaseUser.Integration.Tests.ps1'
'tests/Integration/DSC_SqlServerRole.Integration.Tests.ps1'
'tests/Integration/DSC_SqlRS.Integration.Tests.ps1'
'tests/Integration/DSC_SqlDatabaseUser.Integration.Tests.ps1'
# Group 4
'tests/Integration/MSFT_SqlScript.Integration.Tests.ps1'
'tests/Integration/DSC_SqlScript.Integration.Tests.ps1'
# Group 5
'tests/Integration/MSFT_SqlServerSecureConnection.Integration.Tests.ps1'
'tests/Integration/MSFT_SqlScriptQuery.Integration.Tests.ps1'
'tests/Integration/DSC_SqlServerSecureConnection.Integration.Tests.ps1'
'tests/Integration/DSC_SqlScriptQuery.Integration.Tests.ps1'
)
name: test
displayName: 'Run Integration Test'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ $script:modulesFolderPath = Join-Path -Path $script:resourceModulePath -ChildPat
$script:resourceHelperModulePath = Join-Path -Path $script:modulesFolderPath -ChildPath 'SqlServerDsc.Common'
Import-Module -Name (Join-Path -Path $script:resourceHelperModulePath -ChildPath 'SqlServerDsc.Common.psm1')

$script:localizedData = Get-LocalizedData -ResourceName 'MSFT_SqlAG'
$script:localizedData = Get-LocalizedData -ResourceName 'DSC_SqlAG'

<#
.SYNOPSIS
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[ClassVersion("1.0.0.0"), FriendlyName("SqlAG")]
class MSFT_SqlAG : OMI_BaseResource
class DSC_SqlAG : OMI_BaseResource
{
[Key, Description("The name of the availability group.")] String Name;
[Required, Description("Hostname of the SQL Server to be configured.")] String ServerName;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ $script:modulesFolderPath = Join-Path -Path $script:resourceModulePath -ChildPat
$script:resourceHelperModulePath = Join-Path -Path $script:modulesFolderPath -ChildPath 'SqlServerDsc.Common'
Import-Module -Name (Join-Path -Path $script:resourceHelperModulePath -ChildPath 'SqlServerDsc.Common.psm1')

$script:localizedData = Get-LocalizedData -ResourceName 'MSFT_SqlAGDatabase'
$script:localizedData = Get-LocalizedData -ResourceName 'DSC_SqlAGDatabase'

<#
.SYNOPSIS
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[ClassVersion("1.0.0.0"), FriendlyName("SqlAGDatabase")]
class MSFT_SqlAGDatabase : OMI_BaseResource
class DSC_SqlAGDatabase : OMI_BaseResource
{
[Required, Description("The name of the database(s) to add to the availability group. This accepts wildcards.")] String DatabaseName[];
[Key, Description("Hostname of the SQL Server where the primary replica of the availability group lives. If the availability group is not currently on this server, the resource will attempt to connect to the server where the primary replica lives.")] String ServerName;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ $script:modulesFolderPath = Join-Path -Path $script:resourceModulePath -ChildPat
$script:resourceHelperModulePath = Join-Path -Path $script:modulesFolderPath -ChildPath 'SqlServerDsc.Common'
Import-Module -Name (Join-Path -Path $script:resourceHelperModulePath -ChildPath 'SqlServerDsc.Common.psm1')

$script:localizedData = Get-LocalizedData -ResourceName 'MSFT_SqlAGListener'
$script:localizedData = Get-LocalizedData -ResourceName 'DSC_SqlAGListener'

<#
.SYNOPSIS
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

[ClassVersion("1.0.0.0"), FriendlyName("SqlAGListener")]
class MSFT_SqlAGListener : OMI_BaseResource
class DSC_SqlAGListener : OMI_BaseResource
{
[Key, Description("The SQL Server instance name of the primary replica.")] String InstanceName;
[Required, Description("The host name or FQDN of the primary replica.")] String ServerName;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ $script:modulesFolderPath = Join-Path -Path $script:resourceModulePath -ChildPat
$script:resourceHelperModulePath = Join-Path -Path $script:modulesFolderPath -ChildPath 'SqlServerDsc.Common'
Import-Module -Name (Join-Path -Path $script:resourceHelperModulePath -ChildPath 'SqlServerDsc.Common.psm1')

$script:localizedData = Get-LocalizedData -ResourceName 'MSFT_SqlAGReplica'
$script:localizedData = Get-LocalizedData -ResourceName 'DSC_SqlAGReplica'
<#
.SYNOPSIS
Gets the specified Availability Group Replica from the specified Availability Group.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[ClassVersion("1.0.0.0"), FriendlyName("SqlAGReplica")]
class MSFT_SqlAGReplica : OMI_BaseResource
class DSC_SqlAGReplica : OMI_BaseResource
{
[Key, Description("The name of the availability group replica. For named instances this must be in the following format ServerName\\InstanceName.")] String Name;
[Key, Description("The name of the availability group.")] String AvailabilityGroupName;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ $script:modulesFolderPath = Join-Path -Path $script:resourceModulePath -ChildPat
$script:resourceHelperModulePath = Join-Path -Path $script:modulesFolderPath -ChildPath 'SqlServerDsc.Common'
Import-Module -Name (Join-Path -Path $script:resourceHelperModulePath -ChildPath 'SqlServerDsc.Common.psm1')

$script:localizedData = Get-LocalizedData -ResourceName 'MSFT_SqlAgentAlert'
$script:localizedData = Get-LocalizedData -ResourceName 'DSC_SqlAgentAlert'

<#
.SYNOPSIS
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[ClassVersion("1.0.0.0"), FriendlyName("SqlAgentAlert")]
class MSFT_SqlAgentAlert : OMI_BaseResource
class DSC_SqlAgentAlert : OMI_BaseResource
{
[Key, Description("The name of the SQL Agent Alert.")] String Name;
[Write, Description("Specifies if the SQL Agent Alert should be present or absent. Default is Present."), ValueMap{"Present","Absent"}, Values{"Present","Absent"}] String Ensure;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Localized resources for MSFT_SqlServerAgentAlert
# Localized resources for DSC_SqlServerAgentAlert

ConvertFrom-StringData @'
GetSqlAlerts = Getting SQL Agent Alerts.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ $script:modulesFolderPath = Join-Path -Path $script:resourceModulePath -ChildPat
$script:resourceHelperModulePath = Join-Path -Path $script:modulesFolderPath -ChildPath 'SqlServerDsc.Common'
Import-Module -Name (Join-Path -Path $script:resourceHelperModulePath -ChildPath 'SqlServerDsc.Common.psm1')

$script:localizedData = Get-LocalizedData -ResourceName 'MSFT_SqlAgentFailsafe'
$script:localizedData = Get-LocalizedData -ResourceName 'DSC_SqlAgentFailsafe'

<#
.SYNOPSIS
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[ClassVersion("1.0.0.0"), FriendlyName("SqlAgentFailsafe")]
class MSFT_SqlAgentFailsafe : OMI_BaseResource
class DSC_SqlAgentFailsafe : OMI_BaseResource
{
[Required, Description("The name of the SQL Agent Failsafe Operator.")] String Name;
[Write, Description("Specifies if the SQL Agent Failsafe Operator should be present or absent. Default is Present."), ValueMap{"Present","Absent"}, Values{"Present","Absent"}] String Ensure;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Localized resources for MSFT_SqlServerAgentFailsafe
# Localized resources for DSC_SqlServerAgentFailsafe

ConvertFrom-StringData @'
GetSqlAgentFailsafe = Getting SQL Agent Failsafe Operator.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ $script:modulesFolderPath = Join-Path -Path $script:resourceModulePath -ChildPat
$script:resourceHelperModulePath = Join-Path -Path $script:modulesFolderPath -ChildPath 'SqlServerDsc.Common'
Import-Module -Name (Join-Path -Path $script:resourceHelperModulePath -ChildPath 'SqlServerDsc.Common.psm1')

$script:localizedData = Get-LocalizedData -ResourceName 'MSFT_SqlAgentOperator'
$script:localizedData = Get-LocalizedData -ResourceName 'DSC_SqlAgentOperator'

<#
.SYNOPSIS
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[ClassVersion("1.0.0.0"), FriendlyName("SqlAgentOperator")]
class MSFT_SqlAgentOperator : OMI_BaseResource
class DSC_SqlAgentOperator : OMI_BaseResource
{
[Key, Description("The name of the SQL Agent Operator.")] String Name;
[Write, Description("Specifies if the SQL Agent Operator should be present or absent. Default is Present."), ValueMap{"Present","Absent"}, Values{"Present","Absent"}] String Ensure;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Localized resources for MSFT_SqlServerAgentOperator
# Localized resources for DSC_SqlServerAgentOperator

ConvertFrom-StringData @'
GetSqlAgents = Getting SQL Agent Operators.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ $script:modulesFolderPath = Join-Path -Path $script:resourceModulePath -ChildPat
$script:resourceHelperModulePath = Join-Path -Path $script:modulesFolderPath -ChildPath 'SqlServerDsc.Common'
Import-Module -Name (Join-Path -Path $script:resourceHelperModulePath -ChildPath 'SqlServerDsc.Common.psm1')

$script:localizedData = Get-LocalizedData -ResourceName 'MSFT_SqlAlias'
$script:localizedData = Get-LocalizedData -ResourceName 'DSC_SqlAlias'

function Get-TargetResource
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[ClassVersion("1.0.0.0"), FriendlyName("SqlAlias")]
class MSFT_SqlAlias : OMI_BaseResource
class DSC_SqlAlias : OMI_BaseResource
{
[Key, Description("The name of Alias (e.g. svr01\\inst01).")] String Name;
[Write, Description("Protocol to use when connecting. Valid values are 'TCP' or 'NP' (Named Pipes). Default value is 'TCP'."), ValueMap{"TCP","NP"}, Values{"TCP","NP"}] String Protocol;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ $script:modulesFolderPath = Join-Path -Path $script:resourceModulePath -ChildPat
$script:resourceHelperModulePath = Join-Path -Path $script:modulesFolderPath -ChildPath 'SqlServerDsc.Common'
Import-Module -Name (Join-Path -Path $script:resourceHelperModulePath -ChildPath 'SqlServerDsc.Common.psm1')

$script:localizedData = Get-LocalizedData -ResourceName 'MSFT_SqlAlwaysOnService'
$script:localizedData = Get-LocalizedData -ResourceName 'DSC_SqlAlwaysOnService'

<#
.SYNOPSIS
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[ClassVersion("1.0.0.0"), FriendlyName("SqlAlwaysOnService")]
class MSFT_SqlAlwaysOnService : OMI_BaseResource
class DSC_SqlAlwaysOnService : OMI_BaseResource
{
[Key, Description("The name of the SQL instance to be configured.")] String InstanceName;
[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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ $script:modulesFolderPath = Join-Path -Path $script:resourceModulePath -ChildPat
$script:resourceHelperModulePath = Join-Path -Path $script:modulesFolderPath -ChildPath 'SqlServerDsc.Common'
Import-Module -Name (Join-Path -Path $script:resourceHelperModulePath -ChildPath 'SqlServerDsc.Common.psm1')

$script:localizedData = Get-LocalizedData -ResourceName 'MSFT_SqlDatabase'
$script:localizedData = Get-LocalizedData -ResourceName 'DSC_SqlDatabase'

$script:supportedCompatibilityLevels = @{
8 = @('Version80')
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[ClassVersion("1.0.0.0"), FriendlyName("SqlDatabase")]
class MSFT_SqlDatabase : OMI_BaseResource
class DSC_SqlDatabase : OMI_BaseResource
{
[Key, Description("The name of the SQL database.")] String Name;
[Key, Description("The name of the SQL instance to be configured.")] String InstanceName;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ $script:modulesFolderPath = Join-Path -Path $script:resourceModulePath -ChildPat
$script:resourceHelperModulePath = Join-Path -Path $script:modulesFolderPath -ChildPath 'SqlServerDsc.Common'
Import-Module -Name (Join-Path -Path $script:resourceHelperModulePath -ChildPath 'SqlServerDsc.Common.psm1')

$script:localizedData = Get-LocalizedData -ResourceName 'MSFT_SqlDatabaseDefaultLocation'
$script:localizedData = Get-LocalizedData -ResourceName 'DSC_SqlDatabaseDefaultLocation'

<#
.SYNOPSIS
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[ClassVersion("1.0.0.0"), FriendlyName("SqlDatabaseDefaultLocation")]
class MSFT_SqlDatabaseDefaultLocation : OMI_BaseResource
class DSC_SqlDatabaseDefaultLocation : OMI_BaseResource
{
[Key, Description("The name of the SQL instance to be configured.")] String InstanceName;
[Key, Description("The type of database default location to be configured. { Data | Log | Backup }"), ValueMap{"Data","Log","Backup"}, Values{"Data","Log","Backup"}] String Type;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Localized resources for MSFT_SqlDatabaseDefaultLocation
# Localized resources for DSC_SqlDatabaseDefaultLocation

ConvertFrom-StringData @'
GetCurrentPath = Getting default path for '{0}' for instance '{1}'.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ $script:modulesFolderPath = Join-Path -Path $script:resourceModulePath -ChildPat
$script:resourceHelperModulePath = Join-Path -Path $script:modulesFolderPath -ChildPath 'SqlServerDsc.Common'
Import-Module -Name (Join-Path -Path $script:resourceHelperModulePath -ChildPath 'SqlServerDsc.Common.psm1')

$script:localizedData = Get-LocalizedData -ResourceName 'MSFT_SqlDatabaseOwner'
$script:localizedData = Get-LocalizedData -ResourceName 'DSC_SqlDatabaseOwner'

<#
.SYNOPSIS
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[ClassVersion("1.0.0.0"), FriendlyName("SqlDatabaseOwner")]
class MSFT_SqlDatabaseOwner : OMI_BaseResource
class DSC_SqlDatabaseOwner : OMI_BaseResource
{
[Key, Description("The name of database to be configured.")] String DatabaseName;
[Required, Description("The name of the login that will become a owner of the desired sql database.")] String Name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ $script:modulesFolderPath = Join-Path -Path $script:resourceModulePath -ChildPat
$script:resourceHelperModulePath = Join-Path -Path $script:modulesFolderPath -ChildPath 'SqlServerDsc.Common'
Import-Module -Name (Join-Path -Path $script:resourceHelperModulePath -ChildPath 'SqlServerDsc.Common.psm1')

$script:localizedData = Get-LocalizedData -ResourceName 'MSFT_SqlDatabasePermission'
$script:localizedData = Get-LocalizedData -ResourceName 'DSC_SqlDatabasePermission'

<#
.SYNOPSIS
Expand Down
Loading

0 comments on commit 8b8dd8f

Please sign in to comment.