class Azure::Network::Mgmt::V2016_12_01::Models::ApplicationGatewaySku
SKU of an application gateway
Attributes
capacity[RW]
@return [Integer] Capacity (instance count) of an application gateway.
name[RW]
@return [ApplicationGatewaySkuName] Name of an application gateway SKU. Possible values are: 'Standard_Small', 'Standard_Medium', 'Standard_Large', 'WAF_Medium', and 'WAF_Large'. Possible values include: 'Standard_Small', 'Standard_Medium', 'Standard_Large', 'WAF_Medium', 'WAF_Large'
tier[RW]
@return [ApplicationGatewayTier] Tier of an application gateway. Possible values are: 'Standard' and 'WAF'. Possible values include: 'Standard', 'WAF'
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-12-01/generated/azure_mgmt_network/models/application_gateway_sku.rb, line 34 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