class Azure::Network::Mgmt::V2016_03_30::Models::ApplicationGatewaySku

SKU of application gateway

Attributes

capacity[RW]

@return [Integer] Gets or sets capacity (instance count) of application gateway

name[RW]

@return [ApplicationGatewaySkuName] Gets or sets name of application gateway SKU. Possible values include: 'Standard_Small', 'Standard_Medium', 'Standard_Large'

tier[RW]

@return [ApplicationGatewayTier] Gets or sets tier of application gateway. Possible values include: 'Standard'

Public Class Methods

mapper() click to toggle source

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

# File lib/2016-03-30/generated/azure_mgmt_network/models/application_gateway_sku.rb, line 32
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ApplicationGatewaySku',
    type: {
      name: 'Composite',
      class_name: 'ApplicationGatewaySku',
      model_properties: {
        name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        tier: {
          client_side_validation: true,
          required: false,
          serialized_name: 'tier',
          type: {
            name: 'String'
          }
        },
        capacity: {
          client_side_validation: true,
          required: false,
          serialized_name: 'capacity',
          type: {
            name: 'Number'
          }
        }
      }
    }
  }
end