com.pulumi.gcp.compute.kotlin.outputs.RegionInstanceTemplateNetworkInterfaceAccessConfig.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.compute.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property natIp The IP address that will be 1:1 mapped to the instance's
* network ip. If not given, one will be generated.
* @property networkTier The service-level to be provided for IPv6 traffic when the
* subnet has an external subnet. Only PREMIUM and STANDARD tier is valid for IPv6.
* @property publicPtrDomainName The DNS domain name for the public PTR record.The DNS domain name for the public PTR record.
*/
public data class RegionInstanceTemplateNetworkInterfaceAccessConfig(
public val natIp: String? = null,
public val networkTier: String? = null,
public val publicPtrDomainName: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.compute.outputs.RegionInstanceTemplateNetworkInterfaceAccessConfig): RegionInstanceTemplateNetworkInterfaceAccessConfig =
RegionInstanceTemplateNetworkInterfaceAccessConfig(
natIp = javaType.natIp().map({ args0 -> args0 }).orElse(null),
networkTier = javaType.networkTier().map({ args0 -> args0 }).orElse(null),
publicPtrDomainName = javaType.publicPtrDomainName().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy