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

com.pulumi.gcp.compute.kotlin.outputs.GetRegionInstanceTemplateNetworkInterfaceAccessConfig.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: 8.10.0.0
Show newest version
@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 [networking tier][network-tier] used for configuring
 * this instance template. This field can take the following values: PREMIUM or
 * STANDARD. If this field is not specified, it is assumed to be PREMIUM.
 * @property publicPtrDomainName The DNS domain name for the public PTR record.The DNS domain name for the public PTR record.
 */
public data class GetRegionInstanceTemplateNetworkInterfaceAccessConfig(
    public val natIp: String,
    public val networkTier: String,
    public val publicPtrDomainName: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.compute.outputs.GetRegionInstanceTemplateNetworkInterfaceAccessConfig): GetRegionInstanceTemplateNetworkInterfaceAccessConfig =
            GetRegionInstanceTemplateNetworkInterfaceAccessConfig(
                natIp = javaType.natIp(),
                networkTier = javaType.networkTier(),
                publicPtrDomainName = javaType.publicPtrDomainName(),
            )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy