pub struct FlowStatusApiDispatch<'a> { /* private fields */ }Expand description
Sub-resource dispatch struct for FlowStatusApi.
Trait Implementations§
Source§impl FlowStatusApi for FlowStatusApiDispatch<'_>
impl FlowStatusApi for FlowStatusApiDispatch<'_>
Source§async fn get_connection_status(
&self,
nodewise: Option<bool>,
cluster_node_id: Option<&str>,
) -> Result<ConnectionStatusEntity, NifiError>
async fn get_connection_status( &self, nodewise: Option<bool>, cluster_node_id: Option<&str>, ) -> Result<ConnectionStatusEntity, NifiError>
Gets status for a connection Read more
Source§async fn get_connection_status_history(
&self,
) -> Result<StatusHistoryEntity, NifiError>
async fn get_connection_status_history( &self, ) -> Result<StatusHistoryEntity, NifiError>
Gets the status history for a connection Read more
Source§async fn get_input_port_status(
&self,
nodewise: Option<bool>,
cluster_node_id: Option<&str>,
) -> Result<PortStatusEntity, NifiError>
async fn get_input_port_status( &self, nodewise: Option<bool>, cluster_node_id: Option<&str>, ) -> Result<PortStatusEntity, NifiError>
Gets status for an input port Read more
Source§async fn get_output_port_status(
&self,
nodewise: Option<bool>,
cluster_node_id: Option<&str>,
) -> Result<PortStatusEntity, NifiError>
async fn get_output_port_status( &self, nodewise: Option<bool>, cluster_node_id: Option<&str>, ) -> Result<PortStatusEntity, NifiError>
Gets status for an output port Read more
Source§async fn get_process_group_status(
&self,
recursive: Option<bool>,
nodewise: Option<bool>,
cluster_node_id: Option<&str>,
) -> Result<ProcessGroupStatusEntity, NifiError>
async fn get_process_group_status( &self, recursive: Option<bool>, nodewise: Option<bool>, cluster_node_id: Option<&str>, ) -> Result<ProcessGroupStatusEntity, NifiError>
Gets the status for a process group Read more
Source§async fn get_process_group_status_history(
&self,
) -> Result<StatusHistoryEntity, NifiError>
async fn get_process_group_status_history( &self, ) -> Result<StatusHistoryEntity, NifiError>
Gets status history for a remote process group Read more
Source§async fn get_processor_status(
&self,
nodewise: Option<bool>,
cluster_node_id: Option<&str>,
) -> Result<ProcessorStatusEntity, NifiError>
async fn get_processor_status( &self, nodewise: Option<bool>, cluster_node_id: Option<&str>, ) -> Result<ProcessorStatusEntity, NifiError>
Gets status for a processor Read more
Source§async fn get_processor_status_history(
&self,
) -> Result<StatusHistoryEntity, NifiError>
async fn get_processor_status_history( &self, ) -> Result<StatusHistoryEntity, NifiError>
Gets status history for a processor Read more
Source§async fn get_remote_process_group_status(
&self,
nodewise: Option<bool>,
cluster_node_id: Option<&str>,
) -> Result<RemoteProcessGroupStatusEntity, NifiError>
async fn get_remote_process_group_status( &self, nodewise: Option<bool>, cluster_node_id: Option<&str>, ) -> Result<RemoteProcessGroupStatusEntity, NifiError>
Gets status for a remote process group Read more
Source§async fn get_remote_process_group_status_history(
&self,
) -> Result<StatusHistoryEntity, NifiError>
async fn get_remote_process_group_status_history( &self, ) -> Result<StatusHistoryEntity, NifiError>
Gets the status history Read more
Auto Trait Implementations§
impl<'a> Freeze for FlowStatusApiDispatch<'a>
impl<'a> !RefUnwindSafe for FlowStatusApiDispatch<'a>
impl<'a> Send for FlowStatusApiDispatch<'a>
impl<'a> Sync for FlowStatusApiDispatch<'a>
impl<'a> Unpin for FlowStatusApiDispatch<'a>
impl<'a> UnsafeUnpin for FlowStatusApiDispatch<'a>
impl<'a> !UnwindSafe for FlowStatusApiDispatch<'a>
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
Mutably borrows from an owned value. Read more