pub struct ChecklistExecutionServiceAsyncClient<T>(/* private fields */);
Expand description
The Checklist Execution Service checks the status of checklist executions.
Implementations§
Source§impl<T> ChecklistExecutionServiceAsyncClient<T>where
T: AsyncClient,
impl<T> ChecklistExecutionServiceAsyncClient<T>where
T: AsyncClient,
Sourcepub async fn checklist_live_status(
&self,
auth_: &BearerToken,
request: &BatchChecklistLiveStatusRequest,
) -> Result<BatchChecklistLiveStatusResponse, Error>
pub async fn checklist_live_status( &self, auth_: &BearerToken, request: &BatchChecklistLiveStatusRequest, ) -> Result<BatchChecklistLiveStatusResponse, Error>
For each request, get the current status and last failing time (if possible) for every automatic check against the given run.
Sourcepub async fn execute_streaming_checklist(
&self,
auth_: &BearerToken,
request: &ExecuteChecklistForAssetsRequest,
) -> Result<(), Error>
pub async fn execute_streaming_checklist( &self, auth_: &BearerToken, request: &ExecuteChecklistForAssetsRequest, ) -> Result<(), Error>
Triggers a checklist to run continuously against assets. Returns a ChecklistAlreadyRunning error if the checklist is already running for the given asset.
Sourcepub async fn list_streaming_checklist(
&self,
auth_: &BearerToken,
request: &ListStreamingChecklistRequest,
) -> Result<ListStreamingChecklistResponse, Error>
pub async fn list_streaming_checklist( &self, auth_: &BearerToken, request: &ListStreamingChecklistRequest, ) -> Result<ListStreamingChecklistResponse, Error>
Lists all running streaming checklists.
Sourcepub async fn list_streaming_checklist_for_asset(
&self,
auth_: &BearerToken,
request: &ListStreamingChecklistForAssetRequest,
) -> Result<ListStreamingChecklistForAssetResponse, Error>
pub async fn list_streaming_checklist_for_asset( &self, auth_: &BearerToken, request: &ListStreamingChecklistForAssetRequest, ) -> Result<ListStreamingChecklistForAssetResponse, Error>
Retrieves all streaming checklists for a given asset.
Sourcepub async fn get_streaming_checklist(
&self,
auth_: &BearerToken,
checklist_rid: &ChecklistRid,
) -> Result<StreamingChecklistInfo, Error>
pub async fn get_streaming_checklist( &self, auth_: &BearerToken, checklist_rid: &ChecklistRid, ) -> Result<StreamingChecklistInfo, Error>
Retrieves information about a streaming checklist using the provided checklistRid.
Sourcepub async fn stop_streaming_checklist(
&self,
auth_: &BearerToken,
checklist_rid: &ChecklistRid,
) -> Result<(), Error>
pub async fn stop_streaming_checklist( &self, auth_: &BearerToken, checklist_rid: &ChecklistRid, ) -> Result<(), Error>
Stops the execution of a streaming checklist on all assets.
Sourcepub async fn stop_streaming_checklist_for_assets(
&self,
auth_: &BearerToken,
request: &StopStreamingChecklistForAssetsRequest,
) -> Result<(), Error>
pub async fn stop_streaming_checklist_for_assets( &self, auth_: &BearerToken, request: &StopStreamingChecklistForAssetsRequest, ) -> Result<(), Error>
Stops the execution of a streaming checklist for a given set of assets.
Sourcepub async fn reload_streaming_checklist(
&self,
auth_: &BearerToken,
checklist_rid: &ChecklistRid,
) -> Result<(), Error>
pub async fn reload_streaming_checklist( &self, auth_: &BearerToken, checklist_rid: &ChecklistRid, ) -> Result<(), Error>
Reloads the state of the streaming checklist for the given checklistRid.
Sourcepub async fn validate_checklist_resolution(
&self,
auth_: &BearerToken,
request: &BatchValidateChecklistResolutionRequest,
) -> Result<BatchValidateChecklistResolutionResponse, Error>
pub async fn validate_checklist_resolution( &self, auth_: &BearerToken, request: &BatchValidateChecklistResolutionRequest, ) -> Result<BatchValidateChecklistResolutionResponse, Error>
Validates that the channels referenced by the checklist can be resolved against the data sources.
Trait Implementations§
Source§impl<T> AsyncService<T> for ChecklistExecutionServiceAsyncClient<T>where
T: AsyncClient,
impl<T> AsyncService<T> for ChecklistExecutionServiceAsyncClient<T>where
T: AsyncClient,
Source§impl<T: Clone> Clone for ChecklistExecutionServiceAsyncClient<T>
impl<T: Clone> Clone for ChecklistExecutionServiceAsyncClient<T>
Source§fn clone(&self) -> ChecklistExecutionServiceAsyncClient<T>
fn clone(&self) -> ChecklistExecutionServiceAsyncClient<T>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more