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
* Added `IsGeneralPurposeV2` and `StorageIOps` parameters to `New-AzSqlInstance`, `Set-AzSqlInstance` to enable the creation of GPv2 instances
22
23
* Added IsGeneralPurposeV2 and StorageIOps fields to the model of the managed instance so that it displays information about GPv2 instances that are returned by `Get-AzSqlInstance`.
23
24
* Added new cmdlet `Set-AzSqlDatabaseReplicationLink` for updating replication link type
[Parameter(Mandatory=true,ParameterSetName=CreateByNameParameterSet,HelpMessage="Name of the secondary availability group.")]
75
84
[Parameter(Mandatory=true,ParameterSetName=CreateByParentObjectParameterSet,HelpMessage="Name of the secondary availability group.")]
76
85
[ValidateNotNullOrEmpty]
@@ -79,6 +88,7 @@ public class NewAzureSqlManagedInstanceLink : AzureSqlManagedInstanceLinkCmdletB
79
88
/// <summary>
80
89
/// Gets or sets the target database
81
90
/// </summary>
91
+
[CmdletParameterBreakingChangeWithVersion("TargetDatabase","13.0.0","6.0.0",ChangeDescription="The parameter 'TargetDatabase' is being replaced by parameter 'Databases'. The type of new parameter is changing from 'String' to 'List<String>'")]
82
92
[Parameter(Mandatory=true,ParameterSetName=CreateByNameParameterSet,HelpMessage="Name of the target database.")]
83
93
[Parameter(Mandatory=true,ParameterSetName=CreateByParentObjectParameterSet,HelpMessage="Name of the target database.")]
84
94
[ValidateNotNullOrEmpty]
@@ -87,6 +97,7 @@ public class NewAzureSqlManagedInstanceLink : AzureSqlManagedInstanceLinkCmdletB
0 commit comments