MetricDefinitionInner.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.cosmos.fluent.models;
import com.azure.core.annotation.Immutable;
import com.azure.core.util.logging.ClientLogger;
import com.azure.resourcemanager.cosmos.models.MetricAvailability;
import com.azure.resourcemanager.cosmos.models.MetricName;
import com.azure.resourcemanager.cosmos.models.PrimaryAggregationType;
import com.azure.resourcemanager.cosmos.models.UnitType;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/** The definition of a metric. */
@Immutable
public final class MetricDefinitionInner {
@JsonIgnore private final ClientLogger logger = new ClientLogger(MetricDefinitionInner.class);
/*
* The list of metric availabilities for the account.
*/
@JsonProperty(value = "metricAvailabilities", access = JsonProperty.Access.WRITE_ONLY)
private List<MetricAvailability> metricAvailabilities;
/*
* The primary aggregation type of the metric.
*/
@JsonProperty(value = "primaryAggregationType", access = JsonProperty.Access.WRITE_ONLY)
private PrimaryAggregationType primaryAggregationType;
/*
* The unit of the metric.
*/
@JsonProperty(value = "unit", access = JsonProperty.Access.WRITE_ONLY)
private UnitType unit;
/*
* The resource uri of the database.
*/
@JsonProperty(value = "resourceUri", access = JsonProperty.Access.WRITE_ONLY)
private String resourceUri;
/*
* The name information for the metric.
*/
@JsonProperty(value = "name", access = JsonProperty.Access.WRITE_ONLY)
private MetricName name;
/**
* Get the metricAvailabilities property: The list of metric availabilities for the account.
*
* @return the metricAvailabilities value.
*/
public List<MetricAvailability> metricAvailabilities() {
return this.metricAvailabilities;
}
/**
* Get the primaryAggregationType property: The primary aggregation type of the metric.
*
* @return the primaryAggregationType value.
*/
public PrimaryAggregationType primaryAggregationType() {
return this.primaryAggregationType;
}
/**
* Get the unit property: The unit of the metric.
*
* @return the unit value.
*/
public UnitType unit() {
return this.unit;
}
/**
* Get the resourceUri property: The resource uri of the database.
*
* @return the resourceUri value.
*/
public String resourceUri() {
return this.resourceUri;
}
/**
* Get the name property: The name information for the metric.
*
* @return the name value.
*/
public MetricName name() {
return this.name;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (metricAvailabilities() != null) {
metricAvailabilities().forEach(e -> e.validate());
}
if (name() != null) {
name().validate();
}
}
}