
com.pulumi.azurenative.appplatform.kotlin.outputs.TriggeredBuildResultResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.appplatform.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* The build result triggered by a build
* @property id The unique build id of this build result
*/
public data class TriggeredBuildResultResponse(
public val id: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.appplatform.outputs.TriggeredBuildResultResponse): TriggeredBuildResultResponse = TriggeredBuildResultResponse(
id = javaType.id().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy