#[non_exhaustive]pub enum RemoteProcessGroupsApiDispatch<'a> {
V2_6_0(V2_6_0RemoteProcessGroupsApi<'a>),
V2_7_2(V2_7_2RemoteProcessGroupsApi<'a>),
V2_8_0(V2_8_0RemoteProcessGroupsApi<'a>),
}Expand description
Dynamic dispatch enum for the RemoteProcessGroups API. Use via the RemoteProcessGroupsApi trait.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
V2_6_0(V2_6_0RemoteProcessGroupsApi<'a>)
V2_7_2(V2_7_2RemoteProcessGroupsApi<'a>)
V2_8_0(V2_8_0RemoteProcessGroupsApi<'a>)
Trait Implementations§
Source§impl RemoteProcessGroupsApi for RemoteProcessGroupsApiDispatch<'_>
impl RemoteProcessGroupsApi for RemoteProcessGroupsApiDispatch<'_>
Source§fn bulletins<'b>(
&'b self,
id: &'b str,
) -> impl RemoteProcessGroupsBulletinsApi + 'b
fn bulletins<'b>( &'b self, id: &'b str, ) -> impl RemoteProcessGroupsBulletinsApi + 'b
Returns a sub-resource accessor for config operations. Read more
Source§fn input_ports<'b>(
&'b self,
id: &'b str,
) -> impl RemoteProcessGroupsInputPortsApi + 'b
fn input_ports<'b>( &'b self, id: &'b str, ) -> impl RemoteProcessGroupsInputPortsApi + 'b
Returns a sub-resource accessor for config operations. Read more
Source§fn output_ports<'b>(
&'b self,
id: &'b str,
) -> impl RemoteProcessGroupsOutputPortsApi + 'b
fn output_ports<'b>( &'b self, id: &'b str, ) -> impl RemoteProcessGroupsOutputPortsApi + 'b
Returns a sub-resource accessor for config operations. Read more
Source§fn run_status<'b>(
&'b self,
id: &'b str,
) -> impl RemoteProcessGroupsRunStatusApi + 'b
fn run_status<'b>( &'b self, id: &'b str, ) -> impl RemoteProcessGroupsRunStatusApi + 'b
Returns a sub-resource accessor for config operations. Read more
Source§fn state<'b>(&'b self, id: &'b str) -> impl RemoteProcessGroupsStateApi + 'b
fn state<'b>(&'b self, id: &'b str) -> impl RemoteProcessGroupsStateApi + 'b
Returns a sub-resource accessor for config operations. Read more
Source§async fn get_remote_process_group(
&self,
id: &str,
) -> Result<RemoteProcessGroupEntity, NifiError>
async fn get_remote_process_group( &self, id: &str, ) -> Result<RemoteProcessGroupEntity, NifiError>
Gets a remote process group Read more
Source§async fn remove_remote_process_group(
&self,
id: &str,
version: Option<&str>,
client_id: Option<&str>,
disconnected_node_acknowledged: Option<bool>,
) -> Result<RemoteProcessGroupEntity, NifiError>
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 Read more
Source§async fn update_remote_process_group(
&self,
id: &str,
body: &RemoteProcessGroupEntity,
) -> Result<RemoteProcessGroupEntity, NifiError>
async fn update_remote_process_group( &self, id: &str, body: &RemoteProcessGroupEntity, ) -> Result<RemoteProcessGroupEntity, NifiError>
Updates a remote process group Read more
Auto Trait Implementations§
impl<'a> Freeze for RemoteProcessGroupsApiDispatch<'a>
impl<'a> !RefUnwindSafe for RemoteProcessGroupsApiDispatch<'a>
impl<'a> Send for RemoteProcessGroupsApiDispatch<'a>
impl<'a> Sync for RemoteProcessGroupsApiDispatch<'a>
impl<'a> Unpin for RemoteProcessGroupsApiDispatch<'a>
impl<'a> UnsafeUnpin for RemoteProcessGroupsApiDispatch<'a>
impl<'a> !UnwindSafe for RemoteProcessGroupsApiDispatch<'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