![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.chaos.kotlin.outputs.StepStatusResponse.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.chaos.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* Model that represents the a list of branches and branch statuses.
* @property branches The array of branches.
* @property status The value of the status of the step.
* @property stepId The id of the step.
* @property stepName The name of the step.
*/
public data class StepStatusResponse(
public val branches: List,
public val status: String,
public val stepId: String,
public val stepName: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.chaos.outputs.StepStatusResponse): StepStatusResponse = StepStatusResponse(
branches = javaType.branches().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.chaos.kotlin.outputs.BranchStatusResponse.Companion.toKotlin(args0)
})
}),
status = javaType.status(),
stepId = javaType.stepId(),
stepName = javaType.stepName(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy