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

com.pulumi.azurenative.iotoperations.kotlin.enums.OperatorValues.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: 2.82.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.iotoperations.kotlin.enums

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

/**
 * operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.
 */
public enum class OperatorValues(
    public val javaValue: com.pulumi.azurenative.iotoperations.enums.OperatorValues,
) : ConvertibleToJava {
    /**
     * In operator.
     */
    In(com.pulumi.azurenative.iotoperations.enums.OperatorValues.In),

    /**
     * NotIn operator.
     */
    NotIn(com.pulumi.azurenative.iotoperations.enums.OperatorValues.NotIn),

    /**
     * Exists operator.
     */
    Exists(com.pulumi.azurenative.iotoperations.enums.OperatorValues.Exists),

    /**
     * DoesNotExist operator.
     */
    DoesNotExist(com.pulumi.azurenative.iotoperations.enums.OperatorValues.DoesNotExist),
    ;

    override fun toJava(): com.pulumi.azurenative.iotoperations.enums.OperatorValues = javaValue

    public companion object {
        public fun toKotlin(javaType: com.pulumi.azurenative.iotoperations.enums.OperatorValues): OperatorValues = OperatorValues.values().first { it.javaValue == javaType }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy