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

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