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

com.pulumi.azure.lab.kotlin.outputs.LabConnectionSetting.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.

There is a newer version: 6.14.0.0
Show newest version
@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