![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.operationalinsights.kotlin.outputs.RestoredLogsResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.operationalinsights.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Restore parameters.
* @property azureAsyncOperationId Search results table async operation id.
* @property endRestoreTime The timestamp to end the restore by (UTC).
* @property sourceTable The table to restore data from.
* @property startRestoreTime The timestamp to start the restore from (UTC).
*/
public data class RestoredLogsResponse(
public val azureAsyncOperationId: String,
public val endRestoreTime: String? = null,
public val sourceTable: String? = null,
public val startRestoreTime: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.operationalinsights.outputs.RestoredLogsResponse): RestoredLogsResponse = RestoredLogsResponse(
azureAsyncOperationId = javaType.azureAsyncOperationId(),
endRestoreTime = javaType.endRestoreTime().map({ args0 -> args0 }).orElse(null),
sourceTable = javaType.sourceTable().map({ args0 -> args0 }).orElse(null),
startRestoreTime = javaType.startRestoreTime().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy