Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. */
package com.microsoft.azure.management.sql; import com.microsoft.azure.management.apigeneration.Beta; import com.microsoft.azure.management.apigeneration.Fluent; import com.microsoft.azure.management.resources.fluentcore.arm.models.HasId; import com.microsoft.azure.management.resources.fluentcore.arm.models.HasName; import com.microsoft.azure.management.resources.fluentcore.model.HasInner; import com.microsoft.azure.management.resources.fluentcore.model.Indexable; import com.microsoft.azure.management.sql.implementation.ImportExportResponseInner;
Response containing result of the Azure SQL Database import or export operation.
/** * Response containing result of the Azure SQL Database import or export operation. */
@Fluent @Beta(Beta.SinceVersion.V1_7_0) public interface SqlDatabaseImportExportResponse extends Indexable, HasInner<ImportExportResponseInner>, HasId, HasName {
Returns:the request type of the operation
/** * @return the request type of the operation */
String requestType();
Returns:the UUID of the operation
/** * @return the UUID of the operation */
String requestId();
Returns:the name of the server
/** * @return the name of the server */
String serverName();
Returns:the name of the database
/** * @return the name of the database */
String databaseName();
Returns:the status message returned from the server
/** * @return the status message returned from the server */
String status();
Returns:the operation status last modified time
/** * @return the operation status last modified time */
String lastModifiedTime();
Returns:the operation queued time
/** * @return the operation queued time */
String queuedTime();
Returns:the blob uri
/** * @return the blob uri */
String blobUri();
Returns:the error message returned from the server
/** * @return the error message returned from the server */
String errorMessage(); }