com.pulumi.gcp.sql.kotlin.outputs.GetDatabaseInstanceLatestRecoveryTimeResult.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
/**
* A collection of values returned by getDatabaseInstanceLatestRecoveryTime.
* @property id The provider-assigned unique ID for this managed resource.
* @property instance The name of the instance.
* @property latestRecoveryTime Timestamp, identifies the latest recovery time of the source instance.
* @property project The ID of the project in which the resource belongs.
*/
public data class GetDatabaseInstanceLatestRecoveryTimeResult(
public val id: String,
public val instance: String,
public val latestRecoveryTime: String,
public val project: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.sql.outputs.GetDatabaseInstanceLatestRecoveryTimeResult): GetDatabaseInstanceLatestRecoveryTimeResult = GetDatabaseInstanceLatestRecoveryTimeResult(
id = javaType.id(),
instance = javaType.instance(),
latestRecoveryTime = javaType.latestRecoveryTime(),
project = javaType.project(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy