com.pulumi.azure.lab.kotlin.outputs.LabConnectionSetting.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.lab.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property clientRdpAccess The enabled access level for Client Access over RDP. Possible value is `Public`.
* > **NOTE:** This property is `None` when it isn't specified.
* @property clientSshAccess The enabled access level for Client Access over SSH. Possible value is `Public`.
* > **NOTE:** This property is `None` when it isn't specified.
*/
public data class LabConnectionSetting(
public val clientRdpAccess: String? = null,
public val clientSshAccess: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.lab.outputs.LabConnectionSetting):
LabConnectionSetting = LabConnectionSetting(
clientRdpAccess = javaType.clientRdpAccess().map({ args0 -> args0 }).orElse(null),
clientSshAccess = javaType.clientSshAccess().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy