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

com.pulumi.azure.containerservice.kotlin.outputs.KubernetesClusterNetworkProfileNatGatewayProfile.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.containerservice.kotlin.outputs

import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property effectiveOutboundIps The outcome (resource IDs) of the specified arguments.
 * @property idleTimeoutInMinutes Desired outbound flow idle timeout in minutes for the cluster load balancer. Must be between `4` and `120` inclusive. Defaults to `4`.
 * @property managedOutboundIpCount Count of desired managed outbound IPs for the cluster load balancer. Must be between `1` and `100` inclusive.
 */
public data class KubernetesClusterNetworkProfileNatGatewayProfile(
    public val effectiveOutboundIps: List? = null,
    public val idleTimeoutInMinutes: Int? = null,
    public val managedOutboundIpCount: Int? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.containerservice.outputs.KubernetesClusterNetworkProfileNatGatewayProfile): KubernetesClusterNetworkProfileNatGatewayProfile =
            KubernetesClusterNetworkProfileNatGatewayProfile(
                effectiveOutboundIps = javaType.effectiveOutboundIps().map({ args0 -> args0 }),
                idleTimeoutInMinutes = javaType.idleTimeoutInMinutes().map({ args0 -> args0 }).orElse(null),
                managedOutboundIpCount = javaType.managedOutboundIpCount().map({ args0 -> args0 }).orElse(null),
            )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy