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

com.pulumi.azure.datashare.inputs.DatasetKustoDatabaseState 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.datashare.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 DatasetKustoDatabaseState extends com.pulumi.resources.ResourceArgs {

    public static final DatasetKustoDatabaseState Empty = new DatasetKustoDatabaseState();

    /**
     * The name of the Data Share Dataset.
     * 
     */
    @Import(name="displayName")
    private @Nullable Output displayName;

    /**
     * @return The name of the Data Share Dataset.
     * 
     */
    public Optional> displayName() {
        return Optional.ofNullable(this.displayName);
    }

    /**
     * The location of the Kusto Cluster.
     * 
     */
    @Import(name="kustoClusterLocation")
    private @Nullable Output kustoClusterLocation;

    /**
     * @return The location of the Kusto Cluster.
     * 
     */
    public Optional> kustoClusterLocation() {
        return Optional.ofNullable(this.kustoClusterLocation);
    }

    /**
     * The resource ID of the Kusto Cluster Database to be shared with the receiver. Changing this forces a new Data Share Kusto Database Dataset to be created.
     * 
     */
    @Import(name="kustoDatabaseId")
    private @Nullable Output kustoDatabaseId;

    /**
     * @return The resource ID of the Kusto Cluster Database to be shared with the receiver. Changing this forces a new Data Share Kusto Database Dataset to be created.
     * 
     */
    public Optional> kustoDatabaseId() {
        return Optional.ofNullable(this.kustoDatabaseId);
    }

    /**
     * The name which should be used for this Data Share Kusto Database Dataset. Changing this forces a new Data Share Kusto Database Dataset to be created.
     * 
     */
    @Import(name="name")
    private @Nullable Output name;

    /**
     * @return The name which should be used for this Data Share Kusto Database Dataset. Changing this forces a new Data Share Kusto Database Dataset to be created.
     * 
     */
    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    /**
     * The resource ID of the Data Share where this Data Share Kusto Database Dataset should be created. Changing this forces a new Data Share Kusto Database Dataset to be created.
     * 
     */
    @Import(name="shareId")
    private @Nullable Output shareId;

    /**
     * @return The resource ID of the Data Share where this Data Share Kusto Database Dataset should be created. Changing this forces a new Data Share Kusto Database Dataset to be created.
     * 
     */
    public Optional> shareId() {
        return Optional.ofNullable(this.shareId);
    }

    private DatasetKustoDatabaseState() {}

    private DatasetKustoDatabaseState(DatasetKustoDatabaseState $) {
        this.displayName = $.displayName;
        this.kustoClusterLocation = $.kustoClusterLocation;
        this.kustoDatabaseId = $.kustoDatabaseId;
        this.name = $.name;
        this.shareId = $.shareId;
    }

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

    public static final class Builder {
        private DatasetKustoDatabaseState $;

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

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

        /**
         * @param displayName The name of the Data Share Dataset.
         * 
         * @return builder
         * 
         */
        public Builder displayName(@Nullable Output displayName) {
            $.displayName = displayName;
            return this;
        }

        /**
         * @param displayName The name of the Data Share Dataset.
         * 
         * @return builder
         * 
         */
        public Builder displayName(String displayName) {
            return displayName(Output.of(displayName));
        }

        /**
         * @param kustoClusterLocation The location of the Kusto Cluster.
         * 
         * @return builder
         * 
         */
        public Builder kustoClusterLocation(@Nullable Output kustoClusterLocation) {
            $.kustoClusterLocation = kustoClusterLocation;
            return this;
        }

        /**
         * @param kustoClusterLocation The location of the Kusto Cluster.
         * 
         * @return builder
         * 
         */
        public Builder kustoClusterLocation(String kustoClusterLocation) {
            return kustoClusterLocation(Output.of(kustoClusterLocation));
        }

        /**
         * @param kustoDatabaseId The resource ID of the Kusto Cluster Database to be shared with the receiver. Changing this forces a new Data Share Kusto Database Dataset to be created.
         * 
         * @return builder
         * 
         */
        public Builder kustoDatabaseId(@Nullable Output kustoDatabaseId) {
            $.kustoDatabaseId = kustoDatabaseId;
            return this;
        }

        /**
         * @param kustoDatabaseId The resource ID of the Kusto Cluster Database to be shared with the receiver. Changing this forces a new Data Share Kusto Database Dataset to be created.
         * 
         * @return builder
         * 
         */
        public Builder kustoDatabaseId(String kustoDatabaseId) {
            return kustoDatabaseId(Output.of(kustoDatabaseId));
        }

        /**
         * @param name The name which should be used for this Data Share Kusto Database Dataset. Changing this forces a new Data Share Kusto Database Dataset to be created.
         * 
         * @return builder
         * 
         */
        public Builder name(@Nullable Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name The name which should be used for this Data Share Kusto Database Dataset. Changing this forces a new Data Share Kusto Database Dataset to be created.
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        /**
         * @param shareId The resource ID of the Data Share where this Data Share Kusto Database Dataset should be created. Changing this forces a new Data Share Kusto Database Dataset to be created.
         * 
         * @return builder
         * 
         */
        public Builder shareId(@Nullable Output shareId) {
            $.shareId = shareId;
            return this;
        }

        /**
         * @param shareId The resource ID of the Data Share where this Data Share Kusto Database Dataset should be created. Changing this forces a new Data Share Kusto Database Dataset to be created.
         * 
         * @return builder
         * 
         */
        public Builder shareId(String shareId) {
            return shareId(Output.of(shareId));
        }

        public DatasetKustoDatabaseState build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy