TableOperations interface

Interfaccia che rappresenta le operazioni di una Tabella.

Proprietà

create

Crea una nuova tabella con il nome di tabella specificato, sotto l'account specificato.

delete

Elimina la tabella con il nome di tabella specificato, se presente nell'account specificato.

get

Ottiene la tabella con il nome della tabella specificato, sotto l'account specificato, se esistente.

list

Ottiene un elenco di tutte le tabelle nell'account di archiviazione specificato

update

Crea una nuova tabella con il nome di tabella specificato, sotto l'account specificato.

Dettagli proprietà

create

Crea una nuova tabella con il nome di tabella specificato, sotto l'account specificato.

create: (resourceGroupName: string, accountName: string, tableName: string, options?: TableCreateOptionalParams) => Promise<Table>

Valore della proprietà

(resourceGroupName: string, accountName: string, tableName: string, options?: TableCreateOptionalParams) => Promise<Table>

delete

Elimina la tabella con il nome di tabella specificato, se presente nell'account specificato.

delete: (resourceGroupName: string, accountName: string, tableName: string, options?: TableDeleteOptionalParams) => Promise<void>

Valore della proprietà

(resourceGroupName: string, accountName: string, tableName: string, options?: TableDeleteOptionalParams) => Promise<void>

get

Ottiene la tabella con il nome della tabella specificato, sotto l'account specificato, se esistente.

get: (resourceGroupName: string, accountName: string, tableName: string, options?: TableGetOptionalParams) => Promise<Table>

Valore della proprietà

(resourceGroupName: string, accountName: string, tableName: string, options?: TableGetOptionalParams) => Promise<Table>

list

Ottiene un elenco di tutte le tabelle nell'account di archiviazione specificato

list: (resourceGroupName: string, accountName: string, options?: TableListOptionalParams) => PagedAsyncIterableIterator<Table, Table[], PageSettings>

Valore della proprietà

(resourceGroupName: string, accountName: string, options?: TableListOptionalParams) => PagedAsyncIterableIterator<Table, Table[], PageSettings>

update

Crea una nuova tabella con il nome di tabella specificato, sotto l'account specificato.

update: (resourceGroupName: string, accountName: string, tableName: string, options?: TableUpdateOptionalParams) => Promise<Table>

Valore della proprietà

(resourceGroupName: string, accountName: string, tableName: string, options?: TableUpdateOptionalParams) => Promise<Table>