Class: Azure::ARM::Network::Models::ApplicationGatewaySku
- Inherits:
-
Object
- Object
- Azure::ARM::Network::Models::ApplicationGatewaySku
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_network/models/application_gateway_sku.rb
Overview
SKU of an application gateway
Instance Attribute Summary collapse
-
#capacity ⇒ Integer
Capacity (instance count) of an application gateway.
-
#name ⇒ ApplicationGatewaySkuName
Possible values include: ‘Standard_Small’, ‘Standard_Medium’, ‘Standard_Large’, ‘WAF_Medium’, ‘WAF_Large’.
-
#tier ⇒ ApplicationGatewayTier
Possible values include: ‘Standard’, ‘WAF’.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ApplicationGatewaySku class as Ruby Hash.
Instance Attribute Details
#capacity ⇒ Integer
Returns Capacity (instance count) of an application gateway.
26 27 28 |
# File 'lib/generated/azure_mgmt_network/models/application_gateway_sku.rb', line 26 def capacity @capacity end |
#name ⇒ ApplicationGatewaySkuName
Possible values include: ‘Standard_Small’, ‘Standard_Medium’, ‘Standard_Large’, ‘WAF_Medium’, ‘WAF_Large’
19 20 21 |
# File 'lib/generated/azure_mgmt_network/models/application_gateway_sku.rb', line 19 def name @name end |
#tier ⇒ ApplicationGatewayTier
Possible values include: ‘Standard’, ‘WAF’
23 24 25 |
# File 'lib/generated/azure_mgmt_network/models/application_gateway_sku.rb', line 23 def tier @tier end |
Class Method Details
.mapper ⇒ Object
Mapper for ApplicationGatewaySku class as Ruby Hash. This will be used for serialization/deserialization.
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
# File 'lib/generated/azure_mgmt_network/models/application_gateway_sku.rb', line 33 def self.mapper() { required: false, serialized_name: 'ApplicationGatewaySku', type: { name: 'Composite', class_name: 'ApplicationGatewaySku', model_properties: { name: { required: false, serialized_name: 'name', type: { name: 'String' } }, tier: { required: false, serialized_name: 'tier', type: { name: 'String' } }, capacity: { required: false, serialized_name: 'capacity', type: { name: 'Number' } } } } } end |