DatabaseTables interface

Interface representing a DatabaseTables.

Methods

get(string, string, string, string, string, DatabaseTablesGetOptionalParams)

Get database table

listBySchema(string, string, string, string, DatabaseTablesListBySchemaOptionalParams)

List database tables

Method Details

get(string, string, string, string, string, DatabaseTablesGetOptionalParams)

Get database table

function get(resourceGroupName: string, serverName: string, databaseName: string, schemaName: string, tableName: string, options?: DatabaseTablesGetOptionalParams): Promise<DatabaseTable>

Parameters

resourceGroupName

string

The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.

serverName

string

The name of the server.

databaseName

string

The name of the database.

schemaName

string

The name of the schema.

tableName

string

The name of the table.

options
DatabaseTablesGetOptionalParams

The options parameters.

Returns

Promise<DatabaseTable>

listBySchema(string, string, string, string, DatabaseTablesListBySchemaOptionalParams)

List database tables

function listBySchema(resourceGroupName: string, serverName: string, databaseName: string, schemaName: string, options?: DatabaseTablesListBySchemaOptionalParams): PagedAsyncIterableIterator<DatabaseTable, DatabaseTable[], PageSettings>

Parameters

resourceGroupName

string

The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.

serverName

string

The name of the server.

databaseName

string

The name of the database.

schemaName

string

The name of the schema.

options
DatabaseTablesListBySchemaOptionalParams

The options parameters.

Returns