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.
/**
* 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.storage;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
One property of operation, include metric specifications.
/**
* One property of operation, include metric specifications.
*/
public class ServiceSpecification {
Metric specifications of operation.
/**
* Metric specifications of operation.
*/
@JsonProperty(value = "metricSpecifications")
private List<MetricSpecification> metricSpecifications;
Get metric specifications of operation.
Returns: the metricSpecifications value
/**
* Get metric specifications of operation.
*
* @return the metricSpecifications value
*/
public List<MetricSpecification> metricSpecifications() {
return this.metricSpecifications;
}
Set metric specifications of operation.
Params: - metricSpecifications – the metricSpecifications value to set
Returns: the ServiceSpecification object itself.
/**
* Set metric specifications of operation.
*
* @param metricSpecifications the metricSpecifications value to set
* @return the ServiceSpecification object itself.
*/
public ServiceSpecification withMetricSpecifications(List<MetricSpecification> metricSpecifications) {
this.metricSpecifications = metricSpecifications;
return this;
}
}