com.pulumi.azure.containerservice.kotlin.outputs.GetKubernetesClusterKeyVaultSecretsProvider.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.containerservice.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property secretIdentities A `secret_identity` block as documented below.
* @property secretRotationEnabled Is secret rotation enabled?
* @property secretRotationInterval The interval to poll for secret rotation.
*/
public data class GetKubernetesClusterKeyVaultSecretsProvider(
public val secretIdentities: List,
public val secretRotationEnabled: Boolean,
public val secretRotationInterval: String,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.containerservice.outputs.GetKubernetesClusterKeyVaultSecretsProvider):
GetKubernetesClusterKeyVaultSecretsProvider = GetKubernetesClusterKeyVaultSecretsProvider(
secretIdentities = javaType.secretIdentities().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.containerservice.kotlin.outputs.GetKubernetesClusterKeyVaultSecretsProviderSecretIdentity.Companion.toKotlin(args0)
})
}),
secretRotationEnabled = javaType.secretRotationEnabled(),
secretRotationInterval = javaType.secretRotationInterval(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy