
com.pulumi.azure.arckubernetes.kotlin.outputs.FluxConfigurationBlobStorageServicePrincipal.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.arckubernetes.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @property clientCertificateBase64 Base64-encoded certificate used to authenticate a Service Principal .
* @property clientCertificatePassword Specifies the password for the certificate used to authenticate a Service Principal .
* @property clientCertificateSendChain Specifies whether to include x5c header in client claims when acquiring a token to enable subject name / issuer based authentication for the client certificate.
* @property clientId Specifies the client ID for authenticating a Service Principal.
* @property clientSecret Specifies the client secret for authenticating a Service Principal.
* @property tenantId Specifies the tenant ID for authenticating a Service Principal.
*/
public data class FluxConfigurationBlobStorageServicePrincipal(
public val clientCertificateBase64: String? = null,
public val clientCertificatePassword: String? = null,
public val clientCertificateSendChain: Boolean? = null,
public val clientId: String,
public val clientSecret: String? = null,
public val tenantId: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.arckubernetes.outputs.FluxConfigurationBlobStorageServicePrincipal): FluxConfigurationBlobStorageServicePrincipal = FluxConfigurationBlobStorageServicePrincipal(
clientCertificateBase64 = javaType.clientCertificateBase64().map({ args0 -> args0 }).orElse(null),
clientCertificatePassword = javaType.clientCertificatePassword().map({ args0 ->
args0
}).orElse(null),
clientCertificateSendChain = javaType.clientCertificateSendChain().map({ args0 ->
args0
}).orElse(null),
clientId = javaType.clientId(),
clientSecret = javaType.clientSecret().map({ args0 -> args0 }).orElse(null),
tenantId = javaType.tenantId(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy