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