pub struct DynamicReportingTasksApi<'a> { /* private fields */ }Expand description
Dynamic dispatch wrapper for the ReportingTasks API.
Implementations§
Source§impl<'a> DynamicReportingTasksApi<'a>
impl<'a> DynamicReportingTasksApi<'a>
Sourcepub async fn analyze_configuration_3(
&self,
id: &str,
body: &Value,
) -> Result<ConfigurationAnalysisDto, NifiError>
pub async fn analyze_configuration_3( &self, id: &str, body: &Value, ) -> Result<ConfigurationAnalysisDto, NifiError>
Performs analysis of the component’s configuration, providing information about which attributes are referenced.
Sourcepub async fn clear_bulletins_7(
&self,
id: &str,
body: &Value,
) -> Result<ClearBulletinsResultEntity, NifiError>
pub async fn clear_bulletins_7( &self, id: &str, body: &Value, ) -> Result<ClearBulletinsResultEntity, NifiError>
Clears bulletins for a reporting task
Sourcepub async fn clear_state_4(
&self,
id: &str,
body: &Value,
) -> Result<ComponentStateDto, NifiError>
pub async fn clear_state_4( &self, id: &str, body: &Value, ) -> Result<ComponentStateDto, NifiError>
Clears the state for a reporting task
Sourcepub async fn delete_verification_request_3(
&self,
id: &str,
request_id: &str,
) -> Result<VerifyConfigRequestDto, NifiError>
pub async fn delete_verification_request_3( &self, id: &str, request_id: &str, ) -> Result<VerifyConfigRequestDto, NifiError>
Deletes the Verification Request with the given ID
Sourcepub async fn get_property_descriptor_4(
&self,
id: &str,
property_name: &str,
sensitive: Option<bool>,
) -> Result<PropertyDescriptorDto, NifiError>
pub async fn get_property_descriptor_4( &self, id: &str, property_name: &str, sensitive: Option<bool>, ) -> Result<PropertyDescriptorDto, NifiError>
Gets a reporting task property descriptor
Sourcepub async fn get_reporting_task(
&self,
id: &str,
) -> Result<ReportingTaskEntity, NifiError>
pub async fn get_reporting_task( &self, id: &str, ) -> Result<ReportingTaskEntity, NifiError>
Gets a reporting task
Sourcepub async fn get_state_4(
&self,
id: &str,
) -> Result<ComponentStateDto, NifiError>
pub async fn get_state_4( &self, id: &str, ) -> Result<ComponentStateDto, NifiError>
Gets the state for a reporting task
Sourcepub async fn get_verification_request_3(
&self,
id: &str,
request_id: &str,
) -> Result<VerifyConfigRequestDto, NifiError>
pub async fn get_verification_request_3( &self, id: &str, request_id: &str, ) -> Result<VerifyConfigRequestDto, NifiError>
Returns the Verification Request with the given ID
Sourcepub async fn remove_reporting_task(
&self,
id: &str,
version: Option<&str>,
client_id: Option<&str>,
disconnected_node_acknowledged: Option<bool>,
) -> Result<ReportingTaskEntity, NifiError>
pub async fn remove_reporting_task( &self, id: &str, version: Option<&str>, client_id: Option<&str>, disconnected_node_acknowledged: Option<bool>, ) -> Result<ReportingTaskEntity, NifiError>
Deletes a reporting task
Sourcepub async fn submit_config_verification_request_2(
&self,
id: &str,
body: &Value,
) -> Result<VerifyConfigRequestDto, NifiError>
pub async fn submit_config_verification_request_2( &self, id: &str, body: &Value, ) -> Result<VerifyConfigRequestDto, NifiError>
Performs verification of the Reporting Task’s configuration
Sourcepub async fn update_reporting_task(
&self,
id: &str,
body: &Value,
) -> Result<ReportingTaskEntity, NifiError>
pub async fn update_reporting_task( &self, id: &str, body: &Value, ) -> Result<ReportingTaskEntity, NifiError>
Updates a reporting task
Sourcepub async fn update_run_status_5(
&self,
id: &str,
body: &Value,
) -> Result<ReportingTaskEntity, NifiError>
pub async fn update_run_status_5( &self, id: &str, body: &Value, ) -> Result<ReportingTaskEntity, NifiError>
Updates run status of a reporting task
Auto Trait Implementations§
impl<'a> Freeze for DynamicReportingTasksApi<'a>
impl<'a> !RefUnwindSafe for DynamicReportingTasksApi<'a>
impl<'a> Send for DynamicReportingTasksApi<'a>
impl<'a> Sync for DynamicReportingTasksApi<'a>
impl<'a> Unpin for DynamicReportingTasksApi<'a>
impl<'a> UnsafeUnpin for DynamicReportingTasksApi<'a>
impl<'a> !UnwindSafe for DynamicReportingTasksApi<'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