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

com.pulumi.azure.containerservice.kotlin.outputs.KubernetesClusterLinuxProfile.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.15.0.0
Show newest version
@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