com.azure.resourcemanager.sql.models.SqlDatabaseBasicStorage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-sql Show documentation
Show all versions of azure-resourcemanager-sql Show documentation
This package contains Microsoft Azure Sql Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.resourcemanager.sql.models;
import com.azure.core.annotation.Fluent;
/** The maximum allowed storage capacity for a "Basic" edition of an Azure SQL Elastic Pool. */
@Fluent
public enum SqlDatabaseBasicStorage {
/** 100 MB storage capacity available for the database. */
MAX_100_MB(100),
/** 100 MB storage capacity available for the database. */
MAX_500_MB(500),
/** 1 GB storage capacity available for the database. */
MAX_1_GB(1024),
/** 2 GB storage capacity available for the database. */
MAX_2_GB(2 * 1024);
/** The maximum allowed storage capacity in MB for the SQL Database. */
private long capacityInMB;
SqlDatabaseBasicStorage(long capacityInMB) {
this.capacityInMB = capacityInMB;
}
/** @return the maximum allowed storage capacity in MB for the SQL Database */
public long capacityInMB() {
return this.capacityInMB;
}
/** @return the maximum allowed storage capacity in bytes for the SQL Database */
public long capacity() {
return this.capacityInMB * 1024 * 1024;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy