pub struct Pipeline {
pub project_id: String,
pub name: String,
pub description: String,
pub input_parameters: Vec<PipelineParameter>,
pub output_parameters: Vec<PipelineParameter>,
pub resources: Option<PipelineResources>,
pub pipeline_id: String,
pub executor: Option<Executor>,
}
Expand description
The pipeline object. Represents a transformation from a set of input
parameters to a set of output parameters. The transformation is defined
as a docker image and command to run within that image. Each pipeline
is run on a Google Compute Engine VM. A pipeline can be created with the
create
method and then later run with the run
method, or a pipeline can
be defined and run all at once with the run
method.
Fields§
§project_id: String
Required. The project in which to create the pipeline. The caller must have WRITE access.
name: String
Required. A user specified pipeline name that does not have to be unique. This name can be used for filtering Pipelines in ListPipelines.
description: String
User-specified description.
input_parameters: Vec<PipelineParameter>
Input parameters of the pipeline.
output_parameters: Vec<PipelineParameter>
Output parameters of the pipeline.
resources: Option<PipelineResources>
Required. Specifies resource requirements for the pipeline run. Required fields:
[minimumCpuCores][google.genomics.v1alpha2.PipelineResources.minimum_cpu_cores]
[minimumRamGb][google.genomics.v1alpha2.PipelineResources.minimum_ram_gb]
pipeline_id: String
Unique pipeline id that is generated by the service when CreatePipeline is called. Cannot be specified in the Pipeline used in the CreatePipelineRequest, and will be populated in the response to CreatePipeline and all subsequent Get and List calls. Indicates that the service has registered this pipeline.
executor: Option<Executor>
Required. The executor indicates in which environment the pipeline runs.
Trait Implementations§
source§impl Message for Pipeline
impl Message for Pipeline
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
. Read moresource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
.source§impl PartialEq for Pipeline
impl PartialEq for Pipeline
impl StructuralPartialEq for Pipeline
Auto Trait Implementations§
impl Freeze for Pipeline
impl RefUnwindSafe for Pipeline
impl Send for Pipeline
impl Sync for Pipeline
impl Unpin for Pipeline
impl UnwindSafe for Pipeline
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request