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

com.pulumi.googlenative.compute.beta.kotlin.enums.RuleAction.kt Maven / Gradle / Ivy

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

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

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

/**
 * This is deprecated and has no effect. Do not use.
 */
public enum class RuleAction(
    public val javaValue: com.pulumi.googlenative.compute.beta.enums.RuleAction,
) : ConvertibleToJava {
    /**
     * This is deprecated and has no effect. Do not use.
     */
    Allow(com.pulumi.googlenative.compute.beta.enums.RuleAction.Allow),

    /**
     * This is deprecated and has no effect. Do not use.
     */
    AllowWithLog(com.pulumi.googlenative.compute.beta.enums.RuleAction.AllowWithLog),

    /**
     * This is deprecated and has no effect. Do not use.
     */
    Deny(com.pulumi.googlenative.compute.beta.enums.RuleAction.Deny),

    /**
     * This is deprecated and has no effect. Do not use.
     */
    DenyWithLog(com.pulumi.googlenative.compute.beta.enums.RuleAction.DenyWithLog),

    /**
     * This is deprecated and has no effect. Do not use.
     */
    Log(com.pulumi.googlenative.compute.beta.enums.RuleAction.Log),

    /**
     * This is deprecated and has no effect. Do not use.
     */
    NoAction(com.pulumi.googlenative.compute.beta.enums.RuleAction.NoAction),
    ;

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy