forked from dsccommunity/SqlServerDsc
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDSC_SqlDatabaseObjectPermission.psm1
More file actions
918 lines (757 loc) · 31.6 KB
/
DSC_SqlDatabaseObjectPermission.psm1
File metadata and controls
918 lines (757 loc) · 31.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
$script:sqlServerDscHelperModulePath = Join-Path -Path $PSScriptRoot -ChildPath '..\..\Modules\SqlServerDsc.Common'
$script:resourceHelperModulePath = Join-Path -Path $PSScriptRoot -ChildPath '..\..\Modules\DscResource.Common'
Import-Module -Name $script:sqlServerDscHelperModulePath
Import-Module -Name $script:resourceHelperModulePath
$script:localizedData = Get-LocalizedData -DefaultUICulture 'en-US'
<#
.SYNOPSIS
Returns the current permissions for the object in the database.
.PARAMETER InstanceName
Specifies the name of the SQL instance to be configured.
.PARAMETER DatabaseName
Specifies the name of the database where the object resides.
.PARAMETER SchemaName
Specifies the name of the schema for the database object.
.PARAMETER ObjectName
Specifies the name of the database object to set permission for.
Can be an empty value when setting permission for a schema.
.PARAMETER ObjectType
Specifies the type of the database object to set permission for.
.PARAMETER Name
Specifies the name of the database user, user-defined database role, or
database application role that will have the permission.
.PARAMETER Permission
Specifies the permissions as an array of embedded instances of the
DSC_DatabaseObjectPermission CIM class.
.PARAMETER ServerName
Specifies the host name of the SQL Server to be configured. Default value
is the current computer name.
.PARAMETER Force
Specifies that permissions that has parameter Ensure set to 'Present'
(the default value for permissions) should always be enforced even if that
encompasses cascading revocations. An example if the desired state is
'Grant' but the current state is 'GrantWithGrant'. If parameter Force is set
to $true the With Grant permission is revoked, if set to $false an exception
is thrown since the desired state could not be set. Default is to throw an
exception.
#>
function Get-TargetResource
{
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute('SqlServerDsc.AnalyzerRules\Measure-CommandsNeededToLoadSMO', '', Justification = 'The command Connect-Sql is called when Get-DatabaseObject is called')]
[CmdletBinding()]
[OutputType([System.Collections.Hashtable])]
param
(
[Parameter(Mandatory = $true)]
[System.String]
$InstanceName,
[Parameter(Mandatory = $true)]
[System.String]
$DatabaseName,
[Parameter(Mandatory = $true)]
[System.String]
$SchemaName,
[Parameter(Mandatory = $true)]
[AllowEmptyString()]
[System.String]
$ObjectName,
[Parameter(Mandatory = $true)]
[ValidateSet('Schema', 'Table', 'View', 'StoredProcedure')]
[System.String]
$ObjectType,
[Parameter(Mandatory = $true)]
[System.String]
$Name,
[Parameter(Mandatory = $true)]
[Microsoft.Management.Infrastructure.CimInstance[]]
$Permission,
[Parameter()]
[ValidateNotNullOrEmpty()]
[System.String]
$ServerName = (Get-ComputerName),
[Parameter()]
[System.Boolean]
$Force
)
Write-Verbose -Message (
$script:localizedData.GetObjectPermission -f ('{0}.{1}' -f $SchemaName, $ObjectName), $ObjectType, $DatabaseName, $InstanceName, $ServerName
)
$Permission = Assert-PermissionEnsureProperty -Permission $Permission
# Create an empty collection of CimInstance that we can return.
$cimInstancePermissionCollection = New-Object -TypeName 'System.Collections.ObjectModel.Collection`1[Microsoft.Management.Infrastructure.CimInstance]'
$returnValue = @{
ServerName = $ServerName
InstanceName = $InstanceName
DatabaseName = $DatabaseName
SchemaName = $SchemaName
ObjectName = $ObjectName
ObjectType = $ObjectType
Name = $Name
Permission = $cimInstancePermissionCollection
Force = $Force
}
$getDatabaseObjectParameters = @{
ServerName = $ServerName
InstanceName = $InstanceName
DatabaseName = $DatabaseName
SchemaName = $SchemaName
ObjectName = $ObjectName
ObjectType = $ObjectType
}
$sqlObject = Get-DatabaseObject @getDatabaseObjectParameters
if ($sqlObject)
{
# Get the names of the possible permissions by creating an empty object.
$permissionProperties = (
New-Object -TypeName 'Microsoft.SqlServer.Management.Smo.ObjectPermissionSet' |
Get-Member -MemberType 'Property'
).Name
# Loop through each desired permission state.
foreach ($desiredPermission in $Permission)
{
[System.String[]] $currentObjectPermissionNames = @()
# Get all current permissions for the permission state.
$currentObjectPermissions = $sqlObject.EnumObjectPermissions($Name) |
Where-Object -FilterScript {
$_.PermissionState -eq $desiredPermission.State
}
if ($currentObjectPermissions)
{
# Loop through each property to see if it is set to $true
foreach ($currentPermissionProperty in $permissionProperties)
{
foreach ($objectPermission in $currentObjectPermissions)
{
if ($true -in $objectPermission.PermissionType[0].$currentPermissionProperty)
{
$currentObjectPermissionNames += $currentPermissionProperty
}
}
}
# Remove any duplicate permission names.
$currentObjectPermissionNames = @(
$currentObjectPermissionNames |
Sort-Object -Unique
)
}
$compareObjectParameters = @{
ReferenceObject = $desiredPermission.Permission
DifferenceObject = $currentObjectPermissionNames
}
$resultOfPermissionCompare = Compare-Object @compareObjectParameters |
Where-Object -FilterScript {
$_.SideIndicator -eq '<='
}
# If there are no missing permission then return 'Ensure' state as 'Present'.
if ($null -eq $resultOfPermissionCompare)
{
$currentState = 'Present'
}
else
{
$currentState = 'Absent'
}
$cimInstancePermissionCollection += ConvertTo-CimDatabaseObjectPermission `
-Permission $desiredPermission.Permission `
-PermissionState $desiredPermission.State `
-Ensure $currentState
}
$returnValue['Permission'] = $cimInstancePermissionCollection
}
return $returnValue
}
<#
.SYNOPSIS
Sets the permissions for the object in the database.
.PARAMETER InstanceName
Specifies the name of the SQL instance to be configured.
.PARAMETER DatabaseName
Specifies the name of the database where the object resides.
.PARAMETER SchemaName
Specifies the name of the schema for the database object.
.PARAMETER ObjectName
Specifies the name of the database object to set permission for.
Can be an empty value when setting permission for a schema.
.PARAMETER ObjectType
Specifies the type of the database object to set permission for.
.PARAMETER Name
Specifies the name of the database user, user-defined database role, or
database application role that will have the permission.
.PARAMETER Permission
Specifies the permissions as an array of embedded instances of the
DSC_DatabaseObjectPermission CIM class.
.PARAMETER ServerName
Specifies the host name of the SQL Server to be configured. Default value
is the current computer name.
.PARAMETER Force
Specifies that permissions that has parameter Ensure set to 'Present'
(the default value for permissions) should always be enforced even if that
encompasses cascading revocations. An example if the desired state is
'Grant' but the current state is 'GrantWithGrant'. If parameter Force is set
to $true the With Grant permission is revoked, if set to $false an exception
is thrown since the desired state could not be set. Default is to throw an
exception.
#>
function Set-TargetResource
{
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute('SqlServerDsc.AnalyzerRules\Measure-CommandsNeededToLoadSMO', '', Justification = 'The command Connect-Sql will be implicitly called in the call to Compare-TargetResourceState')]
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[System.String]
$InstanceName,
[Parameter(Mandatory = $true)]
[System.String]
$DatabaseName,
[Parameter(Mandatory = $true)]
[System.String]
$SchemaName,
[Parameter(Mandatory = $true)]
[AllowEmptyString()]
[System.String]
$ObjectName,
[Parameter(Mandatory = $true)]
[ValidateSet('Schema', 'Table', 'View', 'StoredProcedure')]
[System.String]
$ObjectType,
[Parameter(Mandatory = $true)]
[System.String]
$Name,
[Parameter(Mandatory = $true)]
[Microsoft.Management.Infrastructure.CimInstance[]]
$Permission,
[Parameter()]
[ValidateNotNullOrEmpty()]
[System.String]
$ServerName = (Get-ComputerName),
[Parameter()]
[System.Boolean]
$Force
)
$Permission = Assert-PermissionEnsureProperty -Permission $Permission
<#
Compare the current state against the desired state. Calling this will
also import the necessary module to later call Get-ServerProtocolObject
which uses the SMO class ManagedComputer.
#>
$propertyState = Compare-TargetResourceState @PSBoundParameters
# Get all properties that are not in desired state.
$propertiesNotInDesiredState = $propertyState | Where-Object -FilterScript { -not $_.InDesiredState }
if ($propertiesNotInDesiredState.Count -gt 0)
{
Write-Verbose -Message (
$script:localizedData.SetDesiredState -f ('{0}.{1}' -f $SchemaName, $ObjectName)
)
$getDatabaseObjectParameters = @{
ServerName = $ServerName
InstanceName = $InstanceName
DatabaseName = $DatabaseName
SchemaName = $SchemaName
ObjectName = $ObjectName
ObjectType = $ObjectType
}
$sqlObject = Get-DatabaseObject @getDatabaseObjectParameters
if ($sqlObject)
{
$permissionProperty = $propertiesNotInDesiredState | Where-Object -FilterScript { $_.ParameterName -eq 'Permission' }
# Check if Permission property need updating.
if ($permissionProperty)
{
# Loop through each desired permission state.
foreach ($desiredPermissionState in $Permission)
{
# Get the equivalent permission state form the current state.
$currentPermissionState = $permissionProperty.Actual | Where-Object -FilterScript { $_.State -eq $desiredPermissionState.State }
if ($desiredPermissionState.Ensure -ne $currentPermissionState.Ensure)
{
try
{
$permissionSet = New-Object -TypeName 'Microsoft.SqlServer.Management.Smo.ObjectPermissionSet'
# Prepare the desired permission set to assign to the object.
foreach ($permissionName in $desiredPermissionState.Permission)
{
$permissionSet."$permissionName" = $true
}
switch ($desiredPermissionState.Ensure)
{
'Present'
{
Write-Verbose -Message (
$script:localizedData.SetPermission -f @(
($desiredPermissionState.Permission -join ','),
$Name
$desiredPermissionState.State,
('{0}.{1}' -f $SchemaName, $ObjectName),
$ObjectType,
$DatabaseName
)
)
switch ($desiredPermissionState.State)
{
'GrantWithGrant'
{
$sqlObject.Grant($permissionSet, $Name, $true)
}
'Grant'
{
<#
If the permission was previously granted using With Grant then With Grant is
revoked from all permissions since it is not the desired state.
Even if we just revoke the With Grant and leaving the desired permission the
permissions must always be granted regardless, this is because it is not known
which permissions existed with With Grant or did not exist at all. It could be
known if looping through the permissions and evaluating With Grant for each,
but that would mean additional calls that did not seem necessary at the time
#>
if ($sqlObject.EnumObjectPermissions($Name, $permissionSet).PermissionState -contains 'GrantWithGrant')
{
if ($Force)
{
Write-Verbose -Message (
$script:localizedData.RevokePermissionWithGrant -f @(
($desiredPermissionState.Permission -join ','),
$Name
('{0}.{1}' -f $SchemaName, $ObjectName),
$ObjectType,
$DatabaseName
)
)
# This must cascade the revoke.
$sqlObject.Revoke($permissionSet, $Name, $true, $true)
}
else
{
$errorMessage = $script:localizedData.GrantCantBeSetBecauseRevokeIsNotOptedIn -f @(
($desiredPermissionState.Permission -join ','),
$Name
('{0}.{1}' -f $SchemaName, $ObjectName),
$ObjectType,
$DatabaseName
)
New-InvalidOperationException -Message $errorMessage
}
}
$sqlObject.Grant($permissionSet, $Name)
}
'Deny'
{
$sqlObject.Deny($permissionSet, $Name)
}
}
}
'Absent'
{
Write-Verbose -Message (
$script:localizedData.RevokePermission -f @(
($desiredPermissionState.Permission -join ','),
$Name
$desiredPermissionState.State,
('{0}.{1}' -f $SchemaName, $ObjectName),
$ObjectType,
$DatabaseName
)
)
if ($desiredPermissionState.State -eq 'GrantWithGrant')
{
$sqlObject.Revoke($permissionSet, $Name, $false, $true)
}
else
{
$sqlObject.Revoke($permissionSet, $Name)
}
}
}
}
catch
{
$errorMessage = $script:localizedData.FailedToSetDatabaseObjectPermission -f @(
$Name,
('{0}.{1}' -f $SchemaName, $ObjectName),
$DatabaseName
)
New-InvalidOperationException -Message $errorMessage -ErrorRecord $_
}
}
else
{
Write-Verbose -Message (
$script:localizedData.PermissionStateInDesiredState -f @(
$desiredPermissionState.State,
('{0}.{1}' -f $SchemaName, $ObjectName)
)
)
}
}
}
}
else
{
$errorMessage = $script:localizedData.FailedToGetDatabaseObject -f @(
('{0}.{1}' -f $SchemaName, $ObjectName),
$ObjectType,
$DatabaseName
)
New-InvalidOperationException -Message $errorMessage
}
}
else
{
Write-Verbose -Message (
$script:localizedData.DatabaseObjectIsInDesiredState -f $ObjectName, $ObjectType
)
}
}
<#
.SYNOPSIS
Determines if the permissions is set for the object in the database.
.PARAMETER InstanceName
Specifies the name of the SQL instance to be configured.
.PARAMETER DatabaseName
Specifies the name of the database where the object resides.
.PARAMETER SchemaName
Specifies the name of the schema for the database object.
.PARAMETER ObjectName
Specifies the name of the database object to set permission for.
Can be an empty value when setting permission for a schema.
.PARAMETER ObjectType
Specifies the type of the database object to set permission for.
.PARAMETER Name
Specifies the name of the database user, user-defined database role, or
database application role that will have the permission.
.PARAMETER Permission
Specifies the permissions as an array of embedded instances of the
DSC_DatabaseObjectPermission CIM class.
.PARAMETER ServerName
Specifies the host name of the SQL Server to be configured. Default value
is the current computer name.
.PARAMETER Force
Specifies that permissions that has parameter Ensure set to 'Present'
(the default value for permissions) should always be enforced even if that
encompasses cascading revocations. An example if the desired state is
'Grant' but the current state is 'GrantWithGrant'. If parameter Force is set
to $true the With Grant permission is revoked, if set to $false an exception
is thrown since the desired state could not be set. Default is to throw an
exception.
#>
function Test-TargetResource
{
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute('SqlServerDsc.AnalyzerRules\Measure-CommandsNeededToLoadSMO', '', Justification = 'The command Connect-Sql will be implicitly called in the call to Compare-TargetResourceState')]
[CmdletBinding()]
[OutputType([System.Boolean])]
param
(
[Parameter(Mandatory = $true)]
[System.String]
$InstanceName,
[Parameter(Mandatory = $true)]
[System.String]
$DatabaseName,
[Parameter(Mandatory = $true)]
[System.String]
$SchemaName,
[Parameter(Mandatory = $true)]
[AllowEmptyString()]
[System.String]
$ObjectName,
[Parameter(Mandatory = $true)]
[ValidateSet('Schema', 'Table', 'View', 'StoredProcedure')]
[System.String]
$ObjectType,
[Parameter(Mandatory = $true)]
[System.String]
$Name,
[Parameter(Mandatory = $true)]
[Microsoft.Management.Infrastructure.CimInstance[]]
$Permission,
[Parameter()]
[ValidateNotNullOrEmpty()]
[System.String]
$ServerName = (Get-ComputerName),
[Parameter()]
[System.Boolean]
$Force
)
$fullObjectName = '{0}.{1}' -f $SchemaName, $ObjectName
Write-Verbose -Message (
$script:localizedData.TestDesiredState -f @(
$fullObjectName,
$ObjectType,
$DatabaseName,
$InstanceName,
$ServerName
)
)
$propertyState = Compare-TargetResourceState @PSBoundParameters
if ($false -in $propertyState.InDesiredState)
{
$testTargetResourceReturnValue = $false
Write-Verbose -Message (
$script:localizedData.NotInDesiredState -f $fullObjectName
)
}
else
{
$testTargetResourceReturnValue = $true
Write-Verbose -Message (
$script:localizedData.InDesiredState -f $fullObjectName
)
}
return $testTargetResourceReturnValue
}
<#
.SYNOPSIS
Determines if the permissions is set for the object in the database.
.PARAMETER InstanceName
Specifies the name of the SQL instance to be configured.
.PARAMETER DatabaseName
Specifies the name of the database where the object resides.
.PARAMETER SchemaName
Specifies the name of the schema for the database object.
.PARAMETER ObjectName
Specifies the name of the database object to set permission for.
Can be an empty value when setting permission for a schema.
.PARAMETER ObjectType
Specifies the type of the database object to set permission for.
.PARAMETER Name
Specifies the name of the database user, user-defined database role, or
database application role that will have the permission.
.PARAMETER Permission
Specifies the permissions as an array of embedded instances of the
DSC_DatabaseObjectPermission CIM class.
.PARAMETER ServerName
Specifies the host name of the SQL Server to be configured. Default value
is the current computer name.
.PARAMETER Force
Specifies that permissions that has parameter Ensure set to 'Present'
(the default value for permissions) should always be enforced even if that
encompasses cascading revocations. An example if the desired state is
'Grant' but the current state is 'GrantWithGrant'. If parameter Force is set
to $true the With Grant permission is revoked, if set to $false an exception
is thrown since the desired state could not be set. Default is to throw an
exception.
#>
function Compare-TargetResourceState
{
[CmdletBinding()]
[OutputType([System.Boolean])]
param
(
[Parameter(Mandatory = $true)]
[System.String]
$InstanceName,
[Parameter(Mandatory = $true)]
[System.String]
$DatabaseName,
[Parameter(Mandatory = $true)]
[System.String]
$SchemaName,
[Parameter(Mandatory = $true)]
[AllowEmptyString()]
[System.String]
$ObjectName,
[Parameter(Mandatory = $true)]
[ValidateSet('Schema', 'Table', 'View', 'StoredProcedure')]
[System.String]
$ObjectType,
[Parameter(Mandatory = $true)]
[System.String]
$Name,
[Parameter(Mandatory = $true)]
[Microsoft.Management.Infrastructure.CimInstance[]]
$Permission,
[Parameter()]
[ValidateNotNullOrEmpty()]
[System.String]
$ServerName = (Get-ComputerName),
[Parameter()]
[System.Boolean]
$Force
)
$Permission = Assert-PermissionEnsureProperty -Permission $Permission
$getTargetResourceParameters = @{
InstanceName = $InstanceName
DatabaseName = $DatabaseName
SchemaName = $SchemaName
ObjectName = $ObjectName
ObjectType = $ObjectType
Name = $Name
Permission = $Permission
ServerName = $ServerName
Force = $Force
}
<#
We remove any parameters not passed by $PSBoundParameters so that
Get-TargetResource can also evaluate $PSBoundParameters correctly.
Need the @() around the Keys property to get a new array to enumerate.
#>
@($getTargetResourceParameters.Keys) | ForEach-Object -Process {
if (-not $PSBoundParameters.ContainsKey($_))
{
$getTargetResourceParameters.Remove($_)
}
}
$getTargetResourceResult = Get-TargetResource @getTargetResourceParameters
$compareTargetResourceStateParameters = @{
CurrentValues = $getTargetResourceResult
DesiredValues = $PSBoundParameters
Properties = @(
'Permission'
)
<#
This is the property that makes each DSC_DatabaseObjectPermission
CIM instance unique in the collection. It will be used to filter out
the values to compare against in the current state.
#>
CimInstanceKeyProperties = @{
Permission = @('Permission', 'State')
}
}
return Compare-ResourcePropertyState @compareTargetResourceStateParameters
}
<#
.SYNOPSIS
Returns the object class for the specified name och object type.
.PARAMETER ServerName
Specifies the host name of the SQL Server to be configured.
.PARAMETER InstanceName
Specifies the name of the SQL instance to be configured.
.PARAMETER DatabaseName
Specifies the name of the database where the object resides.
.PARAMETER SchemaName
Specifies the name of the schema for the database object.
.PARAMETER ObjectName
Specifies the name of the database object to set per mission for.
Can be an empty value when setting permission for a schema.
.PARAMETER ObjectType
Specifies the type of the database object to set permission for.
#>
function Get-DatabaseObject
{
[CmdletBinding()]
[OutputType([PSObject])]
param
(
[Parameter(Mandatory = $true)]
[System.String]
$ServerName,
[Parameter(Mandatory = $true)]
[System.String]
$InstanceName,
[Parameter(Mandatory = $true)]
[System.String]
$DatabaseName,
[Parameter(Mandatory = $true)]
[System.String]
$SchemaName,
[Parameter(Mandatory = $true)]
[AllowEmptyString()]
[System.String]
$ObjectName,
[Parameter(Mandatory = $true)]
[ValidateSet('Schema', 'Table', 'View', 'StoredProcedure')]
[System.String]
$ObjectType
)
$sqlObject = $null
$sqlServerObject = Connect-SQL -ServerName $ServerName -InstanceName $InstanceName -ErrorAction 'Stop'
if ($sqlServerObject)
{
$sqlDatabaseObject = $sqlServerObject.Databases[$DatabaseName]
if ($sqlDatabaseObject)
{
$sqlObject = switch ($ObjectType)
{
'Schema'
{
$sqlDatabaseObject.Schemas.Item($SchemaName)
}
'Table'
{
$sqlDatabaseObject.Tables.Item($ObjectName, $SchemaName)
}
'StoredProcedure'
{
$sqlDatabaseObject.StoredProcedures.Item($ObjectName, $SchemaName)
}
'View'
{
$sqlDatabaseObject.Views.Item($ObjectName, $SchemaName)
}
}
}
}
return $sqlObject
}
<#
.SYNOPSIS
Converts permission names to DSC_DatabaseObjectPermission CIM class.
.PARAMETER Permission
This represents a SQL Server database object permission.
.PARAMETER PermissionState
This is the state of permission set. Valid values are 'Grant', 'Deny', or 'GrantWithGrant'.
.PARAMETER Ensure
Ensure if the permission should be granted (Present) or revoked (Absent).
Default value is 'Present'.
#>
function ConvertTo-CimDatabaseObjectPermission
{
[CmdletBinding()]
[OutputType([Microsoft.Management.Infrastructure.CimInstance])]
param
(
[Parameter(Mandatory = $true)]
[AllowEmptyCollection()]
[AllowNull()]
[System.String]
$Permission,
[Parameter(Mandatory = $true)]
[System.String]
$PermissionState,
[Parameter()]
[ValidateSet('Present', 'Absent')]
[System.String]
$Ensure
)
if (-not $PSBoundParameters.ContainsKey('Ensure'))
{
$Ensure = 'Present'
}
$cimClassName = 'DSC_DatabaseObjectPermission'
$cimNamespace = 'root/microsoft/Windows/DesiredStateConfiguration'
$cimProperties = @{
State = $PermissionState
Permission = $Permission
Ensure = $Ensure
}
return New-CimInstance -ClassName $cimClassName `
-Namespace $cimNamespace `
-Property $cimProperties `
-ClientOnly
}
<#
.SYNOPSIS
Asserts that if Ensure property is not set, then the Ensure property is
set to 'Present' (which is the default).
.PARAMETER Permission
Specifies array of permission CIM instances.
#>
function Assert-PermissionEnsureProperty
{
[CmdletBinding()]
[OutputType([Microsoft.Management.Infrastructure.CimInstance[]])]
param
(
[Parameter(Mandatory = $true)]
[Microsoft.Management.Infrastructure.CimInstance[]]
$Permission
)
foreach ($desiredPermission in $Permission)
{
if (-not $desiredPermission.Ensure)
{
$desiredPermission.Ensure = 'Present'
}
}
return $Permission
}