/**
* 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.appservice;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Value of resource metric.
*/
public class ResourceMetricValue {
/**
* Value timestamp.
*/
@JsonProperty(value = "timestamp", access = JsonProperty.Access.WRITE_ONLY)
private String timestamp;
/**
* Value average.
*/
@JsonProperty(value = "average", access = JsonProperty.Access.WRITE_ONLY)
private Double average;
/**
* Value minimum.
*/
@JsonProperty(value = "minimum", access = JsonProperty.Access.WRITE_ONLY)
private Double minimum;
/**
* Value maximum.
*/
@JsonProperty(value = "maximum", access = JsonProperty.Access.WRITE_ONLY)
private Double maximum;
/**
* Value total.
*/
@JsonProperty(value = "total", access = JsonProperty.Access.WRITE_ONLY)
private Double total;
/**
* Value count.
*/
@JsonProperty(value = "count", access = JsonProperty.Access.WRITE_ONLY)
private Double count;
/**
* Properties.
*/
@JsonProperty(value = "properties", access = JsonProperty.Access.WRITE_ONLY)
private List<ResourceMetricProperty> properties;
/**
* Get the timestamp value.
*
* @return the timestamp value
*/
public String timestamp() {
return this.timestamp;
}
/**
* Get the average value.
*
* @return the average value
*/
public Double average() {
return this.average;
}
/**
* Get the minimum value.
*
* @return the minimum value
*/
public Double minimum() {
return this.minimum;
}
/**
* Get the maximum value.
*
* @return the maximum value
*/
public Double maximum() {
return this.maximum;
}
/**
* Get the total value.
*
* @return the total value
*/
public Double total() {
return this.total;
}
/**
* Get the count value.
*
* @return the count value
*/
public Double count() {
return this.count;
}
/**
* Get the properties value.
*
* @return the properties value
*/
public List<ResourceMetricProperty> properties() {
return this.properties;
}
}