Class: Azure::Network::Mgmt::V2016_06_01::Models::ApplicationGatewaySku

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2016-06-01/generated/azure_mgmt_network/models/application_gateway_sku.rb

Overview

SKU of application gateway

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#capacityInteger

Returns Capacity (instance count) of application gateway.

Returns:

  • (Integer)

    Capacity (instance count) of application gateway



25
26
27
# File 'lib/2016-06-01/generated/azure_mgmt_network/models/application_gateway_sku.rb', line 25

def capacity
  @capacity
end

#nameApplicationGatewaySkuName

Possible values include: ‘Standard_Small’, ‘Standard_Medium’, ‘Standard_Large’

Returns:



18
19
20
# File 'lib/2016-06-01/generated/azure_mgmt_network/models/application_gateway_sku.rb', line 18

def name
  @name
end

#tierApplicationGatewayTier

values include: ‘Standard’

Returns:



22
23
24
# File 'lib/2016-06-01/generated/azure_mgmt_network/models/application_gateway_sku.rb', line 22

def tier
  @tier
end

Class Method Details

.mapperObject

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



32
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
# File 'lib/2016-06-01/generated/azure_mgmt_network/models/application_gateway_sku.rb', line 32

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