Skip to content

Commit

Permalink
{Network} az network: Fix invalid escapes (#29685)
Browse files Browse the repository at this point in the history
* fix: remove useless escapes

* test: rerun and upload recording

* chore: remove invalid escape
  • Loading branch information
necusjz authored Aug 13, 2024
1 parent d3d059f commit a7c0f5f
Show file tree
Hide file tree
Showing 5 changed files with 5,387 additions and 866 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Update(AAZCommand):
az network lb rule update -g MyResourceGroup --lb-name MyLb -n MyLbRule --protocol Udp
:example: Update a load balancing rule to support HA ports.
az network lb rule update -g MyResourceGroup --lb-name MyLb -n MyLbRule \ --protocol All --frontend-port 0 --backend-port 0
az network lb rule update -g MyResourceGroup --lb-name MyLb -n MyLbRule --protocol All --frontend-port 0 --backend-port 0
"""

_aaz_info = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Update(AAZCommand):
az network lb rule update -g MyResourceGroup --lb-name MyLb -n MyLbRule --protocol Udp
:example: Update a load balancing rule to support HA ports.
az network lb rule update -g MyResourceGroup --lb-name MyLb -n MyLbRule \ --protocol All --frontend-port 0 --backend-port 0
az network lb rule update -g MyResourceGroup --lb-name MyLb -n MyLbRule --protocol All --frontend-port 0 --backend-port 0
"""

_aaz_info = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Update(AAZCommand):
az network lb rule update -g MyResourceGroup --lb-name MyLb -n MyLbRule --protocol Udp
:example: Update a load balancing rule to support HA ports.
az network lb rule update -g MyResourceGroup --lb-name MyLb -n MyLbRule \ --protocol All --frontend-port 0 --backend-port 0
az network lb rule update -g MyResourceGroup --lb-name MyLb -n MyLbRule --protocol All --frontend-port 0 --backend-port 0
"""

_aaz_info = {
Expand Down
Loading

0 comments on commit a7c0f5f

Please sign in to comment.