Skip to content

Commit 3f4d075

Browse files
committed
update
1 parent a7bd81b commit 3f4d075

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

src/azure-cli/azure/cli/command_modules/acs/_breaking_change.py

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
# --------
55

66
from azure.cli.core.breaking_change import (
7+
AzCLIOtherChange,
78
register_default_value_breaking_change,
89
register_conditional_breaking_change,
910
)
@@ -17,16 +18,20 @@
1718

1819
register_conditional_breaking_change(
1920
tag="aks_create_cluster_autoscaler_profile",
20-
breaking_change="The option `--cluster-autoscaler-profile` in command `az aks create` will be changed to "
21-
"allow multiple values for the same key, separated by commas. Different key-value pairs will be separated by "
22-
"spaces.",
23-
command_name="aks create",
21+
breaking_change=AzCLIOtherChange(
22+
cmd="aks create",
23+
message="The option `--cluster-autoscaler-profile` in command `az aks create` will be changed to "
24+
"allow multiple values for the same key, separated by commas. Different key-value pairs will be separated by "
25+
"spaces.",
26+
),
2427
)
2528

2629
register_conditional_breaking_change(
2730
tag="aks_update_cluster_autoscaler_profile",
28-
breaking_change="The option `--cluster-autoscaler-profile` in command `az aks update` will be changed to "
29-
"allow multiple values for the same key, separated by commas. Different key-value pairs will be separated by "
30-
"spaces.",
31-
command_name="aks update",
31+
breaking_change=AzCLIOtherChange(
32+
cmd="aks update",
33+
message="The option `--cluster-autoscaler-profile` in command `az aks update` will be changed to "
34+
"allow multiple values for the same key, separated by commas. Different key-value pairs will be separated by "
35+
"spaces.",
36+
),
3237
)

0 commit comments

Comments
 (0)