![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.containerapp.kotlin.outputs.EnvironmentDaprComponentSecret.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.containerapp.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property identity The identity to use for accessing key vault reference.
* @property keyVaultSecretId The Key Vault Secret ID. Could be either one of `id` or `versionless_id`.
* @property name The Secret name.
* @property value The value for this secret.
*/
public data class EnvironmentDaprComponentSecret(
public val identity: String? = null,
public val keyVaultSecretId: String? = null,
public val name: String,
public val `value`: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.containerapp.outputs.EnvironmentDaprComponentSecret): EnvironmentDaprComponentSecret = EnvironmentDaprComponentSecret(
identity = javaType.identity().map({ args0 -> args0 }).orElse(null),
keyVaultSecretId = javaType.keyVaultSecretId().map({ args0 -> args0 }).orElse(null),
name = javaType.name(),
`value` = javaType.`value`().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy