DacOperationsExtensions.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 static System.Threading.Tasks.Task<Microsoft.WindowsAzure.Management.Sql.Models.DacGetStatusResponse> GetStatusAsync (this Microsoft.WindowsAzure.Management.Sql.IDacOperations operations, string serverName, string fullyQualifiedServerName, string username, string password, string requestId);
static member GetStatusAsync : Microsoft.WindowsAzure.Management.Sql.IDacOperations * string * string * string * string * string -> System.Threading.Tasks.Task<Microsoft.WindowsAzure.Management.Sql.Models.DacGetStatusResponse>
<Extension()>
Public Function GetStatusAsync (operations As IDacOperations, serverName As String, fullyQualifiedServerName As String, username As String, password As String, requestId As String) As Task(Of DacGetStatusResponse)

Parameters

operations
IDacOperations

Reference to the Microsoft.WindowsAzure.Management.Sql.IDacOperations.

serverName
String

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

fullyQualifiedServerName
String

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

username
String

Required. The administrator username for the Azure SQL Database Server.

password
String

Required. The administrator password for the Azure SQL Database Server.

requestId
String

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

Returns

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

Applies to