Skip to content

Commit aeff6d5

Browse files
Fix warning message in load balancer command (Azure#19487)
* added warning about sku switching to standard * Apply suggestions from code review * fixed a warning message in LoadBalancerCommand * fixed change log * fixed message' * fixed message again * Update ChangeLog.md * Update ChangeLog.md Co-authored-by: Yeming Liu <[email protected]>
1 parent f9d01ef commit aeff6d5

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/Network/Network/ChangeLog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@
2626
- `New-AzFirewall`
2727
* Fixed a bug not able to add MSSQL application rules to an AZURE FIREWALL POLICY
2828

29+
* Added message in breaking change attribute to notify that load balancer sku default behaviour will be changed
30+
- `New-AzLoadBalancer`
31+
2932
## Version 4.20.1
3033
* Added breaking change notification for `Get-AzFirewall`, `New-AzFirewall`, `Set-AzFirewall` and `New-AzFirewallHubIpAddress`
3134

src/Network/Network/LoadBalancer/NewAzureRMLoadBalancerCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
namespace Microsoft.Azure.Commands.Network
3131
{
32-
[GenericBreakingChange("It is recommended to use parameter '-Sku Standard' to create new IP address. Please note that it will become the default behavior for IP address creation in the future.")]
32+
[GenericBreakingChange("It is recommended to use parameter '-Sku Standard' to create new Load Balancer. Please note that it will become the default behavior for Load Balancer creation in the future.")]
3333
[Cmdlet(VerbsCommon.New, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "LoadBalancer", SupportsShouldProcess = true), OutputType(typeof(PSLoadBalancer))]
3434
public partial class NewAzureRmLoadBalancer : NetworkBaseCmdlet
3535
{

0 commit comments

Comments
 (0)