TableOperations interface
Interface representing a Table operations.
Properties
| create | Creates a new table with the specified table name, under the specified account. |
| delete | Deletes the table with the specified table name, under the specified account if it exists. |
| get | Gets the table with the specified table name, under the specified account if it exists. |
| list | Gets a list of all the tables under the specified storage account |
| update | Creates a new table with the specified table name, under the specified account. |
Property Details
create
Creates a new table with the specified table name, under the specified account.
create: (resourceGroupName: string, accountName: string, tableName: string, options?: TableCreateOptionalParams) => Promise<Table>
Property Value
(resourceGroupName: string, accountName: string, tableName: string, options?: TableCreateOptionalParams) => Promise<Table>
delete
Deletes the table with the specified table name, under the specified account if it exists.
delete: (resourceGroupName: string, accountName: string, tableName: string, options?: TableDeleteOptionalParams) => Promise<void>
Property Value
(resourceGroupName: string, accountName: string, tableName: string, options?: TableDeleteOptionalParams) => Promise<void>
get
Gets the table with the specified table name, under the specified account if it exists.
get: (resourceGroupName: string, accountName: string, tableName: string, options?: TableGetOptionalParams) => Promise<Table>
Property Value
(resourceGroupName: string, accountName: string, tableName: string, options?: TableGetOptionalParams) => Promise<Table>
list
Gets a list of all the tables under the specified storage account
list: (resourceGroupName: string, accountName: string, options?: TableListOptionalParams) => PagedAsyncIterableIterator<Table, Table[], PageSettings>
Property Value
(resourceGroupName: string, accountName: string, options?: TableListOptionalParams) => PagedAsyncIterableIterator<Table, Table[], PageSettings>
update
Creates a new table with the specified table name, under the specified account.
update: (resourceGroupName: string, accountName: string, tableName: string, options?: TableUpdateOptionalParams) => Promise<Table>
Property Value
(resourceGroupName: string, accountName: string, tableName: string, options?: TableUpdateOptionalParams) => Promise<Table>