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

com.pulumi.azurenative.hybriddata.inputs.GetDataStoreArgs 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.hybriddata.inputs;

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


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

    public static final GetDataStoreArgs Empty = new GetDataStoreArgs();

    /**
     * The name of the DataManager Resource within the specified resource group. DataManager names must be between 3 and 24 characters in length and use any alphanumeric and underscore only
     * 
     */
    @Import(name="dataManagerName", required=true)
    private Output dataManagerName;

    /**
     * @return The name of the DataManager Resource within the specified resource group. DataManager names must be between 3 and 24 characters in length and use any alphanumeric and underscore only
     * 
     */
    public Output dataManagerName() {
        return this.dataManagerName;
    }

    /**
     * The data store/repository name queried.
     * 
     */
    @Import(name="dataStoreName", required=true)
    private Output dataStoreName;

    /**
     * @return The data store/repository name queried.
     * 
     */
    public Output dataStoreName() {
        return this.dataStoreName;
    }

    /**
     * The Resource Group Name
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private Output resourceGroupName;

    /**
     * @return The Resource Group Name
     * 
     */
    public Output resourceGroupName() {
        return this.resourceGroupName;
    }

    private GetDataStoreArgs() {}

    private GetDataStoreArgs(GetDataStoreArgs $) {
        this.dataManagerName = $.dataManagerName;
        this.dataStoreName = $.dataStoreName;
        this.resourceGroupName = $.resourceGroupName;
    }

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

    public static final class Builder {
        private GetDataStoreArgs $;

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

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

        /**
         * @param dataManagerName The name of the DataManager Resource within the specified resource group. DataManager names must be between 3 and 24 characters in length and use any alphanumeric and underscore only
         * 
         * @return builder
         * 
         */
        public Builder dataManagerName(Output dataManagerName) {
            $.dataManagerName = dataManagerName;
            return this;
        }

        /**
         * @param dataManagerName The name of the DataManager Resource within the specified resource group. DataManager names must be between 3 and 24 characters in length and use any alphanumeric and underscore only
         * 
         * @return builder
         * 
         */
        public Builder dataManagerName(String dataManagerName) {
            return dataManagerName(Output.of(dataManagerName));
        }

        /**
         * @param dataStoreName The data store/repository name queried.
         * 
         * @return builder
         * 
         */
        public Builder dataStoreName(Output dataStoreName) {
            $.dataStoreName = dataStoreName;
            return this;
        }

        /**
         * @param dataStoreName The data store/repository name queried.
         * 
         * @return builder
         * 
         */
        public Builder dataStoreName(String dataStoreName) {
            return dataStoreName(Output.of(dataStoreName));
        }

        /**
         * @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));
        }

        public GetDataStoreArgs build() {
            if ($.dataManagerName == null) {
                throw new MissingRequiredPropertyException("GetDataStoreArgs", "dataManagerName");
            }
            if ($.dataStoreName == null) {
                throw new MissingRequiredPropertyException("GetDataStoreArgs", "dataStoreName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetDataStoreArgs", "resourceGroupName");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy