All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.vault.pkiSecret.kotlin.outputs.GetBackendIssuerResult.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.4.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.vault.pkiSecret.kotlin.outputs

import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 * A collection of values returned by getBackendIssuer.
 * @property backend
 * @property caChains The CA chain as a list of format specific certificates.
 * @property certificate Certificate associated with this issuer.
 * @property id The provider-assigned unique ID for this managed resource.
 * @property issuerId ID of the issuer.
 * @property issuerName Name of the issuer.
 * @property issuerRef
 * @property keyId ID of the key used by the issuer.
 * @property leafNotAfterBehavior Behavior of a leaf's NotAfter field during issuance.
 * @property manualChains Chain of issuer references to build this issuer's computed
 * CAChain field from, when non-empty.
 * @property namespace
 * @property usage Allowed usages for this issuer.
 */
public data class GetBackendIssuerResult(
    public val backend: String,
    public val caChains: List,
    public val certificate: String,
    public val id: String,
    public val issuerId: String,
    public val issuerName: String,
    public val issuerRef: String,
    public val keyId: String,
    public val leafNotAfterBehavior: String,
    public val manualChains: List,
    public val namespace: String? = null,
    public val usage: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.vault.pkiSecret.outputs.GetBackendIssuerResult): GetBackendIssuerResult = GetBackendIssuerResult(
            backend = javaType.backend(),
            caChains = javaType.caChains().map({ args0 -> args0 }),
            certificate = javaType.certificate(),
            id = javaType.id(),
            issuerId = javaType.issuerId(),
            issuerName = javaType.issuerName(),
            issuerRef = javaType.issuerRef(),
            keyId = javaType.keyId(),
            leafNotAfterBehavior = javaType.leafNotAfterBehavior(),
            manualChains = javaType.manualChains().map({ args0 -> args0 }),
            namespace = javaType.namespace().map({ args0 -> args0 }).orElse(null),
            usage = javaType.usage(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy