@@ -23,13 +23,13 @@ public class AzureApplicationGatewaySslPolicyBase : NetworkBaseCmdlet
23
23
{
24
24
[ Parameter (
25
25
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 ) ]
27
27
[ ValidateNotNullOrEmpty ]
28
28
public string [ ] DisabledSslProtocols { get ; set ; }
29
29
30
30
[ Parameter (
31
31
HelpMessage = "Type of Ssl Policy" ) ]
32
- [ ValidateSet ( "Predefined" , "Custom" , IgnoreCase = true ) ]
32
+ [ ValidateSet ( "Predefined" , "Custom" , "CustomV2" , IgnoreCase = true ) ]
33
33
public string PolicyType { get ; set ; }
34
34
35
35
[ Parameter (
@@ -38,12 +38,11 @@ public class AzureApplicationGatewaySslPolicyBase : NetworkBaseCmdlet
38
38
39
39
[ Parameter (
40
40
HelpMessage = "Ssl cipher suites to be enabled in the specified order to application gateway" ) ]
41
- [ ValidateNotNullOrEmpty ]
42
41
public string [ ] CipherSuite { get ; set ; }
43
42
44
43
[ Parameter (
45
44
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 ) ]
47
46
public string MinProtocolVersion { get ; set ; }
48
47
49
48
public override void ExecuteCmdlet ( )
0 commit comments