com.pulumi.azure.sentinel.outputs.AlertRuleAnomalyBuiltInSingleSelectObservation 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.sentinel.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class AlertRuleAnomalyBuiltInSingleSelectObservation {
/**
* @return The description of the threshold observation.
*
*/
private @Nullable String description;
/**
* @return The Name of the built-in Anomaly Alert Rule.
*
*/
private @Nullable String name;
/**
* @return A list of supported values of the single select observation.
*
*/
private @Nullable List supportedValues;
/**
* @return The value of the threshold observation.
*
*/
private @Nullable String value;
private AlertRuleAnomalyBuiltInSingleSelectObservation() {}
/**
* @return The description of the threshold observation.
*
*/
public Optional description() {
return Optional.ofNullable(this.description);
}
/**
* @return The Name of the built-in Anomaly Alert Rule.
*
*/
public Optional name() {
return Optional.ofNullable(this.name);
}
/**
* @return A list of supported values of the single select observation.
*
*/
public List supportedValues() {
return this.supportedValues == null ? List.of() : this.supportedValues;
}
/**
* @return The value of the threshold observation.
*
*/
public Optional value() {
return Optional.ofNullable(this.value);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(AlertRuleAnomalyBuiltInSingleSelectObservation defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String description;
private @Nullable String name;
private @Nullable List supportedValues;
private @Nullable String value;
public Builder() {}
public Builder(AlertRuleAnomalyBuiltInSingleSelectObservation defaults) {
Objects.requireNonNull(defaults);
this.description = defaults.description;
this.name = defaults.name;
this.supportedValues = defaults.supportedValues;
this.value = defaults.value;
}
@CustomType.Setter
public Builder description(@Nullable String description) {
this.description = description;
return this;
}
@CustomType.Setter
public Builder name(@Nullable String name) {
this.name = name;
return this;
}
@CustomType.Setter
public Builder supportedValues(@Nullable List supportedValues) {
this.supportedValues = supportedValues;
return this;
}
public Builder supportedValues(String... supportedValues) {
return supportedValues(List.of(supportedValues));
}
@CustomType.Setter
public Builder value(@Nullable String value) {
this.value = value;
return this;
}
public AlertRuleAnomalyBuiltInSingleSelectObservation build() {
final var _resultValue = new AlertRuleAnomalyBuiltInSingleSelectObservation();
_resultValue.description = description;
_resultValue.name = name;
_resultValue.supportedValues = supportedValues;
_resultValue.value = value;
return _resultValue;
}
}
}