class Azure::Network::Mgmt::V2018_02_01::Models::ApplicationGatewaySslPredefinedPolicy

An Ssl predefined policy

Attributes

cipher_suites[RW]

@return [Array<ApplicationGatewaySslCipherSuite>] Ssl cipher suites to be enabled in the specified order for application gateway.

min_protocol_version[RW]

@return [ApplicationGatewaySslProtocol] Minimum version of Ssl protocol to be supported on application gateway. Possible values include: 'TLSv1_0', 'TLSv1_1', 'TLSv1_2'

name[RW]

@return [String] Name of Ssl predefined policy.

Public Class Methods

mapper() click to toggle source

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

# File lib/2018-02-01/generated/azure_mgmt_network/models/application_gateway_ssl_predefined_policy.rb, line 31
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ApplicationGatewaySslPredefinedPolicy',
    type: {
      name: 'Composite',
      class_name: 'ApplicationGatewaySslPredefinedPolicy',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        cipher_suites: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.cipherSuites',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'ApplicationGatewaySslCipherSuiteElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        min_protocol_version: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.minProtocolVersion',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end