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

com.pulumi.gcp.sql.kotlin.outputs.GetDatabaseInstanceServerCaCert.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.sql.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property cert The CA Certificate used to connect to the SQL Instance via SSL.
 * @property commonName The CN valid for the CA Cert.
 * @property createTime Creation time of the CA Cert.
 * @property expirationTime Expiration time of the CA Cert.
 * @property sha1Fingerprint SHA Fingerprint of the CA Cert.
 */
public data class GetDatabaseInstanceServerCaCert(
    public val cert: String,
    public val commonName: String,
    public val createTime: String,
    public val expirationTime: String,
    public val sha1Fingerprint: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.sql.outputs.GetDatabaseInstanceServerCaCert): GetDatabaseInstanceServerCaCert = GetDatabaseInstanceServerCaCert(
            cert = javaType.cert(),
            commonName = javaType.commonName(),
            createTime = javaType.createTime(),
            expirationTime = javaType.expirationTime(),
            sha1Fingerprint = javaType.sha1Fingerprint(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy