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

com.pulumi.vault.pkiSecret.kotlin.outputs.GetBackendKeyResult.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

/**
 * A collection of values returned by getBackendKey.
 * @property backend
 * @property id The provider-assigned unique ID for this managed resource.
 * @property keyId ID of the key.
 * @property keyName Name of the key.
 * @property keyRef
 * @property keyType Type of the key.
 * @property namespace
 */
public data class GetBackendKeyResult(
    public val backend: String,
    public val id: String,
    public val keyId: String,
    public val keyName: String,
    public val keyRef: String,
    public val keyType: String,
    public val namespace: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.vault.pkiSecret.outputs.GetBackendKeyResult): GetBackendKeyResult = GetBackendKeyResult(
            backend = javaType.backend(),
            id = javaType.id(),
            keyId = javaType.keyId(),
            keyName = javaType.keyName(),
            keyRef = javaType.keyRef(),
            keyType = javaType.keyType(),
            namespace = javaType.namespace().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy