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

com.pulumi.gcp.compute.kotlin.outputs.GetInstanceNetworkInterfaceIpv6AccessConfig.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.13.1.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. To use a static external IP address, it must be unused and in the same region as the instance's zone. If not specified, Google Cloud will automatically assign an external IPv6 address from the instance's subnetwork.
 * @property externalIpv6PrefixLength The prefix length of the external IPv6 range.
 * @property name The name of the instance. One of `name` or `self_link` must be provided.
 * @property networkTier The [networking tier][network-tier] used for configuring this instance. One of `PREMIUM` or `STANDARD`.
 * @property publicPtrDomainName The DNS domain name for the public PTR record.
 * @property securityPolicy A full or partial URL to a security policy to add to this instance. If this field is set to an empty string it will remove the associated security policy.
 */
public data class GetInstanceNetworkInterfaceIpv6AccessConfig(
    public val externalIpv6: String,
    public val externalIpv6PrefixLength: String,
    public val name: String,
    public val networkTier: String,
    public val publicPtrDomainName: String,
    public val securityPolicy: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.compute.outputs.GetInstanceNetworkInterfaceIpv6AccessConfig): GetInstanceNetworkInterfaceIpv6AccessConfig = GetInstanceNetworkInterfaceIpv6AccessConfig(
            externalIpv6 = javaType.externalIpv6(),
            externalIpv6PrefixLength = javaType.externalIpv6PrefixLength(),
            name = javaType.name(),
            networkTier = javaType.networkTier(),
            publicPtrDomainName = javaType.publicPtrDomainName(),
            securityPolicy = javaType.securityPolicy(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy