Struct google_cloudbuild1::ArtifactObjects[][src]

pub struct ArtifactObjects {
    pub timing: Option<TimeSpan>,
    pub paths: Option<Vec<String>>,
    pub location: Option<String>,
}

Files in the workspace to upload to Cloud Storage upon successful completion of all build steps.

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

Fields

Output only. Stores timing information for pushing all artifact objects.

Path globs used to match files in the build's workspace.

Cloud Storage bucket and optional object path, in the form "gs://bucket/path/to/somewhere/". (see Bucket Name Requirements).

Files in the workspace matching any path pattern will be uploaded to Cloud Storage with this location as a prefix.

Trait Implementations

impl Default for ArtifactObjects
[src]

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

impl Clone for ArtifactObjects
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ArtifactObjects
[src]

Formats the value using the given formatter. Read more

impl Part for ArtifactObjects
[src]

Auto Trait Implementations