class Azure::Network::Mgmt::V2015_05_01_preview::Models::ApplicationGatewayBackendHttpSettings

Backend address pool settings of application gateway

Attributes

etag[RW]

@return [String] A unique read-only string that changes whenever the resource is updated

name[RW]

@return [String] Gets name of the resource that is unique within a resource group. This name can be used to access the resource

port[RW]

@return [Integer] Gets or sets the port

protocol[RW]

@return [ApplicationGatewayProtocol] Gets or sets the protocol. Possible values include: 'Http', 'Https'

provisioning_state[RW]

@return [String] Gets or sets Provisioning state of the backend http settings resource Updating/Deleting/Failed

Public Class Methods

mapper() click to toggle source

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

# File lib/2015-05-01-preview/generated/azure_mgmt_network/models/application_gateway_backend_http_settings.rb, line 42
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ApplicationGatewayBackendHttpSettings',
    type: {
      name: 'Composite',
      class_name: 'ApplicationGatewayBackendHttpSettings',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        port: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.port',
          type: {
            name: 'Number'
          }
        },
        protocol: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.protocol',
          type: {
            name: 'String'
          }
        },
        cookie_based_affinity: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.cookieBasedAffinity',
          type: {
            name: 'String'
          }
        },
        provisioning_state: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.provisioningState',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        etag: {
          client_side_validation: true,
          required: false,
          serialized_name: 'etag',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end