1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
// @generated — do not edit; run `cargo run -p nifi-openapi-gen`
use crate::NifiClient;
use crate::NifiError;
pub struct FlowFileQueuesApi<'a> {
pub(crate) client: &'a NifiClient,
}
#[allow(
private_interfaces,
clippy::too_many_arguments,
clippy::vec_init_then_push
)]
impl<'a> FlowFileQueuesApi<'a> {
/// Scope operations to the `drop_requests` sub-resource of a specific process group.
///
/// - `id`: The connection id.
pub fn drop_requests<'b>(&'b self, id: &'b str) -> FlowFileQueuesDropRequestsApi<'b> {
FlowFileQueuesDropRequestsApi {
client: self.client,
id,
}
}
/// Scope operations to the `flowfiles` sub-resource of a specific process group.
///
/// - `id`: The connection id.
pub fn flowfiles<'b>(&'b self, id: &'b str) -> FlowFileQueuesFlowfilesApi<'b> {
FlowFileQueuesFlowfilesApi {
client: self.client,
id,
}
}
/// Scope operations to the `listing_requests` sub-resource of a specific process group.
///
/// - `id`: The connection id.
pub fn listing_requests<'b>(&'b self, id: &'b str) -> FlowFileQueuesListingRequestsApi<'b> {
FlowFileQueuesListingRequestsApi {
client: self.client,
id,
}
}
}
pub struct FlowFileQueuesDropRequestsApi<'a> {
pub(crate) client: &'a NifiClient,
pub(crate) id: &'a str,
}
#[allow(
private_interfaces,
clippy::too_many_arguments,
clippy::vec_init_then_push
)]
impl<'a> FlowFileQueuesDropRequestsApi<'a> {
/// Creates a request to drop the contents of the queue in this connection.
///
/// Calls `POST /nifi-api/flowfile-queues/{id}/drop-requests`.
///
/// # Returns
/// - `202`: The request has been accepted. A HTTP response header will contain the URI where the response can be polled.
///
/// # Errors
/// - `400`: NiFi was unable to complete the request because it was invalid. The request should not be retried without modification.
/// - `401`: Client could not be authenticated.
/// - `403`: Client is not authorized to make this request.
/// - `404`: The specified resource could not be found.
/// - `409`: The request was valid but NiFi was not in the appropriate state to process it.
///
/// # Permissions
/// Requires `Write Source Data - /data/{component-type}/{uuid}`.
pub async fn create_drop_request(
&self,
) -> Result<crate::v2_8_0::types::DropRequestDto, NifiError> {
let id = self.id;
let e: crate::v2_8_0::types::DropRequestEntity = self
.client
.post_no_body(&format!("/flowfile-queues/{id}/drop-requests"))
.await?;
Ok(e.drop_request.unwrap_or_default())
}
/// Cancels and/or removes a request to drop the contents of this connection.
///
/// Calls `DELETE /nifi-api/flowfile-queues/{id}/drop-requests/{drop-request-id}`.
///
/// # Parameters
/// - `drop_request_id`: The drop request id.
///
/// # Errors
/// - `400`: NiFi was unable to complete the request because it was invalid. The request should not be retried without modification.
/// - `401`: Client could not be authenticated.
/// - `403`: Client is not authorized to make this request.
/// - `404`: The specified resource could not be found.
/// - `409`: The request was valid but NiFi was not in the appropriate state to process it.
///
/// # Permissions
/// Requires `Write Source Data - /data/{component-type}/{uuid}`.
pub async fn remove_drop_request(
&self,
drop_request_id: &str,
) -> Result<crate::v2_8_0::types::DropRequestDto, NifiError> {
let id = self.id;
let e: crate::v2_8_0::types::DropRequestEntity = self
.client
.delete_returning(&format!(
"/flowfile-queues/{id}/drop-requests/{drop_request_id}"
))
.await?;
Ok(e.drop_request.unwrap_or_default())
}
/// Gets the current status of a drop request for the specified connection.
///
/// Calls `GET /nifi-api/flowfile-queues/{id}/drop-requests/{drop-request-id}`.
///
/// # Parameters
/// - `drop_request_id`: The drop request id.
///
/// # Errors
/// - `400`: NiFi was unable to complete the request because it was invalid. The request should not be retried without modification.
/// - `401`: Client could not be authenticated.
/// - `403`: Client is not authorized to make this request.
/// - `404`: The specified resource could not be found.
/// - `409`: The request was valid but NiFi was not in the appropriate state to process it.
///
/// # Permissions
/// Requires `Write Source Data - /data/{component-type}/{uuid}`.
pub async fn get_drop_request(
&self,
drop_request_id: &str,
) -> Result<crate::v2_8_0::types::DropRequestDto, NifiError> {
let id = self.id;
let e: crate::v2_8_0::types::DropRequestEntity = self
.client
.get(&format!(
"/flowfile-queues/{id}/drop-requests/{drop_request_id}"
))
.await?;
Ok(e.drop_request.unwrap_or_default())
}
}
pub struct FlowFileQueuesFlowfilesApi<'a> {
pub(crate) client: &'a NifiClient,
pub(crate) id: &'a str,
}
#[allow(
private_interfaces,
clippy::too_many_arguments,
clippy::vec_init_then_push
)]
impl<'a> FlowFileQueuesFlowfilesApi<'a> {
/// Gets a FlowFile from a Connection.
///
/// Calls `GET /nifi-api/flowfile-queues/{id}/flowfiles/{flowfile-uuid}`.
///
/// # Parameters
/// - `flowfile_uuid`: The flowfile uuid.
/// - `cluster_node_id`: The id of the node where the content exists if clustered.
///
/// # Errors
/// - `400`: NiFi was unable to complete the request because it was invalid. The request should not be retried without modification.
/// - `401`: Client could not be authenticated.
/// - `403`: Client is not authorized to make this request.
/// - `404`: The specified resource could not be found.
/// - `409`: The request was valid but NiFi was not in the appropriate state to process it.
///
/// # Permissions
/// Requires `Read Source Data - /data/{component-type}/{uuid}`.
pub async fn get_flow_file(
&self,
flowfile_uuid: &str,
cluster_node_id: Option<&str>,
) -> Result<crate::v2_8_0::types::FlowFileDto, NifiError> {
let id = self.id;
let mut query: Vec<(&str, String)> = vec![];
if let Some(v) = cluster_node_id {
query.push(("clusterNodeId", v.to_string()));
}
let e: crate::v2_8_0::types::FlowFileEntity = self
.client
.get_with_query(
&format!("/flowfile-queues/{id}/flowfiles/{flowfile_uuid}"),
&query,
)
.await?;
Ok(e.flow_file.unwrap_or_default())
}
/// Gets the content for a FlowFile in a Connection.
///
/// Calls `GET /nifi-api/flowfile-queues/{id}/flowfiles/{flowfile-uuid}/content`.
///
/// # Parameters
/// - `flowfile_uuid`: The flowfile uuid.
/// - `client_id`: If the client id is not specified, new one will be generated. This value (whether specified or generated) is included in the response.
/// - `cluster_node_id`: The id of the node where the content exists if clustered.
///
/// # Returns
/// - `206`: Partial Content with range of bytes requested
///
/// # Errors
/// - `400`: NiFi was unable to complete the request because it was invalid. The request should not be retried without modification.
/// - `401`: Client could not be authenticated.
/// - `403`: Client is not authorized to make this request.
/// - `404`: The specified resource could not be found.
/// - `409`: The request was valid but NiFi was not in the appropriate state to process it.
/// - `416`: Requested Range Not Satisfiable based on bytes requested
///
/// # Permissions
/// Requires `Read Source Data - /data/{component-type}/{uuid}`.
pub async fn download_flow_file_content(
&self,
flowfile_uuid: &str,
client_id: Option<&str>,
cluster_node_id: Option<&str>,
) -> Result<(), NifiError> {
let id = self.id;
let mut query: Vec<(&str, String)> = vec![];
if let Some(v) = client_id {
query.push(("clientId", v.to_string()));
}
if let Some(v) = cluster_node_id {
query.push(("clusterNodeId", v.to_string()));
}
self.client
.get_void_with_query(
&format!("/flowfile-queues/{id}/flowfiles/{flowfile_uuid}/content"),
&query,
)
.await
}
}
pub struct FlowFileQueuesListingRequestsApi<'a> {
pub(crate) client: &'a NifiClient,
pub(crate) id: &'a str,
}
#[allow(
private_interfaces,
clippy::too_many_arguments,
clippy::vec_init_then_push
)]
impl<'a> FlowFileQueuesListingRequestsApi<'a> {
/// Lists the contents of the queue in this connection.
///
/// Calls `POST /nifi-api/flowfile-queues/{id}/listing-requests`.
///
/// # Returns
/// - `202`: The request has been accepted. A HTTP response header will contain the URI where the response can be polled.
///
/// # Errors
/// - `400`: NiFi was unable to complete the request because it was invalid. The request should not be retried without modification.
/// - `401`: Client could not be authenticated.
/// - `403`: Client is not authorized to make this request.
/// - `404`: The specified resource could not be found.
/// - `409`: The request was valid but NiFi was not in the appropriate state to process it.
///
/// # Permissions
/// Requires `Read Source Data - /data/{component-type}/{uuid}`.
pub async fn create_flow_file_listing(
&self,
) -> Result<crate::v2_8_0::types::ListingRequestDto, NifiError> {
let id = self.id;
let e: crate::v2_8_0::types::ListingRequestEntity = self
.client
.post_no_body(&format!("/flowfile-queues/{id}/listing-requests"))
.await?;
Ok(e.listing_request.unwrap_or_default())
}
/// Cancels and/or removes a request to list the contents of this connection.
///
/// Calls `DELETE /nifi-api/flowfile-queues/{id}/listing-requests/{listing-request-id}`.
///
/// # Parameters
/// - `listing_request_id`: The listing request id.
///
/// # Errors
/// - `400`: NiFi was unable to complete the request because it was invalid. The request should not be retried without modification.
/// - `401`: Client could not be authenticated.
/// - `403`: Client is not authorized to make this request.
/// - `404`: The specified resource could not be found.
/// - `409`: The request was valid but NiFi was not in the appropriate state to process it.
///
/// # Permissions
/// Requires `Read Source Data - /data/{component-type}/{uuid}`.
pub async fn delete_listing_request(
&self,
listing_request_id: &str,
) -> Result<crate::v2_8_0::types::ListingRequestDto, NifiError> {
let id = self.id;
let e: crate::v2_8_0::types::ListingRequestEntity = self
.client
.delete_returning(&format!(
"/flowfile-queues/{id}/listing-requests/{listing_request_id}"
))
.await?;
Ok(e.listing_request.unwrap_or_default())
}
/// Gets the current status of a listing request for the specified connection.
///
/// Calls `GET /nifi-api/flowfile-queues/{id}/listing-requests/{listing-request-id}`.
///
/// # Parameters
/// - `listing_request_id`: The listing request id.
///
/// # Errors
/// - `400`: NiFi was unable to complete the request because it was invalid. The request should not be retried without modification.
/// - `401`: Client could not be authenticated.
/// - `403`: Client is not authorized to make this request.
/// - `404`: The specified resource could not be found.
/// - `409`: The request was valid but NiFi was not in the appropriate state to process it.
///
/// # Permissions
/// Requires `Read Source Data - /data/{component-type}/{uuid}`.
pub async fn get_listing_request(
&self,
listing_request_id: &str,
) -> Result<crate::v2_8_0::types::ListingRequestDto, NifiError> {
let id = self.id;
let e: crate::v2_8_0::types::ListingRequestEntity = self
.client
.get(&format!(
"/flowfile-queues/{id}/listing-requests/{listing_request_id}"
))
.await?;
Ok(e.listing_request.unwrap_or_default())
}
}
#[allow(clippy::too_many_arguments)]
impl crate::v2_8_0::traits::FlowFileQueuesApi for FlowFileQueuesApi<'_> {
fn drop_requests<'b>(
&'b self,
id: &'b str,
) -> impl crate::v2_8_0::traits::FlowFileQueuesDropRequestsApi + 'b {
FlowFileQueuesDropRequestsApi {
client: self.client,
id,
}
}
fn flowfiles<'b>(
&'b self,
id: &'b str,
) -> impl crate::v2_8_0::traits::FlowFileQueuesFlowfilesApi + 'b {
FlowFileQueuesFlowfilesApi {
client: self.client,
id,
}
}
fn listing_requests<'b>(
&'b self,
id: &'b str,
) -> impl crate::v2_8_0::traits::FlowFileQueuesListingRequestsApi + 'b {
FlowFileQueuesListingRequestsApi {
client: self.client,
id,
}
}
}
#[allow(clippy::too_many_arguments)]
impl crate::v2_8_0::traits::FlowFileQueuesDropRequestsApi for FlowFileQueuesDropRequestsApi<'_> {
async fn create_drop_request(&self) -> Result<crate::v2_8_0::types::DropRequestDto, NifiError> {
self.create_drop_request().await
}
async fn remove_drop_request(
&self,
drop_request_id: &str,
) -> Result<crate::v2_8_0::types::DropRequestDto, NifiError> {
self.remove_drop_request(drop_request_id).await
}
async fn get_drop_request(
&self,
drop_request_id: &str,
) -> Result<crate::v2_8_0::types::DropRequestDto, NifiError> {
self.get_drop_request(drop_request_id).await
}
}
#[allow(clippy::too_many_arguments)]
impl crate::v2_8_0::traits::FlowFileQueuesFlowfilesApi for FlowFileQueuesFlowfilesApi<'_> {
async fn get_flow_file(
&self,
flowfile_uuid: &str,
cluster_node_id: Option<&str>,
) -> Result<crate::v2_8_0::types::FlowFileDto, NifiError> {
self.get_flow_file(flowfile_uuid, cluster_node_id).await
}
async fn download_flow_file_content(
&self,
flowfile_uuid: &str,
client_id: Option<&str>,
cluster_node_id: Option<&str>,
) -> Result<(), NifiError> {
self.download_flow_file_content(flowfile_uuid, client_id, cluster_node_id)
.await
}
}
#[allow(clippy::too_many_arguments)]
impl crate::v2_8_0::traits::FlowFileQueuesListingRequestsApi
for FlowFileQueuesListingRequestsApi<'_>
{
async fn create_flow_file_listing(
&self,
) -> Result<crate::v2_8_0::types::ListingRequestDto, NifiError> {
self.create_flow_file_listing().await
}
async fn delete_listing_request(
&self,
listing_request_id: &str,
) -> Result<crate::v2_8_0::types::ListingRequestDto, NifiError> {
self.delete_listing_request(listing_request_id).await
}
async fn get_listing_request(
&self,
listing_request_id: &str,
) -> Result<crate::v2_8_0::types::ListingRequestDto, NifiError> {
self.get_listing_request(listing_request_id).await
}
}