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
// @generated — do not edit; run `cargo run -p nifi-openapi-gen`
#[allow(unused_imports)]
use crate::NifiError;
#[allow(unused_imports)]
use crate::dynamic::types;
/// Sub-resource trait for RemoteProcessGroupsBulletinsApi.
#[allow(unused_variables, async_fn_in_trait, clippy::too_many_arguments)]
pub trait RemoteProcessGroupsBulletinsApi {
/// Clears bulletins for a remote process group
///
/// Calls `POST /nifi-api/remote-process-groups/{id}/bulletins/clear-requests`.
///
/// # 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 - /remote-process-groups/{uuid}`.
///
/// *Supported in NiFi: 2.7.2, 2.8.0*
async fn clear_bulletins_6(
&self,
body: &types::ClearBulletinsRequestEntity,
) -> Result<types::ClearBulletinsResultEntity, NifiError> {
Err(NifiError::UnsupportedEndpoint {
endpoint: "clear_bulletins_6".to_string(),
version: "unknown".to_string(),
})
}
}
/// Sub-resource trait for RemoteProcessGroupsInputPortsApi.
#[allow(unused_variables, async_fn_in_trait, clippy::too_many_arguments)]
pub trait RemoteProcessGroupsInputPortsApi {
/// Updates a remote port
///
/// Note: This endpoint is subject to change as NiFi and it's REST API evolve.
///
/// Calls `PUT /nifi-api/remote-process-groups/{id}/input-ports/{port-id}`.
///
/// # Parameters
/// - `port_id`: The remote process group port 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 - /remote-process-groups/{uuid}`.
async fn update_remote_process_group_input_port(
&self,
port_id: &str,
body: &types::RemoteProcessGroupPortEntity,
) -> Result<types::RemoteProcessGroupPortEntity, NifiError> {
Err(NifiError::UnsupportedEndpoint {
endpoint: "update_remote_process_group_input_port".to_string(),
version: "unknown".to_string(),
})
}
/// Updates run status of a remote port
///
/// Note: This endpoint is subject to change as NiFi and it's REST API evolve.
///
/// Calls `PUT /nifi-api/remote-process-groups/{id}/input-ports/{port-id}/run-status`.
///
/// # Parameters
/// - `port_id`: The remote process group port 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 - /remote-process-groups/{uuid} or /operation/remote-process-groups/{uuid}`.
async fn update_remote_process_group_input_port_run_status(
&self,
port_id: &str,
body: &types::RemotePortRunStatusEntity,
) -> Result<types::RemoteProcessGroupPortEntity, NifiError> {
Err(NifiError::UnsupportedEndpoint {
endpoint: "update_remote_process_group_input_port_run_status".to_string(),
version: "unknown".to_string(),
})
}
}
/// Sub-resource trait for RemoteProcessGroupsOutputPortsApi.
#[allow(unused_variables, async_fn_in_trait, clippy::too_many_arguments)]
pub trait RemoteProcessGroupsOutputPortsApi {
/// Updates a remote port
///
/// Note: This endpoint is subject to change as NiFi and it's REST API evolve.
///
/// Calls `PUT /nifi-api/remote-process-groups/{id}/output-ports/{port-id}`.
///
/// # Parameters
/// - `port_id`: The remote process group port 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 - /remote-process-groups/{uuid}`.
async fn update_remote_process_group_output_port(
&self,
port_id: &str,
body: &types::RemoteProcessGroupPortEntity,
) -> Result<types::RemoteProcessGroupPortEntity, NifiError> {
Err(NifiError::UnsupportedEndpoint {
endpoint: "update_remote_process_group_output_port".to_string(),
version: "unknown".to_string(),
})
}
/// Updates run status of a remote port
///
/// Note: This endpoint is subject to change as NiFi and it's REST API evolve.
///
/// Calls `PUT /nifi-api/remote-process-groups/{id}/output-ports/{port-id}/run-status`.
///
/// # Parameters
/// - `port_id`: The remote process group port 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 - /remote-process-groups/{uuid} or /operation/remote-process-groups/{uuid}`.
async fn update_remote_process_group_output_port_run_status(
&self,
port_id: &str,
body: &types::RemotePortRunStatusEntity,
) -> Result<types::RemoteProcessGroupPortEntity, NifiError> {
Err(NifiError::UnsupportedEndpoint {
endpoint: "update_remote_process_group_output_port_run_status".to_string(),
version: "unknown".to_string(),
})
}
}
/// Sub-resource trait for RemoteProcessGroupsRunStatusApi.
#[allow(unused_variables, async_fn_in_trait, clippy::too_many_arguments)]
pub trait RemoteProcessGroupsRunStatusApi {
/// Updates run status of a remote process group
///
/// Calls `PUT /nifi-api/remote-process-groups/{id}/run-status`.
///
/// # 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 - /remote-process-groups/{uuid} or /operation/remote-process-groups/{uuid}`.
async fn update_remote_process_group_run_status(
&self,
body: &types::RemotePortRunStatusEntity,
) -> Result<types::RemoteProcessGroupEntity, NifiError> {
Err(NifiError::UnsupportedEndpoint {
endpoint: "update_remote_process_group_run_status".to_string(),
version: "unknown".to_string(),
})
}
/// Updates run status of all remote process groups in a process group (recursively)
///
/// Calls `PUT /nifi-api/remote-process-groups/process-group/{id}/run-status`.
///
/// # 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 - /remote-process-groups/{uuid} or /operation/remote-process-groups/{uuid}`.
async fn update_remote_process_group_run_statuses(
&self,
body: &types::RemotePortRunStatusEntity,
) -> Result<types::RemoteProcessGroupEntity, NifiError> {
Err(NifiError::UnsupportedEndpoint {
endpoint: "update_remote_process_group_run_statuses".to_string(),
version: "unknown".to_string(),
})
}
}
/// Sub-resource trait for RemoteProcessGroupsStateApi.
#[allow(unused_variables, async_fn_in_trait, clippy::too_many_arguments)]
pub trait RemoteProcessGroupsStateApi {
/// Gets the state for a RemoteProcessGroup
///
/// Calls `GET /nifi-api/remote-process-groups/{id}/state`.
///
/// # 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 - /remote-process-groups/{uuid}`.
async fn get_state_3(&self) -> Result<types::ComponentStateDto, NifiError> {
Err(NifiError::UnsupportedEndpoint {
endpoint: "get_state_3".to_string(),
version: "unknown".to_string(),
})
}
}
/// The RemoteProcessGroups API.
#[allow(unused_variables, async_fn_in_trait, clippy::too_many_arguments)]
pub trait RemoteProcessGroupsApi {
/// Returns a sub-resource accessor for config operations.
///
/// # Parameters
/// - `id`: The remote process group id.
fn bulletins<'b>(&'b self, id: &'b str) -> impl RemoteProcessGroupsBulletinsApi + 'b;
/// Returns a sub-resource accessor for config operations.
///
/// # Parameters
/// - `id`: The remote process group id.
fn input_ports<'b>(&'b self, id: &'b str) -> impl RemoteProcessGroupsInputPortsApi + 'b;
/// Returns a sub-resource accessor for config operations.
///
/// # Parameters
/// - `id`: The remote process group id.
fn output_ports<'b>(&'b self, id: &'b str) -> impl RemoteProcessGroupsOutputPortsApi + 'b;
/// Returns a sub-resource accessor for config operations.
///
/// # Parameters
/// - `id`: The process group id.
fn run_status<'b>(&'b self, id: &'b str) -> impl RemoteProcessGroupsRunStatusApi + 'b;
/// Returns a sub-resource accessor for config operations.
///
/// # Parameters
/// - `id`: The processor id.
fn state<'b>(&'b self, id: &'b str) -> impl RemoteProcessGroupsStateApi + 'b;
/// Gets a remote process group
///
/// Calls `GET /nifi-api/remote-process-groups/{id}`.
///
/// # Parameters
/// - `id`: The remote process group 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 - /remote-process-groups/{uuid}`.
async fn get_remote_process_group(
&self,
id: &str,
) -> Result<types::RemoteProcessGroupEntity, NifiError> {
Err(NifiError::UnsupportedEndpoint {
endpoint: "get_remote_process_group".to_string(),
version: "unknown".to_string(),
})
}
/// Deletes a remote process group
///
/// Calls `DELETE /nifi-api/remote-process-groups/{id}`.
///
/// # Parameters
/// - `id`: The remote process group id.
/// - `version`: The revision is used to verify the client is working with the latest version of the flow.
/// - `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.
/// - `disconnected_node_acknowledged`: Acknowledges that this node is disconnected to allow for mutable requests to proceed.
///
/// # 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 - /remote-process-groups/{uuid}`.
/// Requires `Write - Parent Process Group - /process-groups/{uuid}`.
async fn remove_remote_process_group(
&self,
id: &str,
version: Option<&str>,
client_id: Option<&str>,
disconnected_node_acknowledged: Option<bool>,
) -> Result<types::RemoteProcessGroupEntity, NifiError> {
Err(NifiError::UnsupportedEndpoint {
endpoint: "remove_remote_process_group".to_string(),
version: "unknown".to_string(),
})
}
/// Updates a remote process group
///
/// Calls `PUT /nifi-api/remote-process-groups/{id}`.
///
/// # Parameters
/// - `id`: The remote process group 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 - /remote-process-groups/{uuid}`.
async fn update_remote_process_group(
&self,
id: &str,
body: &types::RemoteProcessGroupEntity,
) -> Result<types::RemoteProcessGroupEntity, NifiError> {
Err(NifiError::UnsupportedEndpoint {
endpoint: "update_remote_process_group".to_string(),
version: "unknown".to_string(),
})
}
}