class Azure::Network::Mgmt::V2018_04_01::Models::ApplicationGatewayAutoscaleBounds
Application Gateway autoscale bounds on number of Application Gateway instance.
Attributes
max[RW]
@return [Integer] Upper bound on number of Application Gateway instances.
min[RW]
@return [Integer] Lower bound on number of Application Gateway instances.
Public Class Methods
mapper()
click to toggle source
Mapper for ApplicationGatewayAutoscaleBounds class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2018-04-01/generated/azure_mgmt_network/models/application_gateway_autoscale_bounds.rb, line 28 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ApplicationGatewayAutoscaleBounds', type: { name: 'Composite', class_name: 'ApplicationGatewayAutoscaleBounds', model_properties: { min: { client_side_validation: true, required: true, serialized_name: 'min', type: { name: 'Number' } }, max: { client_side_validation: true, required: true, serialized_name: 'max', type: { name: 'Number' } } } } } end