pub struct DynamicRemoteProcessGroupsApi<'a> { /* private fields */ }Expand description
Dynamic dispatch wrapper for the RemoteProcessGroups API.
Implementations§
Source§impl<'a> DynamicRemoteProcessGroupsApi<'a>
impl<'a> DynamicRemoteProcessGroupsApi<'a>
Sourcepub async fn clear_bulletins_6(
&self,
id: &str,
body: &Value,
) -> Result<ClearBulletinsResultEntity, NifiError>
pub async fn clear_bulletins_6( &self, id: &str, body: &Value, ) -> Result<ClearBulletinsResultEntity, NifiError>
Clears bulletins for a remote process group
Sourcepub async fn get_remote_process_group(
&self,
id: &str,
) -> Result<RemoteProcessGroupEntity, NifiError>
pub async fn get_remote_process_group( &self, id: &str, ) -> Result<RemoteProcessGroupEntity, NifiError>
Gets a remote process group
Sourcepub async fn get_state_3(
&self,
id: &str,
) -> Result<ComponentStateDto, NifiError>
pub async fn get_state_3( &self, id: &str, ) -> Result<ComponentStateDto, NifiError>
Gets the state for a RemoteProcessGroup
Sourcepub async fn remove_remote_process_group(
&self,
id: &str,
version: Option<&str>,
client_id: Option<&str>,
disconnected_node_acknowledged: Option<bool>,
) -> Result<RemoteProcessGroupEntity, NifiError>
pub async fn remove_remote_process_group( &self, id: &str, version: Option<&str>, client_id: Option<&str>, disconnected_node_acknowledged: Option<bool>, ) -> Result<RemoteProcessGroupEntity, NifiError>
Deletes a remote process group
Sourcepub async fn update_remote_process_group(
&self,
id: &str,
body: &Value,
) -> Result<RemoteProcessGroupEntity, NifiError>
pub async fn update_remote_process_group( &self, id: &str, body: &Value, ) -> Result<RemoteProcessGroupEntity, NifiError>
Updates a remote process group
Sourcepub async fn update_remote_process_group_input_port(
&self,
id: &str,
port_id: &str,
body: &Value,
) -> Result<RemoteProcessGroupPortEntity, NifiError>
pub async fn update_remote_process_group_input_port( &self, id: &str, port_id: &str, body: &Value, ) -> Result<RemoteProcessGroupPortEntity, NifiError>
Updates a remote port
Sourcepub async fn update_remote_process_group_input_port_run_status(
&self,
id: &str,
port_id: &str,
body: &Value,
) -> Result<RemoteProcessGroupPortEntity, NifiError>
pub async fn update_remote_process_group_input_port_run_status( &self, id: &str, port_id: &str, body: &Value, ) -> Result<RemoteProcessGroupPortEntity, NifiError>
Updates run status of a remote port
Sourcepub async fn update_remote_process_group_output_port(
&self,
id: &str,
port_id: &str,
body: &Value,
) -> Result<RemoteProcessGroupPortEntity, NifiError>
pub async fn update_remote_process_group_output_port( &self, id: &str, port_id: &str, body: &Value, ) -> Result<RemoteProcessGroupPortEntity, NifiError>
Updates a remote port
Sourcepub async fn update_remote_process_group_output_port_run_status(
&self,
id: &str,
port_id: &str,
body: &Value,
) -> Result<RemoteProcessGroupPortEntity, NifiError>
pub async fn update_remote_process_group_output_port_run_status( &self, id: &str, port_id: &str, body: &Value, ) -> Result<RemoteProcessGroupPortEntity, NifiError>
Updates run status of a remote port
Sourcepub async fn update_remote_process_group_run_status(
&self,
id: &str,
body: &Value,
) -> Result<RemoteProcessGroupEntity, NifiError>
pub async fn update_remote_process_group_run_status( &self, id: &str, body: &Value, ) -> Result<RemoteProcessGroupEntity, NifiError>
Updates run status of a remote process group
Sourcepub async fn update_remote_process_group_run_statuses(
&self,
id: &str,
body: &Value,
) -> Result<RemoteProcessGroupEntity, NifiError>
pub async fn update_remote_process_group_run_statuses( &self, id: &str, body: &Value, ) -> Result<RemoteProcessGroupEntity, NifiError>
Updates run status of all remote process groups in a process group (recursively)
Auto Trait Implementations§
impl<'a> Freeze for DynamicRemoteProcessGroupsApi<'a>
impl<'a> !RefUnwindSafe for DynamicRemoteProcessGroupsApi<'a>
impl<'a> Send for DynamicRemoteProcessGroupsApi<'a>
impl<'a> Sync for DynamicRemoteProcessGroupsApi<'a>
impl<'a> Unpin for DynamicRemoteProcessGroupsApi<'a>
impl<'a> UnsafeUnpin for DynamicRemoteProcessGroupsApi<'a>
impl<'a> !UnwindSafe for DynamicRemoteProcessGroupsApi<'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