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.Region; 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.arm.models.HasResourceGroup; import com.microsoft.azure.management.resources.fluentcore.model.HasInner; import com.microsoft.azure.management.resources.fluentcore.model.Refreshable; import com.microsoft.azure.management.sql.implementation.RestorableDroppedDatabaseInner; import org.joda.time.DateTime;
Response containing Azure SQL restorable dropped database.
/** * Response containing Azure SQL restorable dropped database. */
@Fluent @Beta(Beta.SinceVersion.V1_7_0) public interface SqlRestorableDroppedDatabase extends Refreshable<SqlRestorableDroppedDatabase>, HasInner<RestorableDroppedDatabaseInner>, HasResourceGroup, HasName, HasId {
Returns:the geo-location where the resource lives
/** * @return the geo-location where the resource lives */
Region region();
Returns:the name of the database
/** * @return the name of the database */
String databaseName();
Returns:the edition of the database
/** * @return the edition of the database */
String edition();
Returns:the max size in bytes of the database
/** * @return the max size in bytes of the database */
String maxSizeBytes();
Returns:the service level objective name of the database
/** * @return the service level objective name of the database */
String serviceLevelObjective();
Returns:the elastic pool name of the database
/** * @return the elastic pool name of the database */
String elasticPoolName();
Returns:the creation date of the database (ISO8601 format)
/** * @return the creation date of the database (ISO8601 format) */
DateTime creationDate();
Returns:the deletion date of the database (ISO8601 format)
/** * @return the deletion date of the database (ISO8601 format) */
DateTime deletionDate();
Returns:the earliest restore date of the database (ISO8601 format)
/** * @return the earliest restore date of the database (ISO8601 format) */
DateTime earliestRestoreDate(); }