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

com.pulumi.googlenative.compute.beta.kotlin.enums.InstancePropertiesPrivateIpv6GoogleAccess.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.

The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.googlenative.compute.beta.kotlin.enums

import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress

/**
 * The private IPv6 google access type for VMs. If not specified, use INHERIT_FROM_SUBNETWORK as default. Note that for MachineImage, this is not supported yet.
 */
public enum class InstancePropertiesPrivateIpv6GoogleAccess(
    public val javaValue: com.pulumi.googlenative.compute.beta.enums.InstancePropertiesPrivateIpv6GoogleAccess,
) :
    ConvertibleToJava {
    /**
     * Bidirectional private IPv6 access to/from Google services. If specified, the subnetwork who is attached to the instance's default network interface will be assigned an internal IPv6 prefix if it doesn't have before.
     */
    EnableBidirectionalAccessToGoogle(com.pulumi.googlenative.compute.beta.enums.InstancePropertiesPrivateIpv6GoogleAccess.EnableBidirectionalAccessToGoogle),

    /**
     * Outbound private IPv6 access from VMs in this subnet to Google services. If specified, the subnetwork who is attached to the instance's default network interface will be assigned an internal IPv6 prefix if it doesn't have before.
     */
    EnableOutboundVmAccessToGoogle(com.pulumi.googlenative.compute.beta.enums.InstancePropertiesPrivateIpv6GoogleAccess.EnableOutboundVmAccessToGoogle),

    /**
     * Each network interface inherits PrivateIpv6GoogleAccess from its subnetwork.
     */
    InheritFromSubnetwork(com.pulumi.googlenative.compute.beta.enums.InstancePropertiesPrivateIpv6GoogleAccess.InheritFromSubnetwork),
    ;

    override fun toJava(): com.pulumi.googlenative.compute.beta.enums.InstancePropertiesPrivateIpv6GoogleAccess =
        javaValue

    public companion object {
        public fun toKotlin(javaType: com.pulumi.googlenative.compute.beta.enums.InstancePropertiesPrivateIpv6GoogleAccess): InstancePropertiesPrivateIpv6GoogleAccess =
            InstancePropertiesPrivateIpv6GoogleAccess.values().first { it.javaValue == javaType }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy