Sha256: 63ea66b203757a94e0a9ef6f43835c49c6752a687f482f23fd305e9bec247b8f
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_11_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