![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.containerservice.kotlin.outputs.KubernetesClusterNetworkProfileNatGatewayProfile.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@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