@@ -23,13 +23,13 @@ public class AzureApplicationGatewaySslPolicyBase : NetworkBaseCmdlet
2323 {
2424 [ Parameter (
2525 HelpMessage = "List of SSL protocols to be disabled" ) ]
26- [ ValidateSet ( "TLSv1_0" , "TLSv1_1" , "TLSv1_2" , IgnoreCase = true ) ]
26+ [ ValidateSet ( "TLSv1_0" , "TLSv1_1" , "TLSv1_2" , "TLSv1_3" , IgnoreCase = true ) ]
2727 [ ValidateNotNullOrEmpty ]
2828 public string [ ] DisabledSslProtocols { get ; set ; }
2929
3030 [ Parameter (
3131 HelpMessage = "Type of Ssl Policy" ) ]
32- [ ValidateSet ( "Predefined" , "Custom" , IgnoreCase = true ) ]
32+ [ ValidateSet ( "Predefined" , "Custom" , "CustomV2" , IgnoreCase = true ) ]
3333 public string PolicyType { get ; set ; }
3434
3535 [ Parameter (
@@ -38,12 +38,11 @@ public class AzureApplicationGatewaySslPolicyBase : NetworkBaseCmdlet
3838
3939 [ Parameter (
4040 HelpMessage = "Ssl cipher suites to be enabled in the specified order to application gateway" ) ]
41- [ ValidateNotNullOrEmpty ]
4241 public string [ ] CipherSuite { get ; set ; }
4342
4443 [ Parameter (
4544 HelpMessage = "Minimum version of Ssl protocol to be supported on application gateway" ) ]
46- [ ValidateSet ( "TLSv1_0" , "TLSv1_1" , "TLSv1_2" , IgnoreCase = true ) ]
45+ [ ValidateSet ( "TLSv1_0" , "TLSv1_1" , "TLSv1_2" , "TLSv1_3" , IgnoreCase = true ) ]
4746 public string MinProtocolVersion { get ; set ; }
4847
4948 public override void ExecuteCmdlet ( )
0 commit comments