ThroughputProperties Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
[System.Text.Json.Serialization.JsonConverter(typeof(Azure.Cosmos.TextJsonThroughputPropertiesConverter))]
public class ThroughputProperties
[<System.Text.Json.Serialization.JsonConverter(typeof(Azure.Cosmos.TextJsonThroughputPropertiesConverter))>]
type ThroughputProperties = class
Public Class ThroughputProperties
- Inheritance
-
ThroughputProperties
- Attributes
Examples
The example below fetch the ThroughputProperties on testContainer.
ThroughputProperties throughputProperties = await testContainer.ReadThroughputAsync().Value;
Remarks
It contains provisioned container throughput in measurement of request units per second in the Azure Cosmos service. Refer to http://azure.microsoft.com/documentation/articles/documentdb-performance-levels/ for details on provision offer throughput.
Constructors
ThroughputProperties() |
Properties
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. |
Throughput |
Gets the provisioned throughput for a resource in measurement of request units per second in the Azure Cosmos service. |
Applies to
Azure SDK for .NET