Share via


IDatabaseOperationOperations Interface

 

The Azure SQL Database Management API includes operations for getting database operations. Specifically, this API allows you to get a specific operation, or to list all the operations that happened on a specific database or on all databases in the Azure SQL Database Server.

Namespace:   Microsoft.WindowsAzure.Management.Sql
Assembly:  Microsoft.WindowsAzure.Management.Sql (in Microsoft.WindowsAzure.Management.Sql.dll)

Syntax

public interface IDatabaseOperationOperations
public interface class IDatabaseOperationOperations
type IDatabaseOperationOperations = interface end
Public Interface IDatabaseOperationOperations

Methods

Name Description
GetAsync(String, String, CancellationToken)

Returns information about a specific operation by using the operation Guid.

ListByDatabaseAsync(String, String, CancellationToken)

Retrieves all of the operations that took place on a specific database.

ListByServerAsync(String, CancellationToken)

Retrieves all of the operations that occured on the Azure SQL Database Server.

Extension Methods

Name Description
Get(String, String)

Returns information about a specific operation by using the operation Guid.(Defined by DatabaseOperationOperationsExtensions.)

GetAsync(String, String)

Returns information about a specific operation by using the operation Guid.(Defined by DatabaseOperationOperationsExtensions.)

ListByDatabase(String, String)

Retrieves all of the operations that took place on a specific database.(Defined by DatabaseOperationOperationsExtensions.)

ListByDatabaseAsync(String, String)

Retrieves all of the operations that took place on a specific database.(Defined by DatabaseOperationOperationsExtensions.)

ListByServer(String)

Retrieves all of the operations that occured on the Azure SQL Database Server.(Defined by DatabaseOperationOperationsExtensions.)

ListByServerAsync(String)

Retrieves all of the operations that occured on the Azure SQL Database Server.(Defined by DatabaseOperationOperationsExtensions.)

See Also

Microsoft.WindowsAzure.Management.Sql Namespace

Return to top