com.pulumi.gcp.cloudbuild.kotlin.outputs.TriggerBuildArtifactsPythonPackage.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 paths Path globs used to match files in the build's workspace. For Python/ Twine, this is usually dist/*, and sometimes additionally an .asc file.
* @property repository Artifact Registry repository, in the form "https://$REGION-python.pkg.dev/$PROJECT/$REPOSITORY"
* Files in the workspace matching any path pattern will be uploaded to Artifact Registry with this location as a prefix.
* */
*/
public data class TriggerBuildArtifactsPythonPackage(
public val paths: List? = null,
public val repository: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.cloudbuild.outputs.TriggerBuildArtifactsPythonPackage): TriggerBuildArtifactsPythonPackage = TriggerBuildArtifactsPythonPackage(
paths = javaType.paths().map({ args0 -> args0 }),
repository = javaType.repository().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy