You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Sql/Sql/ChangeLog.md
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,9 @@
20
20
## Upcoming Release
21
21
* Added option to support short version of maintenance configuration id for Managed Instance in `New-AzSqlInstance` and `Set-AzSqlInstance` cmdlets
22
22
* Added HighAvailabilityReplicaCount to `New-AzSqlDatabaseSecondary`
23
+
* Add External Administrator and AAD Only Properties to AzSqlServer and AzSqlInstance
24
+
- Added option to specify `-ExternalAdminName`, `-ExternalAdminSid`, `-EnableActiveDirectoryOnlyAuthentication` in `New-AzSqlInstance` and `Set-AzSqlInstance` cmdlets
25
+
- Added option to expand external administrators information using `-ExpandActiveDirectoryAdministrator` in `Get-AzSqlServer` and `Get-AzSqlInstance` cmdlets
23
26
24
27
## Version 3.1.0
25
28
* Updated `Set-AzSqlDatabaseVulnerabilityAssessmentRuleBaseline` documentation to include example of define array of array with one inner array.
/// Azure Active Directory display name for a user or group
347
+
/// </summary>
348
+
[Parameter(Mandatory=false,
349
+
HelpMessage="Specifies the display name of the user, group or application which is the Azure Active Directory administrator for the server. This display name must exist in the active directory associated with the current subscription.")]
350
+
publicstringExternalAdminName{get;set;}
351
+
352
+
/// <summary>
353
+
/// Azure Active Directory object id for a user, group or application
354
+
/// </summary>
355
+
[Parameter(Mandatory=false,
356
+
HelpMessage="Specifies the object ID of the user, group or application which is the Azure Active Directory administrator.")]
0 commit comments