IDacOperations.GetStatusAsync Method

Definition

Gets the status of the import or export operation in the specified server with the corresponding request ID. The request ID is provided in the responses of the import or export operation.

public System.Threading.Tasks.Task<Microsoft.WindowsAzure.Management.Sql.Models.DacGetStatusResponse> GetStatusAsync (string serverName, string fullyQualifiedServerName, string username, string password, string requestId, System.Threading.CancellationToken cancellationToken);
abstract member GetStatusAsync : string * string * string * string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.WindowsAzure.Management.Sql.Models.DacGetStatusResponse>
Public Function GetStatusAsync (serverName As String, fullyQualifiedServerName As String, username As String, password As String, requestId As String, cancellationToken As CancellationToken) As Task(Of DacGetStatusResponse)

Parameters

serverName
String

The name of the server in which the import or export operation is taking place.

fullyQualifiedServerName
String

The fully qualified domain name of the Azure SQL Database Server where the operation is taking place. Example: a9s7f7s9d3.database.windows.net

username
String

The administrator username for the Azure SQL Database Server.

password
String

The administrator password for the Azure SQL Database Server.

requestId
String

The request ID of the operation being queried. The request ID is obtained from the responses of the import and export operations.

cancellationToken
CancellationToken

Cancellation token.

Returns

Represents a list of import or export status values returned from GetStatus.

Applies to