ExtPipeRunsResource

Type Alias ExtPipeRunsResource 

Source
pub type ExtPipeRunsResource = Resource<ExtPipeRun>;
Expand description

Extraction pipeline runs represent statuses related to an extraction pipeline. The supported statuses are: success, failure, and seen.

An extraction pipeline can be configured to create notifications when the state of the extraction pipeline changes.

Aliased Type§

pub struct ExtPipeRunsResource {
    pub api_client: Arc<ApiClient>,
    /* private fields */
}

Fields§

§api_client: Arc<ApiClient>

A reference to the shared API Client.

Trait Implementations§

Source§

impl Create<AddExtPipeRun, ExtPipeRun> for ExtPipeRunsResource

Source§

fn create( &self, creates: &[TCreate], ) -> impl Future<Output = Result<Vec<TResponse>>> + Send

Create a list of resources. Read more
Source§

fn create_from( &self, creates: &[impl Into<TCreate> + Sync + Clone], ) -> impl Future<Output = Result<Vec<TResponse>>> + Send

Create a list of resources, converting from a different type. Read more
Source§

impl FilterItems<ExtPipeRunFilter, ExtPipeRun> for ExtPipeRunsResource

Source§

fn filter_items( &self, filter: TFilter, cursor: Option<String>, limit: Option<u32>, ) -> impl Future<Output = Result<ItemsVec<TResponse, Cursor>>> + Send

Filter resources using a simple filter. The response may contain a cursor that can be used to paginate results. Read more
Source§

impl WithBasePath for ExtPipeRunsResource

Source§

const BASE_PATH: &'static str = "extpipes/runs"

Base path for this resource type.