-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathplatform.json
More file actions
12264 lines (12264 loc) Β· 443 KB
/
Copy pathplatform.json
File metadata and controls
12264 lines (12264 loc) Β· 443 KB
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
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"openapi": "3.0.3",
"info": {
"title": "Unikraft Cloud Platform API",
"description": "This specification describes the Unikraft Cloud Platform API, which provides mechanisms to interact with Unikraft Cloud metros. It allows you to create, manage, and interact with instances running on the platform.",
"contact": {
"name": "Unikraft Support",
"url": "https://unikraft.com/contact",
"email": "support@unikraft.com"
},
"version": "v1.0.0"
},
"servers": [
{
"url": "https://api.fra.unikraft.cloud",
"description": "Frankfurt, DE"
},
{
"url": "https://api.dal.unikraft.cloud",
"description": "Dallas, TX, USA"
},
{
"url": "https://api.sin.unikraft.cloud",
"description": "Singapore"
},
{
"url": "https://api.was.unikraft.cloud",
"description": "Washington, DC, USA"
},
{
"url": "https://api.sfo.unikraft.cloud",
"description": "San Francisco, CA, USA"
}
],
"paths": {
"/v1/certificates": {
"get": {
"tags": [
"Certificates"
],
"summary": "List Certificates",
"description": "Get one or many certificates with their current status and configuration.\nIt's possible to filter this list by name or UUID.",
"operationId": "GetCertificates",
"parameters": [
{
"name": "details",
"in": "query",
"description": "Whether to include details about the certificate in the response. By\ndefault this is set to true, meaning that all information about the\ncertificate will be included in the response. If set to false, only the\nbasic information about the certificate will be included, such as its name\nand UUID.",
"schema": {
"type": "boolean"
}
},
{
"name": "count",
"in": "query",
"description": "The maximum number of certificates to return. If set to 0 or not set, all\ncertificates matching filters will be returned. When filtering by IDs,\nthis should not be set.",
"schema": {
"type": "integer",
"format": "uint32"
}
},
{
"name": "from",
"in": "query",
"description": "If set, the listing starts from the certificate with the given UUID or at\nthe given ISO8601 creation timestamp (inclusive). When count is 0 or not\nset, a UUID value may be used to match a specific certificate by UUID.",
"schema": {
"type": "string"
}
},
{
"name": "order",
"in": "query",
"description": "The sort order for the returned certificates.\n\nValid values are `PAGINATION_ORDER_ASC` (ascending, oldest first) and\n`PAGINATION_ORDER_DESC` (descending, newest first). Defaults to\n`PAGINATION_ORDER_ASC`.",
"schema": {
"$ref": "#/components/schemas/PaginationOrder"
}
},
{
"name": "sortby",
"in": "query",
"description": "The field to sort the certificates by.\n\nCurrently only `PAGINATION_SORT_BY_CREATE_TIME` is supported. Defaults to\n`PAGINATION_SORT_BY_CREATE_TIME`.",
"schema": {
"$ref": "#/components/schemas/PaginationSortBy"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/NameOrUUID"
}
}
}
},
"required": true
},
"responses": {
"default": {
"description": "default",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/GetCertificatesResponse"
}
}
}
}
},
"x-package": "certificates"
},
"put": {
"tags": [
"Certificates"
],
"summary": "Update Certificate",
"description": "Update the specified certificate with a new certificate chain and private\nkey. Only user-uploaded certificates can be updated; system-managed\ncertificates cannot be modified. The new certificate must have the same\ncommon name (CN) as the existing certificate.",
"operationId": "UpdateCertificate",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UpdateCertificateRequest"
}
}
},
"required": true
},
"responses": {
"default": {
"description": "default",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UpdateCertificateResponse"
}
}
}
}
},
"x-package": "certificates"
},
"post": {
"tags": [
"Certificates"
],
"summary": "Create Certificate",
"description": "Upload a new certificate with the given configuration.",
"operationId": "CreateCertificate",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateCertificateRequest"
}
}
},
"required": true
},
"responses": {
"default": {
"description": "default",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateCertificateResponse"
}
}
}
}
},
"x-package": "certificates"
},
"delete": {
"tags": [
"Certificates"
],
"summary": "Delete Certificates",
"description": "Delete the specified certificate(s). After this call the name of the\ncertificate(s) are no longer valid.",
"operationId": "DeleteCertificates",
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/NameOrUUID"
}
}
}
},
"required": true
},
"responses": {
"default": {
"description": "default",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DeleteCertificatesResponse"
}
}
}
}
},
"x-package": "certificates"
}
},
"/v1/certificates/{uuid}": {
"get": {
"tags": [
"Certificates"
],
"summary": "Get Certificate by UUID",
"description": "Get a specified certificate by its UUID.",
"operationId": "GetCertificateByUUID",
"parameters": [
{
"name": "uuid",
"in": "path",
"description": "The UUID of the certificate.",
"required": true,
"schema": {
"type": "string",
"format": "uuid"
}
}
],
"responses": {
"default": {
"description": "default",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/GetCertificatesResponse"
}
}
}
}
},
"x-package": "certificates"
},
"put": {
"tags": [
"Certificates"
],
"summary": "Update Certificate by UUID",
"description": "Update a specified certificate by its UUID with a new certificate chain\nand private key.",
"operationId": "UpdateCertificateByUUID",
"parameters": [
{
"name": "uuid",
"in": "path",
"description": "The UUID of the certificate to update.",
"required": true,
"schema": {
"type": "string",
"format": "uuid"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UpdateCertificateByUUIDRequest"
}
}
},
"required": true
},
"responses": {
"default": {
"description": "default",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UpdateCertificateResponse"
}
}
}
}
},
"x-package": "certificates"
},
"delete": {
"tags": [
"Certificates"
],
"summary": "Delete Certificate by UUID",
"description": "Delete a specified certificate by its UUID. After this call the UUID of\nthe certificate are no longer valid.",
"operationId": "DeleteCertificateByUUID",
"parameters": [
{
"name": "uuid",
"in": "path",
"description": "The UUID of the certificate to delete.",
"required": true,
"schema": {
"type": "string",
"format": "uuid"
}
}
],
"responses": {
"default": {
"description": "default",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DeleteCertificatesResponse"
}
}
}
}
},
"x-package": "certificates"
}
},
"/v1/healthz": {
"get": {
"tags": [
"Node"
],
"summary": "Health Check",
"description": "Return the status of a full-system health check of the node.",
"operationId": "Healthz",
"responses": {
"default": {
"description": "default",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HealthzResponse"
}
}
}
}
},
"x-package": "node"
}
},
"/v1/image-store": {
"get": {
"tags": [
"Images"
],
"summary": "Get Images in Store",
"description": "Retrieve all images.",
"operationId": "GetImageStore",
"parameters": [
{
"name": "metro",
"in": "query",
"description": "(Only applies when using global control plane).\nThe metro of the image.",
"schema": {
"type": "string"
}
},
{
"name": "digest",
"in": "query",
"schema": {
"type": "string"
}
},
{
"name": "tag",
"in": "query",
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/GetImagesRequestTagOrDigest"
}
}
}
},
"required": true
},
"responses": {
"default": {
"description": "default",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/GetImagesResponse"
}
}
}
}
},
"x-package": "images"
}
},
"/v1/images": {
"get": {
"tags": [
"Images"
],
"summary": "Get Images",
"description": "Retrieve all images.",
"operationId": "GetImages",
"parameters": [
{
"name": "metro",
"in": "query",
"description": "(Only applies when using global control plane).\nThe metro of the image.",
"schema": {
"type": "string"
}
},
{
"name": "digest",
"in": "query",
"schema": {
"type": "string"
}
},
{
"name": "tag",
"in": "query",
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/GetImagesRequestTagOrDigest"
}
}
}
},
"required": true
},
"responses": {
"default": {
"description": "default",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/GetImagesResponse"
}
}
}
}
},
"x-package": "images"
}
},
"/v1/instances": {
"get": {
"tags": [
"Instances"
],
"summary": "List Instances",
"description": "Get one or many instances with their current status and configuration.\nIt's possible to filter this list by ID(s) (name or UUID).",
"operationId": "GetInstances",
"parameters": [
{
"name": "details",
"in": "query",
"description": "Whether to include details about the instance in the response. By default\nthis is set to true, meaning that all information about the instance will\nbe included in the response. If set to false, only the basic information\nabout the instance will be included, such as its name and UUID.",
"schema": {
"type": "boolean"
}
},
{
"name": "count",
"in": "query",
"description": "The maximum number of instances to return. If set to 0 or not set, all\ninstances matching filters will be returned. When filtering by IDs, this\nshould not be set.",
"schema": {
"type": "integer",
"format": "uint32"
}
},
{
"name": "from",
"in": "query",
"description": "If set, the listing starts from the instance with the given UUID or at\nthe given ISO8601 creation timestamp (inclusive). When count is 0 or not\nset, a UUID value may be used to match a specific instance by UUID.",
"schema": {
"type": "string"
}
},
{
"name": "tags",
"in": "query",
"description": "A list of tags to filter the instances by.",
"schema": {
"type": "array",
"items": {
"type": "string"
}
}
},
{
"name": "order",
"in": "query",
"description": "The sort order for the returned instances.\n\nValid values are `PAGINATION_ORDER_ASC` (ascending, oldest first) and\n`PAGINATION_ORDER_DESC` (descending, newest first). Defaults to\n`PAGINATION_ORDER_ASC`.",
"schema": {
"$ref": "#/components/schemas/PaginationOrder"
}
},
{
"name": "sortby",
"in": "query",
"description": "The field to sort the instances by.\n\nCurrently only `PAGINATION_SORT_BY_CREATE_TIME` is supported. Defaults to\n`PAGINATION_SORT_BY_CREATE_TIME`.",
"schema": {
"$ref": "#/components/schemas/PaginationSortBy"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/NameOrUUID"
}
}
}
},
"required": true
},
"responses": {
"default": {
"description": "default",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/GetInstancesResponse"
}
}
}
}
},
"x-package": "instances"
},
"post": {
"tags": [
"Instances"
],
"summary": "Create Instance",
"description": "Create an instance in Unikraft Cloud.",
"operationId": "CreateInstance",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateInstanceRequest"
}
}
},
"required": true
},
"responses": {
"default": {
"description": "default",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateInstanceResponse"
}
}
}
}
},
"x-package": "instances"
},
"delete": {
"tags": [
"Instances"
],
"summary": "Delete Instances",
"description": "Delete the specified instance(s) by ID(s) (name or UUID). After this call\nthe IDs of the instances are no longer valid. If the instances are\ncurrently running, they are force-stopped.",
"operationId": "DeleteInstances",
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/DeleteInstanceRequestItem"
}
}
}
},
"required": true
},
"responses": {
"default": {
"description": "default",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DeleteInstancesResponse"
}
}
}
}
},
"x-package": "instances"
},
"patch": {
"tags": [
"Instances"
],
"summary": "Update Instances",
"description": "Update (modify) one or more instances by ID(s) (name or UUID). The\ninstances must be in a stopped state for most update operations.",
"operationId": "UpdateInstances",
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/UpdateInstancesRequestItem"
}
}
}
},
"required": true
},
"responses": {
"default": {
"description": "default",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UpdateInstancesResponse"
}
}
}
}
},
"x-package": "instances"
}
},
"/v1/instances/log": {
"get": {
"tags": [
"Instances"
],
"summary": "Get Instances Logs",
"description": "Retrieve the logs of one or more instances by ID(s) (name or UUID).",
"operationId": "GetInstanceLogs",
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/GetInstancesLogsRequestItem"
}
}
}
},
"required": true
},
"responses": {
"default": {
"description": "default",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/GetInstancesLogsResponse"
}
}
}
}
},
"x-package": "instances"
}
},
"/v1/instances/metrics": {
"get": {
"tags": [
"Instances"
],
"summary": "Get Instances Metrics",
"description": "Get the metrics of one or more instances by their ID(s) (name or UUID).",
"operationId": "GetInstanceMetrics",
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/NameOrUUID"
}
}
}
},
"required": true
},
"responses": {
"default": {
"description": "default",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/GetInstancesMetricsResponse"
}
}
}
}
},
"x-package": "instances"
}
},
"/v1/instances/start": {
"put": {
"tags": [
"Instances"
],
"summary": "Start Instances",
"description": "Start previously stopped instances by ID(s) (name or UUID) or do\nnothing if the instances are already running.",
"operationId": "StartInstances",
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/StartInstancesRequestItem"
}
}
}
},
"required": true
},
"responses": {
"default": {
"description": "default",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/StartInstancesResponse"
}
}
}
}
},
"x-package": "instances"
}
},
"/v1/instances/stop": {
"put": {
"tags": [
"Instances"
],
"summary": "Stop Instances",
"description": "Stop one or more running instance by ID(s) (name or UUID) or do\nnothing if the instances are already stopped.",
"operationId": "StopInstances",
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/StopInstancesRequestItem"
}
}
}
},
"required": true
},
"responses": {
"default": {
"description": "default",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/StopInstancesResponse"
}
}
}
}
},
"x-package": "instances"
}
},
"/v1/instances/suspend": {
"put": {
"tags": [
"Instances"
],
"summary": "Suspend Instances",
"description": "Suspend one or more running instances by ID(s) (name or UUID) or do\nnothing if the instances are already suspended.",
"operationId": "SuspendInstances",
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/SuspendInstancesRequestItem"
}
}
}
},
"required": true
},
"responses": {
"default": {
"description": "default",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuspendInstancesResponse"
}
}
}
}
},
"x-package": "instances"
}
},
"/v1/instances/templates": {
"get": {
"tags": [
"Instances"
],
"summary": "List template instances",
"description": "Get one or more template instances by their UUID(s) or name(s).",
"operationId": "GetTemplateInstances",
"parameters": [
{
"name": "details",
"in": "query",
"description": "Whether to include details about the templates in the response. By default\nthis is set to true, meaning that all information about the templates will\nbe included in the response. If set to false, only the basic information\nabout the templates will be included, such as their name and UUID.",
"schema": {
"type": "boolean"
}
},
{
"name": "count",
"in": "query",
"description": "The maximum number of template instances to return. If set to 0 or not\nset, all the template instances matching filters will be returned. When\nfiltering by IDs, this should not be set.",
"schema": {
"type": "integer",
"format": "uint32"
}
},
{
"name": "tags",
"in": "query",
"description": "A list of tags to filter the template instances by.",
"schema": {
"type": "array",
"items": {
"type": "string"
}
}
},
{
"name": "from",
"in": "query",
"description": "If set, the listing starts from the template with the given UUID or at the\ngiven ISO8601 creation timestamp (inclusive). When count is 0 or not set,\na UUID value may be used to match a specific template by UUID.",
"schema": {
"type": "string"
}
},
{
"name": "order",
"in": "query",
"description": "The sort order for the returned template instances.\n\nValid values are `PAGINATION_ORDER_ASC` (ascending, oldest first) and\n`PAGINATION_ORDER_DESC` (descending, newest first). Defaults to\n`PAGINATION_ORDER_ASC`.",
"schema": {
"$ref": "#/components/schemas/PaginationOrder"
}
},
{
"name": "sortby",
"in": "query",
"description": "The field to sort the template instances by.\n\nCurrently only `PAGINATION_SORT_BY_CREATE_TIME` is supported. Defaults to\n`PAGINATION_SORT_BY_CREATE_TIME`.",
"schema": {
"$ref": "#/components/schemas/PaginationSortBy"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/NameOrUUID"
}
}
}
},
"required": true
},
"responses": {
"default": {
"description": "default",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/GetTemplateInstancesResponse"
}
}
}
}
},
"x-package": "instances"
},
"post": {
"tags": [
"Instances"
],
"summary": "Create template instances from Instances",
"description": "Convert one or more existing instances by their UUID(s) or name(s) into\ntemplate instances that can be used to create new instances.\n\nThe existing instances must be in the `stopped` state and not have existing\nsnapshots.",
"operationId": "CreateTemplateInstances",
"parameters": [
{
"name": "timeout_s",
"in": "query",
"description": "Timeout in seconds to wait for the template instances to be created.\nA value of -1 means to wait indefinitely until the instance\nreaches the desired state. No wait performed for a value of 0.",
"schema": {
"type": "integer",
"format": "int64"
}
},
{
"name": "autokill.time_ms",
"in": "query",
"description": "Time in milliseconds after the template was last used for cloning\nbefore it is deleted. A value of 0 disables template autokill.",
"schema": {
"type": "integer",
"format": "uint64"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/NameOrUUID"
}
}
}
},
"required": true
},
"responses": {
"default": {
"description": "default",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateTemplateInstancesResponse"
}
}
}
}
},
"x-package": "instances"
},
"delete": {
"tags": [
"Instances"
],
"summary": "Delete template instances",
"description": "Delete the specified template instance(s) by ID(s) (name or UUID). After\nthis call the IDs of the template instances are no longer valid.",
"operationId": "DeleteTemplateInstances",
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/NameOrUUID"
}
}
}
},
"required": true
},
"responses": {
"default": {
"description": "default",
"content": {