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

com.pulumi.scm.inputs.QosProfileAggregateBandwidthArgs Maven / Gradle / Ivy

// *** 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.scm.inputs;

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


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

    public static final QosProfileAggregateBandwidthArgs Empty = new QosProfileAggregateBandwidthArgs();

    /**
     * guaranteed sending bandwidth in mbps. Value must be between 0 and 16000.
     * 
     */
    @Import(name="egressGuaranteed")
    private @Nullable Output egressGuaranteed;

    /**
     * @return guaranteed sending bandwidth in mbps. Value must be between 0 and 16000.
     * 
     */
    public Optional> egressGuaranteed() {
        return Optional.ofNullable(this.egressGuaranteed);
    }

    /**
     * max sending bandwidth in mbps. Value must be between 0 and 60000.
     * 
     */
    @Import(name="egressMax")
    private @Nullable Output egressMax;

    /**
     * @return max sending bandwidth in mbps. Value must be between 0 and 60000.
     * 
     */
    public Optional> egressMax() {
        return Optional.ofNullable(this.egressMax);
    }

    private QosProfileAggregateBandwidthArgs() {}

    private QosProfileAggregateBandwidthArgs(QosProfileAggregateBandwidthArgs $) {
        this.egressGuaranteed = $.egressGuaranteed;
        this.egressMax = $.egressMax;
    }

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

    public static final class Builder {
        private QosProfileAggregateBandwidthArgs $;

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

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

        /**
         * @param egressGuaranteed guaranteed sending bandwidth in mbps. Value must be between 0 and 16000.
         * 
         * @return builder
         * 
         */
        public Builder egressGuaranteed(@Nullable Output egressGuaranteed) {
            $.egressGuaranteed = egressGuaranteed;
            return this;
        }

        /**
         * @param egressGuaranteed guaranteed sending bandwidth in mbps. Value must be between 0 and 16000.
         * 
         * @return builder
         * 
         */
        public Builder egressGuaranteed(Integer egressGuaranteed) {
            return egressGuaranteed(Output.of(egressGuaranteed));
        }

        /**
         * @param egressMax max sending bandwidth in mbps. Value must be between 0 and 60000.
         * 
         * @return builder
         * 
         */
        public Builder egressMax(@Nullable Output egressMax) {
            $.egressMax = egressMax;
            return this;
        }

        /**
         * @param egressMax max sending bandwidth in mbps. Value must be between 0 and 60000.
         * 
         * @return builder
         * 
         */
        public Builder egressMax(Integer egressMax) {
            return egressMax(Output.of(egressMax));
        }

        public QosProfileAggregateBandwidthArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy