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

com.pulumi.akamai.inputs.GetPropertyRulesBuilderRulesV20230105CriterionMatchCpCodeValueCpCodeLimitsArgs Maven / Gradle / Ivy

The 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.akamai.inputs;

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


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

    public static final GetPropertyRulesBuilderRulesV20230105CriterionMatchCpCodeValueCpCodeLimitsArgs Empty = new GetPropertyRulesBuilderRulesV20230105CriterionMatchCpCodeValueCpCodeLimitsArgs();

    /**
     * This field is only intended for export compatibility purposes, and modifying it will not impact your use of the behavior.
     * 
     */
    @Import(name="currentCapacity")
    private @Nullable Output currentCapacity;

    /**
     * @return This field is only intended for export compatibility purposes, and modifying it will not impact your use of the behavior.
     * 
     */
    public Optional> currentCapacity() {
        return Optional.ofNullable(this.currentCapacity);
    }

    /**
     * This field is only intended for export compatibility purposes, and modifying it will not impact your use of the behavior.
     * 
     */
    @Import(name="limit")
    private @Nullable Output limit;

    /**
     * @return This field is only intended for export compatibility purposes, and modifying it will not impact your use of the behavior.
     * 
     */
    public Optional> limit() {
        return Optional.ofNullable(this.limit);
    }

    /**
     * This field is only intended for export compatibility purposes, and modifying it will not impact your use of the behavior.
     * 
     */
    @Import(name="limitType")
    private @Nullable Output limitType;

    /**
     * @return This field is only intended for export compatibility purposes, and modifying it will not impact your use of the behavior.
     * 
     */
    public Optional> limitType() {
        return Optional.ofNullable(this.limitType);
    }

    private GetPropertyRulesBuilderRulesV20230105CriterionMatchCpCodeValueCpCodeLimitsArgs() {}

    private GetPropertyRulesBuilderRulesV20230105CriterionMatchCpCodeValueCpCodeLimitsArgs(GetPropertyRulesBuilderRulesV20230105CriterionMatchCpCodeValueCpCodeLimitsArgs $) {
        this.currentCapacity = $.currentCapacity;
        this.limit = $.limit;
        this.limitType = $.limitType;
    }

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

    public static final class Builder {
        private GetPropertyRulesBuilderRulesV20230105CriterionMatchCpCodeValueCpCodeLimitsArgs $;

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

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

        /**
         * @param currentCapacity This field is only intended for export compatibility purposes, and modifying it will not impact your use of the behavior.
         * 
         * @return builder
         * 
         */
        public Builder currentCapacity(@Nullable Output currentCapacity) {
            $.currentCapacity = currentCapacity;
            return this;
        }

        /**
         * @param currentCapacity This field is only intended for export compatibility purposes, and modifying it will not impact your use of the behavior.
         * 
         * @return builder
         * 
         */
        public Builder currentCapacity(Integer currentCapacity) {
            return currentCapacity(Output.of(currentCapacity));
        }

        /**
         * @param limit This field is only intended for export compatibility purposes, and modifying it will not impact your use of the behavior.
         * 
         * @return builder
         * 
         */
        public Builder limit(@Nullable Output limit) {
            $.limit = limit;
            return this;
        }

        /**
         * @param limit This field is only intended for export compatibility purposes, and modifying it will not impact your use of the behavior.
         * 
         * @return builder
         * 
         */
        public Builder limit(Integer limit) {
            return limit(Output.of(limit));
        }

        /**
         * @param limitType This field is only intended for export compatibility purposes, and modifying it will not impact your use of the behavior.
         * 
         * @return builder
         * 
         */
        public Builder limitType(@Nullable Output limitType) {
            $.limitType = limitType;
            return this;
        }

        /**
         * @param limitType This field is only intended for export compatibility purposes, and modifying it will not impact your use of the behavior.
         * 
         * @return builder
         * 
         */
        public Builder limitType(String limitType) {
            return limitType(Output.of(limitType));
        }

        public GetPropertyRulesBuilderRulesV20230105CriterionMatchCpCodeValueCpCodeLimitsArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy