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

com.pulumi.azure.containerservice.kotlin.outputs.GetKubernetesClusterKubeAdminConfig.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.containerservice.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property clientCertificate Base64 encoded public certificate used by clients to authenticate to the Kubernetes cluster.
 * @property clientKey Base64 encoded private key used by clients to authenticate to the Kubernetes cluster.
 * @property clusterCaCertificate Base64 encoded public CA certificate used as the root of trust for the Kubernetes cluster.
 * @property host The Kubernetes cluster server host.
 * @property password A password or token used to authenticate to the Kubernetes cluster.
 * @property username A username used to authenticate to the Kubernetes cluster.
 */
public data class GetKubernetesClusterKubeAdminConfig(
    public val clientCertificate: String,
    public val clientKey: String,
    public val clusterCaCertificate: String,
    public val host: String,
    public val password: String,
    public val username: String,
) {
    public companion object {
        public
        fun toKotlin(javaType: com.pulumi.azure.containerservice.outputs.GetKubernetesClusterKubeAdminConfig):
            GetKubernetesClusterKubeAdminConfig = GetKubernetesClusterKubeAdminConfig(
            clientCertificate = javaType.clientCertificate(),
            clientKey = javaType.clientKey(),
            clusterCaCertificate = javaType.clusterCaCertificate(),
            host = javaType.host(),
            password = javaType.password(),
            username = javaType.username(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy