class Azure::Network::Mgmt::V2020_08_01::Models::ExpressRouteGatewayPropertiesAutoScaleConfigurationBounds
Minimum and maximum number of scale units to deploy.
Attributes
max[RW]
@return [Integer] Maximum number of scale units deployed for ExpressRoute gateway.
min[RW]
@return [Integer] Minimum number of scale units deployed for ExpressRoute gateway.
Private Class Methods
mapper()
click to toggle source
Mapper for ExpressRouteGatewayPropertiesAutoScaleConfigurationBounds
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2020-08-01/generated/azure_mgmt_network/models/express_route_gateway_properties_auto_scale_configuration_bounds.rb, line 29 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ExpressRouteGatewayProperties_autoScaleConfiguration_bounds', type: { name: 'Composite', class_name: 'ExpressRouteGatewayPropertiesAutoScaleConfigurationBounds', model_properties: { min: { client_side_validation: true, required: false, serialized_name: 'min', type: { name: 'Number' } }, max: { client_side_validation: true, required: false, serialized_name: 'max', type: { name: 'Number' } } } } } end