com.pulumi.azure.machinelearning.kotlin.outputs.ComputeClusterSsh.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.machinelearning.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property adminPassword Password of the administrator user account. Changing this forces a new Machine Learning Compute Cluster to be created.
* @property adminUsername Name of the administrator user account which can be used to SSH to nodes. Changing this forces a new Machine Learning Compute Cluster to be created.
* @property keyValue SSH public key of the administrator user account. Changing this forces a new Machine Learning Compute Cluster to be created.
* > **NOTE:** At least one of `admin_password` and `key_value` shoud be specified.
*/
public data class ComputeClusterSsh(
public val adminPassword: String? = null,
public val adminUsername: String,
public val keyValue: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.machinelearning.outputs.ComputeClusterSsh):
ComputeClusterSsh = ComputeClusterSsh(
adminPassword = javaType.adminPassword().map({ args0 -> args0 }).orElse(null),
adminUsername = javaType.adminUsername(),
keyValue = javaType.keyValue().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy