class Azure::Network::Mgmt::V2019_06_01::Models::ApplicationGatewayHeaderConfiguration

Header configuration of the Actions set in Application Gateway.

Attributes

header_name[RW]

@return [String] Header name of the header configuration.

header_value[RW]

@return [String] Header value of the header configuration.

Private Class Methods

mapper() click to toggle source

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

# File lib/2019-06-01/generated/azure_mgmt_network/models/application_gateway_header_configuration.rb, line 25
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ApplicationGatewayHeaderConfiguration',
    type: {
      name: 'Composite',
      class_name: 'ApplicationGatewayHeaderConfiguration',
      model_properties: {
        header_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'headerName',
          type: {
            name: 'String'
          }
        },
        header_value: {
          client_side_validation: true,
          required: false,
          serialized_name: 'headerValue',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end