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

com.pulumi.googlenative.essentialcontacts.v1.kotlin.enums.FolderContactValidationState.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.essentialcontacts.v1.kotlin.enums

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

/**
 * The validity of the contact. A contact is considered valid if it is the correct recipient for notifications for a particular resource.
 */
public enum class FolderContactValidationState(
    public val javaValue: com.pulumi.googlenative.essentialcontacts.v1.enums.FolderContactValidationState,
) :
    ConvertibleToJava {
    /**
     * The validation state is unknown or unspecified.
     */
    ValidationStateUnspecified(com.pulumi.googlenative.essentialcontacts.v1.enums.FolderContactValidationState.ValidationStateUnspecified),

    /**
     * The contact is marked as valid. This is usually done manually by the contact admin. All new contacts begin in the valid state.
     */
    Valid(com.pulumi.googlenative.essentialcontacts.v1.enums.FolderContactValidationState.Valid),

    /**
     * The contact is considered invalid. This may become the state if the contact's email is found to be unreachable.
     */
    Invalid(com.pulumi.googlenative.essentialcontacts.v1.enums.FolderContactValidationState.Invalid),
    ;

    override fun toJava(): com.pulumi.googlenative.essentialcontacts.v1.enums.FolderContactValidationState = javaValue

    public companion object {
        public fun toKotlin(javaType: com.pulumi.googlenative.essentialcontacts.v1.enums.FolderContactValidationState): FolderContactValidationState =
            FolderContactValidationState.values().first { it.javaValue == javaType }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy