![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.appplatform.kotlin.outputs.DeploymentInstanceResponse.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.appplatform.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Deployment instance payload
* @property discoveryStatus Discovery status of the deployment instance
* @property name Name of the deployment instance
* @property reason Failed reason of the deployment instance
* @property startTime Start time of the deployment instance
* @property status Status of the deployment instance
* @property zone Availability zone information of the deployment instance
*/
public data class DeploymentInstanceResponse(
public val discoveryStatus: String,
public val name: String,
public val reason: String,
public val startTime: String,
public val status: String,
public val zone: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.appplatform.outputs.DeploymentInstanceResponse): DeploymentInstanceResponse = DeploymentInstanceResponse(
discoveryStatus = javaType.discoveryStatus(),
name = javaType.name(),
reason = javaType.reason(),
startTime = javaType.startTime(),
status = javaType.status(),
zone = javaType.zone(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy