Struct google_cloudbuild1::StorageSource
source · pub struct StorageSource {
pub generation: Option<String>,
pub object: Option<String>,
pub bucket: Option<String>,
}Expand description
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§
§generation: Option<String>Google Cloud Storage generation for the object. If the generation is omitted, the latest generation will be used.
object: Option<String>Google Cloud Storage object containing the source.
This object must be a gzipped archive file (.tar.gz) containing source to
build.
bucket: Option<String>Google Cloud Storage bucket containing the source (see Bucket Name Requirements).
Trait Implementations§
source§impl Clone for StorageSource
impl Clone for StorageSource
source§fn clone(&self) -> StorageSource
fn clone(&self) -> StorageSource
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for StorageSource
impl Debug for StorageSource
source§impl Default for StorageSource
impl Default for StorageSource
source§fn default() -> StorageSource
fn default() -> StorageSource
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for StorageSource
impl<'de> Deserialize<'de> for StorageSource
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Serialize for StorageSource
impl Serialize for StorageSource
impl Part for StorageSource
Auto Trait Implementations§
impl Freeze for StorageSource
impl RefUnwindSafe for StorageSource
impl Send for StorageSource
impl Sync for StorageSource
impl Unpin for StorageSource
impl UnwindSafe for StorageSource
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more