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

com.pulumi.googlenative.run.v2.kotlin.enums.GoogleCloudRunV2VpcAccessEgress.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.run.v2.kotlin.enums

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

/**
 * Traffic VPC egress settings.
 */
public enum class GoogleCloudRunV2VpcAccessEgress(
    public val javaValue: com.pulumi.googlenative.run.v2.enums.GoogleCloudRunV2VpcAccessEgress,
) : ConvertibleToJava {
    /**
     * Unspecified
     */
    VpcEgressUnspecified(com.pulumi.googlenative.run.v2.enums.GoogleCloudRunV2VpcAccessEgress.VpcEgressUnspecified),

    /**
     * All outbound traffic is routed through the VPC connector.
     */
    AllTraffic(com.pulumi.googlenative.run.v2.enums.GoogleCloudRunV2VpcAccessEgress.AllTraffic),

    /**
     * Only private IP ranges are routed through the VPC connector.
     */
    PrivateRangesOnly(com.pulumi.googlenative.run.v2.enums.GoogleCloudRunV2VpcAccessEgress.PrivateRangesOnly),
    ;

    override fun toJava(): com.pulumi.googlenative.run.v2.enums.GoogleCloudRunV2VpcAccessEgress =
        javaValue

    public companion object {
        public fun toKotlin(javaType: com.pulumi.googlenative.run.v2.enums.GoogleCloudRunV2VpcAccessEgress): GoogleCloudRunV2VpcAccessEgress =
            GoogleCloudRunV2VpcAccessEgress.values().first { it.javaValue == javaType }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy