DatabaseColumns interface

Interface representing a DatabaseColumns.

Methods

get(string, string, string, string, string, string, DatabaseColumnsGetOptionalParams)

Get database column

listByDatabase(string, string, string, DatabaseColumnsListByDatabaseOptionalParams)

List database columns

listByTable(string, string, string, string, string, DatabaseColumnsListByTableOptionalParams)

List database columns

Method Details

get(string, string, string, string, string, string, DatabaseColumnsGetOptionalParams)

Get database column

function get(resourceGroupName: string, serverName: string, databaseName: string, schemaName: string, tableName: string, columnName: string, options?: DatabaseColumnsGetOptionalParams): Promise<DatabaseColumn>

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.

columnName

string

The name of the column.

options
DatabaseColumnsGetOptionalParams

The options parameters.

Returns

Promise<DatabaseColumn>

listByDatabase(string, string, string, DatabaseColumnsListByDatabaseOptionalParams)

List database columns

function listByDatabase(resourceGroupName: string, serverName: string, databaseName: string, options?: DatabaseColumnsListByDatabaseOptionalParams): PagedAsyncIterableIterator<DatabaseColumn, DatabaseColumn[], 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.

options
DatabaseColumnsListByDatabaseOptionalParams

The options parameters.

Returns

listByTable(string, string, string, string, string, DatabaseColumnsListByTableOptionalParams)

List database columns

function listByTable(resourceGroupName: string, serverName: string, databaseName: string, schemaName: string, tableName: string, options?: DatabaseColumnsListByTableOptionalParams): PagedAsyncIterableIterator<DatabaseColumn, DatabaseColumn[], 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.

tableName

string

The name of the table.

options
DatabaseColumnsListByTableOptionalParams

The options parameters.

Returns