com.azure.resourcemanager.cosmos.fluent.models.MetricDefinitionInner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-cosmos Show documentation
Show all versions of azure-resourcemanager-cosmos Show documentation
This package contains Microsoft Azure CosmosDB SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
// 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.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.JsonProperty;
import java.util.List;
/**
* The definition of a metric.
*/
@Immutable
public final class MetricDefinitionInner {
/*
* The list of metric availabilities for the account.
*/
@JsonProperty(value = "metricAvailabilities", access = JsonProperty.Access.WRITE_ONLY)
private List 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;
/**
* Creates an instance of MetricDefinitionInner class.
*/
public MetricDefinitionInner() {
}
/**
* Get the metricAvailabilities property: The list of metric availabilities for the account.
*
* @return the metricAvailabilities value.
*/
public List 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();
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy