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

com.pulumi.gcp.sql.kotlin.outputs.GetDatabaseInstanceLatestRecoveryTimeResult.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.12.0.0
Show newest version
@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