![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.deviceregistry.kotlin.enums.UserAuthenticationMode.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-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.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.deviceregistry.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* Defines the mode to authenticate the user of the client at the server.
*/
public enum class UserAuthenticationMode(
public val javaValue: com.pulumi.azurenative.deviceregistry.enums.UserAuthenticationMode,
) : ConvertibleToJava {
/**
* The user authentication mode is anonymous.
*/
Anonymous(com.pulumi.azurenative.deviceregistry.enums.UserAuthenticationMode.Anonymous),
/**
* The user authentication mode is an x509 certificate.
*/
Certificate(com.pulumi.azurenative.deviceregistry.enums.UserAuthenticationMode.Certificate),
/**
* The user authentication mode is a username and password.
*/
UsernamePassword(com.pulumi.azurenative.deviceregistry.enums.UserAuthenticationMode.UsernamePassword),
;
override fun toJava(): com.pulumi.azurenative.deviceregistry.enums.UserAuthenticationMode =
javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.deviceregistry.enums.UserAuthenticationMode): UserAuthenticationMode = UserAuthenticationMode.values().first { it.javaValue == javaType }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy