
com.pulumi.azure.mssql.kotlin.outputs.ManagedDatabasePointInTimeRestore.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.mssql.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property restorePointInTime The point in time for the restore from `source_database_id`. Changing this forces a new resource to be created.
* @property sourceDatabaseId The source database id that will be used to restore from. Changing this forces a new resource to be created.
*/
public data class ManagedDatabasePointInTimeRestore(
public val restorePointInTime: String,
public val sourceDatabaseId: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.mssql.outputs.ManagedDatabasePointInTimeRestore):
ManagedDatabasePointInTimeRestore = ManagedDatabasePointInTimeRestore(
restorePointInTime = javaType.restorePointInTime(),
sourceDatabaseId = javaType.sourceDatabaseId(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy