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

com.pulumi.googlenative.bigquery.v2.kotlin.enums.ArgumentMode.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.googlenative.bigquery.v2.kotlin.enums

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

/**
 * Optional. Specifies whether the argument is input or output. Can be set for procedures only.
 */
public enum class ArgumentMode(
    public val javaValue: com.pulumi.googlenative.bigquery.v2.enums.ArgumentMode,
) : ConvertibleToJava {
    ModeUnspecified(com.pulumi.googlenative.bigquery.v2.enums.ArgumentMode.ModeUnspecified),

    /**
     * The argument is input-only.
     */
    In(com.pulumi.googlenative.bigquery.v2.enums.ArgumentMode.In),

    /**
     * The argument is output-only.
     */
    Out(com.pulumi.googlenative.bigquery.v2.enums.ArgumentMode.Out),

    /**
     * The argument is both an input and an output.
     */
    Inout(com.pulumi.googlenative.bigquery.v2.enums.ArgumentMode.Inout),
    ;

    override fun toJava(): com.pulumi.googlenative.bigquery.v2.enums.ArgumentMode = javaValue

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy