Sha256: 1c13e0ebace611d60fab5b9553991c4e88154d26c74db85f2afc972db8f9d479
Contents?: true
Size: 1.92 KB
Versions: 34
Compression:
Stored size: 1.92 KB
Contents
# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::Network::Mgmt::V2016_06_01 module Models # # SKU of application gateway # class ApplicationGatewaySku include MsRestAzure # @return [ApplicationGatewaySkuName] Name of application gateway SKU. # Possible values include: 'Standard_Small', 'Standard_Medium', # 'Standard_Large' attr_accessor :name # @return [ApplicationGatewayTier] Tier of application gateway. Possible # values include: 'Standard' attr_accessor :tier # @return [Integer] Capacity (instance count) of application gateway attr_accessor :capacity # # Mapper for ApplicationGatewaySku class as Ruby Hash. # This will be used for serialization/deserialization. # 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 end end end
Version data entries
34 entries across 34 versions & 2 rubygems