TableCollection Class

Definition

A class representing a collection of TableResource and their operations. Each TableResource in the collection will belong to the same instance of TableServiceResource. To get a TableCollection instance call the GetTables method from an instance of TableServiceResource.

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

Constructors

TableCollection()

Initializes a new instance of the TableCollection 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, TableData, CancellationToken)

Creates a new table with the specified table name, under the specified account.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/tableServices/default/tables/{tableName}
  • Operation Id: Table_Create
  • Default Api Version: 2022-09-01
  • Resource: TableResource
CreateOrUpdateAsync(WaitUntil, String, TableData, CancellationToken)

Creates a new table with the specified table name, under the specified account.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/tableServices/default/tables/{tableName}
  • Operation Id: Table_Create
  • Default Api Version: 2022-09-01
  • Resource: TableResource
Exists(String, CancellationToken)

Checks to see if the resource exists in azure.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/tableServices/default/tables/{tableName}
  • Operation Id: Table_Get
  • Default Api Version: 2022-09-01
  • Resource: TableResource
ExistsAsync(String, CancellationToken)

Checks to see if the resource exists in azure.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/tableServices/default/tables/{tableName}
  • Operation Id: Table_Get
  • Default Api Version: 2022-09-01
  • Resource: TableResource
Get(String, CancellationToken)

Gets the table with the specified table name, under the specified account if it exists.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/tableServices/default/tables/{tableName}
  • Operation Id: Table_Get
  • Default Api Version: 2022-09-01
  • Resource: TableResource
GetAll(CancellationToken)

Gets a list of all the tables under the specified storage account

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/tableServices/default/tables
  • Operation Id: Table_List
  • Default Api Version: 2022-09-01
  • Resource: TableResource
GetAllAsync(CancellationToken)

Gets a list of all the tables under the specified storage account

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/tableServices/default/tables
  • Operation Id: Table_List
  • Default Api Version: 2022-09-01
  • Resource: TableResource
GetAsync(String, CancellationToken)

Gets the table with the specified table name, under the specified account if it exists.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/tableServices/default/tables/{tableName}
  • Operation Id: Table_Get
  • Default Api Version: 2022-09-01
  • Resource: TableResource
GetIfExists(String, CancellationToken)

Tries to get details for this resource from the service.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/tableServices/default/tables/{tableName}
  • Operation Id: Table_Get
  • Default Api Version: 2022-09-01
  • Resource: TableResource
GetIfExistsAsync(String, CancellationToken)

Tries to get details for this resource from the service.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/tableServices/default/tables/{tableName}
  • Operation Id: Table_Get
  • Default Api Version: 2022-09-01
  • Resource: TableResource
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<TableResource>.GetAsyncEnumerator(CancellationToken)

Returns an enumerator that iterates asynchronously through the collection.

IEnumerable.GetEnumerator()

Returns an enumerator that iterates through a collection.

IEnumerable<TableResource>.GetEnumerator()

Returns an enumerator that iterates through the collection.

Applies to