Skip to content

Commit 86ac7cc

Browse files
urosmilwyunchi-ms
andauthored
Fixed parameter description for InstanceFailoverGroup command (#13722)
* Update Set-AzSqlDatabaseInstanceFailoverGroup.md Removed "feature not supported" for -AllowReadOnlyFailoverToPrimary parameter. * Update New-AzSqlDatabaseInstanceFailoverGroup.md Fixed description for -AllowReadOnlyFailoverToPrimary as it is supported * Fixed parameter description for InstanceFailoverGroup command. Co-authored-by: wyunchi-ms <[email protected]>
1 parent 11014e2 commit 86ac7cc

File tree

5 files changed

+3
-4
lines changed

5 files changed

+3
-4
lines changed

src/Sql/Sql/ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
- Additional information about change #1
1919
-->
2020
## Upcoming Release
21+
* Fixed parameter description for `InstanceFailoverGroup` command.
2122

2223
## Version 2.13.0
2324
* Added SecondaryType to the following:

src/Sql/Sql/Instance Failover Group/Cmdlet/NewAzureSqlInstanceFailoverGroup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ public class NewAzureSqlInstanceFailoverGroup : AzureSqlInstanceFailoverGroupCmd
108108
/// Gets or sets the failover policy for read only endpoint of the Sql Azure Instance Failover Group.
109109
/// </summary>
110110
[Parameter(Mandatory = false,
111-
HelpMessage = "Whether an outage on the secondary server should trigger automatic failover of the read-only endpoint. This feature is not yet supported.")]
111+
HelpMessage = "Whether an outage on the secondary server should trigger automatic failover of the read-only endpoint.")]
112112
[ValidateNotNullOrEmpty]
113113
[PSArgumentCompleter("Enabled", "Disabled")]
114114
public string AllowReadOnlyFailoverToPrimary { get; set; }

src/Sql/Sql/Instance Failover Group/Cmdlet/SetAzureSqlInstanceFailoverGroup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ public class SetAzureSqlInstanceFailoverGroup : AzureSqlInstanceFailoverGroupCmd
130130
/// Gets or sets the failover policy for read only endpoint of the Sql Azure Instance Failover Group.
131131
/// </summary>
132132
[Parameter(Mandatory = false,
133-
HelpMessage = "Whether outages on the secondary server should trigger automatic failover of the read-only endpoint. This feature is not yet supported.")]
133+
HelpMessage = "Whether outages on the secondary server should trigger automatic failover of the read-only endpoint.")]
134134
[ValidateNotNullOrEmpty]
135135
[PSArgumentCompleter("Enabled", "Disabled")]
136136
public string AllowReadOnlyFailoverToPrimary { get; set; }

src/Sql/Sql/help/New-AzSqlDatabaseInstanceFailoverGroup.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ New-AzSqlDatabaseInstanceFailoverGroup -FailoverPolicy Automatic -GracePeriodWit
8484

8585
### -AllowReadOnlyFailoverToPrimary
8686
Whether an outage on the secondary server should trigger automatic failover of the read-only endpoint.
87-
This feature is not yet supported.
8887

8988
```yaml
9089
Type: System.String

src/Sql/Sql/help/Set-AzSqlDatabaseInstanceFailoverGroup.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ Sets a Instance Failover Group's failover policy to 'Manual' by piping in the Fa
6767

6868
### -AllowReadOnlyFailoverToPrimary
6969
Whether outages on the secondary server should trigger automatic failover of the read-only endpoint.
70-
This feature is not yet supported.
7170

7271
```yaml
7372
Type: System.String

0 commit comments

Comments
 (0)