
com.pulumi.azure.containerservice.kotlin.outputs.KubernetesClusterServicePrincipal.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.containerservice.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property clientId The Client ID for the Service Principal.
* @property clientSecret The Client Secret for the Service Principal.
*/
public data class KubernetesClusterServicePrincipal(
public val clientId: String,
public val clientSecret: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.containerservice.outputs.KubernetesClusterServicePrincipal): KubernetesClusterServicePrincipal = KubernetesClusterServicePrincipal(
clientId = javaType.clientId(),
clientSecret = javaType.clientSecret(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy