class Azure::Cosmosdb::Mgmt::V2019_12_12::Models::ThroughputSettingsResource
Cosmos DB resource throughput object. Either throughput is required or provisionedThroughputSettings is required, but not both.
Attributes
minimum_throughput[RW]
@return [String] The minimum throughput of the resource
offer_replace_pending[RW]
@return [String] The throughput replace is pending
provisioned_throughput_settings[RW]
@return [ProvisionedThroughputSettingsResource] Cosmos DB resource for provisioned throughput settings. Either throughput is required or provisionedThroughputSettings is required, but not both.
throughput[RW]
@return [Integer] Value of the Cosmos DB resource throughput. Either throughput is required or provisionedThroughputSettings is required, but not both.
Public Class Methods
mapper()
click to toggle source
Mapper for ThroughputSettingsResource
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2019-12-12/generated/azure_mgmt_cosmosdb/models/throughput_settings_resource.rb, line 37 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ThroughputSettingsResource', type: { name: 'Composite', class_name: 'ThroughputSettingsResource', model_properties: { throughput: { client_side_validation: true, required: false, serialized_name: 'throughput', type: { name: 'Number' } }, provisioned_throughput_settings: { client_side_validation: true, required: false, serialized_name: 'provisionedThroughputSettings', type: { name: 'Composite', class_name: 'ProvisionedThroughputSettingsResource' } }, 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' } } } } } end