[][src]Struct google_lifesciences2_beta::Pipeline

pub struct Pipeline {
    pub environment: Option<HashMap<String, String>>,
    pub actions: Option<Vec<Action>>,
    pub resources: Option<Resources>,
    pub timeout: Option<String>,
}

Specifies a series of actions to execute, expressed as Docker containers.

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

Fields

environment: Option<HashMap<String, String>>

The environment to pass into every action. Each action can also specify additional environment variables but cannot delete an entry from this map (though they can overwrite it with a different value).

actions: Option<Vec<Action>>

The list of actions to execute, in the order they are specified.

resources: Option<Resources>

The resources required for execution.

timeout: Option<String>

The maximum amount of time to give the pipeline to complete. This includes the time spent waiting for a worker to be allocated. If the pipeline fails to complete before the timeout, it will be cancelled and the error code will be set to DEADLINE_EXCEEDED.

If unspecified, it will default to 7 days.

Trait Implementations

impl Clone for Pipeline[src]

impl Debug for Pipeline[src]

impl Default for Pipeline[src]

impl<'de> Deserialize<'de> for Pipeline[src]

impl Part for Pipeline[src]

impl Serialize for Pipeline[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any