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

com.pulumi.gcp.kms.kotlin.outputs.GetKMSSecretCiphertextResult.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: 8.12.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.kms.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * A collection of values returned by getKMSSecretCiphertext.
 * @property ciphertext Contains the result of encrypting the provided plaintext, encoded in base64.
 * @property cryptoKey
 * @property id The provider-assigned unique ID for this managed resource.
 * @property plaintext
 */
public data class GetKMSSecretCiphertextResult(
    public val ciphertext: String,
    public val cryptoKey: String,
    public val id: String,
    public val plaintext: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.kms.outputs.GetKMSSecretCiphertextResult): GetKMSSecretCiphertextResult = GetKMSSecretCiphertextResult(
            ciphertext = javaType.ciphertext(),
            cryptoKey = javaType.cryptoKey(),
            id = javaType.id(),
            plaintext = javaType.plaintext(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy