com.pulumi.gcp.sql.kotlin.outputs.GetCaCertsResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.sql.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* A collection of values returned by getCaCerts.
* @property activeVersion SHA1 fingerprint of the currently active CA certificate.
* @property certs A list of server CA certificates for the instance. Each contains:
* @property id The provider-assigned unique ID for this managed resource.
* @property instance
* @property project
*/
public data class GetCaCertsResult(
public val activeVersion: String,
public val certs: List,
public val id: String,
public val instance: String,
public val project: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.sql.outputs.GetCaCertsResult): GetCaCertsResult =
GetCaCertsResult(
activeVersion = javaType.activeVersion(),
certs = javaType.certs().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.sql.kotlin.outputs.GetCaCertsCert.Companion.toKotlin(args0)
})
}),
id = javaType.id(),
instance = javaType.instance(),
project = javaType.project(),
)
}
}