com.microsoft.azure.management.sql.SqlRestorableDroppedDatabase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-mgmt-sql Show documentation
Show all versions of azure-mgmt-sql Show documentation
This package contains Microsoft Azure SDK for SQL Management module.
/**
* 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.
*/
@Fluent
@Beta(Beta.SinceVersion.V1_7_0)
public interface SqlRestorableDroppedDatabase extends
Refreshable,
HasInner,
HasResourceGroup,
HasName,
HasId {
/**
* @return the geo-location where the resource lives
*/
Region region();
/**
* @return the name of the database
*/
String databaseName();
/**
* @return the edition of the database
*/
String edition();
/**
* @return the max size in bytes of the database
*/
String maxSizeBytes();
/**
* @return the service level objective name of the database
*/
String serviceLevelObjective();
/**
* @return the elastic pool name of the database
*/
String elasticPoolName();
/**
* @return the creation date of the database (ISO8601 format)
*/
DateTime creationDate();
/**
* @return the deletion date of the database (ISO8601 format)
*/
DateTime deletionDate();
/**
* @return the earliest restore date of the database (ISO8601 format)
*/
DateTime earliestRestoreDate();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy