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

com.pulumi.azurenative.datashare.KustoClusterDataSetArgs Maven / Gradle / Ivy

There is a newer version: 2.78.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.datashare;

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.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final KustoClusterDataSetArgs Empty = new KustoClusterDataSetArgs();

    /**
     * The name of the share account.
     * 
     */
    @Import(name="accountName", required=true)
    private Output accountName;

    /**
     * @return The name of the share account.
     * 
     */
    public Output accountName() {
        return this.accountName;
    }

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

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

    /**
     * Kind of data set.
     * Expected value is 'KustoCluster'.
     * 
     */
    @Import(name="kind", required=true)
    private Output kind;

    /**
     * @return Kind of data set.
     * Expected value is 'KustoCluster'.
     * 
     */
    public Output kind() {
        return this.kind;
    }

    /**
     * Resource id of the kusto cluster.
     * 
     */
    @Import(name="kustoClusterResourceId", required=true)
    private Output kustoClusterResourceId;

    /**
     * @return Resource id of the kusto cluster.
     * 
     */
    public Output kustoClusterResourceId() {
        return this.kustoClusterResourceId;
    }

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

    /**
     * @return The resource group name.
     * 
     */
    public Output resourceGroupName() {
        return this.resourceGroupName;
    }

    /**
     * The name of the share to add the data set to.
     * 
     */
    @Import(name="shareName", required=true)
    private Output shareName;

    /**
     * @return The name of the share to add the data set to.
     * 
     */
    public Output shareName() {
        return this.shareName;
    }

    private KustoClusterDataSetArgs() {}

    private KustoClusterDataSetArgs(KustoClusterDataSetArgs $) {
        this.accountName = $.accountName;
        this.dataSetName = $.dataSetName;
        this.kind = $.kind;
        this.kustoClusterResourceId = $.kustoClusterResourceId;
        this.resourceGroupName = $.resourceGroupName;
        this.shareName = $.shareName;
    }

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

    public static final class Builder {
        private KustoClusterDataSetArgs $;

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

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

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

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

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

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

        /**
         * @param kind Kind of data set.
         * Expected value is 'KustoCluster'.
         * 
         * @return builder
         * 
         */
        public Builder kind(Output kind) {
            $.kind = kind;
            return this;
        }

        /**
         * @param kind Kind of data set.
         * Expected value is 'KustoCluster'.
         * 
         * @return builder
         * 
         */
        public Builder kind(String kind) {
            return kind(Output.of(kind));
        }

        /**
         * @param kustoClusterResourceId Resource id of the kusto cluster.
         * 
         * @return builder
         * 
         */
        public Builder kustoClusterResourceId(Output kustoClusterResourceId) {
            $.kustoClusterResourceId = kustoClusterResourceId;
            return this;
        }

        /**
         * @param kustoClusterResourceId Resource id of the kusto cluster.
         * 
         * @return builder
         * 
         */
        public Builder kustoClusterResourceId(String kustoClusterResourceId) {
            return kustoClusterResourceId(Output.of(kustoClusterResourceId));
        }

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

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

        /**
         * @param shareName The name of the share to add the data set to.
         * 
         * @return builder
         * 
         */
        public Builder shareName(Output shareName) {
            $.shareName = shareName;
            return this;
        }

        /**
         * @param shareName The name of the share to add the data set to.
         * 
         * @return builder
         * 
         */
        public Builder shareName(String shareName) {
            return shareName(Output.of(shareName));
        }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy