Class: Azure::Network::Mgmt::V2020_08_01::Models::ApplicationGatewayAvailableSslOptions

Inherits:
Resource
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2020-08-01/generated/azure_mgmt_network/models/application_gateway_available_ssl_options.rb

Overview

Response for ApplicationGatewayAvailableSslOptions API service call.

Instance Attribute Summary collapse

Attributes inherited from Resource

#id, #location, #name, #tags, #type

Class Method Summary collapse

Methods inherited from Resource

#resource_group

Instance Attribute Details

#available_cipher_suitesArray<ApplicationGatewaySslCipherSuite>

cipher suites.

Returns:



26
27
28
# File 'lib/2020-08-01/generated/azure_mgmt_network/models/application_gateway_available_ssl_options.rb', line 26

def available_cipher_suites
  @available_cipher_suites
end

#available_protocolsArray<ApplicationGatewaySslProtocol>

protocols.

Returns:



30
31
32
# File 'lib/2020-08-01/generated/azure_mgmt_network/models/application_gateway_available_ssl_options.rb', line 30

def available_protocols
  @available_protocols
end

#default_policyApplicationGatewaySslPolicyName

policy applied by default to application gateway. Possible values include: ‘AppGwSslPolicy20150501’, ‘AppGwSslPolicy20170401’, ‘AppGwSslPolicy20170401S’

Returns:



22
23
24
# File 'lib/2020-08-01/generated/azure_mgmt_network/models/application_gateway_available_ssl_options.rb', line 22

def default_policy
  @default_policy
end

#predefined_policiesArray<SubResource>

Returns List of available Ssl predefined policy.

Returns:

  • (Array<SubResource>)

    List of available Ssl predefined policy.



16
17
18
# File 'lib/2020-08-01/generated/azure_mgmt_network/models/application_gateway_available_ssl_options.rb', line 16

def predefined_policies
  @predefined_policies
end

Class Method Details

.mapperObject

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



37
38
39
40
41
42
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
# File 'lib/2020-08-01/generated/azure_mgmt_network/models/application_gateway_available_ssl_options.rb', line 37

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ApplicationGatewayAvailableSslOptions',
    type: {
      name: 'Composite',
      class_name: 'ApplicationGatewayAvailableSslOptions',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        type: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        location: {
          client_side_validation: true,
          required: false,
          serialized_name: 'location',
          type: {
            name: 'String'
          }
        },
        tags: {
          client_side_validation: true,
          required: false,
          serialized_name: 'tags',
          type: {
            name: 'Dictionary',
            value: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        predefined_policies: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.predefinedPolicies',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'SubResourceElementType',
                type: {
                  name: 'Composite',
                  class_name: 'SubResource'
                }
            }
          }
        },
        default_policy: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.defaultPolicy',
          type: {
            name: 'String'
          }
        },
        available_cipher_suites: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.availableCipherSuites',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'ApplicationGatewaySslCipherSuiteElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        available_protocols: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.availableProtocols',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'ApplicationGatewaySslProtocolElementType',
                type: {
                  name: 'String'
                }
            }
          }
        }
      }
    }
  }
end