pub struct DynamicInputPortsApi<'a> { /* private fields */ }Expand description
Dynamic dispatch wrapper for the InputPorts API.
Implementations§
Source§impl<'a> DynamicInputPortsApi<'a>
impl<'a> DynamicInputPortsApi<'a>
Sourcepub async fn clear_bulletins_2(
&self,
id: &str,
body: &Value,
) -> Result<ClearBulletinsResultEntity, NifiError>
pub async fn clear_bulletins_2( &self, id: &str, body: &Value, ) -> Result<ClearBulletinsResultEntity, NifiError>
Clears bulletins for an input port
Sourcepub async fn get_input_port(&self, id: &str) -> Result<PortEntity, NifiError>
pub async fn get_input_port(&self, id: &str) -> Result<PortEntity, NifiError>
Gets an input port
Sourcepub async fn remove_input_port(
&self,
id: &str,
version: Option<&str>,
client_id: Option<&str>,
disconnected_node_acknowledged: Option<bool>,
) -> Result<PortEntity, NifiError>
pub async fn remove_input_port( &self, id: &str, version: Option<&str>, client_id: Option<&str>, disconnected_node_acknowledged: Option<bool>, ) -> Result<PortEntity, NifiError>
Deletes an input port
Sourcepub async fn update_input_port(
&self,
id: &str,
body: &Value,
) -> Result<PortEntity, NifiError>
pub async fn update_input_port( &self, id: &str, body: &Value, ) -> Result<PortEntity, NifiError>
Updates an input port
Sourcepub async fn update_run_status_2(
&self,
id: &str,
body: &Value,
) -> Result<ProcessorEntity, NifiError>
pub async fn update_run_status_2( &self, id: &str, body: &Value, ) -> Result<ProcessorEntity, NifiError>
Updates run status of an input-port
Auto Trait Implementations§
impl<'a> Freeze for DynamicInputPortsApi<'a>
impl<'a> !RefUnwindSafe for DynamicInputPortsApi<'a>
impl<'a> Send for DynamicInputPortsApi<'a>
impl<'a> Sync for DynamicInputPortsApi<'a>
impl<'a> Unpin for DynamicInputPortsApi<'a>
impl<'a> UnsafeUnpin for DynamicInputPortsApi<'a>
impl<'a> !UnwindSafe for DynamicInputPortsApi<'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