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

com.pulumi.azurenative.compute.kotlin.outputs.RegionalReplicationStatusResponse.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.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