All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.cloudbuild.kotlin.outputs.GetTriggerBuildArtifactPythonPackage.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.10.0.0
Show newest version
@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 GetTriggerBuildArtifactPythonPackage(
    public val paths: List,
    public val repository: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.cloudbuild.outputs.GetTriggerBuildArtifactPythonPackage): GetTriggerBuildArtifactPythonPackage = GetTriggerBuildArtifactPythonPackage(
            paths = javaType.paths().map({ args0 -> args0 }),
            repository = javaType.repository(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy