Struct google_cloudbuild1::StorageSource[][src]

pub struct StorageSource {
    pub generation: Option<String>,
    pub object: Option<String>,
    pub bucket: Option<String>,
}

StorageSource describes the location of the source in an archive file in Google Cloud Storage.

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

Fields

Google Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used.

Google Cloud Storage object containing source.

This object must be a gzipped archive file (.tar.gz) containing source to build.

Google Cloud Storage bucket containing source (see Bucket Name Requirements).

Trait Implementations

impl Default for StorageSource
[src]

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

impl Clone for StorageSource
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for StorageSource
[src]

Formats the value using the given formatter. Read more

impl Part for StorageSource
[src]

Auto Trait Implementations