class Azure::HealthcareApis::Mgmt::V2020_03_30::Models::ServiceCosmosDbConfigurationInfo

The settings for the Cosmos DB database backing the service.

Attributes

key_vault_key_uri[RW]

@return [String] The URI of the customer-managed key for the backing database.

offer_throughput[RW]

@return [Integer] The provisioned throughput for the backing database.

Private Class Methods

mapper() click to toggle source

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

# File lib/2020-03-30/generated/azure_mgmt_healthcare_apis/models/service_cosmos_db_configuration_info.rb, line 27
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ServiceCosmosDbConfigurationInfo',
    type: {
      name: 'Composite',
      class_name: 'ServiceCosmosDbConfigurationInfo',
      model_properties: {
        offer_throughput: {
          client_side_validation: true,
          required: false,
          serialized_name: 'offerThroughput',
          constraints: {
            InclusiveMaximum: 10000,
            InclusiveMinimum: 400
          },
          type: {
            name: 'Number'
          }
        },
        key_vault_key_uri: {
          client_side_validation: true,
          required: false,
          serialized_name: 'keyVaultKeyUri',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end