CosmosDBTableCollection Class

Definition

A class representing a collection of CosmosDBTableResource and their operations. Each CosmosDBTableResource in the collection will belong to the same instance of CosmosDBAccountResource. To get a CosmosDBTableCollection instance call the GetCosmosDBTables method from an instance of CosmosDBAccountResource.

public class CosmosDBTableCollection : Azure.ResourceManager.ArmCollection, System.Collections.Generic.IAsyncEnumerable<Azure.ResourceManager.CosmosDB.CosmosDBTableResource>, System.Collections.Generic.IEnumerable<Azure.ResourceManager.CosmosDB.CosmosDBTableResource>
type CosmosDBTableCollection = class
    inherit ArmCollection
    interface seq<CosmosDBTableResource>
    interface IEnumerable
    interface IAsyncEnumerable<CosmosDBTableResource>
Public Class CosmosDBTableCollection
Inherits ArmCollection
Implements IAsyncEnumerable(Of CosmosDBTableResource), IEnumerable(Of CosmosDBTableResource)
Inheritance
CosmosDBTableCollection
Implements

Constructors

CosmosDBTableCollection()

Initializes a new instance of the CosmosDBTableCollection class for mocking.

Properties

Client

Gets the ArmClient this resource client was created from.

(Inherited from ArmCollection)
Diagnostics

Gets the diagnostic options for this resource client.

(Inherited from ArmCollection)
Endpoint

Gets the base uri for this resource client.

(Inherited from ArmCollection)
Id

Gets the resource identifier.

(Inherited from ArmCollection)
Pipeline

Gets the pipeline for this resource client.

(Inherited from ArmCollection)

Methods

CreateOrUpdate(WaitUntil, String, CosmosDBTableCreateOrUpdateContent, CancellationToken)

Create or update an Azure Cosmos DB Table

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/tables/{tableName}
  • Operation Id: TableResources_CreateUpdateTable
  • Default Api Version: 2024-02-15-preview
  • Resource: CosmosDBTableResource
CreateOrUpdateAsync(WaitUntil, String, CosmosDBTableCreateOrUpdateContent, CancellationToken)

Create or update an Azure Cosmos DB Table

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/tables/{tableName}
  • Operation Id: TableResources_CreateUpdateTable
  • Default Api Version: 2024-02-15-preview
  • Resource: CosmosDBTableResource
Exists(String, CancellationToken)

Checks to see if the resource exists in azure.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/tables/{tableName}
  • Operation Id: TableResources_GetTable
  • Default Api Version: 2024-02-15-preview
  • Resource: CosmosDBTableResource
ExistsAsync(String, CancellationToken)

Checks to see if the resource exists in azure.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/tables/{tableName}
  • Operation Id: TableResources_GetTable
  • Default Api Version: 2024-02-15-preview
  • Resource: CosmosDBTableResource
Get(String, CancellationToken)

Gets the Tables under an existing Azure Cosmos DB database account with the provided name.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/tables/{tableName}
  • Operation Id: TableResources_GetTable
  • Default Api Version: 2024-02-15-preview
  • Resource: CosmosDBTableResource
GetAll(CancellationToken)

Lists the Tables under an existing Azure Cosmos DB database account.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/tables
  • Operation Id: TableResources_ListTables
  • Default Api Version: 2024-02-15-preview
  • Resource: CosmosDBTableResource
GetAllAsync(CancellationToken)

Lists the Tables under an existing Azure Cosmos DB database account.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/tables
  • Operation Id: TableResources_ListTables
  • Default Api Version: 2024-02-15-preview
  • Resource: CosmosDBTableResource
GetAsync(String, CancellationToken)

Gets the Tables under an existing Azure Cosmos DB database account with the provided name.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/tables/{tableName}
  • Operation Id: TableResources_GetTable
  • Default Api Version: 2024-02-15-preview
  • Resource: CosmosDBTableResource
GetIfExists(String, CancellationToken)

Tries to get details for this resource from the service.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/tables/{tableName}
  • Operation Id: TableResources_GetTable
  • Default Api Version: 2024-02-15-preview
  • Resource: CosmosDBTableResource
GetIfExistsAsync(String, CancellationToken)

Tries to get details for this resource from the service.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/tables/{tableName}
  • Operation Id: TableResources_GetTable
  • Default Api Version: 2024-02-15-preview
  • Resource: CosmosDBTableResource
TryGetApiVersion(ResourceType, String)

Gets the api version override if it has been set for the current client options.

(Inherited from ArmCollection)

Explicit Interface Implementations

IAsyncEnumerable<CosmosDBTableResource>.GetAsyncEnumerator(CancellationToken)

Returns an enumerator that iterates asynchronously through the collection.

IEnumerable.GetEnumerator()

Returns an enumerator that iterates through a collection.

IEnumerable<CosmosDBTableResource>.GetEnumerator()

Returns an enumerator that iterates through the collection.

Applies to