DatabaseOperations interface

Interface representing a DatabaseOperations.

Methods

cancel(string, string, string, string, DatabaseOperationsCancelOptionalParams)

Cancels the asynchronous operation on the database.

listByDatabase(string, string, string, DatabaseOperationsListByDatabaseOptionalParams)

Gets a list of operations performed on the database.

Method Details

cancel(string, string, string, string, DatabaseOperationsCancelOptionalParams)

Cancels the asynchronous operation on the database.

function cancel(resourceGroupName: string, serverName: string, databaseName: string, operationId: string, options?: DatabaseOperationsCancelOptionalParams): Promise<void>

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.

operationId

string

The operation identifier.

options
DatabaseOperationsCancelOptionalParams

The options parameters.

Returns

Promise<void>

listByDatabase(string, string, string, DatabaseOperationsListByDatabaseOptionalParams)

Gets a list of operations performed on the database.

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

The options parameters.

Returns