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

com.pulumi.gcp.redis.kotlin.outputs.GetInstanceServerCaCert.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.10.0.0
Show newest version
@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