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

com.pulumi.azurenative.operationalinsights.kotlin.outputs.RestoredLogsResponse.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: 2.82.0.0
Show newest version
@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