com.pulumi.azure.monitoring.outputs.MetricAlertCriteriaDimension Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azure.monitoring.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;
@CustomType
public final class MetricAlertCriteriaDimension {
/**
* @return One of the dimension names.
*
*/
private String name;
/**
* @return The dimension operator. Possible values are `Include`, `Exclude` and `StartsWith`.
*
*/
private String operator;
/**
* @return The list of dimension values.
*
*/
private List values;
private MetricAlertCriteriaDimension() {}
/**
* @return One of the dimension names.
*
*/
public String name() {
return this.name;
}
/**
* @return The dimension operator. Possible values are `Include`, `Exclude` and `StartsWith`.
*
*/
public String operator() {
return this.operator;
}
/**
* @return The list of dimension values.
*
*/
public List values() {
return this.values;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(MetricAlertCriteriaDimension defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String name;
private String operator;
private List values;
public Builder() {}
public Builder(MetricAlertCriteriaDimension defaults) {
Objects.requireNonNull(defaults);
this.name = defaults.name;
this.operator = defaults.operator;
this.values = defaults.values;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("MetricAlertCriteriaDimension", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder operator(String operator) {
if (operator == null) {
throw new MissingRequiredPropertyException("MetricAlertCriteriaDimension", "operator");
}
this.operator = operator;
return this;
}
@CustomType.Setter
public Builder values(List values) {
if (values == null) {
throw new MissingRequiredPropertyException("MetricAlertCriteriaDimension", "values");
}
this.values = values;
return this;
}
public Builder values(String... values) {
return values(List.of(values));
}
public MetricAlertCriteriaDimension build() {
final var _resultValue = new MetricAlertCriteriaDimension();
_resultValue.name = name;
_resultValue.operator = operator;
_resultValue.values = values;
return _resultValue;
}
}
}