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

com.pulumi.azurenative.datashare.inputs.GetKustoTableDataSetPlainArgs Maven / Gradle / Ivy

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

import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;


public final class GetKustoTableDataSetPlainArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetKustoTableDataSetPlainArgs Empty = new GetKustoTableDataSetPlainArgs();

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

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

    /**
     * The name of the dataSet.
     * 
     */
    @Import(name="dataSetName", required=true)
    private String dataSetName;

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

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

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

    /**
     * The name of the share.
     * 
     */
    @Import(name="shareName", required=true)
    private String shareName;

    /**
     * @return The name of the share.
     * 
     */
    public String shareName() {
        return this.shareName;
    }

    private GetKustoTableDataSetPlainArgs() {}

    private GetKustoTableDataSetPlainArgs(GetKustoTableDataSetPlainArgs $) {
        this.accountName = $.accountName;
        this.dataSetName = $.dataSetName;
        this.resourceGroupName = $.resourceGroupName;
        this.shareName = $.shareName;
    }

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

    public static final class Builder {
        private GetKustoTableDataSetPlainArgs $;

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

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

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

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

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

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

        public GetKustoTableDataSetPlainArgs build() {
            if ($.accountName == null) {
                throw new MissingRequiredPropertyException("GetKustoTableDataSetPlainArgs", "accountName");
            }
            if ($.dataSetName == null) {
                throw new MissingRequiredPropertyException("GetKustoTableDataSetPlainArgs", "dataSetName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetKustoTableDataSetPlainArgs", "resourceGroupName");
            }
            if ($.shareName == null) {
                throw new MissingRequiredPropertyException("GetKustoTableDataSetPlainArgs", "shareName");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy