class Azure::Network::Mgmt::V2015_05_01_preview::Models::ApplicationGatewayRequestRoutingRule

Request routing rule of application gateway

Attributes

backend_address_pool[RW]

@return [SubResource] Gets or sets backend address pool resource of application gateway

backend_http_settings[RW]

@return [SubResource] Gets or sets frontend port resource of application gateway

etag[RW]

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

http_listener[RW]

@return [SubResource] Gets or sets http listener resource of application gateway

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

provisioning_state[RW]

@return [String] Gets or sets Provisioning state of the request routing rule resource Updating/Deleting/Failed

rule_type[RW]

@return [ApplicationGatewayRequestRoutingRuleType] Gets or sets the rule type. Possible values include: 'Basic'

Public Class Methods

mapper() click to toggle source

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

# File lib/2015-05-01-preview/generated/azure_mgmt_network/models/application_gateway_request_routing_rule.rb, line 48
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ApplicationGatewayRequestRoutingRule',
    type: {
      name: 'Composite',
      class_name: 'ApplicationGatewayRequestRoutingRule',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        rule_type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.ruleType',
          type: {
            name: 'String'
          }
        },
        backend_address_pool: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.backendAddressPool',
          type: {
            name: 'Composite',
            class_name: 'SubResource'
          }
        },
        backend_http_settings: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.backendHttpSettings',
          type: {
            name: 'Composite',
            class_name: 'SubResource'
          }
        },
        http_listener: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.httpListener',
          type: {
            name: 'Composite',
            class_name: 'SubResource'
          }
        },
        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