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

com.pulumi.azurenative.documentdb.inputs.GetThroughputPoolAccountArgs Maven / Gradle / Ivy

There is a newer version: 2.72.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.documentdb.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 GetThroughputPoolAccountArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetThroughputPoolAccountArgs Empty = new GetThroughputPoolAccountArgs();

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

    /**
     * @return The name of the resource group. The name is case insensitive.
     * 
     */
    public Output resourceGroupName() {
        return this.resourceGroupName;
    }

    /**
     * Cosmos DB global database account in a Throughput Pool
     * 
     */
    @Import(name="throughputPoolAccountName", required=true)
    private Output throughputPoolAccountName;

    /**
     * @return Cosmos DB global database account in a Throughput Pool
     * 
     */
    public Output throughputPoolAccountName() {
        return this.throughputPoolAccountName;
    }

    /**
     * Cosmos DB Throughput Pool name.
     * 
     */
    @Import(name="throughputPoolName", required=true)
    private Output throughputPoolName;

    /**
     * @return Cosmos DB Throughput Pool name.
     * 
     */
    public Output throughputPoolName() {
        return this.throughputPoolName;
    }

    private GetThroughputPoolAccountArgs() {}

    private GetThroughputPoolAccountArgs(GetThroughputPoolAccountArgs $) {
        this.resourceGroupName = $.resourceGroupName;
        this.throughputPoolAccountName = $.throughputPoolAccountName;
        this.throughputPoolName = $.throughputPoolName;
    }

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

    public static final class Builder {
        private GetThroughputPoolAccountArgs $;

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

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

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

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

        /**
         * @param throughputPoolAccountName Cosmos DB global database account in a Throughput Pool
         * 
         * @return builder
         * 
         */
        public Builder throughputPoolAccountName(Output throughputPoolAccountName) {
            $.throughputPoolAccountName = throughputPoolAccountName;
            return this;
        }

        /**
         * @param throughputPoolAccountName Cosmos DB global database account in a Throughput Pool
         * 
         * @return builder
         * 
         */
        public Builder throughputPoolAccountName(String throughputPoolAccountName) {
            return throughputPoolAccountName(Output.of(throughputPoolAccountName));
        }

        /**
         * @param throughputPoolName Cosmos DB Throughput Pool name.
         * 
         * @return builder
         * 
         */
        public Builder throughputPoolName(Output throughputPoolName) {
            $.throughputPoolName = throughputPoolName;
            return this;
        }

        /**
         * @param throughputPoolName Cosmos DB Throughput Pool name.
         * 
         * @return builder
         * 
         */
        public Builder throughputPoolName(String throughputPoolName) {
            return throughputPoolName(Output.of(throughputPoolName));
        }

        public GetThroughputPoolAccountArgs build() {
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetThroughputPoolAccountArgs", "resourceGroupName");
            }
            if ($.throughputPoolAccountName == null) {
                throw new MissingRequiredPropertyException("GetThroughputPoolAccountArgs", "throughputPoolAccountName");
            }
            if ($.throughputPoolName == null) {
                throw new MissingRequiredPropertyException("GetThroughputPoolAccountArgs", "throughputPoolName");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy