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

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

import com.pulumi.core.annotations.CustomType;
import java.lang.Integer;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class CapacityResponse {
    /**
     * @return The total throughput limit imposed on the account. A totalThroughputLimit of 2000 imposes a strict limit of max throughput that can be provisioned on that account to be 2000. A totalThroughputLimit of -1 indicates no limits on provisioning of throughput.
     * 
     */
    private @Nullable Integer totalThroughputLimit;

    private CapacityResponse() {}
    /**
     * @return The total throughput limit imposed on the account. A totalThroughputLimit of 2000 imposes a strict limit of max throughput that can be provisioned on that account to be 2000. A totalThroughputLimit of -1 indicates no limits on provisioning of throughput.
     * 
     */
    public Optional totalThroughputLimit() {
        return Optional.ofNullable(this.totalThroughputLimit);
    }

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

    public static Builder builder(CapacityResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable Integer totalThroughputLimit;
        public Builder() {}
        public Builder(CapacityResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.totalThroughputLimit = defaults.totalThroughputLimit;
        }

        @CustomType.Setter
        public Builder totalThroughputLimit(@Nullable Integer totalThroughputLimit) {

            this.totalThroughputLimit = totalThroughputLimit;
            return this;
        }
        public CapacityResponse build() {
            final var _resultValue = new CapacityResponse();
            _resultValue.totalThroughputLimit = totalThroughputLimit;
            return _resultValue;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy