-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathopenapi-spec.yml
454 lines (454 loc) · 11.9 KB
/
openapi-spec.yml
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
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
openapi: "3.0.3"
info:
version: 0.5.4
title: xOpera API
description: A stateful xOpera API for orchestration environment (single user, single project, single deployment)
license:
name: Apache-2.0
url: https://www.apache.org/licenses/LICENSE-2.0
paths:
/validate:
post:
summary: Validate a service template
operationId: validate
requestBody:
description: Validation inputs and service template name.
required: false
content:
application/json:
schema:
$ref: "#/components/schemas/ValidationInput"
responses:
"200":
description: The validation result.
content:
application/json:
schema:
$ref: "#/components/schemas/ValidationResult"
"500":
description: There was an error starting the validation.
/deploy:
post:
summary: Deploy a CSAR
operationId: deploy
requestBody:
description: Deployment inputs and service template name.
required: false
content:
application/json:
schema:
$ref: "#/components/schemas/DeploymentInput"
responses:
"202":
description: The deployment was successfully initiated.
content:
application/json:
schema:
$ref: "#/components/schemas/Invocation"
"500":
description: There was an error starting the deployment.
/undeploy:
post:
summary: Undeploy a deployment
operationId: undeploy
responses:
"202":
description: The undeploy operation was successfully initiated.
content:
application/json:
schema:
$ref: "#/components/schemas/Invocation"
"500":
description: There was an error starting the undeploy operation.
/outputs:
get:
summary: Fetch deployment outputs
operationId: outputs
responses:
"200":
description: The outputs of the deployment.
content:
application/json:
schema:
$ref: "#/components/schemas/DeploymentOutput"
"404":
description: No outputs exist for this deployment.
/info:
get:
summary: Get information about the current opera environment
operationId: info
responses:
"200":
description: The opera environment operation.
content:
application/json:
schema:
$ref: "#/components/schemas/Info"
"500":
description: General error.
/package:
post:
summary: Generate a CSAR from a working directory.
operationId: package
requestBody:
description: CSAR packaging parameters.
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/PackagingInput"
responses:
"200":
description: Packaging successful.
content:
application/json:
schema:
$ref: "#/components/schemas/PackagingResult"
"500":
description: General error.
/unpackage:
post:
summary: Unpackage a CSAR.
operationId: unpackage
requestBody:
description: CSAR unpackaging parameters.
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/UnpackagingInput"
responses:
"200":
description: Unpackaging successful.
content:
application/json:
schema:
$ref: "#/components/schemas/OperationSuccess"
"500":
description: General error.
/diff:
post:
summary: Do a diff
operationId: diff
requestBody:
description: Diff inputs
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/DiffRequest"
responses:
"200":
description: Diff response.
content:
application/json:
schema:
$ref: "#/components/schemas/Diff"
"500":
description: There was an error performing the diff.
/update:
post:
summary: Do an update
operationId: update
requestBody:
description: Update inputs
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/UpdateRequest"
responses:
"202":
description: Update successfully initiated.
content:
application/json:
schema:
$ref: "#/components/schemas/Invocation"
"500":
description: There was an error initiating the update.
/notify/{trigger_name}:
parameters:
- name: trigger_name
in: path
required: true
schema:
type: string
post:
summary: Do a notification.
operationId: notify
requestBody:
required: false
content:
text/plain:
schema:
type: string
responses:
"200":
description: Trigger triggered.
content:
application/json:
schema:
$ref: "#/components/schemas/OperationSuccess"
"500":
description: General error.
/status:
get:
summary: Fetch the status of a deployment
operationId: status
responses:
"200":
description: Asynchronous operation status history.
content:
application/json:
schema:
$ref: "#/components/schemas/InvocationHistory"
/status/{invocation_id}:
parameters:
- name: invocation_id
in: path
required: true
schema:
type: string
format: uuid
get:
summary: Fetch the status of a particular invocation.
operationId: invocationStatus
responses:
"200":
description: An invocation status.
content:
application/json:
schema:
$ref: "#/components/schemas/Invocation"
"404":
description: No invocation with this id.
/version:
get:
summary: Get current opera version
operationId: version
responses:
"200":
description: The opera environment operation.
content:
application/json:
schema:
$ref: "#/components/schemas/Version"
"500":
description: General error.
components:
schemas:
ValidationInput:
description: Input for validate command.
type: object
required:
- service_template
properties:
inputs:
type: object
service_template:
type: string
DeploymentInput:
description: Input for deploy command.
type: object
required:
- service_template
properties:
inputs:
type: object
service_template:
type: string
clean_state:
type: boolean
DeploymentOutput:
description: Free-form mapping of outputs.
type: object
Diff:
description: A diff.
type: object
required:
- added
- changed
- deleted
properties:
added:
type: array
items:
type: string
changed:
type: object
deleted:
type: array
items:
type: string
DiffRequest:
description: A diff request.
type: object
required:
- serviceTemplate
- inputs
- templateOnly
- newServiceTemplateContents
properties:
serviceTemplate:
description: The filename of the base service template.
type: string
inputs:
type: object
templateOnly:
type: boolean
newServiceTemplateContents:
description: The contents of the new service template.
type: string
format: bytes
Invocation:
description: An invocation of the deployment.
type: object
required:
- id
- state
- operation
- timestamp
properties:
id:
type: string
state:
$ref: "#/components/schemas/InvocationState"
operation:
$ref: "#/components/schemas/OperationType"
timestamp:
description: An ISO8601 timestamp of the invocation.
type: string
service_template:
description: The service template used for the invocation.
type: string
inputs:
description: Inputs provided for invocation.
type: object
clean_state:
description: Whether a clean deployment was requested.
type: boolean
instance_state:
description: State of the instances defined in service template.
type: object
additionalProperties:
type: string
exception:
description: An internal xOpera error that occurred during the operation.
type: string
stdout:
description: xOpera console output for operation.
type: string
stderr:
description: xOpera error output for operation.
type: string
InvocationHistory:
description: Invocation history ordered by timestamp ascending.
type: array
items:
$ref: "#/components/schemas/Invocation"
ValidationResult:
description: A CSAR validation result.
type: object
required:
- success
properties:
success:
type: boolean
message:
type: string
Info:
description: Information about an opera environment.
type: object
properties:
service_template:
type: string
content_root:
type: string
inputs:
type: object
status:
type: string
csar_metadata:
type: object
service_template_metadata:
type: object
csar_valid:
type: boolean
InvocationState:
type: string
enum:
- pending
- in_progress
- success
- failed
OperationType:
type: string
enum:
- deploy
- undeploy
- notify
- update
OperationSuccess:
description: A general success message.
type: object
required:
- success
properties:
success:
type: boolean
message:
type: string
PackagingInput:
description: Packaging parameters.
type: object
required:
- format
- service_template_folder
properties:
output:
type: string
format:
$ref: "#/components/schemas/PackagingFormat"
service_template:
type: string
service_template_folder:
type: string
PackagingFormat:
type: string
enum:
- zip
- tar
PackagingResult:
description: A general success message.
type: object
required:
- package_path
properties:
package_path:
type: string
UnpackagingInput:
description: Unpackaging parameters.
type: object
required:
- csar
properties:
destination:
type: string
csar:
type: string
UpdateRequest:
description: Update request.
type: object
required:
- inputs
- newServiceTemplateContents
properties:
inputs:
type: object
newServiceTemplateContents:
description: The contents of the new service template.
type: string
format: bytes
Version:
description: Information about opera version.
type: string