
com.pulumi.googlenative.domains.v1alpha2.kotlin.enums.ManagementSettingsTransferLockState.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-native-kotlin Show documentation
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.domains.v1alpha2.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* Controls whether the domain can be transferred to another registrar.
*/
public enum class ManagementSettingsTransferLockState(
public val javaValue: com.pulumi.googlenative.domains.v1alpha2.enums.ManagementSettingsTransferLockState,
) :
ConvertibleToJava {
/**
* The state is unspecified.
*/
TransferLockStateUnspecified(com.pulumi.googlenative.domains.v1alpha2.enums.ManagementSettingsTransferLockState.TransferLockStateUnspecified),
/**
* The domain is unlocked and can be transferred to another registrar.
*/
Unlocked(com.pulumi.googlenative.domains.v1alpha2.enums.ManagementSettingsTransferLockState.Unlocked),
/**
* The domain is locked and cannot be transferred to another registrar.
*/
Locked(com.pulumi.googlenative.domains.v1alpha2.enums.ManagementSettingsTransferLockState.Locked),
;
override fun toJava(): com.pulumi.googlenative.domains.v1alpha2.enums.ManagementSettingsTransferLockState = javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.domains.v1alpha2.enums.ManagementSettingsTransferLockState): ManagementSettingsTransferLockState =
ManagementSettingsTransferLockState.values().first { it.javaValue == javaType }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy