Skip to content

Commit b2d5276

Browse files
authored
Correct Examples Parameter and Output Property
The three examples showed EmailSubscriptionAdmins as the parameter and output property which is incorrect. The parameter name is EmailAdmins and the property returned in the output is EmailAdmins.
1 parent c35dd96 commit b2d5276

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/Sql/Sql/help/Update-AzSqlServerVulnerabilityAssessmentSetting.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@ PS C:\> Update-AzSqlServerVulnerabilityAssessmentSetting `
4949
-StorageAccountName "mystorage" `
5050
-ScanResultsContainerName "vulnerability-assessment" `
5151
-RecurringScansInterval Weekly `
52-
-EmailSubscriptionAdmins $true `
52+
-EmailAdmins $true `
5353
-NotificationEmail @("[email protected]" , "[email protected]")
5454
5555
ResourceGroupName : ResourceGroup01
5656
ServerName : Server01
5757
StorageAccountName : mystorage
5858
ScanResultsContainerName : vulnerability-assessment
5959
RecurringScansInterval : Weekly
60-
EmailSubscriptionAdmins : True
60+
EmailAdmins : True
6161
NotificationEmail : {[email protected] , [email protected]}
6262
```
6363

@@ -68,15 +68,15 @@ PS C:\> Update-AzSqlServerVulnerabilityAssessmentSetting `
6868
-ServerName "Server01"`
6969
-BlobStorageSasUri "https://mystorage.blob.core.windows.net/vulnerability-assessment?st=XXXXXX" `
7070
-RecurringScansInterval Weekly `
71-
-EmailSubscriptionAdmins $true `
71+
-EmailAdmins $true `
7272
-NotificationEmail @("[email protected]" , "[email protected]")
7373
7474
ResourceGroupName : ResourceGroup01
7575
ServerName : Server01
7676
StorageAccountName : mystorage
7777
ScanResultsContainerName : vulnerability-assessment
7878
RecurringScansInterval : Weekly
79-
EmailSubscriptionAdmins : True
79+
EmailAdmins : True
8080
NotificationEmail : {[email protected] , [email protected]}
8181
```
8282

@@ -88,7 +88,7 @@ PS C:\> Update-AzSqlServerVulnerabilityAssessmentSetting `
8888
-StorageAccountName "mystorage" `
8989
-ScanResultsContainerName "vulnerability-assessment" `
9090
-RecurringScansInterval Weekly `
91-
-EmailSubscriptionAdmins $true `
91+
-EmailAdmins $true `
9292
-NotificationEmail @("[email protected]" , "[email protected]")
9393
9494
PS C:\> Get-AzSqlServerVulnerabilityAssessmentSetting `
@@ -103,7 +103,7 @@ ServerName : Server02
103103
StorageAccountName : mystorage
104104
ScanResultsContainerName : vulnerability-assessment
105105
RecurringScansInterval : Weekly
106-
EmailSubscriptionAdmins : True
106+
EmailAdmins : True
107107
NotificationEmail : {[email protected] , [email protected]}
108108
```
109109

0 commit comments

Comments
 (0)