class Azure::Network::Mgmt::V2019_02_01::Models::ApplicationGatewayAvailableSslOptions

Response for ApplicationGatewayAvailableSslOptions API service call.

Attributes

available_cipher_suites[RW]

@return [Array<ApplicationGatewaySslCipherSuite>] List of available Ssl cipher suites.

available_protocols[RW]

@return [Array<ApplicationGatewaySslProtocol>] List of available Ssl protocols.

default_policy[RW]

@return [ApplicationGatewaySslPolicyName] Name of the Ssl predefined policy applied by default to application gateway. Possible values include: 'AppGwSslPolicy20150501', 'AppGwSslPolicy20170401', 'AppGwSslPolicy20170401S'

predefined_policies[RW]

@return [Array<SubResource>] List of available Ssl predefined policy.

Public Class Methods

mapper() click to toggle source

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

# File lib/2019-02-01/generated/azure_mgmt_network/models/application_gateway_available_ssl_options.rb, line 36
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