TriggerBuildArtifactsArgs

data class TriggerBuildArtifactsArgs(val images: Output<List<String>>? = null, val mavenArtifacts: Output<List<TriggerBuildArtifactsMavenArtifactArgs>>? = null, val npmPackages: Output<List<TriggerBuildArtifactsNpmPackageArgs>>? = null, val objects: Output<TriggerBuildArtifactsObjectsArgs>? = null, val pythonPackages: Output<List<TriggerBuildArtifactsPythonPackageArgs>>? = null) : ConvertibleToJava<TriggerBuildArtifactsArgs>

Constructors

Link copied to clipboard
constructor(images: Output<List<String>>? = null, mavenArtifacts: Output<List<TriggerBuildArtifactsMavenArtifactArgs>>? = null, npmPackages: Output<List<TriggerBuildArtifactsNpmPackageArgs>>? = null, objects: Output<TriggerBuildArtifactsObjectsArgs>? = null, pythonPackages: Output<List<TriggerBuildArtifactsPythonPackageArgs>>? = null)

Properties

Link copied to clipboard
val images: Output<List<String>>? = null

A list of images to be pushed upon the successful completion of all build steps. The images will be pushed using the builder service account's credentials. The digests of the pushed images will be stored in the Build resource's results field. If any of the images fail to be pushed, the build is marked FAILURE.

Link copied to clipboard

A Maven artifact to upload to Artifact Registry upon successful completion of all build steps. The location and generation of the uploaded objects will be stored in the Build resource's results field. If any objects fail to be pushed, the build is marked FAILURE. Structure is documented below.

Link copied to clipboard

Npm package to upload to Artifact Registry upon successful completion of all build steps. The location and generation of the uploaded objects will be stored in the Build resource's results field. If any objects fail to be pushed, the build is marked FAILURE. Structure is documented below.

Link copied to clipboard

A list of objects to be uploaded to Cloud Storage upon successful completion of all build steps. Files in the workspace matching specified paths globs will be uploaded to the Cloud Storage location using the builder service account's credentials. The location and generation of the uploaded objects will be stored in the Build resource's results field. If any objects fail to be pushed, the build is marked FAILURE. Structure is documented below.

Link copied to clipboard

Python package to upload to Artifact Registry upon successful completion of all build steps. A package can encapsulate multiple objects to be uploaded to a single repository. The location and generation of the uploaded objects will be stored in the Build resource's results field. If any objects fail to be pushed, the build is marked FAILURE. Structure is documented below.

Functions

Link copied to clipboard
open override fun toJava(): TriggerBuildArtifactsArgs