Class: Azure::ARM::Network::Models::ApplicationGatewaySslPolicy

Inherits:
Object
  • Object
show all
Includes:
MsRest::JSONable, MsRestAzure
Defined in:
lib/generated/azure_mgmt_network/models/application_gateway_ssl_policy.rb

Overview

Application Gateway Ssl policy.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#cipher_suitesArray<ApplicationGatewaySslCipherSuite>

be enabled in the specified order to application gateway.

Returns:



31
32
33
# File 'lib/generated/azure_mgmt_network/models/application_gateway_ssl_policy.rb', line 31

def cipher_suites
  @cipher_suites
end

#disabled_ssl_protocolsArray<ApplicationGatewaySslProtocol>

disabled on application gateway.

Returns:



18
19
20
# File 'lib/generated/azure_mgmt_network/models/application_gateway_ssl_policy.rb', line 18

def disabled_ssl_protocols
  @disabled_ssl_protocols
end

#min_protocol_versionApplicationGatewaySslProtocol

to be supported on application gateway. Possible values include: ‘TLSv1_0’, ‘TLSv1_1’, ‘TLSv1_2’

Returns:



36
37
38
# File 'lib/generated/azure_mgmt_network/models/application_gateway_ssl_policy.rb', line 36

def min_protocol_version
  @min_protocol_version
end

#policy_nameApplicationGatewaySslPolicyName

policy. Possible values include: ‘AppGwSslPolicy20150501’, ‘AppGwSslPolicy20170401’, ‘AppGwSslPolicy20170401S’

Returns:



27
28
29
# File 'lib/generated/azure_mgmt_network/models/application_gateway_ssl_policy.rb', line 27

def policy_name
  @policy_name
end

#policy_typeApplicationGatewaySslPolicyType

values include: ‘Predefined’, ‘Custom’

Returns:



22
23
24
# File 'lib/generated/azure_mgmt_network/models/application_gateway_ssl_policy.rb', line 22

def policy_type
  @policy_type
end

Class Method Details

.mapperObject

Mapper for ApplicationGatewaySslPolicy class as Ruby Hash. This will be used for serialization/deserialization.



43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# File 'lib/generated/azure_mgmt_network/models/application_gateway_ssl_policy.rb', line 43

def self.mapper()
  {
    required: false,
    serialized_name: 'ApplicationGatewaySslPolicy',
    type: {
      name: 'Composite',
      class_name: 'ApplicationGatewaySslPolicy',
      model_properties: {
        disabled_ssl_protocols: {
          required: false,
          serialized_name: 'disabledSslProtocols',
          type: {
            name: 'Sequence',
            element: {
                required: false,
                serialized_name: 'ApplicationGatewaySslProtocolElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        policy_type: {
          required: false,
          serialized_name: 'policyType',
          type: {
            name: 'String'
          }
        },
        policy_name: {
          required: false,
          serialized_name: 'policyName',
          type: {
            name: 'String'
          }
        },
        cipher_suites: {
          required: false,
          serialized_name: 'cipherSuites',
          type: {
            name: 'Sequence',
            element: {
                required: false,
                serialized_name: 'ApplicationGatewaySslCipherSuiteElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        min_protocol_version: {
          required: false,
          serialized_name: 'minProtocolVersion',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end