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

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

Go to download

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.

There is a newer version: 6.10.0-alpha.1731737215
Show newest version
// *** 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.azure.sentinel.inputs.AlertRuleNrtAlertDetailsOverrideDynamicPropertyArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final AlertRuleNrtAlertDetailsOverrideArgs Empty = new AlertRuleNrtAlertDetailsOverrideArgs();

    /**
     * The format containing columns name(s) to override the description of this Sentinel Alert Rule.
     * 
     */
    @Import(name="descriptionFormat")
    private @Nullable Output descriptionFormat;

    /**
     * @return The format containing columns name(s) to override the description of this Sentinel Alert Rule.
     * 
     */
    public Optional> descriptionFormat() {
        return Optional.ofNullable(this.descriptionFormat);
    }

    /**
     * The format containing columns name(s) to override the name of this Sentinel Alert Rule.
     * 
     */
    @Import(name="displayNameFormat")
    private @Nullable Output displayNameFormat;

    /**
     * @return The format containing columns name(s) to override the name of this Sentinel Alert Rule.
     * 
     */
    public Optional> displayNameFormat() {
        return Optional.ofNullable(this.displayNameFormat);
    }

    /**
     * A list of `dynamic_property` blocks as defined below.
     * 
     */
    @Import(name="dynamicProperties")
    private @Nullable Output> dynamicProperties;

    /**
     * @return A list of `dynamic_property` blocks as defined below.
     * 
     */
    public Optional>> dynamicProperties() {
        return Optional.ofNullable(this.dynamicProperties);
    }

    /**
     * The column name to take the alert severity from.
     * 
     */
    @Import(name="severityColumnName")
    private @Nullable Output severityColumnName;

    /**
     * @return The column name to take the alert severity from.
     * 
     */
    public Optional> severityColumnName() {
        return Optional.ofNullable(this.severityColumnName);
    }

    /**
     * The column name to take the alert tactics from.
     * 
     */
    @Import(name="tacticsColumnName")
    private @Nullable Output tacticsColumnName;

    /**
     * @return The column name to take the alert tactics from.
     * 
     */
    public Optional> tacticsColumnName() {
        return Optional.ofNullable(this.tacticsColumnName);
    }

    private AlertRuleNrtAlertDetailsOverrideArgs() {}

    private AlertRuleNrtAlertDetailsOverrideArgs(AlertRuleNrtAlertDetailsOverrideArgs $) {
        this.descriptionFormat = $.descriptionFormat;
        this.displayNameFormat = $.displayNameFormat;
        this.dynamicProperties = $.dynamicProperties;
        this.severityColumnName = $.severityColumnName;
        this.tacticsColumnName = $.tacticsColumnName;
    }

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

    public static final class Builder {
        private AlertRuleNrtAlertDetailsOverrideArgs $;

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

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

        /**
         * @param descriptionFormat The format containing columns name(s) to override the description of this Sentinel Alert Rule.
         * 
         * @return builder
         * 
         */
        public Builder descriptionFormat(@Nullable Output descriptionFormat) {
            $.descriptionFormat = descriptionFormat;
            return this;
        }

        /**
         * @param descriptionFormat The format containing columns name(s) to override the description of this Sentinel Alert Rule.
         * 
         * @return builder
         * 
         */
        public Builder descriptionFormat(String descriptionFormat) {
            return descriptionFormat(Output.of(descriptionFormat));
        }

        /**
         * @param displayNameFormat The format containing columns name(s) to override the name of this Sentinel Alert Rule.
         * 
         * @return builder
         * 
         */
        public Builder displayNameFormat(@Nullable Output displayNameFormat) {
            $.displayNameFormat = displayNameFormat;
            return this;
        }

        /**
         * @param displayNameFormat The format containing columns name(s) to override the name of this Sentinel Alert Rule.
         * 
         * @return builder
         * 
         */
        public Builder displayNameFormat(String displayNameFormat) {
            return displayNameFormat(Output.of(displayNameFormat));
        }

        /**
         * @param dynamicProperties A list of `dynamic_property` blocks as defined below.
         * 
         * @return builder
         * 
         */
        public Builder dynamicProperties(@Nullable Output> dynamicProperties) {
            $.dynamicProperties = dynamicProperties;
            return this;
        }

        /**
         * @param dynamicProperties A list of `dynamic_property` blocks as defined below.
         * 
         * @return builder
         * 
         */
        public Builder dynamicProperties(List dynamicProperties) {
            return dynamicProperties(Output.of(dynamicProperties));
        }

        /**
         * @param dynamicProperties A list of `dynamic_property` blocks as defined below.
         * 
         * @return builder
         * 
         */
        public Builder dynamicProperties(AlertRuleNrtAlertDetailsOverrideDynamicPropertyArgs... dynamicProperties) {
            return dynamicProperties(List.of(dynamicProperties));
        }

        /**
         * @param severityColumnName The column name to take the alert severity from.
         * 
         * @return builder
         * 
         */
        public Builder severityColumnName(@Nullable Output severityColumnName) {
            $.severityColumnName = severityColumnName;
            return this;
        }

        /**
         * @param severityColumnName The column name to take the alert severity from.
         * 
         * @return builder
         * 
         */
        public Builder severityColumnName(String severityColumnName) {
            return severityColumnName(Output.of(severityColumnName));
        }

        /**
         * @param tacticsColumnName The column name to take the alert tactics from.
         * 
         * @return builder
         * 
         */
        public Builder tacticsColumnName(@Nullable Output tacticsColumnName) {
            $.tacticsColumnName = tacticsColumnName;
            return this;
        }

        /**
         * @param tacticsColumnName The column name to take the alert tactics from.
         * 
         * @return builder
         * 
         */
        public Builder tacticsColumnName(String tacticsColumnName) {
            return tacticsColumnName(Output.of(tacticsColumnName));
        }

        public AlertRuleNrtAlertDetailsOverrideArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy