com.microsoft.azure.management.sql.implementation.ServerUsageInner 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.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.sql.implementation;
import org.joda.time.DateTime;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Represents server metrics.
*/
public class ServerUsageInner {
/**
* Name of the server usage metric.
*/
@JsonProperty(value = "name", access = JsonProperty.Access.WRITE_ONLY)
private String name;
/**
* The name of the resource.
*/
@JsonProperty(value = "resourceName", access = JsonProperty.Access.WRITE_ONLY)
private String resourceName;
/**
* The metric display name.
*/
@JsonProperty(value = "displayName", access = JsonProperty.Access.WRITE_ONLY)
private String displayName;
/**
* The current value of the metric.
*/
@JsonProperty(value = "currentValue", access = JsonProperty.Access.WRITE_ONLY)
private Double currentValue;
/**
* The current limit of the metric.
*/
@JsonProperty(value = "limit", access = JsonProperty.Access.WRITE_ONLY)
private Double limit;
/**
* The units of the metric.
*/
@JsonProperty(value = "unit", access = JsonProperty.Access.WRITE_ONLY)
private String unit;
/**
* The next reset time for the metric (ISO8601 format).
*/
@JsonProperty(value = "nextResetTime", access = JsonProperty.Access.WRITE_ONLY)
private DateTime nextResetTime;
/**
* Get name of the server usage metric.
*
* @return the name value
*/
public String name() {
return this.name;
}
/**
* Get the name of the resource.
*
* @return the resourceName value
*/
public String resourceName() {
return this.resourceName;
}
/**
* Get the metric display name.
*
* @return the displayName value
*/
public String displayName() {
return this.displayName;
}
/**
* Get the current value of the metric.
*
* @return the currentValue value
*/
public Double currentValue() {
return this.currentValue;
}
/**
* Get the current limit of the metric.
*
* @return the limit value
*/
public Double limit() {
return this.limit;
}
/**
* Get the units of the metric.
*
* @return the unit value
*/
public String unit() {
return this.unit;
}
/**
* Get the next reset time for the metric (ISO8601 format).
*
* @return the nextResetTime value
*/
public DateTime nextResetTime() {
return this.nextResetTime;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy