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

com.pulumi.sumologic.inputs.CseInsightsStatusState 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.sumologic.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 CseInsightsStatusState extends com.pulumi.resources.ResourceArgs {

    public static final CseInsightsStatusState Empty = new CseInsightsStatusState();

    /**
     * The description of the insights status.
     * 
     * The following attributes are exported:
     * 
     */
    @Import(name="description")
    private @Nullable Output description;

    /**
     * @return The description of the insights status.
     * 
     * The following attributes are exported:
     * 
     */
    public Optional> description() {
        return Optional.ofNullable(this.description);
    }

    @Import(name="displayName")
    private @Nullable Output displayName;

    public Optional> displayName() {
        return Optional.ofNullable(this.displayName);
    }

    /**
     * The name of the insights status.
     * 
     */
    @Import(name="name")
    private @Nullable Output name;

    /**
     * @return The name of the insights status.
     * 
     */
    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    private CseInsightsStatusState() {}

    private CseInsightsStatusState(CseInsightsStatusState $) {
        this.description = $.description;
        this.displayName = $.displayName;
        this.name = $.name;
    }

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

    public static final class Builder {
        private CseInsightsStatusState $;

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

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

        /**
         * @param description The description of the insights status.
         * 
         * The following attributes are exported:
         * 
         * @return builder
         * 
         */
        public Builder description(@Nullable Output description) {
            $.description = description;
            return this;
        }

        /**
         * @param description The description of the insights status.
         * 
         * The following attributes are exported:
         * 
         * @return builder
         * 
         */
        public Builder description(String description) {
            return description(Output.of(description));
        }

        public Builder displayName(@Nullable Output displayName) {
            $.displayName = displayName;
            return this;
        }

        public Builder displayName(String displayName) {
            return displayName(Output.of(displayName));
        }

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

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

        public CseInsightsStatusState build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy