com.pulumi.vault.pkiSecret.kotlin.outputs.GetBackendIssuersResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-vault-kotlin Show documentation
Show all versions of pulumi-vault-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.vault.pkiSecret.kotlin.outputs
import kotlin.Any
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.collections.Map
/**
* A collection of values returned by getBackendIssuers.
* @property backend
* @property id The provider-assigned unique ID for this managed resource.
* @property keyInfo Map of issuer strings read from Vault.
* @property keyInfoJson JSON-encoded issuer data read from Vault.
* @property keys Keys used by issuers under the backend path.
* @property namespace
*/
public data class GetBackendIssuersResult(
public val backend: String,
public val id: String,
public val keyInfo: Map,
public val keyInfoJson: String,
public val keys: List,
public val namespace: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.vault.pkiSecret.outputs.GetBackendIssuersResult): GetBackendIssuersResult = GetBackendIssuersResult(
backend = javaType.backend(),
id = javaType.id(),
keyInfo = javaType.keyInfo().map({ args0 -> args0.key.to(args0.value) }).toMap(),
keyInfoJson = javaType.keyInfoJson(),
keys = javaType.keys().map({ args0 -> args0 }),
namespace = javaType.namespace().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy