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

com.pulumi.azure.containerservice.kotlin.outputs.GetKubernetesClusterKubeletIdentity.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 clientId The Client ID of the user-defined Managed Identity assigned to the Kubelets.
 * @property objectId The Object ID of the user-defined Managed Identity assigned to the Kubelets.
 * @property userAssignedIdentityId The ID of the User Assigned Identity assigned to the Kubelets.
 */
public data class GetKubernetesClusterKubeletIdentity(
    public val clientId: String,
    public val objectId: String,
    public val userAssignedIdentityId: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.containerservice.outputs.GetKubernetesClusterKubeletIdentity): GetKubernetesClusterKubeletIdentity = GetKubernetesClusterKubeletIdentity(
            clientId = javaType.clientId(),
            objectId = javaType.objectId(),
            userAssignedIdentityId = javaType.userAssignedIdentityId(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy