class Azure::Cosmosdb::Mgmt::V2021_01_15::Models::ThroughputSettingsGetPropertiesResource

Model object.

Attributes

_etag[RW]

@return [String] A system generated property representing the resource etag required for optimistic concurrency control.

_rid[RW]

@return [String] A system generated property. A unique identifier.

_ts[RW]

@return [Float] A system generated property that denotes the last updated timestamp of the resource.

autoscale_settings[RW]

@return [AutoscaleSettingsResource] Cosmos DB resource for autoscale settings. Either throughput is required or autoscaleSettings is required, but not both.

minimum_throughput[RW]

@return [String] The minimum throughput of the resource

offer_replace_pending[RW]

@return [String] The throughput replace is pending

throughput[RW]

@return [Integer] Value of the Cosmos DB resource throughput. Either throughput is required or autoscaleSettings is required, but not both.

Private Class Methods

mapper() click to toggle source

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

# File lib/2021-01-15/generated/azure_mgmt_cosmosdb/models/throughput_settings_get_properties_resource.rb, line 47
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ThroughputSettingsGetProperties_resource',
    type: {
      name: 'Composite',
      class_name: 'ThroughputSettingsGetPropertiesResource',
      model_properties: {
        throughput: {
          client_side_validation: true,
          required: false,
          serialized_name: 'throughput',
          type: {
            name: 'Number'
          }
        },
        autoscale_settings: {
          client_side_validation: true,
          required: false,
          serialized_name: 'autoscaleSettings',
          type: {
            name: 'Composite',
            class_name: 'AutoscaleSettingsResource'
          }
        },
        minimum_throughput: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'minimumThroughput',
          type: {
            name: 'String'
          }
        },
        offer_replace_pending: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'offerReplacePending',
          type: {
            name: 'String'
          }
        },
        _rid: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: '_rid',
          type: {
            name: 'String'
          }
        },
        _ts: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: '_ts',
          type: {
            name: 'Double'
          }
        },
        _etag: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: '_etag',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end