![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.sentinel.outputs.AlertRuleAnomalyDuplicatePrioritizedExcludeObservation 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 com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class AlertRuleAnomalyDuplicatePrioritizedExcludeObservation {
/**
* @return The description of the prioritized exclude observation.
*
*/
private @Nullable String description;
/**
* @return The excluded value per `description`.
*
*/
private @Nullable String exclude;
/**
* @return The name of the prioritized exclude observation.
*
*/
private String name;
/**
* @return The prioritized value per `description`.
*
*/
private @Nullable String prioritize;
private AlertRuleAnomalyDuplicatePrioritizedExcludeObservation() {}
/**
* @return The description of the prioritized exclude observation.
*
*/
public Optional description() {
return Optional.ofNullable(this.description);
}
/**
* @return The excluded value per `description`.
*
*/
public Optional exclude() {
return Optional.ofNullable(this.exclude);
}
/**
* @return The name of the prioritized exclude observation.
*
*/
public String name() {
return this.name;
}
/**
* @return The prioritized value per `description`.
*
*/
public Optional prioritize() {
return Optional.ofNullable(this.prioritize);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(AlertRuleAnomalyDuplicatePrioritizedExcludeObservation defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String description;
private @Nullable String exclude;
private String name;
private @Nullable String prioritize;
public Builder() {}
public Builder(AlertRuleAnomalyDuplicatePrioritizedExcludeObservation defaults) {
Objects.requireNonNull(defaults);
this.description = defaults.description;
this.exclude = defaults.exclude;
this.name = defaults.name;
this.prioritize = defaults.prioritize;
}
@CustomType.Setter
public Builder description(@Nullable String description) {
this.description = description;
return this;
}
@CustomType.Setter
public Builder exclude(@Nullable String exclude) {
this.exclude = exclude;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("AlertRuleAnomalyDuplicatePrioritizedExcludeObservation", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder prioritize(@Nullable String prioritize) {
this.prioritize = prioritize;
return this;
}
public AlertRuleAnomalyDuplicatePrioritizedExcludeObservation build() {
final var _resultValue = new AlertRuleAnomalyDuplicatePrioritizedExcludeObservation();
_resultValue.description = description;
_resultValue.exclude = exclude;
_resultValue.name = name;
_resultValue.prioritize = prioritize;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy