pub trait Pipeline {
// Required methods
fn list_pipelines<'life0, 'async_trait>(
&'life0 self,
params: PipelineListRequest,
) -> Pin<Box<dyn Future<Output = Result<PipelineListResponse, Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn list_workflows_by_pipeline_id<'life0, 'async_trait>(
&'life0 self,
params: WorkflowListRequest,
) -> Pin<Box<dyn Future<Output = Result<WorkflowListResponse, Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}Required Methods§
Sourcefn list_pipelines<'life0, 'async_trait>(
&'life0 self,
params: PipelineListRequest,
) -> Pin<Box<dyn Future<Output = Result<PipelineListResponse, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn list_pipelines<'life0, 'async_trait>(
&'life0 self,
params: PipelineListRequest,
) -> Pin<Box<dyn Future<Output = Result<PipelineListResponse, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Get a list of pipelines.
Returns all pipelines for the most recently built projects (max 250) you follow in an organization.
Sourcefn list_workflows_by_pipeline_id<'life0, 'async_trait>(
&'life0 self,
params: WorkflowListRequest,
) -> Pin<Box<dyn Future<Output = Result<WorkflowListResponse, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn list_workflows_by_pipeline_id<'life0, 'async_trait>(
&'life0 self,
params: WorkflowListRequest,
) -> Pin<Box<dyn Future<Output = Result<WorkflowListResponse, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Get a pipeline’s workflows.
Returns a paginated list of workflows by pipeline ID.