com.pulumi.azure.datafactory.kotlin.outputs.IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicense.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
import kotlin.collections.Map
/**
*
* @property linkedServiceName
* @property parameters
* @property secretName
* @property secretVersion
*/
public data class IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicense(
public val linkedServiceName: String,
public val parameters: Map? = null,
public val secretName: String,
public val secretVersion: String? = null,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.datafactory.outputs.IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicense):
IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicense =
IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicense(
linkedServiceName = javaType.linkedServiceName(),
parameters = javaType.parameters().map({ args0 -> args0.key.to(args0.value) }).toMap(),
secretName = javaType.secretName(),
secretVersion = javaType.secretVersion().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy