Struct google_cloudbuild1::Volume[][src]

pub struct Volume {
    pub path: Option<String>,
    pub name: Option<String>,
}

Volume describes a Docker container volume which is mounted into build steps in order to persist files across build step execution.

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

Fields

Path at which to mount the volume.

Paths must be absolute and cannot conflict with other volume paths on the same build step or with certain reserved volume paths.

Name of the volume to mount.

Volume names must be unique per build step and must be valid names for Docker volumes. Each named volume must be used by at least two build steps.

Trait Implementations

impl Default for Volume
[src]

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

impl Clone for Volume
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Volume
[src]

Formats the value using the given formatter. Read more

impl Part for Volume
[src]

Auto Trait Implementations

impl Send for Volume

impl Sync for Volume