class Azure::Network::Mgmt::V2019_04_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.

Public Class Methods

mapper() click to toggle source

Mapper for ExpressRouteGatewayPropertiesAutoScaleConfigurationBounds class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2019-04-01/generated/azure_mgmt_network/models/express_route_gateway_properties_auto_scale_configuration_bounds.rb, line 28
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