Struct google_cloudbuild1::Results[][src]

pub struct Results {
    pub build_step_outputs: Option<Vec<String>>,
    pub artifact_manifest: Option<String>,
    pub images: Option<Vec<BuiltImage>>,
    pub build_step_images: Option<Vec<String>>,
    pub num_artifacts: Option<String>,
}

Artifacts created by the build pipeline.

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

Fields

List of build step outputs, produced by builder images, in the order corresponding to build step indices.

Cloud Builders can produce this output by writing to $BUILDER_OUTPUT/output. Only the first 4KB of data is stored.

Path to the artifact manifest. Only populated when artifacts are uploaded.

Container images that were built as a part of the build.

List of build step digests, in the order corresponding to build step indices.

Number of artifacts uploaded. Only populated when artifacts are uploaded.

Trait Implementations

impl Default for Results
[src]

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

impl Clone for Results
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Results
[src]

Formats the value using the given formatter. Read more

impl Part for Results
[src]

Auto Trait Implementations

impl Send for Results

impl Sync for Results