com.pulumi.gcp.cloudbuild.kotlin.outputs.GetTriggerBuildArtifactObject.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.cloudbuild.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property location The Cloud Build location for the trigger.
* - - -
* @property paths Path globs used to match files in the build's workspace.
* @property timings Output only. Stores timing information for pushing all artifact objects.
*/
public data class GetTriggerBuildArtifactObject(
public val location: String,
public val paths: List,
public val timings: List,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.cloudbuild.outputs.GetTriggerBuildArtifactObject): GetTriggerBuildArtifactObject = GetTriggerBuildArtifactObject(
location = javaType.location(),
paths = javaType.paths().map({ args0 -> args0 }),
timings = javaType.timings().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.cloudbuild.kotlin.outputs.GetTriggerBuildArtifactObjectTiming.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy