Skip to content

Commit 71a665e

Browse files
authored
Merge pull request Azure#11064 from ps-gregg/master
Correct Example Parameter and Output Property
2 parents 11afb85 + 8f731d5 commit 71a665e

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

src/Sql/Sql/ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
## Upcoming Release
2121
* Added support for cross subscription point in time restore on Managed Instances.
2222
* Add support for changing existing Sql Managed Instance hardware generation
23+
* Fix Update-AzSqlServerVulnerabilityAssessmentSetting help examples: parameter/property output - EmailAdmins
2324

2425
## Version 2.2.0
2526
Fix New-AzSqlDatabaseSecondary cmdlet to check for PartnerDatabaseName existence instead of DatabaseName existence.

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)