
com.azure.resourcemanager.monitor.fluent.models.MetricDefinitionInner Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.monitor.fluent.models;
import com.azure.core.annotation.Fluent;
import com.azure.resourcemanager.monitor.models.AggregationType;
import com.azure.resourcemanager.monitor.models.MetricAvailability;
import com.azure.resourcemanager.monitor.models.MetricClass;
import com.azure.resourcemanager.monitor.models.Unit;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/** Metric definition class specifies the metadata for a metric. */
@Fluent
public final class MetricDefinitionInner {
/*
* Flag to indicate whether the dimension is required.
*/
@JsonProperty(value = "isDimensionRequired")
private Boolean isDimensionRequired;
/*
* the resource identifier of the resource that emitted the metric.
*/
@JsonProperty(value = "resourceId")
private String resourceId;
/*
* the namespace the metric belongs to.
*/
@JsonProperty(value = "namespace")
private String namespace;
/*
* the name and the display name of the metric, i.e. it is a localizable string.
*/
@JsonProperty(value = "name")
private LocalizableStringInner name;
/*
* Detailed description of this metric.
*/
@JsonProperty(value = "displayDescription")
private String displayDescription;
/*
* Custom category name for this metric.
*/
@JsonProperty(value = "category")
private String category;
/*
* The class of the metric.
*/
@JsonProperty(value = "metricClass")
private MetricClass metricClass;
/*
* The unit of the metric.
*/
@JsonProperty(value = "unit")
private Unit unit;
/*
* the primary aggregation type value defining how to use the values for display.
*/
@JsonProperty(value = "primaryAggregationType")
private AggregationType primaryAggregationType;
/*
* the collection of what aggregation types are supported.
*/
@JsonProperty(value = "supportedAggregationTypes")
private List supportedAggregationTypes;
/*
* the collection of what aggregation intervals are available to be queried.
*/
@JsonProperty(value = "metricAvailabilities")
private List metricAvailabilities;
/*
* the resource identifier of the metric definition.
*/
@JsonProperty(value = "id")
private String id;
/*
* the name and the display name of the dimension, i.e. it is a localizable string.
*/
@JsonProperty(value = "dimensions")
private List dimensions;
/** Creates an instance of MetricDefinitionInner class. */
public MetricDefinitionInner() {
}
/**
* Get the isDimensionRequired property: Flag to indicate whether the dimension is required.
*
* @return the isDimensionRequired value.
*/
public Boolean isDimensionRequired() {
return this.isDimensionRequired;
}
/**
* Set the isDimensionRequired property: Flag to indicate whether the dimension is required.
*
* @param isDimensionRequired the isDimensionRequired value to set.
* @return the MetricDefinitionInner object itself.
*/
public MetricDefinitionInner withIsDimensionRequired(Boolean isDimensionRequired) {
this.isDimensionRequired = isDimensionRequired;
return this;
}
/**
* Get the resourceId property: the resource identifier of the resource that emitted the metric.
*
* @return the resourceId value.
*/
public String resourceId() {
return this.resourceId;
}
/**
* Set the resourceId property: the resource identifier of the resource that emitted the metric.
*
* @param resourceId the resourceId value to set.
* @return the MetricDefinitionInner object itself.
*/
public MetricDefinitionInner withResourceId(String resourceId) {
this.resourceId = resourceId;
return this;
}
/**
* Get the namespace property: the namespace the metric belongs to.
*
* @return the namespace value.
*/
public String namespace() {
return this.namespace;
}
/**
* Set the namespace property: the namespace the metric belongs to.
*
* @param namespace the namespace value to set.
* @return the MetricDefinitionInner object itself.
*/
public MetricDefinitionInner withNamespace(String namespace) {
this.namespace = namespace;
return this;
}
/**
* Get the name property: the name and the display name of the metric, i.e. it is a localizable string.
*
* @return the name value.
*/
public LocalizableStringInner name() {
return this.name;
}
/**
* Set the name property: the name and the display name of the metric, i.e. it is a localizable string.
*
* @param name the name value to set.
* @return the MetricDefinitionInner object itself.
*/
public MetricDefinitionInner withName(LocalizableStringInner name) {
this.name = name;
return this;
}
/**
* Get the displayDescription property: Detailed description of this metric.
*
* @return the displayDescription value.
*/
public String displayDescription() {
return this.displayDescription;
}
/**
* Set the displayDescription property: Detailed description of this metric.
*
* @param displayDescription the displayDescription value to set.
* @return the MetricDefinitionInner object itself.
*/
public MetricDefinitionInner withDisplayDescription(String displayDescription) {
this.displayDescription = displayDescription;
return this;
}
/**
* Get the category property: Custom category name for this metric.
*
* @return the category value.
*/
public String category() {
return this.category;
}
/**
* Set the category property: Custom category name for this metric.
*
* @param category the category value to set.
* @return the MetricDefinitionInner object itself.
*/
public MetricDefinitionInner withCategory(String category) {
this.category = category;
return this;
}
/**
* Get the metricClass property: The class of the metric.
*
* @return the metricClass value.
*/
public MetricClass metricClass() {
return this.metricClass;
}
/**
* Set the metricClass property: The class of the metric.
*
* @param metricClass the metricClass value to set.
* @return the MetricDefinitionInner object itself.
*/
public MetricDefinitionInner withMetricClass(MetricClass metricClass) {
this.metricClass = metricClass;
return this;
}
/**
* Get the unit property: The unit of the metric.
*
* @return the unit value.
*/
public Unit unit() {
return this.unit;
}
/**
* Set the unit property: The unit of the metric.
*
* @param unit the unit value to set.
* @return the MetricDefinitionInner object itself.
*/
public MetricDefinitionInner withUnit(Unit unit) {
this.unit = unit;
return this;
}
/**
* Get the primaryAggregationType property: the primary aggregation type value defining how to use the values for
* display.
*
* @return the primaryAggregationType value.
*/
public AggregationType primaryAggregationType() {
return this.primaryAggregationType;
}
/**
* Set the primaryAggregationType property: the primary aggregation type value defining how to use the values for
* display.
*
* @param primaryAggregationType the primaryAggregationType value to set.
* @return the MetricDefinitionInner object itself.
*/
public MetricDefinitionInner withPrimaryAggregationType(AggregationType primaryAggregationType) {
this.primaryAggregationType = primaryAggregationType;
return this;
}
/**
* Get the supportedAggregationTypes property: the collection of what aggregation types are supported.
*
* @return the supportedAggregationTypes value.
*/
public List supportedAggregationTypes() {
return this.supportedAggregationTypes;
}
/**
* Set the supportedAggregationTypes property: the collection of what aggregation types are supported.
*
* @param supportedAggregationTypes the supportedAggregationTypes value to set.
* @return the MetricDefinitionInner object itself.
*/
public MetricDefinitionInner withSupportedAggregationTypes(List supportedAggregationTypes) {
this.supportedAggregationTypes = supportedAggregationTypes;
return this;
}
/**
* Get the metricAvailabilities property: the collection of what aggregation intervals are available to be queried.
*
* @return the metricAvailabilities value.
*/
public List metricAvailabilities() {
return this.metricAvailabilities;
}
/**
* Set the metricAvailabilities property: the collection of what aggregation intervals are available to be queried.
*
* @param metricAvailabilities the metricAvailabilities value to set.
* @return the MetricDefinitionInner object itself.
*/
public MetricDefinitionInner withMetricAvailabilities(List metricAvailabilities) {
this.metricAvailabilities = metricAvailabilities;
return this;
}
/**
* Get the id property: the resource identifier of the metric definition.
*
* @return the id value.
*/
public String id() {
return this.id;
}
/**
* Set the id property: the resource identifier of the metric definition.
*
* @param id the id value to set.
* @return the MetricDefinitionInner object itself.
*/
public MetricDefinitionInner withId(String id) {
this.id = id;
return this;
}
/**
* Get the dimensions property: the name and the display name of the dimension, i.e. it is a localizable string.
*
* @return the dimensions value.
*/
public List dimensions() {
return this.dimensions;
}
/**
* Set the dimensions property: the name and the display name of the dimension, i.e. it is a localizable string.
*
* @param dimensions the dimensions value to set.
* @return the MetricDefinitionInner object itself.
*/
public MetricDefinitionInner withDimensions(List dimensions) {
this.dimensions = dimensions;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (name() != null) {
name().validate();
}
if (metricAvailabilities() != null) {
metricAvailabilities().forEach(e -> e.validate());
}
if (dimensions() != null) {
dimensions().forEach(e -> e.validate());
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy