All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.sentinel.inputs.AlertRuleAnomalyBuiltInPrioritizedExcludeObservationArgs Maven / Gradle / Ivy

// *** 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.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class AlertRuleAnomalyBuiltInPrioritizedExcludeObservationArgs extends com.pulumi.resources.ResourceArgs {

    public static final AlertRuleAnomalyBuiltInPrioritizedExcludeObservationArgs Empty = new AlertRuleAnomalyBuiltInPrioritizedExcludeObservationArgs();

    /**
     * The description of the threshold observation.
     * 
     */
    @Import(name="description")
    private @Nullable Output description;

    /**
     * @return The description of the threshold observation.
     * 
     */
    public Optional> description() {
        return Optional.ofNullable(this.description);
    }

    /**
     * The excluded value per `description`.
     * 
     */
    @Import(name="exclude")
    private @Nullable Output exclude;

    /**
     * @return The excluded value per `description`.
     * 
     */
    public Optional> exclude() {
        return Optional.ofNullable(this.exclude);
    }

    /**
     * The Name of the built-in Anomaly Alert Rule.
     * 
     */
    @Import(name="name")
    private @Nullable Output name;

    /**
     * @return The Name of the built-in Anomaly Alert Rule.
     * 
     */
    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    /**
     * The prioritized value per `description`.
     * 
     */
    @Import(name="prioritize")
    private @Nullable Output prioritize;

    /**
     * @return The prioritized value per `description`.
     * 
     */
    public Optional> prioritize() {
        return Optional.ofNullable(this.prioritize);
    }

    private AlertRuleAnomalyBuiltInPrioritizedExcludeObservationArgs() {}

    private AlertRuleAnomalyBuiltInPrioritizedExcludeObservationArgs(AlertRuleAnomalyBuiltInPrioritizedExcludeObservationArgs $) {
        this.description = $.description;
        this.exclude = $.exclude;
        this.name = $.name;
        this.prioritize = $.prioritize;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(AlertRuleAnomalyBuiltInPrioritizedExcludeObservationArgs defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private AlertRuleAnomalyBuiltInPrioritizedExcludeObservationArgs $;

        public Builder() {
            $ = new AlertRuleAnomalyBuiltInPrioritizedExcludeObservationArgs();
        }

        public Builder(AlertRuleAnomalyBuiltInPrioritizedExcludeObservationArgs defaults) {
            $ = new AlertRuleAnomalyBuiltInPrioritizedExcludeObservationArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param description The description of the threshold observation.
         * 
         * @return builder
         * 
         */
        public Builder description(@Nullable Output description) {
            $.description = description;
            return this;
        }

        /**
         * @param description The description of the threshold observation.
         * 
         * @return builder
         * 
         */
        public Builder description(String description) {
            return description(Output.of(description));
        }

        /**
         * @param exclude The excluded value per `description`.
         * 
         * @return builder
         * 
         */
        public Builder exclude(@Nullable Output exclude) {
            $.exclude = exclude;
            return this;
        }

        /**
         * @param exclude The excluded value per `description`.
         * 
         * @return builder
         * 
         */
        public Builder exclude(String exclude) {
            return exclude(Output.of(exclude));
        }

        /**
         * @param name The Name of the built-in Anomaly Alert Rule.
         * 
         * @return builder
         * 
         */
        public Builder name(@Nullable Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name The Name of the built-in Anomaly Alert Rule.
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        /**
         * @param prioritize The prioritized value per `description`.
         * 
         * @return builder
         * 
         */
        public Builder prioritize(@Nullable Output prioritize) {
            $.prioritize = prioritize;
            return this;
        }

        /**
         * @param prioritize The prioritized value per `description`.
         * 
         * @return builder
         * 
         */
        public Builder prioritize(String prioritize) {
            return prioritize(Output.of(prioritize));
        }

        public AlertRuleAnomalyBuiltInPrioritizedExcludeObservationArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy