CosmosDBAccountResource.GetUsagesDatabasesAsync Method
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.
Retrieves the usages (most recent data) for the given database.
- Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/databases/{databaseRid}/usages
- Operation Id: Database_ListUsages
- Default Api Version: 2024-05-15-preview
public virtual Azure.AsyncPageable<Azure.ResourceManager.CosmosDB.Models.CosmosDBBaseUsage> GetUsagesDatabasesAsync (string databaseRid, string filter = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetUsagesDatabasesAsync : string * string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.CosmosDB.Models.CosmosDBBaseUsage>
override this.GetUsagesDatabasesAsync : string * string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.CosmosDB.Models.CosmosDBBaseUsage>
Public Overridable Function GetUsagesDatabasesAsync (databaseRid As String, Optional filter As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of CosmosDBBaseUsage)
Parameters
- databaseRid
- String
Cosmos DB database rid.
- filter
- String
An OData filter expression that describes a subset of usages to return. The supported parameter is name.value (name of the metric, can have an or of multiple names).
- cancellationToken
- CancellationToken
The cancellation token to use.
Returns
An async collection of CosmosDBBaseUsage that may take multiple service requests to iterate over.
Exceptions
databaseRid
is an empty string, and was expected to be non-empty.
databaseRid
is null.
Applies to
Azure SDK for .NET