Class: Azure::Network::Mgmt::V2016_09_01::Models::ApplicationGatewaySslPolicy

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2016-09-01/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

#disabled_ssl_protocolsArray<ApplicationGatewaySslProtocol>

disabled on application gateway. Possible values are: ‘TLSv1_0’, ‘TLSv1_1’, and ‘TLSv1_2’.

Returns:



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

def disabled_ssl_protocols
  @disabled_ssl_protocols
end

Class Method Details

.mapperObject

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



25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# File 'lib/2016-09-01/generated/azure_mgmt_network/models/application_gateway_ssl_policy.rb', line 25

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'
                }
            }
          }
        }
      }
    }
  }
end