From c281e19496d7540bde5c09f1bce67d4b558df72f Mon Sep 17 00:00:00 2001 From: Johan Ljunggren Date: Thu, 7 Feb 2019 07:00:09 +0100 Subject: [PATCH] Changes to SqlServiceAccount - Now the correct service type string value is returned by the function `Get-TargetResource`. Previously one value was passed in as a parameter (e.g. `DatabaseEngine`), but a different string value as returned (e.g. `SqlServer`). Now `Get-TargetResource` return the same values that can be passed as values in the parameter `ServiceType` (issue #981). --- CHANGELOG.md | 7 ++ .../MSFT_SqlServiceAccount.psm1 | 91 ++++++++++++++++++- 2 files changed, 95 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5313d4b64..7df4bab2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -57,6 +57,13 @@ - Add integration tests ([issue #744](https://github.com/PowerShell/SqlServerDsc/issues/744)). [Maxime Daniou (@mdaniou)](https://github.com/mdaniou) +- Changes to SqlServiceAccount + - Now the correct service type string value is returned by the function + `Get-TargetResource`. Previously one value was passed in as a parameter + (e.g. `DatabaseEngine`), but a different string value as returned + (e.g. `SqlServer`). Now `Get-TargetResource` return the same values + that can be passed as values in the parameter `ServiceType` + ([issue #981](https://github.com/PowerShell/SqlServerDsc/issues/981)). ## 12.2.0.0 diff --git a/DSCResources/MSFT_SqlServiceAccount/MSFT_SqlServiceAccount.psm1 b/DSCResources/MSFT_SqlServiceAccount/MSFT_SqlServiceAccount.psm1 index 498bfbd63..5d20d9a2e 100644 --- a/DSCResources/MSFT_SqlServiceAccount/MSFT_SqlServiceAccount.psm1 +++ b/DSCResources/MSFT_SqlServiceAccount/MSFT_SqlServiceAccount.psm1 @@ -74,11 +74,13 @@ function Get-TargetResource # Replace a domain of '.' with the value for $ServerName $serviceAccountName = $serviceObject.ServiceAccount -ireplace '^([\.])\\(.*)$', "$ServerName\`$2" + $serviceType = ConvertTo-ResourceServiceType -ServiceType $serviceObject.Type + # Return a hash table with the service information return @{ ServerName = $ServerName InstanceName = $InstanceName - ServiceType = $serviceObject.Type + ServiceType = $serviceType ServiceAccountName = $serviceAccountName } } @@ -271,7 +273,7 @@ function Set-TargetResource .PARAMETER ServiceType Type of service to be managed. Must be one of the following: DatabaseEngine, SQLServerAgent, Search, IntegrationServices, AnalysisServices, ReportingServices, SQLServerBrowser, NotificationServices. - + .PARAMETER VersionNumber Version number of IntegrationServices. @@ -306,7 +308,7 @@ function Get-ServiceObject if (($ServiceType -eq 'IntegrationServices') -and ([String]::IsNullOrEmpty($VersionNumber))) { $errorMessage = $script:localizedData.MissingParameter -f $ServiceType - New-InvalidArgumentException -Message $errorMessage -ArgumentName 'VersionNumber' + New-InvalidArgumentException -Message $errorMessage -ArgumentName 'VersionNumber' } # Load the SMO libraries @@ -405,6 +407,89 @@ function ConvertTo-ManagedServiceType return $serviceTypeValue -as [Microsoft.SqlServer.Management.Smo.Wmi.ManagedServiceType] } +<# + .SYNOPSIS + Converts from the string value, that was returned from the type + Microsoft.SqlServer.Management.Smo.Wmi.ManagedServiceType, to the + appropriate project's standard SQL Service type string values. + + .PARAMETER ServiceType + The string value of the Microsoft.SqlServer.Management.Smo.Wmi.ManagedServiceType. + Must be one of the following: + SqlServer, SqlAgent, Search, SqlServerIntegrationService, AnalysisServer, + ReportServer, SqlBrowser, NotificationServer. + + .NOTES + If an unknown type is passed in parameter ServiceType, the same type will + be returned. + + .EXAMPLE + ConvertTo-ResourceServiceType -ServiceType 'SqlServer' +#> +function ConvertTo-ResourceServiceType +{ + [CmdletBinding()] + [OutputType([System.String])] + param + ( + [Parameter(Mandatory = $true)] + [ValidateNotNullOrEmpty] + [System.String] + $ServiceType + ) + + # Map the project-specific ServiceType to a valid value from the ManagedServiceType enumeration + switch ($ServiceType) + { + 'SqlServer' + { + $serviceTypeValue = 'DatabaseEngine' + } + + 'SqlAgent' + { + $serviceTypeValue = 'SQLServerAgent' + } + + 'Search' + { + $serviceTypeValue = 'Search' + } + + 'SqlServerIntegrationService' + { + $serviceTypeValue = 'IntegrationServices' + } + + 'AnalysisServer' + { + $serviceTypeValue = 'AnalysisServices' + } + + 'ReportServer' + { + $serviceTypeValue = 'ReportingServices' + } + + 'SqlBrowser' + { + $serviceTypeValue = 'SQLServerBrowser' + } + + 'NotificationServer' + { + $serviceTypeValue = 'NotificationServices' + } + + default + { + $serviceTypeValue = $ServiceType + } + } + + return $serviceTypeValue +} + <# .SYNOPSIS Gets the name of a service based on the instance name and type.