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

com.pulumi.azure.containerservice.inputs.KubernetesClusterNetworkProfileNatGatewayProfileArgs Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.

There is a newer version: 6.10.0-alpha.1731737215
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.azure.containerservice.inputs;

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


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

    public static final KubernetesClusterNetworkProfileNatGatewayProfileArgs Empty = new KubernetesClusterNetworkProfileNatGatewayProfileArgs();

    /**
     * The outcome (resource IDs) of the specified arguments.
     * 
     */
    @Import(name="effectiveOutboundIps")
    private @Nullable Output> effectiveOutboundIps;

    /**
     * @return The outcome (resource IDs) of the specified arguments.
     * 
     */
    public Optional>> effectiveOutboundIps() {
        return Optional.ofNullable(this.effectiveOutboundIps);
    }

    /**
     * Desired outbound flow idle timeout in minutes for the managed nat gateway. Must be between `4` and `120` inclusive. Defaults to `4`.
     * 
     */
    @Import(name="idleTimeoutInMinutes")
    private @Nullable Output idleTimeoutInMinutes;

    /**
     * @return Desired outbound flow idle timeout in minutes for the managed nat gateway. Must be between `4` and `120` inclusive. Defaults to `4`.
     * 
     */
    public Optional> idleTimeoutInMinutes() {
        return Optional.ofNullable(this.idleTimeoutInMinutes);
    }

    /**
     * Count of desired managed outbound IPs for the managed nat gateway. Must be between `1` and `16` inclusive.
     * 
     */
    @Import(name="managedOutboundIpCount")
    private @Nullable Output managedOutboundIpCount;

    /**
     * @return Count of desired managed outbound IPs for the managed nat gateway. Must be between `1` and `16` inclusive.
     * 
     */
    public Optional> managedOutboundIpCount() {
        return Optional.ofNullable(this.managedOutboundIpCount);
    }

    private KubernetesClusterNetworkProfileNatGatewayProfileArgs() {}

    private KubernetesClusterNetworkProfileNatGatewayProfileArgs(KubernetesClusterNetworkProfileNatGatewayProfileArgs $) {
        this.effectiveOutboundIps = $.effectiveOutboundIps;
        this.idleTimeoutInMinutes = $.idleTimeoutInMinutes;
        this.managedOutboundIpCount = $.managedOutboundIpCount;
    }

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

    public static final class Builder {
        private KubernetesClusterNetworkProfileNatGatewayProfileArgs $;

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

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

        /**
         * @param effectiveOutboundIps The outcome (resource IDs) of the specified arguments.
         * 
         * @return builder
         * 
         */
        public Builder effectiveOutboundIps(@Nullable Output> effectiveOutboundIps) {
            $.effectiveOutboundIps = effectiveOutboundIps;
            return this;
        }

        /**
         * @param effectiveOutboundIps The outcome (resource IDs) of the specified arguments.
         * 
         * @return builder
         * 
         */
        public Builder effectiveOutboundIps(List effectiveOutboundIps) {
            return effectiveOutboundIps(Output.of(effectiveOutboundIps));
        }

        /**
         * @param effectiveOutboundIps The outcome (resource IDs) of the specified arguments.
         * 
         * @return builder
         * 
         */
        public Builder effectiveOutboundIps(String... effectiveOutboundIps) {
            return effectiveOutboundIps(List.of(effectiveOutboundIps));
        }

        /**
         * @param idleTimeoutInMinutes Desired outbound flow idle timeout in minutes for the managed nat gateway. Must be between `4` and `120` inclusive. Defaults to `4`.
         * 
         * @return builder
         * 
         */
        public Builder idleTimeoutInMinutes(@Nullable Output idleTimeoutInMinutes) {
            $.idleTimeoutInMinutes = idleTimeoutInMinutes;
            return this;
        }

        /**
         * @param idleTimeoutInMinutes Desired outbound flow idle timeout in minutes for the managed nat gateway. Must be between `4` and `120` inclusive. Defaults to `4`.
         * 
         * @return builder
         * 
         */
        public Builder idleTimeoutInMinutes(Integer idleTimeoutInMinutes) {
            return idleTimeoutInMinutes(Output.of(idleTimeoutInMinutes));
        }

        /**
         * @param managedOutboundIpCount Count of desired managed outbound IPs for the managed nat gateway. Must be between `1` and `16` inclusive.
         * 
         * @return builder
         * 
         */
        public Builder managedOutboundIpCount(@Nullable Output managedOutboundIpCount) {
            $.managedOutboundIpCount = managedOutboundIpCount;
            return this;
        }

        /**
         * @param managedOutboundIpCount Count of desired managed outbound IPs for the managed nat gateway. Must be between `1` and `16` inclusive.
         * 
         * @return builder
         * 
         */
        public Builder managedOutboundIpCount(Integer managedOutboundIpCount) {
            return managedOutboundIpCount(Output.of(managedOutboundIpCount));
        }

        public KubernetesClusterNetworkProfileNatGatewayProfileArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy