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

com.pulumi.gcp.compute.kotlin.outputs.GetInstanceTemplateNetworkInterfaceIpv6AccessConfig.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 externalIpv6 The first IPv6 address of the external IPv6 range associated with this instance, prefix length is stored in externalIpv6PrefixLength in ipv6AccessConfig. The field is output only, an IPv6 address from a subnetwork associated with the instance will be allocated dynamically.
 * @property externalIpv6PrefixLength The prefix length of the external IPv6 range.
 * @property name The name of the instance template. One of `name`, `filter` or `self_link_unique` must be provided.
 * @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 domain name to be used when creating DNSv6 records for the external IPv6 ranges.
 */
public data class GetInstanceTemplateNetworkInterfaceIpv6AccessConfig(
    public val externalIpv6: String,
    public val externalIpv6PrefixLength: String,
    public val name: String,
    public val networkTier: String,
    public val publicPtrDomainName: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.compute.outputs.GetInstanceTemplateNetworkInterfaceIpv6AccessConfig): GetInstanceTemplateNetworkInterfaceIpv6AccessConfig =
            GetInstanceTemplateNetworkInterfaceIpv6AccessConfig(
                externalIpv6 = javaType.externalIpv6(),
                externalIpv6PrefixLength = javaType.externalIpv6PrefixLength(),
                name = javaType.name(),
                networkTier = javaType.networkTier(),
                publicPtrDomainName = javaType.publicPtrDomainName(),
            )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy