-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathopenapi.yaml
853 lines (811 loc) · 20.1 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
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
openapi: "3.0.1"
info:
title: Janna API docs
description: "Janna provides a REST API interface for some ESXi/vSphere functions"
version: 'v0.6.0'
license:
name: "MIT"
url: http://opensource.org/licenses/MIT
servers:
- url: http://localhost:8080/
description: localhost server
paths:
/info:
get:
summary: "Information about the Janna build"
tags:
- Service state
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/build_info_response"
/healthz:
get:
summary: "Liveness probe"
tags:
- Service state
responses:
'200':
description: OK
/readyz:
get:
summary: "Readiness probe"
tags:
- Service state
responses:
'200':
description: OK
/metrics:
get:
summary: "Service metrics"
description: "Prometheus-style service metrics"
tags:
- Service state
responses:
'200':
description: OK
content:
text/plain:
schema:
$ref: "#/components/schemas/metrics_response"
/debug:
get:
summary: "Golang net http pprof"
description: "Runtime profiling data in the format expected by the pprof visualization tool (https://golang.org/pkg/net/http/pprof/)"
tags:
- Service state
responses:
'200':
description: OK
/vms:
get:
summary: "Virtual Machines UUIDs and names list"
description: Returns VMs list from default directory.
tags:
- Virtual Machines
parameters:
- name: X-Request-ID
in: header
schema:
type: string
format: uuid
- name: datacenter
in: query
description: Datacenter name
schema:
type: string
format: uuid
minimum: 1
- name: folder
in: query
description: Folder name to find VMs in. If the parameter was set 'resource_pool' will be ignored.
schema:
type: string
- name: resource_pool
in: query
description: Resource pool to find VMs in. If 'folder' parameter was passed this parameter will be ignored.
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/vms_list_response"
post:
summary: Deploy OVA file
description: Deploy OVA file
tags:
- Virtual Machines
parameters:
- name: X-Request-ID
in: header
schema:
type: string
format: uuid
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/deploy_ova_body'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/with_task_id_response"
/vms/{vm_uuid}:
get:
summary: "Get information about VM"
tags:
- Virtual Machines
parameters:
- name: X-Request-ID
in: header
schema:
type: string
format: uuid
- name: vm_uuid
in: path
required: true
description: VM UUID
schema:
type: string
format: uuid
minimum: 1
- name: datacenter
in: query
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/vm_info_response"
delete:
summary: Delete Virtual Machine
tags:
- Virtual Machines
parameters:
- name: X-Request-ID
in: header
schema:
type: string
format: uuid
- name: vm_uuid
in: path
required: true
description: VM UUID
schema:
type: string
format: uuid
minimum: 1
requestBody:
content:
application/json:
schema:
type: object
properties:
datacenter:
type: string
example: DC1
responses:
'200':
description: OK
/vms/{vm_uuid}/snapshots:
get:
summary: "List of VM snapshots"
tags:
- Virtual Machines
- Snapshots
parameters:
- name: X-Request-ID
in: header
schema:
type: string
format: uuid
- name: vm_uuid
in: path
required: true
description: VM UUID
schema:
type: string
minimum: 1
format: uuid
- name: datacenter
in: query
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/snapshots"
post:
summary: "Create VM snapshot"
tags:
- Virtual Machines
- Snapshots
parameters:
- name: X-Request-ID
in: header
schema:
type: string
format: uuid
- name: vm_uuid
in: path
required: true
description: VM UUID
schema:
type: string
minimum: 1
format: uuid
examples:
vm:
summary: test
value: vm1
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/create_snapshot_body'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/create_snapshot_response"
/vms/{vm_uuid}/snapshots/{snapshot}:
delete:
summary: "Delete VM snapshot"
tags:
- Virtual Machines
- Snapshots
parameters:
- name: X-Request-ID
in: header
schema:
type: string
format: uuid
- name: vm_uuid
in: path
required: true
description: VM UUID
schema:
type: string
format: uuid
minimum: 1
- name: snapshot
description: Snapshot ID
in: path
required: true
schema:
type: integer
minimum: 1
responses:
'200':
description: OK
/vms/{vm_uuid}/revert/{snapshot}:
post:
summary: "Restore VM from snapshot"
tags:
- Virtual Machines
- Snapshots
parameters:
- name: X-Request-ID
in: header
schema:
type: string
format: uuid
- name: vm_uuid
in: path
required: true
description: VM UUID
schema:
type: string
minimum: 1
format: uuid
- name: snapshot
in: path
required: true
description: Snapshot ID
schema:
type: integer
minimum: 1
responses:
'200':
description: OK
/vms/{vm_uuid}/revert:
post:
summary: "Restore VM from current snapshot"
tags:
- Virtual Machines
- Snapshots
parameters:
- name: X-Request-ID
in: header
schema:
type: string
format: uuid
- name: vm_uuid
in: path
required: true
description: VM UUID
schema:
type: string
minimum: 1
format: uuid
- name: snapshot
in: path
required: true
description: Snapshot ID
schema:
type: integer
minimum: 1
responses:
'200':
description: OK
/vms/{vm_uuid}/roles:
patch:
summary: "Add role to VM"
tags:
- Virtual Machines
- Permissions
parameters:
- name: X-Request-ID
in: header
schema:
type: string
format: uuid
- name: vm_uuid
in: path
required: true
description: VM UUID
schema:
type: string
minimum: 1
format: uuid
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/vm_add_role_body'
responses:
'200':
description: OK
'500':
description: Error
content:
application/json::
schema:
$ref: "#/components/schemas/vm_add_role_error_response"
/vms/{vm_uuid}/power:
patch:
summary: "Change Virtual Machine power state"
tags:
- Virtual Machines
- Power
parameters:
- name: X-Request-ID
in: header
schema:
type: string
format: uuid
- name: vm_uuid
in: path
required: true
description: VM UUID
schema:
type: string
minimum: 1
format: uuid
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/vm_change_power_body'
responses:
'200':
description: OK
'500':
description: Error
/vms/{vm_uuid}/screenshot:
patch:
summary: "Get Virtual Machine console screenshot"
tags:
- Virtual Machines
- Screenshot
parameters:
- name: X-Request-ID
in: header
schema:
type: string
format: uuid
- name: vm_uuid
in: path
required: true
description: VM UUID
schema:
type: string
minimum: 1
format: uuid
- name: datacenter
in: query
description: Datacenter name
schema:
type: string
format: uuid
minimum: 1
responses:
'200':
description: OK
content:
image/png:
schema:
type: string
format: binary
application/json:
schema:
$ref: "#/components/schemas/vm_not_found_error"
'500':
description: Error
/vms/{vm_uuid}/rename:
patch:
summary: "Rename Virtual Machine"
tags:
- Virtual Machines
parameters:
- name: X-Request-ID
in: header
schema:
type: string
format: uuid
- name: vm_uuid
in: path
required: true
description: VM UUID
schema:
type: string
minimum: 1
format: uuid
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/vm_rename_body'
responses:
'200':
description: OK
'500':
description: Error
/permissions/roles:
get:
summary: "List roles"
tags:
- Permissions
parameters:
- name: X-Request-ID
in: header
schema:
type: string
format: uuid
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/permissions_roles_response"
/find/vm:
get:
summary: "Find VM by path"
tags:
- Find
parameters:
- name: X-Request-ID
in: header
schema:
type: string
format: uuid
- name: path
in: query
required: true
description: Virtual Machine name or path. Wildcard supported.
schema:
type: string
- name: datacenter
in: query
description: Datacenter name
schema:
type: string
format: uuid
minimum: 1
responses:
'200':
description: OK
content:
application/json::
schema:
$ref: "#/components/schemas/vm_name_uuid_response"
'500':
description: Error
content:
application/json::
schema:
$ref: "#/components/schemas/find_vm_error_response"
/tasks/{task_id}:
get:
summary: "Get information about backgroud task"
tags:
- Tasks
parameters:
- name: X-Request-ID
in: header
schema:
type: string
format: uuid
- name: task_id
in: path
required: true
description: Task ID
schema:
type: string
format: uuid
example: 6ef18379-6220-6f7e-30ca-1d1c20a3cc97
responses:
'200':
description: OK
content:
application/json::
schema:
$ref: "#/components/schemas/task_id_response"
components:
schemas:
build_info_response:
type: object
properties:
build_time:
type: string
format: date-time
commit:
type: string
example: "c0c5f0a"
metrics_response:
type: string
example: |-
# HELP duration_API_request_duration_seconds Request duration in seconds.
# TYPE duration_API_request_duration_seconds summary
duration_API_request_duration_seconds{method="VMSnapshotsList",success="true",quantile="0.5"} 0.886037501
duration_API_request_duration_seconds{method="VMSnapshotsList",success="true",quantile="0.9"} 0.891919249
duration_API_request_duration_seconds{method="VMSnapshotsList",success="true",quantile="0.99"} 0.891919249
duration_API_request_duration_seconds_sum{method="VMSnapshotsList",success="true"} 7.092656131
duration_API_request_duration_seconds_count{method="VMSnapshotsList",success="true"} 8
# HELP go_gc_duration_seconds A summary of the GC invocation durations.
# TYPE go_gc_duration_seconds summary
go_gc_duration_seconds{quantile="0"} 5.8395e-05
go_gc_duration_seconds{quantile="0.25"} 5.8395e-05
go_gc_duration_seconds{quantile="0.5"} 6.9086e-05
go_gc_duration_seconds{quantile="0.75"} 8.9717e-05
go_gc_duration_seconds{quantile="1"} 8.9717e-05
vm_name_uuid_response:
type: object
required:
- name
- uuid
properties:
name:
type: string
example: "My Virtual Machine 01"
uuid:
type: string
format: uuid
vms_list_response:
type: array
items:
$ref: '#/components/schemas/vm_name_uuid_response'
vm_info_response:
type: object
properties:
Config:
type: object
example:
Annotation: Test annotation,
Name: coreos
Guest:
type: object
HeartBeat:
type: object
Runtime:
type: object
example:
BootTime: 2018-05-14T23:18:10Z,
Paused: true,
PowerState: poweredOn
create_snapshot_body:
type: object
required:
- name
properties:
name:
type: string
example: "MySnapshot"
description:
type: string
example: "This is a snapshot"
create_snapshot_response:
type: object
example:
"snapshot_id": 8
snapshots:
type: object
properties:
snapshots:
type: array
items:
type: object
example:
name: "snapshot1"
description: "My snapshot"
id: 4
created_at: "2018-05-17T08:54:35.251931Z"
find_vm_error_response:
type: object
example:
"error": "vm 'my-folder/my-vm' not found"
vm_add_role_body:
type: array
items:
$ref: '#/components/schemas/role'
# type: object
# required:
# - role_id
# - principal
# properties:
# role_id:
# type: integer
# example: 5
# principal:
# type: string
# example: "DOMAIN\\example.user"
# datacenter:
# type: string
# example: "DC1"
vm_change_power_body:
type: object
required:
- state
properties:
state:
type: string
enum: ["on", "off", "reboot", "reset", "suspend"]
example: "on"
datacenter:
type: string
example: "DC1"
vm_rename_body:
type: object
required:
- name
properties:
name:
type: string
description: "New Virtual Machine name"
example: "My New VM name"
datacenter:
type: string
example: "DC1"
vm_add_role_error_response:
type: object
example:
"error": "ServerFaultCode: The user or group named 'DOMAIN\\example.user' does not exist."
role:
type: object
required:
- name
- id
- description
properties:
name:
type: string
example: "VM-Admin"
id:
type: integer
example: -106818344
description:
type: object
properties:
label:
type: string
example: "VM-Admin"
summary:
type: string
example: "VM-Admin"
permissions_roles_response:
type: array
items:
$ref: '#/components/schemas/role'
vm_not_found_error:
type: object
properties:
error:
type: string
example: "could not find Virtual Machine by UUID. Could not assert reference to Virtual Machine"
task_id_response:
type: object
required:
- stage
properties:
stage:
type: string
example: complete
message:
type: string
example: ok
ip:
type: array
items:
type: string
example: ["10.10.20.110", "10.10.30.200"]
deploy_ova_body:
type: object
required:
- name
- ova_url
- datastores
- networks
- computer_resources
properties:
name:
type: string
example: Janna VM
ova_url:
type: string
format: uri
example: https://stable.release.core-os.net/amd64-usr/current/coreos_production_vmware_ova.ova
datacenter:
type: string
example: DC1
folder:
type: string
example: Dev VMs
annotation:
type: string
example: This is an annotation of the deployed VM
datastores:
type: object
properties:
type:
type: string
description: "Storage type. If 'cluster' type was chosen then Janna try to get DRS recommendation to choose proper 'datastore'."
enum: [cluster, datastore]
example: cluster
names:
type: array
items:
type: string
description: List of storages. One of them will be chosen randomly.
example: DatastoreCluster1
required:
- type
networks:
type: object
description: Network defines a mapping from each network inside the OVF to a ESXi network. The networks must be presented on the ESXi host.
example:
"VM Network": "esxi-net1"
computer_resources:
type: object
properties:
type:
type: string
description: "Computer resource type."
enum: [host, cluster, rp]
example: cluster
path:
type: string
description: Name or path to a computer resource. The parameter Can be omitted, then Janna will try to get default computer resource.
example: my-esxi-cluster
required:
- type
with_task_id_response:
type: object
properties:
task_id:
type: string
format: uuid
example:
"task_id": "548f65e9-2f79-2af9-8641-be75088f43c5"