@@ -23,16 +23,9 @@ paths:
23
23
' 201 ' :
24
24
$ref : ' #/components/responses/flow_framework.create@201'
25
25
' 403 ' :
26
- $ref : ' ../schemas/flow_framework._errors.yaml #/components/schemas/FlowFrameworkAPIDisabledException '
26
+ $ref : ' #/components/responses/flow_framework.create@403 '
27
27
' 400 ' :
28
- description : Bad Request - Multiple possible reasons
29
- oneOf :
30
- - $ref : ' ../schemas/flow_framework._errors.yaml#/components/schemas/BadRequestError'
31
- - $ref : ' ../schemas/flow_framework._errors.yaml#/components/schemas/ConflictError'
32
- - $ref : ' ../schemas/flow_framework._errors.yaml#/components/schemas/MissingParameterError'
33
- - $ref : ' ../schemas/flow_framework._errors.yaml#/components/schemas/ParameterConflictError'
34
- - $ref : ' ../schemas/flow_framework._errors.yaml#/components/schemas/MaxWorkflowsLimitError'
35
- - $ref : ' ../schemas/flow_framework._errors.yaml#/components/schemas/WorkflowSaveError'
28
+ $ref : ' #/components/responses/flow_framework.create@400'
36
29
/_plugins/_flow_framework/workflow/{workflow_id} :
37
30
delete :
38
31
operationId : flow_framework.delete.0
@@ -48,11 +41,11 @@ paths:
48
41
' 200 ' :
49
42
$ref : ' #/components/responses/flow_framework.delete@200'
50
43
' 400 ' :
51
- $ref : ' ../schemas/flow_framework._errors.yaml #/components/schemas/WorkFlowIdNullError '
44
+ $ref : ' #/components/responses/flow_framework.delete@400 '
52
45
' 403 ' :
53
- $ref : ' ../schemas/flow_framework._errors.yaml #/components/schemas/FlowFrameworkAPIDisabledException '
46
+ $ref : ' #/components/responses/flow_framework.delete@403 '
54
47
' 404 ' :
55
- $ref : ' ../schemas/flow_framework._errors.yaml #/components/schemas/TemplateNotFoundError '
48
+ $ref : ' #/components/responses/flow_framework.delete@404 '
56
49
put :
57
50
operationId : flow_framework.update.0
58
51
x-operation-group : flow_framework.update
70
63
$ref : ' #/components/responses/flow_framework.update@201'
71
64
description : It returns the workflow_id
72
65
' 404 ' :
73
- $ref : ' ../schemas/flow_framework._errors.yaml #/components/schemas/TemplateNotFoundError '
66
+ $ref : ' #/components/responses/flow_framework.update@404 '
74
67
get :
75
68
operationId : flow_framework.get.0
76
69
x-operation-group : flow_framework.get
82
75
- $ref : ' #/components/parameters/flow_framework.get::path.workflow_id'
83
76
responses :
84
77
' 200 ' :
85
- $ref : ' #/components/responses/flow_framework.get'
78
+ $ref : ' #/components/responses/flow_framework.get@200 '
86
79
' 404 ' :
87
- $ref : ' ../schemas/flow_framework._errors.yaml #/components/schemas/TemplateNotFoundError '
80
+ $ref : ' #/components/responses/flow_framework.get@404 '
88
81
components :
89
82
parameters :
90
83
flow_framework.get::path.workflow_id :
@@ -209,10 +202,10 @@ components:
209
202
type : string
210
203
description : A list of minimum required OpenSearch versions.
211
204
oneOf :
212
- - required : [name]
213
- - required : [description]
214
- - required : [use_case]
215
- - required : [version]
205
+ - required : [ name ]
206
+ - required : [ description ]
207
+ - required : [ use_case ]
208
+ - required : [ version ]
216
209
responses :
217
210
flow_framework.create@201 :
218
211
content :
@@ -225,6 +218,21 @@ components:
225
218
description : The ID of the workflow to be updated. Required for the PUT method.
226
219
required :
227
220
- workflow_id
221
+ flow_framework.create@403 :
222
+ content :
223
+ application/json :
224
+ $ref : ' ../schemas/flow_framework.errors.yaml#/components/schemas/FlowFrameworkAPIDisabledError'
225
+ flow_framework.create@400 :
226
+ description : Bad Request - Multiple possible reasons
227
+ content :
228
+ application/json :
229
+ oneOf :
230
+ - $ref : ' ../schemas/flow_framework.errors.yaml#/components/schemas/BadRequestError'
231
+ - $ref : ' ../schemas/flow_framework.errors.yaml#/components/schemas/ConflictError'
232
+ - $ref : ' ../schemas/flow_framework.errors.yaml#/components/schemas/MissingParameterError'
233
+ - $ref : ' ../schemas/flow_framework.errors.yaml#/components/schemas/ParameterConflictError'
234
+ - $ref : ' ../schemas/flow_framework.errors.yaml#/components/schemas/MaxWorkflowsLimitError'
235
+ - $ref : ' ../schemas/flow_framework.errors.yaml#/components/schemas/WorkflowSaveError'
228
236
flow_framework.update@201 :
229
237
content :
230
238
application/json :
@@ -254,7 +262,7 @@ components:
254
262
result :
255
263
type : string
256
264
description : The result of the deletion operation.
257
- enum : [deleted, not_found]
265
+ enum : [ deleted, not_found ]
258
266
_shards :
259
267
type : object
260
268
properties :
@@ -273,7 +281,7 @@ components:
273
281
_primary_term :
274
282
type : integer
275
283
description : The primary term assigned to the document after the deletion.
276
- flow_framework.get :
284
+ flow_framework.get@200 :
277
285
content :
278
286
application/json :
279
287
schema :
@@ -312,12 +320,27 @@ components:
312
320
last_updated_time :
313
321
type : integer
314
322
flow_framework.update@404 :
323
+ description : Template Not Found Error
315
324
content :
316
- application/json : { }
317
- flow_framework.create@400 :
318
- content :
319
- application/json : { }
325
+ application/json :
326
+ $ref : ' ../schemas/flow_framework.errors.yaml#/components/schemas/TemplateNotFoundError'
320
327
flow_framework.delete@400 :
328
+ description : Work Flow Id Null Error
329
+ content :
330
+ application/json :
331
+ $ref : ' ../schemas/flow_framework.errors.yaml#/components/schemas/WorkFlowIdNullError'
332
+ flow_framework.delete@403 :
333
+ description : Flow Framework API Disabled Error
334
+ content :
335
+ application/json :
336
+ $ref : ' ../schemas/flow_framework.errors.yaml#/components/schemas/FlowFrameworkAPIDisabledError'
337
+ flow_framework.delete@404 :
338
+ description : Template Not Found Error
339
+ content :
340
+ application/json :
341
+ $ref : ' ../schemas/flow_framework.errors.yaml#/components/schemas/TemplateNotFoundError'
342
+ flow_framework.get@404 :
343
+ description : Template Not Found Error
321
344
content :
322
- description : Workflow ID can not be null
323
- application/json : { }
345
+ application/json :
346
+ $ref : ' ../schemas/flow_framework.errors.yaml#/components/schemas/TemplateNotFoundError '
0 commit comments