Struct google_cloudbuild1::Artifacts[][src]

pub struct Artifacts {
    pub images: Option<Vec<String>>,
    pub objects: Option<ArtifactObjects>,
}

Artifacts produced by a build that should be uploaded upon successful completion of all build steps.

This type is not used in any activity, and only used as part of another schema.

Fields

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.

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 specified 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.

Trait Implementations

impl Default for Artifacts
[src]

Returns the "default value" for a type. Read more

impl Clone for Artifacts
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Artifacts
[src]

Formats the value using the given formatter. Read more

impl Part for Artifacts
[src]

Auto Trait Implementations

impl Send for Artifacts

impl Sync for Artifacts