TableOperations interface
Interfejs reprezentujący operacje tabelowe.
Właściwości
| create | Tworzy nową tabelę o określonej nazwie tabeli w ramach określonego konta. |
| delete | Usuwa tabelę z określoną nazwą tabeli w ramach określonego konta, jeśli istnieje. |
| get | Pobiera tabelę z określoną nazwą tabeli w ramach określonego konta, jeśli istnieje. |
| list | Pobiera listę wszystkich tabel w ramach określonego konta magazynu |
| update | Tworzy nową tabelę o określonej nazwie tabeli w ramach określonego konta. |
Szczegóły właściwości
create
Tworzy nową tabelę o określonej nazwie tabeli w ramach określonego konta.
create: (resourceGroupName: string, accountName: string, tableName: string, options?: TableCreateOptionalParams) => Promise<Table>
Wartość właściwości
(resourceGroupName: string, accountName: string, tableName: string, options?: TableCreateOptionalParams) => Promise<Table>
delete
Usuwa tabelę z określoną nazwą tabeli w ramach określonego konta, jeśli istnieje.
delete: (resourceGroupName: string, accountName: string, tableName: string, options?: TableDeleteOptionalParams) => Promise<void>
Wartość właściwości
(resourceGroupName: string, accountName: string, tableName: string, options?: TableDeleteOptionalParams) => Promise<void>
get
Pobiera tabelę z określoną nazwą tabeli w ramach określonego konta, jeśli istnieje.
get: (resourceGroupName: string, accountName: string, tableName: string, options?: TableGetOptionalParams) => Promise<Table>
Wartość właściwości
(resourceGroupName: string, accountName: string, tableName: string, options?: TableGetOptionalParams) => Promise<Table>
list
Pobiera listę wszystkich tabel w ramach określonego konta magazynu
list: (resourceGroupName: string, accountName: string, options?: TableListOptionalParams) => PagedAsyncIterableIterator<Table, Table[], PageSettings>
Wartość właściwości
(resourceGroupName: string, accountName: string, options?: TableListOptionalParams) => PagedAsyncIterableIterator<Table, Table[], PageSettings>
update
Tworzy nową tabelę o określonej nazwie tabeli w ramach określonego konta.
update: (resourceGroupName: string, accountName: string, tableName: string, options?: TableUpdateOptionalParams) => Promise<Table>
Wartość właściwości
(resourceGroupName: string, accountName: string, tableName: string, options?: TableUpdateOptionalParams) => Promise<Table>