![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.containerservice.kotlin.outputs.KubernetesClusterLinuxProfile.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.containerservice.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property adminUsername The Admin Username for the Cluster. Changing this forces a new resource to be created.
* @property sshKey An `ssh_key` block as defined below. Only one is currently allowed. Changing this will update the key on all node pools. More information can be found in [the documentation](https://learn.microsoft.com/en-us/azure/aks/node-access#update-ssh-key-on-an-existing-aks-cluster-preview).
*/
public data class KubernetesClusterLinuxProfile(
public val adminUsername: String,
public val sshKey: KubernetesClusterLinuxProfileSshKey,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.containerservice.outputs.KubernetesClusterLinuxProfile): KubernetesClusterLinuxProfile = KubernetesClusterLinuxProfile(
adminUsername = javaType.adminUsername(),
sshKey = javaType.sshKey().let({ args0 ->
com.pulumi.azure.containerservice.kotlin.outputs.KubernetesClusterLinuxProfileSshKey.Companion.toKotlin(args0)
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy