DatabaseOperations interface
Interface representing a DatabaseOperations.
Methods
cancel(string, string, string, string, Database |
Cancels the asynchronous operation on the database. |
list |
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.
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.
The options parameters.