nifi-rust-client 0.4.0

Apache NiFi REST API client library
Documentation
1
2
3
4
5
6
7
8
9
// @generated — do not edit; run `cargo run -p nifi-openapi-gen`

use crate::NifiError;
/// The Resources API.
#[allow(unused_variables, async_fn_in_trait, clippy::too_many_arguments)]
pub trait ResourcesApi {
    /// Gets the available resources that support access/authorization policies
    async fn get_resources(&self) -> Result<crate::v2_7_2::types::ResourcesEntity, NifiError>;
}