![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.datafactory.kotlin.outputs.CredentialServicePrincipalServicePrincipalKey.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.datafactory.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property linkedServiceName The name of the Linked Service to use for the Service Principal Key.
* @property secretName The name of the Secret in the Key Vault.
* @property secretVersion The version of the Secret in the Key Vault.
*/
public data class CredentialServicePrincipalServicePrincipalKey(
public val linkedServiceName: String,
public val secretName: String,
public val secretVersion: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.datafactory.outputs.CredentialServicePrincipalServicePrincipalKey): CredentialServicePrincipalServicePrincipalKey =
CredentialServicePrincipalServicePrincipalKey(
linkedServiceName = javaType.linkedServiceName(),
secretName = javaType.secretName(),
secretVersion = javaType.secretVersion().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy