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

com.pulumi.googlenative.identitytoolkit.v2.kotlin.enums.GoogleCloudIdentitytoolkitAdminV2ProviderConfigState.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.identitytoolkit.v2.kotlin.enums

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

/**
 * Describes the state of the MultiFactor Authentication type.
 */
public enum class GoogleCloudIdentitytoolkitAdminV2ProviderConfigState(
    public val javaValue: com.pulumi.googlenative.identitytoolkit.v2.enums.GoogleCloudIdentitytoolkitAdminV2ProviderConfigState,
) :
    ConvertibleToJava {
    /**
     * Illegal State, should not be used.
     */
    MfaStateUnspecified(com.pulumi.googlenative.identitytoolkit.v2.enums.GoogleCloudIdentitytoolkitAdminV2ProviderConfigState.MfaStateUnspecified),

    /**
     * Multi-factor authentication cannot be used for this project.
     */
    Disabled(com.pulumi.googlenative.identitytoolkit.v2.enums.GoogleCloudIdentitytoolkitAdminV2ProviderConfigState.Disabled),

    /**
     * Multi-factor authentication can be used for this project.
     */
    Enabled(com.pulumi.googlenative.identitytoolkit.v2.enums.GoogleCloudIdentitytoolkitAdminV2ProviderConfigState.Enabled),

    /**
     * Multi-factor authentication is required for this project. Users from this project must authenticate with the second factor.
     */
    Mandatory(com.pulumi.googlenative.identitytoolkit.v2.enums.GoogleCloudIdentitytoolkitAdminV2ProviderConfigState.Mandatory),
    ;

    override fun toJava(): com.pulumi.googlenative.identitytoolkit.v2.enums.GoogleCloudIdentitytoolkitAdminV2ProviderConfigState = javaValue

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy