![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.compute.kotlin.outputs.RegionalReplicationStatusResponse.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.compute.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
* This is the regional replication status.
* @property details The details of the replication status.
* @property progress It indicates progress of the replication job.
* @property region The region to which the gallery image version is being replicated to.
* @property state This is the regional replication state.
*/
public data class RegionalReplicationStatusResponse(
public val details: String,
public val progress: Int,
public val region: String,
public val state: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.compute.outputs.RegionalReplicationStatusResponse): RegionalReplicationStatusResponse = RegionalReplicationStatusResponse(
details = javaType.details(),
progress = javaType.progress(),
region = javaType.region(),
state = javaType.state(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy