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

com.pulumi.gcp.kms.kotlin.outputs.KeyRingImportJobPublicKey.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

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

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property pem (Output)
 * The public key, encoded in PEM format. For more information, see the RFC 7468 sections
 * for General Considerations and Textual Encoding of Subject Public Key Info.
 */
public data class KeyRingImportJobPublicKey(
    public val pem: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.kms.outputs.KeyRingImportJobPublicKey): KeyRingImportJobPublicKey = KeyRingImportJobPublicKey(
            pem = javaType.pem().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy