# 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_12_01 module Models # # VirtualNetworkGatewaySku details # class VirtualNetworkGatewaySku include MsRestAzure # @return [VirtualNetworkGatewaySkuName] Gateway SKU name. Possible # values are: 'Basic', 'HighPerformance','Standard', and # 'UltraPerformance'. Possible values include: 'Basic', # 'HighPerformance', 'Standard', 'UltraPerformance' attr_accessor :name # @return [VirtualNetworkGatewaySkuTier] Gateway SKU tier. Possible # values are: 'Basic', 'HighPerformance','Standard', and # 'UltraPerformance'. Possible values include: 'Basic', # 'HighPerformance', 'Standard', 'UltraPerformance' attr_accessor :tier # @return [Integer] The capacity. attr_accessor :capacity # # Mapper for VirtualNetworkGatewaySku class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'VirtualNetworkGatewaySku', type: { name: 'Composite', class_name: 'VirtualNetworkGatewaySku', 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