Sha256: 4cfe6623dcdde9f0923e63bd38d100a2bb1c181337e5085884662ff16e2a9d6a
Contents?: true
Size: 1.77 KB
Versions: 23
Compression:
Stored size: 1.77 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::V2018_12_01 module Models # # Application Gateway autoscale configuration. # class ApplicationGatewayAutoscaleConfiguration include MsRestAzure # @return [Integer] Lower bound on number of Application Gateway capacity attr_accessor :min_capacity # @return [Integer] Upper bound on number of Application Gateway capacity attr_accessor :max_capacity # # Mapper for ApplicationGatewayAutoscaleConfiguration class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ApplicationGatewayAutoscaleConfiguration', type: { name: 'Composite', class_name: 'ApplicationGatewayAutoscaleConfiguration', model_properties: { min_capacity: { client_side_validation: true, required: true, serialized_name: 'minCapacity', constraints: { InclusiveMinimum: 0 }, type: { name: 'Number' } }, max_capacity: { client_side_validation: true, required: false, serialized_name: 'maxCapacity', constraints: { InclusiveMinimum: 2 }, type: { name: 'Number' } } } } } end end end end
Version data entries
23 entries across 23 versions & 2 rubygems