
com.pulumi.azure.keyvault.kotlin.outputs.GetSecretsSecret.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.keyvault.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
/**
*
* @property enabled Whether this secret is enabled.
* @property id The ID of this secret.
* @property name The name of secret.
* @property tags The tags of this secret.
*/
public data class GetSecretsSecret(
public val enabled: Boolean,
public val id: String,
public val name: String,
public val tags: Map,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.keyvault.outputs.GetSecretsSecret): GetSecretsSecret = GetSecretsSecret(
enabled = javaType.enabled(),
id = javaType.id(),
name = javaType.name(),
tags = javaType.tags().map({ args0 -> args0.key.to(args0.value) }).toMap(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy