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.model.HasInner; import com.microsoft.azure.management.sql.implementation.MetricDefinitionInner; import java.util.List;
Response containing the Azure SQL Database metric definition.
/** * Response containing the Azure SQL Database metric definition. */
@Fluent @Beta(Beta.SinceVersion.V1_7_0) public interface SqlDatabaseMetricDefinition extends HasInner<MetricDefinitionInner> {
Returns:the name of the metric
/** * @return the name of the metric */
String name();
Returns:the primary aggregation type
/** * @return the primary aggregation type */
PrimaryAggregationType primaryAggregationType();
Returns:the resource URI
/** * @return the resource URI */
String resourceUri();
Returns:the unit type
/** * @return the unit type */
UnitDefinitionType unit();
Returns:the metric availabilities
/** * @return the metric availabilities */
List<SqlDatabaseMetricAvailability> metricAvailabilities(); }