com.pulumi.gcp.redis.kotlin.outputs.GetInstanceServerCaCert.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.redis.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property cert The certificate data in PEM format.
* @property createTime The time when the certificate was created.
* @property expireTime The time when the certificate expires.
* @property serialNumber Serial number, as extracted from the certificate.
* @property sha1Fingerprint Sha1 Fingerprint of the certificate.
*/
public data class GetInstanceServerCaCert(
public val cert: String,
public val createTime: String,
public val expireTime: String,
public val serialNumber: String,
public val sha1Fingerprint: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.redis.outputs.GetInstanceServerCaCert): GetInstanceServerCaCert = GetInstanceServerCaCert(
cert = javaType.cert(),
createTime = javaType.createTime(),
expireTime = javaType.expireTime(),
serialNumber = javaType.serialNumber(),
sha1Fingerprint = javaType.sha1Fingerprint(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy