forked from opensearch-project/opensearch-api-specification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflow_framework.common.yaml
396 lines (396 loc) · 11.7 KB
/
flow_framework.common.yaml
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
openapi: 3.0.3
info:
title: Schemas of flow_framework.common category
description: Schemas of flow_framework.common category
version: 1.0.0
paths: { }
components:
schemas:
AllowDelete:
description: Required when deleting resources involves a high potential for data loss.
type: string
WorkflowID:
type: string
WorkflowIDResponse:
type: object
properties:
workflow_id:
type: string
description: The ID of the workflow
WorkflowStepName:
type: string
Provision:
description: Provision the workflow as part of the request.
type: boolean
default: false
Reprovision:
type: boolean
default: false
UseCase:
type: string
Validation:
description: Validate the workflow. Valid values are all (validate the template) and none (do not validate the template). Default is all.
type: string
default: all
UpdateFields:
description: Update only the fields included in the request body.
type: boolean
default: false
All:
description: The all parameter specifies whether the response should return all fields.
type: boolean
default: false
FlowFrameworkCreate:
type: object
properties:
name:
type: string
description: The name of the workflow.
description:
type: string
description: A description of the workflow.
use_case:
type: string
description: A use case, which can be used with the Search Workflow API to find related workflows.
version:
$ref: '#/components/schemas/version'
workflows:
type: object
description: A map of workflows. Presently, only the provision key is supported. The value for the workflow key is a key-value map that includes fields for user_params and lists of nodes and edges.
required:
- name
FlowFrameworkUpdate:
type: object
properties:
name:
type: string
description: The name of the workflow.
description:
type: string
description: A description of the workflow.
use_case:
type: string
description: A use case, which can be used with the Search Workflow API to find related workflows.
workflows:
type: object
version:
$ref: '#/components/schemas/version'
minProperties: 1
FlowFrameworkDeleteResponse:
type: object
properties:
_index:
type: string
description: The name of the index where the document was stored.
_id:
type: string
description: The unique identifier of the deleted document.
_version:
type: integer
description: The version of the document after the deletion.
result:
type: string
description: The result of the deletion operation.
enum: [deleted, not_found]
_shards:
$ref: '#/components/schemas/shards'
_seq_no:
type: integer
description: The sequence number assigned to the document after the deletion.
_primary_term:
type: integer
description: The primary term assigned to the document after the deletion.
FlowFrameworkGetResponse:
type: object
properties:
name:
type: string
version:
$ref: '#/components/schemas/version'
description:
type: string
use_case:
type: string
workflows:
type: object
user:
$ref: '#/components/schemas/user'
created_time:
type: integer
last_updated_time:
type: integer
last_provisioned_time:
type: number
version:
type: object
description: A key-value map with two fields, template, which identifies the template version, and compatibility, which identifies a list of minimum required OpenSearch versions.
properties:
template:
type: string
description: The template version of the workflow.
compatibility:
type: array
items:
type: string
description: A list of minimum required OpenSearch versions.
shards:
type: object
properties:
total:
type: integer
description: The total number of shards involved in the deletion.
successful:
type: integer
description: The number of shards where the deletion was successful.
failed:
type: integer
description: The number of shards where the deletion failed.
skipped:
type: integer
description: The number of shards where the deletion was skipped.
query:
type: object
description: The search query to match workflows. Use `match_all` to retrieve all workflows, or `match` to search by specific fields like `use_case`.
properties:
match:
type: object
match_all:
type: object
total:
type: object
properties:
value:
type: integer
description: Total number of matching documents.
relation:
type: string
description: The relation of the total hits.
itemsObject:
type: object
properties:
_index:
type: string
description: The index name where the document resides.
_id:
type: string
description: The document ID.
_version:
type: integer
description: The version of the document.
_seq_no:
type: integer
description: The sequence number of the document.
_primary_term:
type: integer
description: The primary term of the document.
_score:
type: number
format: float
description: The score of the search hit.
_source:
$ref: '#/components/schemas/FlowFrameworkGetResponse'
StateItems:
type: object
properties:
_index:
type: string
description: The index name where the document resides.
_id:
type: string
description: The document ID.
_version:
type: integer
description: The version of the document.
_seq_no:
type: integer
description: The sequence number of the document.
_primary_term:
type: integer
description: The primary term of the document.
_score:
type: number
format: float
description: The score of the search hit.
_source:
$ref: '#/components/schemas/SearchStateResponse'
SearchStateResponse:
type: object
properties:
workflow_id:
type: string
provisioning_progress:
type: string
state:
type: string
user:
$ref: '#/components/schemas/user'
user:
type: object
properties:
name:
type: string
backend_roles:
type: array
items:
type: string
roles:
type: array
items:
type: string
custom_attribute_names:
type: array
items:
type: string
user_requested_tenant:
type: string
nullable: true
hits:
type: object
properties:
total:
$ref: '#/components/schemas/total'
max_score:
oneOf:
- type: 'null'
- type: number
format: float
description: The maximum score of the search hits.
hits:
type: array
items:
$ref: '#/components/schemas/itemsObject'
StateHits:
type: object
properties:
total:
$ref: '#/components/schemas/total'
max_score:
oneOf:
- type: 'null'
- type: number
format: float
description: The maximum score of the search hits.
hits:
type: array
items:
$ref: '#/components/schemas/StateItems'
WorkflowSteps:
type: object
additionalProperties:
$ref: '#/components/schemas/WorkflowStep'
WorkflowStep:
type: object
properties:
inputs:
type: array
items:
type: string
description: The list of required inputs for the workflow step
outputs:
type: array
items:
type: string
description: The list of outputs generated by the workflow step
required_plugins:
type: array
items:
type: string
description: The list of plugins required for the workflow step
timeout:
$ref: '_common.yaml#/components/schemas/Duration'
WorkFlowStatusDefaultResponse:
type: object
properties:
workflow_id:
type: string
description: The ID of the workflow
error:
type: string
description: Any error state associated with the workflow
nullable: true
state:
type: string
description: The current state of the workflow
resources_created:
type: array
items:
type: string
description: A list of resources created by the workflow
WorkFlowStatusFullResponse:
type: object
properties:
workflow_id:
type: string
description: The ID of the workflow
error:
type: string
description: Any error state associated with the workflow
nullable: true
state:
type: string
description: The current state of the workflow
enum:
- COMPLETED
- FAILED
- NOT_STARTED
- PROVISIONING
resources_created:
type: array
items:
type: string
description: A list of resources created by the workflow
provisioning_progress:
type: string
description: The progress of the provisioning process
nullable: true
provision_start_time:
type: string
format: date-time
description: The start time of the provisioning process
provision_end_time:
type: string
format: date-time
description: The end time of the provisioning process
user:
$ref: '#/components/schemas/user'
user_outputs:
type: array
items:
type: string
description: Outputs generated by the user
UserProvidedSubstitutionExpressions:
type: object
additionalProperties:
type: string
description: The value for the user-provided key. Keys represent substitution expressions.
SearchWorkflowRequest:
type: object
properties:
query:
$ref: '#/components/schemas/query'
WorkflowSearchResponse:
type: object
properties:
took:
type: integer
description: Time in milliseconds that the request took to complete.
timed_out:
type: boolean
description: Indicates if the request timed out.
_shards:
$ref: '#/components/schemas/shards'
hits:
$ref: '#/components/schemas/hits'
WorkflowSearchStateResponse:
type: object
properties:
took:
type: integer
description: Time in milliseconds that the request took to complete.
timed_out:
type: boolean
description: Indicates if the request timed out.
_shards:
$ref: '#/components/schemas/shards'
hits:
$ref: '#/components/schemas/StateHits'