147
147
148
148
subnet_disable_pls_msg = ("`--disable-private-link-service-network-policies` will be deprecated in the future, if you "
149
149
"wanna disable network policy for private link service, please use "
150
- "`---- private-link-service-network-policies Disabled` instead." )
150
+ "`--private-link-service-network-policies Disabled` instead." )
151
151
152
152
153
153
# region Utility methods
@@ -5555,7 +5555,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
5555
5555
# add ple/pls arguments
5556
5556
args_schema .disable_private_endpoint_network_policies = AAZStrArg (
5557
5557
options = ["--disable-private-endpoint-network-policies" ],
5558
- help = "Disable private endpoint network policies on the subnet." ,
5558
+ help = "Disable private endpoint network policies on the subnet. Please note that it will be replaced by `--private-endpoint-network-policies` soon. " ,
5559
5559
enum = {
5560
5560
"true" : "Disabled" , "t" : "Disabled" , "yes" : "Disabled" , "y" : "Disabled" , "1" : "Disabled" ,
5561
5561
"false" : "Enabled" , "f" : "Enabled" , "no" : "Enabled" , "n" : "Enabled" , "0" : "Enabled" ,
@@ -5564,7 +5564,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
5564
5564
)
5565
5565
args_schema .disable_private_link_service_network_policies = AAZStrArg (
5566
5566
options = ["--disable-private-link-service-network-policies" ],
5567
- help = "Disable private link service network policies on the subnet." ,
5567
+ help = "Disable private link service network policies on the subnet. Please note that it will be replaced by `--private-link-service-network-policies` soon. " ,
5568
5568
enum = {
5569
5569
"true" : "Disabled" , "t" : "Disabled" , "yes" : "Disabled" , "y" : "Disabled" , "1" : "Disabled" ,
5570
5570
"false" : "Enabled" , "f" : "Enabled" , "no" : "Enabled" , "n" : "Enabled" , "0" : "Enabled" ,
@@ -5667,7 +5667,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
5667
5667
# add ple/pls arguments
5668
5668
args_schema .disable_private_endpoint_network_policies = AAZStrArg (
5669
5669
options = ["--disable-private-endpoint-network-policies" ],
5670
- help = "Disable private endpoint network policies on the subnet." ,
5670
+ help = "Disable private endpoint network policies on the subnet. Please note that it will be replaced by `--private-endpoint-network-policies` soon. " ,
5671
5671
nullable = True ,
5672
5672
enum = {
5673
5673
"true" : "Disabled" , "t" : "Disabled" , "yes" : "Disabled" , "y" : "Disabled" , "1" : "Disabled" ,
@@ -5677,7 +5677,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
5677
5677
)
5678
5678
args_schema .disable_private_link_service_network_policies = AAZStrArg (
5679
5679
options = ["--disable-private-link-service-network-policies" ],
5680
- help = "Disable private link service network policies on the subnet." ,
5680
+ help = "Disable private link service network policies on the subnet. Please note that it will be replaced by `--private-link-service-network-policies` soon. " ,
5681
5681
nullable = True ,
5682
5682
enum = {
5683
5683
"true" : "Disabled" , "t" : "Disabled" , "yes" : "Disabled" , "y" : "Disabled" , "1" : "Disabled" ,
0 commit comments