class Azure::Network::Mgmt::V2015_05_01_preview::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/2015-05-01-preview/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