Struct gapi_grpc::google::cloud::lifesciences::v2beta::Pipeline[][src]

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

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

Fields

actions: Vec<Action>

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

resources: Option<Resources>

The resources required for execution.

environment: 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).

timeout: Option<Duration>

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 Message for Pipeline[src]

impl PartialEq<Pipeline> for Pipeline[src]

impl StructuralPartialEq for Pipeline[src]

Auto Trait Implementations

impl RefUnwindSafe for Pipeline

impl Send for Pipeline

impl Sync for Pipeline

impl Unpin for Pipeline

impl UnwindSafe for Pipeline

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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]