forked from bottlerocket-os/bottlerocket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenapi.yaml
680 lines (656 loc) · 18.5 KB
/
openapi.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
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
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
openapi: "3.0.2"
info:
version: "0.1.0"
title: "Bottlerocket API"
description: "The API for the Bottlerocket OS"
license:
name: "Apache-2.0 OR MIT"
url: "https://github.com/bottlerocket-os/bottlerocket/blob/develop/COPYRIGHT"
servers:
- url: file:///run/api.sock
description: The production API server
components:
schemas:
HashMap:
type: object
additionalProperties:
type: string
Service:
type: object
additionalProperties:
$ref: '#/components/schemas/HashMap'
Services:
type: object
additionalProperties:
$ref: '#/components/schemas/Service'
ConfigurationFileInfo:
type: object
properties:
template-path:
type: string
path:
type: string
mode:
type: string
ConfigurationFiles:
type: object
additionalProperties:
$ref: '#/components/schemas/ConfigurationFileInfo'
Report:
type: object
properties:
name:
type: string
description:
type: string
Version:
type: object
properties:
major:
type: integer
minor:
type: integer
patch:
type: integer
UpdateImage:
type: object
properties:
arch:
type: string
variant:
type: string
version:
$ref: '#/components/schemas/Version'
StagedImage:
type: object
properties:
image:
$ref: '#/components/schemas/UpdateImage'
next_to_boot:
type: boolean
CommandResult:
type: object
properties:
cmd_type:
type: string
cmd_status:
type: string
timestamp:
type: string
exit_status:
type: integer
stderr:
type: string
UpdateStatus:
type: object
properties:
update_state:
type: string
available_updates:
type: array
items:
$ref: '#/components/schemas/Version'
chosen-update:
$ref: '#/components/schemas/UpdateImage'
active-partition:
$ref: '#/components/schemas/StagedImage'
staging-partition:
$ref: '#/components/schemas/StagedImage'
most-recent-command:
$ref: '#/components/schemas/CommandResult'
Settings:
type: object
properties:
motd:
type: string
kubernetes:
type: object
ecs:
type: object
updates:
type: object
host-containers:
type: object
ntp:
type: object
properties:
time-servers:
type: array
items:
type: string
network:
type: object
properties:
hostname:
type: string
kernel:
type: object
properties:
lockdown:
type: string
aws:
type: object
properties:
region:
type: string
config:
type: string
credentials:
type: string
profile:
type: string
metrics:
type: object
oci-defaults:
type: object
oci-hooks:
type: object
properties:
log4j-hotpatch-enabled:
type: boolean
cloudformation:
type: object
properties:
should-signal:
type: boolean
stack-name:
type: string
logical-resource-id:
type: string
autoscaling:
type: object
properties:
should-wait:
type: boolean
additionalProperties: true
BottlerocketRelease:
type: object
properties:
pretty-name:
type: string
variant-id:
type: string
version-id:
type: string
build-id:
type: string
arch:
type: string
Model:
type: object
properties:
settings:
$ref: '#/components/schemas/Settings'
services:
$ref: '#/components/schemas/Services'
configuration-files:
$ref: '#/components/schemas/ConfigurationFiles'
os:
$ref: '#/components/schemas/BottlerocketRelease'
paths:
/:
get:
summary: "Get current model, including settings, services, configuration files, and os info"
operationId: "get_model"
parameters:
- in: query
name: prefix
description: "Specific key prefix to query"
schema:
type: string
required: false
responses:
200:
description: "Successful request"
content:
application/json:
schema:
$ref: "Model"
500:
description: "Server error"
/settings:
get:
summary: "Get current settings"
operationId: "get_settings"
parameters:
- in: query
name: keys
description: "Specific keys to query. Takes precedence over 'prefix' if both query parameters are supplied"
schema:
type: array
items:
type: string
# `style: form` and `explode: false` format parameters as such: /settings?keys=foo,bar,baz
style: form
explode: false
required: false
- in: query
name: prefix
description: "Specific key prefix to query. This parameter will be ignored if 'keys' is also supplied"
schema:
type: string
required: false
responses:
200:
description: "Successful request"
content:
application/json:
schema:
$ref: "Settings"
500:
description: "Server error"
patch:
summary: "Update settings"
operationId: "set_settings"
parameters:
- in: query
name: tx
description: "Transaction in which to update settings; defaults to user 'default' transaction"
schema:
type: string
required: false
requestBody:
required: true
content:
application/json:
schema:
$ref: "Settings"
responses:
204:
description: "Settings successfully staged for update"
400:
description: "Invalid body"
500:
description: "Server error"
/tx:
get:
summary: "Get pending settings in a transaction"
operationId: "get_tx"
parameters:
- in: query
name: tx
description: "Transaction for which to retrieve pending settings; defaults to user 'default' transaction"
schema:
type: string
required: false
responses:
200:
description: "Successful request"
content:
application/json:
schema:
$ref: "Settings"
500:
description: "Server error"
delete:
summary: "Delete transaction"
operationId: "delete_tx"
parameters:
- in: query
name: tx
description: "Transaction to delete; defaults to user 'default' transaction"
schema:
type: string
required: false
responses:
200:
description: "Successful deleted pending settings - deleted keys are returned"
500:
description: "Server error"
/tx/list:
get:
summary: "List names of pending transactions"
operationId: "list_tx"
responses:
200:
description: "Successful request"
content:
application/json:
schema:
type: array
items:
type: string
500:
description: "Server error"
/tx/commit:
post:
summary: "Commit pending settings, without applying changes to config files or restarting services"
operationId: "commit_tx"
parameters:
- in: query
name: tx
description: "Transaction to commit; defaults to user 'default' transaction"
schema:
type: string
required: false
responses:
200:
description: "Successfully Staged settings - changed keys are returned"
500:
description: "Server error"
/tx/apply:
post:
summary: "Apply changes to config files and restart services"
operationId: "apply"
parameters:
- in: query
name: keys
description: "Apply changes only if related to these keys; if not specified, applies for all known keys"
schema:
type: array
items:
type: string
# `style: form` and `explode: false` format parameters as such: /tx/apply?keys=settings.foo,settings.bar
style: form
explode: false
required: false
responses:
204:
description: "Successfully started settings applier"
500:
description: "Server error"
/tx/commit_and_apply:
post:
summary: "Commit transaction, and apply any committed changes to relevant config files and services"
operationId: "commit_tx_and_apply"
parameters:
- in: query
name: tx
description: "Transaction to commit; defaults to user 'default' transaction"
schema:
type: string
required: false
responses:
200:
description: "Successful settings update, committed keys are returned"
500:
description: "Server error"
/os:
get:
summary: "Get OS information such as version, variant, and architecture"
operationId: "get_os_info"
parameters:
- in: query
name: prefix
description: "Specific key prefix to query"
schema:
type: string
required: false
responses:
200:
description: "Successful request"
content:
application/json:
# The response is a hashmap of string to string. Example:
# { "arch": "x86_64" }
schema:
type: object
additionalProperties:
type: string
500:
description: "Server error"
/metadata/affected-services:
get:
summary: "Get affected services"
operationId: "get_affected_services"
parameters:
- in: query
name: keys
description: "Specific keys to query"
schema:
type: array
items:
type: string
# `style: form` and `explode: false` format parameters as such: /metadata/affected-services?keys=settings.foo,settings.bar
style: form
explode: false
required: true
responses:
200:
description: "Successful request"
content:
application/json:
# The response is a hashmap of string to array of strings. Example:
# { "settings.foo": [ "service1", "service2" ] }
schema:
type: object
additionalProperties:
type: array
items:
type: string
400:
description: "Missing required query parameter: 'keys'"
500:
description: "Server error"
/metadata/setting-generators:
get:
summary: "Get programs needed to generate settings"
operationId: "get_setting_generators"
responses:
200:
description: "Successful request"
content:
application/json:
# The response is a hashmap of string to string. Example:
# { "settings.foobar": "/usr/bin/foobar" }
schema:
type: object
additionalProperties:
type: string
500:
description: "Server error"
/metadata/templates:
get:
summary: "Get template strings for dynamically generated settings"
operationId: "get_templates"
responses:
200:
description: "Successful request"
content:
application/json:
# The response is a hashmap of string to string. Example:
# { "settings.foobar": "hi {{ key }}" }
schema:
type: object
additionalProperties:
type: string
500:
description: "Server error"
/services:
get:
summary: "Get service data"
operationId: "get_services"
parameters:
- in: query
name: names
description: "Specific services to query"
schema:
type: array
items:
type: string
# `style: form` and `explode: false` format parameters as such: /services?names=foo,bar,baz
style: form
explode: false
required: false
- in: query
name: prefix
description: "Specific key prefix to query. This parameter will be ignored if 'names' is also supplied"
schema:
type: string
required: false
responses:
200:
description: "Successful request"
content:
application/json:
schema:
$ref: "Services"
500:
description: "Server error"
/configuration-files:
get:
summary: "Get configuration file data"
operationId: "get_config_files"
parameters:
- in: query
name: names
description: "Specific configuration files to query"
schema:
type: array
items:
type: string
# `style: form` and `explode: false` format parameters as such: /configuration-files?names=file1,file2
style: form
explode: false
required: false
- in: query
name: prefix
description: "Specific key prefix to query. This parameter will be ignored if 'names' is also supplied"
schema:
type: string
required: false
responses:
200:
description: "Successful request"
content:
application/json:
schema:
$ref: "ConfigurationFiles"
500:
description: "Server error"
/actions/reboot:
post:
summary: "Reboot"
operationId: "reboot"
responses:
204:
description: "Reboot requested"
500:
description: "Server error"
/actions/refresh-updates:
post:
summary: "Query update repository and refresh list of updates"
operationId: "refresh_update"
responses:
204:
description: "Successful request"
500:
description: "Server error"
423:
description: "Update write lock held. Try again in a moment"
/actions/prepare-update:
post:
summary: "Download the chosen update and write the update image to the inactive partition"
operationId: "prepare_update"
responses:
204:
description: "Successful request"
404:
description: "Chosen update does not exist"
409:
description: "Action not allowed according to current update state"
500:
description: "Server error"
423:
description: "Update write lock held. Try again in a moment"
/actions/activate-update:
post:
summary: "Mark the partition with the prepared update as active so you can reboot into the chosen version"
operationId: "activate_update"
responses:
204:
description: "Successfully activated update"
404:
description: "No update image applied to staging partition, need to prepare-update first"
409:
description: "Action not allowed according to current update state"
500:
description: "Server error"
423:
description: "Update write lock held. Try again in a moment"
/actions/deactivate-update:
post:
summary: "Deactivate the update by marking the running partition as active again"
operationId: "deactivate-update"
responses:
204:
description: "Successfully deactivated update"
404:
description: "No update image applied to staging partition, need to prepare-update first"
409:
description: "Action not allowed according to current update state"
500:
description: "Server error"
423:
description: "Update write lock held. Try again in a moment"
/updates/status:
get:
summary: "Get update status"
operationId: "get_update_status"
responses:
200:
description: "Successful request"
content:
application/json:
schema:
$ref: "UpdateStatus"
500:
description: "Server error"
423:
description: "Update write lock held. Try again in a moment"
/exec:
get:
summary: "Request exec WebSocket"
operationId: "exec"
responses:
101:
description: "Connection upgraded to WebSocket"
500:
description: "Server error"
/report:
get:
summary: "Get available report types"
operationId: "get_reports"
responses:
200:
description: "Successful request"
content:
application/json:
schema:
type: array
items:
$ref: "Report"
500:
description: "Server error"
/report/cis:
get:
summary: "Get CIS benchmark report"
operationId: "cis-report"
parameters:
- in: query
name: level
description: "The CIS compliance level to test (1 or 2). Default level is 1."
schema:
type: integer
minimum: 1
maximum: 2
required: false
- in: query
name: format
description: "The CIS compliance report format (text or json). Default format is text."
schema:
type: string
required: false
responses:
200:
description: "Successful request"
content:
application/json:
schema:
type: string
400:
description: "Bad request input"
422:
description: "Unprocessable request"
500:
description: "Server error"