Share via


DacOperationsExtensions.GetStatus Method (IDacOperations, String, String, String, String, String)

 

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.

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

Syntax

public static DacGetStatusResponse GetStatus(
    this IDacOperations operations,
    string serverName,
    string fullyQualifiedServerName,
    string username,
    string password,
    string requestId
)
public:
[ExtensionAttribute]
static DacGetStatusResponse^ GetStatus(
    IDacOperations^ operations,
    String^ serverName,
    String^ fullyQualifiedServerName,
    String^ username,
    String^ password,
    String^ requestId
)
static member GetStatus : 
        operations:IDacOperations *
        serverName:string *
        fullyQualifiedServerName:string *
        username:string *
        password:string *
        requestId:string -> DacGetStatusResponse
<ExtensionAttribute>
Public Shared Function GetStatus (
    operations As IDacOperations,
    serverName As String,
    fullyQualifiedServerName As String,
    username As String,
    password As String,
    requestId As String
) As DacGetStatusResponse

Parameters

  • serverName
    Type: System.String

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

  • fullyQualifiedServerName
    Type: System.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
    Type: System.String

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

  • password
    Type: System.String

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

  • requestId
    Type: System.String

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

Return Value

Type: Microsoft.WindowsAzure.Management.Sql.Models.DacGetStatusResponse

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

See Also

DacOperationsExtensions Class
Microsoft.WindowsAzure.Management.Sql Namespace

Return to top