ThroughputProperties Class

Definition

Represents a throughput of the resources in the Azure Cosmos DB service. It is the standard pricing for the resource in the Azure Cosmos DB service.

public class ThroughputProperties
type ThroughputProperties = class
Public Class ThroughputProperties
Inheritance
ThroughputProperties

Examples

The example below fetch the ThroughputProperties on testContainer.

ThroughputProperties throughputProperties = await testContainer.ReadThroughputAsync().Resource;

Remarks

It contains provisioned container throughput in measurement of request units per second in the Azure Cosmos service.

Properties

AutoscaleMaxThroughput

The maximum throughput the autoscale will scale to.

ETag

Gets the entity tag associated with the resource from the Azure Cosmos DB service.

LastModified

Gets the last modified time stamp associated with DatabaseProperties from the Azure Cosmos DB service.

SelfLink

Gets the self-link associated with the resource from the Azure Cosmos DB service.

Throughput

Gets the provisioned throughput for a resource in measurement of request units per second in the Azure Cosmos service.

Methods

CreateAutoscaleThroughput(Int32)

The Throughput properties for autoscale provisioned throughput offering

CreateManualThroughput(Int32)

The Throughput properties for manual provisioned throughput offering

Applies to