File tree Expand file tree Collapse file tree 1 file changed +13
-8
lines changed
src/azure-cli/azure/cli/command_modules/acs Expand file tree Collapse file tree 1 file changed +13
-8
lines changed Original file line number Diff line number Diff line change 44# --------
55
66from azure .cli .core .breaking_change import (
7+ AzCLIOtherChange ,
78 register_default_value_breaking_change ,
89 register_conditional_breaking_change ,
910)
1718
1819register_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
2629register_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)
You can’t perform that action at this time.
0 commit comments