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

com.pulumi.azurenative.securityinsights.UebaArgs Maven / Gradle / Ivy

There is a newer version: 2.72.0
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.azurenative.securityinsights;

import com.pulumi.azurenative.securityinsights.enums.UebaDataSources;
import com.pulumi.core.Either;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.core.internal.Codegen;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final UebaArgs Empty = new UebaArgs();

    /**
     * The relevant data sources that enriched by ueba
     * 
     */
    @Import(name="dataSources")
    private @Nullable Output>> dataSources;

    /**
     * @return The relevant data sources that enriched by ueba
     * 
     */
    public Optional>>> dataSources() {
        return Optional.ofNullable(this.dataSources);
    }

    /**
     * The kind of the setting
     * Expected value is 'Ueba'.
     * 
     */
    @Import(name="kind", required=true)
    private Output kind;

    /**
     * @return The kind of the setting
     * Expected value is 'Ueba'.
     * 
     */
    public Output kind() {
        return this.kind;
    }

    /**
     * The name of the resource group. The name is case insensitive.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private Output resourceGroupName;

    /**
     * @return The name of the resource group. The name is case insensitive.
     * 
     */
    public Output resourceGroupName() {
        return this.resourceGroupName;
    }

    /**
     * The setting name. Supports - Anomalies, EyesOn, EntityAnalytics, Ueba
     * 
     */
    @Import(name="settingsName")
    private @Nullable Output settingsName;

    /**
     * @return The setting name. Supports - Anomalies, EyesOn, EntityAnalytics, Ueba
     * 
     */
    public Optional> settingsName() {
        return Optional.ofNullable(this.settingsName);
    }

    /**
     * The name of the workspace.
     * 
     */
    @Import(name="workspaceName", required=true)
    private Output workspaceName;

    /**
     * @return The name of the workspace.
     * 
     */
    public Output workspaceName() {
        return this.workspaceName;
    }

    private UebaArgs() {}

    private UebaArgs(UebaArgs $) {
        this.dataSources = $.dataSources;
        this.kind = $.kind;
        this.resourceGroupName = $.resourceGroupName;
        this.settingsName = $.settingsName;
        this.workspaceName = $.workspaceName;
    }

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

    public static final class Builder {
        private UebaArgs $;

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

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

        /**
         * @param dataSources The relevant data sources that enriched by ueba
         * 
         * @return builder
         * 
         */
        public Builder dataSources(@Nullable Output>> dataSources) {
            $.dataSources = dataSources;
            return this;
        }

        /**
         * @param dataSources The relevant data sources that enriched by ueba
         * 
         * @return builder
         * 
         */
        public Builder dataSources(List> dataSources) {
            return dataSources(Output.of(dataSources));
        }

        /**
         * @param dataSources The relevant data sources that enriched by ueba
         * 
         * @return builder
         * 
         */
        public Builder dataSources(Either... dataSources) {
            return dataSources(List.of(dataSources));
        }

        /**
         * @param kind The kind of the setting
         * Expected value is 'Ueba'.
         * 
         * @return builder
         * 
         */
        public Builder kind(Output kind) {
            $.kind = kind;
            return this;
        }

        /**
         * @param kind The kind of the setting
         * Expected value is 'Ueba'.
         * 
         * @return builder
         * 
         */
        public Builder kind(String kind) {
            return kind(Output.of(kind));
        }

        /**
         * @param resourceGroupName The name of the resource group. The name is case insensitive.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(Output resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param resourceGroupName The name of the resource group. The name is case insensitive.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            return resourceGroupName(Output.of(resourceGroupName));
        }

        /**
         * @param settingsName The setting name. Supports - Anomalies, EyesOn, EntityAnalytics, Ueba
         * 
         * @return builder
         * 
         */
        public Builder settingsName(@Nullable Output settingsName) {
            $.settingsName = settingsName;
            return this;
        }

        /**
         * @param settingsName The setting name. Supports - Anomalies, EyesOn, EntityAnalytics, Ueba
         * 
         * @return builder
         * 
         */
        public Builder settingsName(String settingsName) {
            return settingsName(Output.of(settingsName));
        }

        /**
         * @param workspaceName The name of the workspace.
         * 
         * @return builder
         * 
         */
        public Builder workspaceName(Output workspaceName) {
            $.workspaceName = workspaceName;
            return this;
        }

        /**
         * @param workspaceName The name of the workspace.
         * 
         * @return builder
         * 
         */
        public Builder workspaceName(String workspaceName) {
            return workspaceName(Output.of(workspaceName));
        }

        public UebaArgs build() {
            $.kind = Codegen.stringProp("kind").output().arg($.kind).require();
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("UebaArgs", "resourceGroupName");
            }
            if ($.workspaceName == null) {
                throw new MissingRequiredPropertyException("UebaArgs", "workspaceName");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy