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

com.pulumi.azurenative.documentdb.ThroughputPoolAccountArgs 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;

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


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

    public static final ThroughputPoolAccountArgs Empty = new ThroughputPoolAccountArgs();

    /**
     * The location of  global database account in the throughputPool.
     * 
     */
    @Import(name="accountLocation")
    private @Nullable Output accountLocation;

    /**
     * @return The location of  global database account in the throughputPool.
     * 
     */
    public Optional> accountLocation() {
        return Optional.ofNullable(this.accountLocation);
    }

    /**
     * The resource identifier of global database account in the throughputPool.
     * 
     */
    @Import(name="accountResourceIdentifier")
    private @Nullable Output accountResourceIdentifier;

    /**
     * @return The resource identifier of global database account in the throughputPool.
     * 
     */
    public Optional> accountResourceIdentifier() {
        return Optional.ofNullable(this.accountResourceIdentifier);
    }

    /**
     * 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")
    private @Nullable Output throughputPoolAccountName;

    /**
     * @return Cosmos DB global database account in a Throughput Pool
     * 
     */
    public Optional> throughputPoolAccountName() {
        return Optional.ofNullable(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 ThroughputPoolAccountArgs() {}

    private ThroughputPoolAccountArgs(ThroughputPoolAccountArgs $) {
        this.accountLocation = $.accountLocation;
        this.accountResourceIdentifier = $.accountResourceIdentifier;
        this.resourceGroupName = $.resourceGroupName;
        this.throughputPoolAccountName = $.throughputPoolAccountName;
        this.throughputPoolName = $.throughputPoolName;
    }

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

    public static final class Builder {
        private ThroughputPoolAccountArgs $;

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

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

        /**
         * @param accountLocation The location of  global database account in the throughputPool.
         * 
         * @return builder
         * 
         */
        public Builder accountLocation(@Nullable Output accountLocation) {
            $.accountLocation = accountLocation;
            return this;
        }

        /**
         * @param accountLocation The location of  global database account in the throughputPool.
         * 
         * @return builder
         * 
         */
        public Builder accountLocation(String accountLocation) {
            return accountLocation(Output.of(accountLocation));
        }

        /**
         * @param accountResourceIdentifier The resource identifier of global database account in the throughputPool.
         * 
         * @return builder
         * 
         */
        public Builder accountResourceIdentifier(@Nullable Output accountResourceIdentifier) {
            $.accountResourceIdentifier = accountResourceIdentifier;
            return this;
        }

        /**
         * @param accountResourceIdentifier The resource identifier of global database account in the throughputPool.
         * 
         * @return builder
         * 
         */
        public Builder accountResourceIdentifier(String accountResourceIdentifier) {
            return accountResourceIdentifier(Output.of(accountResourceIdentifier));
        }

        /**
         * @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(@Nullable 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 ThroughputPoolAccountArgs build() {
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("ThroughputPoolAccountArgs", "resourceGroupName");
            }
            if ($.throughputPoolName == null) {
                throw new MissingRequiredPropertyException("ThroughputPoolAccountArgs", "throughputPoolName");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy