@xen-orchestra/rest-api 0.31.0 → 0.32.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/acl-privileges/acl-privilege.controller.mjs +7 -2
- package/dist/acl-roles/acl-role.controller.mjs +13 -2
- package/dist/alarms/alarm.controller.mjs +3 -1
- package/dist/backup-archives/backup-archive.controller.mjs +3 -1
- package/dist/backup-jobs/backup-job.controller.mjs +12 -1
- package/dist/backup-logs/backup-log.controller.mjs +3 -1
- package/dist/backup-repositories/backup-repositories.controller.mjs +3 -1
- package/dist/events/event.controller.mjs +4 -1
- package/dist/groups/group.controller.mjs +10 -1
- package/dist/hosts/host.controller.mjs +16 -1
- package/dist/index.mjs +2 -0
- package/dist/mcp/mcp.controller.mjs +59 -0
- package/dist/mcp/mcp.helper.mjs +11 -0
- package/dist/messages/message.controller.mjs +3 -1
- package/dist/middlewares/mcp-gate.middleware.mjs +30 -0
- package/dist/networks/network.controller.mjs +9 -1
- package/dist/open-api/routes/routes.js +33 -1
- package/dist/pbds/pbd.controller.mjs +5 -1
- package/dist/pcis/pci.controller.mjs +3 -1
- package/dist/pgpus/pgpu.controller.mjs +3 -1
- package/dist/pifs/pif.controller.mjs +6 -1
- package/dist/pools/pool.controller.mjs +20 -1
- package/dist/proxies/proxy.controller.mjs +3 -1
- package/dist/restore-logs/restore-log.controller.mjs +5 -1
- package/dist/schedules/schedule.controller.mjs +4 -1
- package/dist/servers/server.controller.mjs +8 -1
- package/dist/sms/sm.controller.mjs +3 -1
- package/dist/srs/sr.controller.mjs +13 -1
- package/dist/tasks/task.controller.mjs +6 -1
- package/dist/users/user.controller.mjs +13 -2
- package/dist/vbds/vbd.controller.mjs +10 -1
- package/dist/vdi-snapshots/vdi-snapshot.controller.mjs +10 -1
- package/dist/vdis/vdi.controller.mjs +13 -1
- package/dist/vifs/vif.controller.mjs +10 -1
- package/dist/vm-controller/vm-controller.controller.mjs +9 -1
- package/dist/vm-snapshots/vm-snapshot.controller.mjs +11 -1
- package/dist/vm-templates/vm-template.controller.mjs +11 -1
- package/dist/vms/vm.controller.mjs +29 -1
- package/dist/xoa/xoa.controller.mjs +4 -1
- package/eslint-rules/index.cjs +7 -0
- package/eslint-rules/require-mcp-expose.cjs +129 -0
- package/open-api/spec/swagger.json +563 -264
- package/package.json +3 -3
- package/tsoa.json +2 -1
|
@@ -5948,7 +5948,6 @@
|
|
|
5948
5948
|
}
|
|
5949
5949
|
},
|
|
5950
5950
|
"required": [
|
|
5951
|
-
"other_config",
|
|
5952
5951
|
"srId"
|
|
5953
5952
|
],
|
|
5954
5953
|
"type": "object"
|
|
@@ -11724,6 +11723,21 @@
|
|
|
11724
11723
|
"UnbrandedXoMessage": {
|
|
11725
11724
|
"$ref": "#/components/schemas/Unbrand_XoMessage_"
|
|
11726
11725
|
},
|
|
11726
|
+
"McpStatus": {
|
|
11727
|
+
"properties": {
|
|
11728
|
+
"enabled": {
|
|
11729
|
+
"type": "boolean",
|
|
11730
|
+
"enum": [
|
|
11731
|
+
true
|
|
11732
|
+
],
|
|
11733
|
+
"nullable": false
|
|
11734
|
+
}
|
|
11735
|
+
},
|
|
11736
|
+
"required": [
|
|
11737
|
+
"enabled"
|
|
11738
|
+
],
|
|
11739
|
+
"type": "object"
|
|
11740
|
+
},
|
|
11727
11741
|
"Record_string.HOST_ALLOWED_OPERATIONS_": {
|
|
11728
11742
|
"properties": {},
|
|
11729
11743
|
"type": "object",
|
|
@@ -18441,7 +18455,7 @@
|
|
|
18441
18455
|
},
|
|
18442
18456
|
"info": {
|
|
18443
18457
|
"title": "@xen-orchestra/rest-api",
|
|
18444
|
-
"version": "0.
|
|
18458
|
+
"version": "0.32.0",
|
|
18445
18459
|
"description": "REST API to manage your XOA",
|
|
18446
18460
|
"license": {
|
|
18447
18461
|
"name": "AGPL-3.0-or-later"
|
|
@@ -18550,7 +18564,8 @@
|
|
|
18550
18564
|
"type": "boolean"
|
|
18551
18565
|
}
|
|
18552
18566
|
}
|
|
18553
|
-
]
|
|
18567
|
+
],
|
|
18568
|
+
"x-mcp-exposure": "allow"
|
|
18554
18569
|
}
|
|
18555
18570
|
},
|
|
18556
18571
|
"/ping": {
|
|
@@ -18584,7 +18599,8 @@
|
|
|
18584
18599
|
"none": []
|
|
18585
18600
|
}
|
|
18586
18601
|
],
|
|
18587
|
-
"parameters": []
|
|
18602
|
+
"parameters": [],
|
|
18603
|
+
"x-mcp-exposure": "allow"
|
|
18588
18604
|
}
|
|
18589
18605
|
},
|
|
18590
18606
|
"/gui-routes": {
|
|
@@ -18618,7 +18634,8 @@
|
|
|
18618
18634
|
"none": []
|
|
18619
18635
|
}
|
|
18620
18636
|
],
|
|
18621
|
-
"parameters": []
|
|
18637
|
+
"parameters": [],
|
|
18638
|
+
"x-mcp-exposure": "allow"
|
|
18622
18639
|
}
|
|
18623
18640
|
},
|
|
18624
18641
|
"/vms": {
|
|
@@ -18722,7 +18739,8 @@
|
|
|
18722
18739
|
},
|
|
18723
18740
|
"example": 42
|
|
18724
18741
|
}
|
|
18725
|
-
]
|
|
18742
|
+
],
|
|
18743
|
+
"x-mcp-exposure": "allow"
|
|
18726
18744
|
}
|
|
18727
18745
|
},
|
|
18728
18746
|
"/vms/{id}.{format}": {
|
|
@@ -18795,7 +18813,8 @@
|
|
|
18795
18813
|
"type": "boolean"
|
|
18796
18814
|
}
|
|
18797
18815
|
}
|
|
18798
|
-
]
|
|
18816
|
+
],
|
|
18817
|
+
"x-mcp-exposure": "deny"
|
|
18799
18818
|
}
|
|
18800
18819
|
},
|
|
18801
18820
|
"/vms/{id}": {
|
|
@@ -18942,7 +18961,8 @@
|
|
|
18942
18961
|
},
|
|
18943
18962
|
"example": "f07ab729-c0e8-721c-45ec-f11276377030"
|
|
18944
18963
|
}
|
|
18945
|
-
]
|
|
18964
|
+
],
|
|
18965
|
+
"x-mcp-exposure": "allow"
|
|
18946
18966
|
},
|
|
18947
18967
|
"delete": {
|
|
18948
18968
|
"operationId": "DeleteVm",
|
|
@@ -18985,7 +19005,8 @@
|
|
|
18985
19005
|
},
|
|
18986
19006
|
"example": "f07ab729-c0e8-721c-45ec-f11276377030"
|
|
18987
19007
|
}
|
|
18988
|
-
]
|
|
19008
|
+
],
|
|
19009
|
+
"x-mcp-exposure": "confirm"
|
|
18989
19010
|
}
|
|
18990
19011
|
},
|
|
18991
19012
|
"/vms/{id}/stats": {
|
|
@@ -20285,7 +20306,8 @@
|
|
|
20285
20306
|
"$ref": "#/components/schemas/XapiStatsGranularity"
|
|
20286
20307
|
}
|
|
20287
20308
|
}
|
|
20288
|
-
]
|
|
20309
|
+
],
|
|
20310
|
+
"x-mcp-exposure": "deny"
|
|
20289
20311
|
}
|
|
20290
20312
|
},
|
|
20291
20313
|
"/vms/{id}/stats/data_source/{data_source}": {
|
|
@@ -20339,7 +20361,8 @@
|
|
|
20339
20361
|
},
|
|
20340
20362
|
"example": "cpu0"
|
|
20341
20363
|
}
|
|
20342
|
-
]
|
|
20364
|
+
],
|
|
20365
|
+
"x-mcp-exposure": "confirm"
|
|
20343
20366
|
},
|
|
20344
20367
|
"delete": {
|
|
20345
20368
|
"operationId": "DeleteDataSource",
|
|
@@ -20391,7 +20414,8 @@
|
|
|
20391
20414
|
},
|
|
20392
20415
|
"example": "cpu0"
|
|
20393
20416
|
}
|
|
20394
|
-
]
|
|
20417
|
+
],
|
|
20418
|
+
"x-mcp-exposure": "confirm"
|
|
20395
20419
|
}
|
|
20396
20420
|
},
|
|
20397
20421
|
"/vms/{id}/actions/start": {
|
|
@@ -20479,7 +20503,8 @@
|
|
|
20479
20503
|
}
|
|
20480
20504
|
}
|
|
20481
20505
|
}
|
|
20482
|
-
}
|
|
20506
|
+
},
|
|
20507
|
+
"x-mcp-exposure": "confirm"
|
|
20483
20508
|
}
|
|
20484
20509
|
},
|
|
20485
20510
|
"/vms/{id}/actions/clean_shutdown": {
|
|
@@ -20549,7 +20574,8 @@
|
|
|
20549
20574
|
"type": "boolean"
|
|
20550
20575
|
}
|
|
20551
20576
|
}
|
|
20552
|
-
]
|
|
20577
|
+
],
|
|
20578
|
+
"x-mcp-exposure": "confirm"
|
|
20553
20579
|
}
|
|
20554
20580
|
},
|
|
20555
20581
|
"/vms/{id}/actions/clean_reboot": {
|
|
@@ -20616,7 +20642,8 @@
|
|
|
20616
20642
|
"type": "boolean"
|
|
20617
20643
|
}
|
|
20618
20644
|
}
|
|
20619
|
-
]
|
|
20645
|
+
],
|
|
20646
|
+
"x-mcp-exposure": "confirm"
|
|
20620
20647
|
}
|
|
20621
20648
|
},
|
|
20622
20649
|
"/vms/{id}/actions/hard_shutdown": {
|
|
@@ -20686,7 +20713,8 @@
|
|
|
20686
20713
|
"type": "boolean"
|
|
20687
20714
|
}
|
|
20688
20715
|
}
|
|
20689
|
-
]
|
|
20716
|
+
],
|
|
20717
|
+
"x-mcp-exposure": "confirm"
|
|
20690
20718
|
}
|
|
20691
20719
|
},
|
|
20692
20720
|
"/vms/{id}/actions/hard_reboot": {
|
|
@@ -20756,7 +20784,8 @@
|
|
|
20756
20784
|
"type": "boolean"
|
|
20757
20785
|
}
|
|
20758
20786
|
}
|
|
20759
|
-
]
|
|
20787
|
+
],
|
|
20788
|
+
"x-mcp-exposure": "confirm"
|
|
20760
20789
|
}
|
|
20761
20790
|
},
|
|
20762
20791
|
"/vms/{id}/actions/pause": {
|
|
@@ -20826,7 +20855,8 @@
|
|
|
20826
20855
|
"type": "boolean"
|
|
20827
20856
|
}
|
|
20828
20857
|
}
|
|
20829
|
-
]
|
|
20858
|
+
],
|
|
20859
|
+
"x-mcp-exposure": "confirm"
|
|
20830
20860
|
}
|
|
20831
20861
|
},
|
|
20832
20862
|
"/vms/{id}/actions/suspend": {
|
|
@@ -20896,7 +20926,8 @@
|
|
|
20896
20926
|
"type": "boolean"
|
|
20897
20927
|
}
|
|
20898
20928
|
}
|
|
20899
|
-
]
|
|
20929
|
+
],
|
|
20930
|
+
"x-mcp-exposure": "confirm"
|
|
20900
20931
|
}
|
|
20901
20932
|
},
|
|
20902
20933
|
"/vms/{id}/actions/resume": {
|
|
@@ -20966,7 +20997,8 @@
|
|
|
20966
20997
|
"type": "boolean"
|
|
20967
20998
|
}
|
|
20968
20999
|
}
|
|
20969
|
-
]
|
|
21000
|
+
],
|
|
21001
|
+
"x-mcp-exposure": "confirm"
|
|
20970
21002
|
}
|
|
20971
21003
|
},
|
|
20972
21004
|
"/vms/{id}/actions/unpause": {
|
|
@@ -21036,7 +21068,8 @@
|
|
|
21036
21068
|
"type": "boolean"
|
|
21037
21069
|
}
|
|
21038
21070
|
}
|
|
21039
|
-
]
|
|
21071
|
+
],
|
|
21072
|
+
"x-mcp-exposure": "confirm"
|
|
21040
21073
|
}
|
|
21041
21074
|
},
|
|
21042
21075
|
"/vms/{id}/actions/revert_snapshot": {
|
|
@@ -21134,7 +21167,8 @@
|
|
|
21134
21167
|
}
|
|
21135
21168
|
}
|
|
21136
21169
|
}
|
|
21137
|
-
}
|
|
21170
|
+
},
|
|
21171
|
+
"x-mcp-exposure": "confirm"
|
|
21138
21172
|
}
|
|
21139
21173
|
},
|
|
21140
21174
|
"/vms/{id}/actions/snapshot": {
|
|
@@ -21222,7 +21256,8 @@
|
|
|
21222
21256
|
}
|
|
21223
21257
|
}
|
|
21224
21258
|
}
|
|
21225
|
-
}
|
|
21259
|
+
},
|
|
21260
|
+
"x-mcp-exposure": "confirm"
|
|
21226
21261
|
}
|
|
21227
21262
|
},
|
|
21228
21263
|
"/vms/{id}/actions/clone": {
|
|
@@ -21336,7 +21371,8 @@
|
|
|
21336
21371
|
}
|
|
21337
21372
|
}
|
|
21338
21373
|
}
|
|
21339
|
-
}
|
|
21374
|
+
},
|
|
21375
|
+
"x-mcp-exposure": "confirm"
|
|
21340
21376
|
}
|
|
21341
21377
|
},
|
|
21342
21378
|
"/vms/{id}/alarms": {
|
|
@@ -21445,7 +21481,8 @@
|
|
|
21445
21481
|
},
|
|
21446
21482
|
"example": 42
|
|
21447
21483
|
}
|
|
21448
|
-
]
|
|
21484
|
+
],
|
|
21485
|
+
"x-mcp-exposure": "allow"
|
|
21449
21486
|
}
|
|
21450
21487
|
},
|
|
21451
21488
|
"/vms/{id}/vdis": {
|
|
@@ -21556,7 +21593,8 @@
|
|
|
21556
21593
|
},
|
|
21557
21594
|
"example": 42
|
|
21558
21595
|
}
|
|
21559
|
-
]
|
|
21596
|
+
],
|
|
21597
|
+
"x-mcp-exposure": "allow"
|
|
21560
21598
|
}
|
|
21561
21599
|
},
|
|
21562
21600
|
"/vms/{id}/backup-jobs": {
|
|
@@ -21675,7 +21713,8 @@
|
|
|
21675
21713
|
},
|
|
21676
21714
|
"example": 42
|
|
21677
21715
|
}
|
|
21678
|
-
]
|
|
21716
|
+
],
|
|
21717
|
+
"x-mcp-exposure": "allow"
|
|
21679
21718
|
}
|
|
21680
21719
|
},
|
|
21681
21720
|
"/vms/{id}/messages": {
|
|
@@ -21794,7 +21833,8 @@
|
|
|
21794
21833
|
},
|
|
21795
21834
|
"example": 42
|
|
21796
21835
|
}
|
|
21797
|
-
]
|
|
21836
|
+
],
|
|
21837
|
+
"x-mcp-exposure": "allow"
|
|
21798
21838
|
}
|
|
21799
21839
|
},
|
|
21800
21840
|
"/vms/{id}/tasks": {
|
|
@@ -21923,7 +21963,8 @@
|
|
|
21923
21963
|
},
|
|
21924
21964
|
"example": 42
|
|
21925
21965
|
}
|
|
21926
|
-
]
|
|
21966
|
+
],
|
|
21967
|
+
"x-mcp-exposure": "allow"
|
|
21927
21968
|
}
|
|
21928
21969
|
},
|
|
21929
21970
|
"/vms/{id}/tags/{tag}": {
|
|
@@ -21974,7 +22015,8 @@
|
|
|
21974
22015
|
},
|
|
21975
22016
|
"example": "from-rest-api"
|
|
21976
22017
|
}
|
|
21977
|
-
]
|
|
22018
|
+
],
|
|
22019
|
+
"x-mcp-exposure": "confirm"
|
|
21978
22020
|
},
|
|
21979
22021
|
"delete": {
|
|
21980
22022
|
"operationId": "DeleteVmTag",
|
|
@@ -22023,7 +22065,8 @@
|
|
|
22023
22065
|
},
|
|
22024
22066
|
"example": "from-rest-api"
|
|
22025
22067
|
}
|
|
22026
|
-
]
|
|
22068
|
+
],
|
|
22069
|
+
"x-mcp-exposure": "confirm"
|
|
22027
22070
|
}
|
|
22028
22071
|
},
|
|
22029
22072
|
"/vms/{id}/dashboard": {
|
|
@@ -22155,7 +22198,8 @@
|
|
|
22155
22198
|
"type": "boolean"
|
|
22156
22199
|
}
|
|
22157
22200
|
}
|
|
22158
|
-
]
|
|
22201
|
+
],
|
|
22202
|
+
"x-mcp-exposure": "allow"
|
|
22159
22203
|
}
|
|
22160
22204
|
},
|
|
22161
22205
|
"/vms/{id}/actions/migrate": {
|
|
@@ -22284,7 +22328,8 @@
|
|
|
22284
22328
|
}
|
|
22285
22329
|
}
|
|
22286
22330
|
}
|
|
22287
|
-
}
|
|
22331
|
+
},
|
|
22332
|
+
"x-mcp-exposure": "confirm"
|
|
22288
22333
|
}
|
|
22289
22334
|
},
|
|
22290
22335
|
"/vm-templates": {
|
|
@@ -22388,7 +22433,8 @@
|
|
|
22388
22433
|
},
|
|
22389
22434
|
"example": 42
|
|
22390
22435
|
}
|
|
22391
|
-
]
|
|
22436
|
+
],
|
|
22437
|
+
"x-mcp-exposure": "allow"
|
|
22392
22438
|
}
|
|
22393
22439
|
},
|
|
22394
22440
|
"/vm-templates/{id}.{format}": {
|
|
@@ -22461,7 +22507,8 @@
|
|
|
22461
22507
|
"type": "boolean"
|
|
22462
22508
|
}
|
|
22463
22509
|
}
|
|
22464
|
-
]
|
|
22510
|
+
],
|
|
22511
|
+
"x-mcp-exposure": "deny"
|
|
22465
22512
|
}
|
|
22466
22513
|
},
|
|
22467
22514
|
"/vm-templates/{id}": {
|
|
@@ -22598,7 +22645,8 @@
|
|
|
22598
22645
|
},
|
|
22599
22646
|
"example": "b7569d99-30f8-178a-7d94-801de3e29b5b-f873abe0-b138-4995-8f6f-498b423d234d"
|
|
22600
22647
|
}
|
|
22601
|
-
]
|
|
22648
|
+
],
|
|
22649
|
+
"x-mcp-exposure": "allow"
|
|
22602
22650
|
},
|
|
22603
22651
|
"delete": {
|
|
22604
22652
|
"operationId": "DeleteVmTemplate",
|
|
@@ -22641,7 +22689,8 @@
|
|
|
22641
22689
|
},
|
|
22642
22690
|
"example": "6d50ba76-0f11-1ff1-4f6a-b502afc31b8e"
|
|
22643
22691
|
}
|
|
22644
|
-
]
|
|
22692
|
+
],
|
|
22693
|
+
"x-mcp-exposure": "confirm"
|
|
22645
22694
|
}
|
|
22646
22695
|
},
|
|
22647
22696
|
"/vm-templates/{id}/alarms": {
|
|
@@ -22750,7 +22799,8 @@
|
|
|
22750
22799
|
},
|
|
22751
22800
|
"example": 42
|
|
22752
22801
|
}
|
|
22753
|
-
]
|
|
22802
|
+
],
|
|
22803
|
+
"x-mcp-exposure": "allow"
|
|
22754
22804
|
}
|
|
22755
22805
|
},
|
|
22756
22806
|
"/vm-templates/{id}/vdis": {
|
|
@@ -22861,7 +22911,8 @@
|
|
|
22861
22911
|
},
|
|
22862
22912
|
"example": 42
|
|
22863
22913
|
}
|
|
22864
|
-
]
|
|
22914
|
+
],
|
|
22915
|
+
"x-mcp-exposure": "allow"
|
|
22865
22916
|
}
|
|
22866
22917
|
},
|
|
22867
22918
|
"/vm-templates/{id}/messages": {
|
|
@@ -22980,7 +23031,8 @@
|
|
|
22980
23031
|
},
|
|
22981
23032
|
"example": 42
|
|
22982
23033
|
}
|
|
22983
|
-
]
|
|
23034
|
+
],
|
|
23035
|
+
"x-mcp-exposure": "allow"
|
|
22984
23036
|
}
|
|
22985
23037
|
},
|
|
22986
23038
|
"/vm-templates/{id}/tasks": {
|
|
@@ -23109,7 +23161,8 @@
|
|
|
23109
23161
|
},
|
|
23110
23162
|
"example": 42
|
|
23111
23163
|
}
|
|
23112
|
-
]
|
|
23164
|
+
],
|
|
23165
|
+
"x-mcp-exposure": "allow"
|
|
23113
23166
|
}
|
|
23114
23167
|
},
|
|
23115
23168
|
"/vm-templates/{id}/tags/{tag}": {
|
|
@@ -23160,7 +23213,8 @@
|
|
|
23160
23213
|
},
|
|
23161
23214
|
"example": "from-rest-api"
|
|
23162
23215
|
}
|
|
23163
|
-
]
|
|
23216
|
+
],
|
|
23217
|
+
"x-mcp-exposure": "confirm"
|
|
23164
23218
|
},
|
|
23165
23219
|
"delete": {
|
|
23166
23220
|
"operationId": "DeleteVmTemplateTag",
|
|
@@ -23209,7 +23263,8 @@
|
|
|
23209
23263
|
},
|
|
23210
23264
|
"example": "from-rest-api"
|
|
23211
23265
|
}
|
|
23212
|
-
]
|
|
23266
|
+
],
|
|
23267
|
+
"x-mcp-exposure": "confirm"
|
|
23213
23268
|
}
|
|
23214
23269
|
},
|
|
23215
23270
|
"/vm-snapshots": {
|
|
@@ -23313,7 +23368,8 @@
|
|
|
23313
23368
|
},
|
|
23314
23369
|
"example": 42
|
|
23315
23370
|
}
|
|
23316
|
-
]
|
|
23371
|
+
],
|
|
23372
|
+
"x-mcp-exposure": "allow"
|
|
23317
23373
|
}
|
|
23318
23374
|
},
|
|
23319
23375
|
"/vm-snapshots/{id}.{format}": {
|
|
@@ -23386,7 +23442,8 @@
|
|
|
23386
23442
|
"type": "boolean"
|
|
23387
23443
|
}
|
|
23388
23444
|
}
|
|
23389
|
-
]
|
|
23445
|
+
],
|
|
23446
|
+
"x-mcp-exposure": "deny"
|
|
23390
23447
|
}
|
|
23391
23448
|
},
|
|
23392
23449
|
"/vm-snapshots/{id}": {
|
|
@@ -23623,7 +23680,8 @@
|
|
|
23623
23680
|
},
|
|
23624
23681
|
"example": "d68fca2c-41e6-be87-d790-105c1642a090"
|
|
23625
23682
|
}
|
|
23626
|
-
]
|
|
23683
|
+
],
|
|
23684
|
+
"x-mcp-exposure": "allow"
|
|
23627
23685
|
},
|
|
23628
23686
|
"delete": {
|
|
23629
23687
|
"operationId": "DeleteVmSnapshot",
|
|
@@ -23666,7 +23724,8 @@
|
|
|
23666
23724
|
},
|
|
23667
23725
|
"example": "d68fca2c-41e6-be87-d790-105c1642a090"
|
|
23668
23726
|
}
|
|
23669
|
-
]
|
|
23727
|
+
],
|
|
23728
|
+
"x-mcp-exposure": "confirm"
|
|
23670
23729
|
}
|
|
23671
23730
|
},
|
|
23672
23731
|
"/vm-snapshots/{id}/alarms": {
|
|
@@ -23775,7 +23834,8 @@
|
|
|
23775
23834
|
},
|
|
23776
23835
|
"example": 42
|
|
23777
23836
|
}
|
|
23778
|
-
]
|
|
23837
|
+
],
|
|
23838
|
+
"x-mcp-exposure": "allow"
|
|
23779
23839
|
}
|
|
23780
23840
|
},
|
|
23781
23841
|
"/vm-snapshots/{id}/vdis": {
|
|
@@ -23886,7 +23946,8 @@
|
|
|
23886
23946
|
},
|
|
23887
23947
|
"example": 42
|
|
23888
23948
|
}
|
|
23889
|
-
]
|
|
23949
|
+
],
|
|
23950
|
+
"x-mcp-exposure": "allow"
|
|
23890
23951
|
}
|
|
23891
23952
|
},
|
|
23892
23953
|
"/vm-snapshots/{id}/messages": {
|
|
@@ -24005,7 +24066,8 @@
|
|
|
24005
24066
|
},
|
|
24006
24067
|
"example": 42
|
|
24007
24068
|
}
|
|
24008
|
-
]
|
|
24069
|
+
],
|
|
24070
|
+
"x-mcp-exposure": "allow"
|
|
24009
24071
|
}
|
|
24010
24072
|
},
|
|
24011
24073
|
"/vm-snapshots/{id}/tasks": {
|
|
@@ -24134,7 +24196,8 @@
|
|
|
24134
24196
|
},
|
|
24135
24197
|
"example": 42
|
|
24136
24198
|
}
|
|
24137
|
-
]
|
|
24199
|
+
],
|
|
24200
|
+
"x-mcp-exposure": "allow"
|
|
24138
24201
|
}
|
|
24139
24202
|
},
|
|
24140
24203
|
"/vm-snapshots/{id}/tags/{tag}": {
|
|
@@ -24185,7 +24248,8 @@
|
|
|
24185
24248
|
},
|
|
24186
24249
|
"example": "from-rest-api"
|
|
24187
24250
|
}
|
|
24188
|
-
]
|
|
24251
|
+
],
|
|
24252
|
+
"x-mcp-exposure": "confirm"
|
|
24189
24253
|
},
|
|
24190
24254
|
"delete": {
|
|
24191
24255
|
"operationId": "DeleteVmSnapshotTag",
|
|
@@ -24234,7 +24298,8 @@
|
|
|
24234
24298
|
},
|
|
24235
24299
|
"example": "from-rest-api"
|
|
24236
24300
|
}
|
|
24237
|
-
]
|
|
24301
|
+
],
|
|
24302
|
+
"x-mcp-exposure": "confirm"
|
|
24238
24303
|
}
|
|
24239
24304
|
},
|
|
24240
24305
|
"/vm-controllers": {
|
|
@@ -24336,7 +24401,8 @@
|
|
|
24336
24401
|
},
|
|
24337
24402
|
"example": 42
|
|
24338
24403
|
}
|
|
24339
|
-
]
|
|
24404
|
+
],
|
|
24405
|
+
"x-mcp-exposure": "allow"
|
|
24340
24406
|
}
|
|
24341
24407
|
},
|
|
24342
24408
|
"/vm-controllers/{id}": {
|
|
@@ -24450,7 +24516,8 @@
|
|
|
24450
24516
|
},
|
|
24451
24517
|
"example": "9b4775bd-9493-490a-9afa-f786a44caa4f"
|
|
24452
24518
|
}
|
|
24453
|
-
]
|
|
24519
|
+
],
|
|
24520
|
+
"x-mcp-exposure": "allow"
|
|
24454
24521
|
}
|
|
24455
24522
|
},
|
|
24456
24523
|
"/vm-controllers/{id}/alarms": {
|
|
@@ -24559,7 +24626,8 @@
|
|
|
24559
24626
|
},
|
|
24560
24627
|
"example": 42
|
|
24561
24628
|
}
|
|
24562
|
-
]
|
|
24629
|
+
],
|
|
24630
|
+
"x-mcp-exposure": "allow"
|
|
24563
24631
|
}
|
|
24564
24632
|
},
|
|
24565
24633
|
"/vm-controllers/{id}/vdis": {
|
|
@@ -24670,7 +24738,8 @@
|
|
|
24670
24738
|
},
|
|
24671
24739
|
"example": 42
|
|
24672
24740
|
}
|
|
24673
|
-
]
|
|
24741
|
+
],
|
|
24742
|
+
"x-mcp-exposure": "allow"
|
|
24674
24743
|
}
|
|
24675
24744
|
},
|
|
24676
24745
|
"/vm-controllers/{id}/messages": {
|
|
@@ -24789,7 +24858,8 @@
|
|
|
24789
24858
|
},
|
|
24790
24859
|
"example": 42
|
|
24791
24860
|
}
|
|
24792
|
-
]
|
|
24861
|
+
],
|
|
24862
|
+
"x-mcp-exposure": "allow"
|
|
24793
24863
|
}
|
|
24794
24864
|
},
|
|
24795
24865
|
"/vm-controllers/{id}/tasks": {
|
|
@@ -24918,7 +24988,8 @@
|
|
|
24918
24988
|
},
|
|
24919
24989
|
"example": 42
|
|
24920
24990
|
}
|
|
24921
|
-
]
|
|
24991
|
+
],
|
|
24992
|
+
"x-mcp-exposure": "allow"
|
|
24922
24993
|
}
|
|
24923
24994
|
},
|
|
24924
24995
|
"/vm-controllers/{id}/tags/{tag}": {
|
|
@@ -24969,7 +25040,8 @@
|
|
|
24969
25040
|
},
|
|
24970
25041
|
"example": "from-rest-api"
|
|
24971
25042
|
}
|
|
24972
|
-
]
|
|
25043
|
+
],
|
|
25044
|
+
"x-mcp-exposure": "confirm"
|
|
24973
25045
|
},
|
|
24974
25046
|
"delete": {
|
|
24975
25047
|
"operationId": "DeleteVmControllerTag",
|
|
@@ -25018,7 +25090,8 @@
|
|
|
25018
25090
|
},
|
|
25019
25091
|
"example": "from-rest-api"
|
|
25020
25092
|
}
|
|
25021
|
-
]
|
|
25093
|
+
],
|
|
25094
|
+
"x-mcp-exposure": "confirm"
|
|
25022
25095
|
}
|
|
25023
25096
|
},
|
|
25024
25097
|
"/vifs": {
|
|
@@ -25122,7 +25195,8 @@
|
|
|
25122
25195
|
},
|
|
25123
25196
|
"example": 42
|
|
25124
25197
|
}
|
|
25125
|
-
]
|
|
25198
|
+
],
|
|
25199
|
+
"x-mcp-exposure": "allow"
|
|
25126
25200
|
},
|
|
25127
25201
|
"post": {
|
|
25128
25202
|
"operationId": "CreateVif",
|
|
@@ -25197,7 +25271,8 @@
|
|
|
25197
25271
|
}
|
|
25198
25272
|
}
|
|
25199
25273
|
}
|
|
25200
|
-
}
|
|
25274
|
+
},
|
|
25275
|
+
"x-mcp-exposure": "confirm"
|
|
25201
25276
|
}
|
|
25202
25277
|
},
|
|
25203
25278
|
"/vifs/{id}": {
|
|
@@ -25269,7 +25344,8 @@
|
|
|
25269
25344
|
},
|
|
25270
25345
|
"example": "f028c5d4-578a-332c-394e-087aaca32dd3"
|
|
25271
25346
|
}
|
|
25272
|
-
]
|
|
25347
|
+
],
|
|
25348
|
+
"x-mcp-exposure": "allow"
|
|
25273
25349
|
},
|
|
25274
25350
|
"delete": {
|
|
25275
25351
|
"operationId": "DestroyVif",
|
|
@@ -25308,7 +25384,8 @@
|
|
|
25308
25384
|
},
|
|
25309
25385
|
"example": "6b6ca0f5-6611-0636-4b0a-1fb1c1e96414"
|
|
25310
25386
|
}
|
|
25311
|
-
]
|
|
25387
|
+
],
|
|
25388
|
+
"x-mcp-exposure": "confirm"
|
|
25312
25389
|
}
|
|
25313
25390
|
},
|
|
25314
25391
|
"/vifs/{id}/alarms": {
|
|
@@ -25417,7 +25494,8 @@
|
|
|
25417
25494
|
},
|
|
25418
25495
|
"example": 42
|
|
25419
25496
|
}
|
|
25420
|
-
]
|
|
25497
|
+
],
|
|
25498
|
+
"x-mcp-exposure": "allow"
|
|
25421
25499
|
}
|
|
25422
25500
|
},
|
|
25423
25501
|
"/vifs/{id}/messages": {
|
|
@@ -25536,7 +25614,8 @@
|
|
|
25536
25614
|
},
|
|
25537
25615
|
"example": 42
|
|
25538
25616
|
}
|
|
25539
|
-
]
|
|
25617
|
+
],
|
|
25618
|
+
"x-mcp-exposure": "allow"
|
|
25540
25619
|
}
|
|
25541
25620
|
},
|
|
25542
25621
|
"/vifs/{id}/tasks": {
|
|
@@ -25665,7 +25744,8 @@
|
|
|
25665
25744
|
},
|
|
25666
25745
|
"example": 42
|
|
25667
25746
|
}
|
|
25668
|
-
]
|
|
25747
|
+
],
|
|
25748
|
+
"x-mcp-exposure": "allow"
|
|
25669
25749
|
}
|
|
25670
25750
|
},
|
|
25671
25751
|
"/vifs/{id}/actions/connect": {
|
|
@@ -25732,7 +25812,8 @@
|
|
|
25732
25812
|
"type": "boolean"
|
|
25733
25813
|
}
|
|
25734
25814
|
}
|
|
25735
|
-
]
|
|
25815
|
+
],
|
|
25816
|
+
"x-mcp-exposure": "confirm"
|
|
25736
25817
|
}
|
|
25737
25818
|
},
|
|
25738
25819
|
"/vifs/{id}/actions/disconnect": {
|
|
@@ -25799,7 +25880,8 @@
|
|
|
25799
25880
|
"type": "boolean"
|
|
25800
25881
|
}
|
|
25801
25882
|
}
|
|
25802
|
-
]
|
|
25883
|
+
],
|
|
25884
|
+
"x-mcp-exposure": "confirm"
|
|
25803
25885
|
}
|
|
25804
25886
|
},
|
|
25805
25887
|
"/vdis": {
|
|
@@ -25952,7 +26034,8 @@
|
|
|
25952
26034
|
},
|
|
25953
26035
|
"example": 42
|
|
25954
26036
|
}
|
|
25955
|
-
]
|
|
26037
|
+
],
|
|
26038
|
+
"x-mcp-exposure": "allow"
|
|
25956
26039
|
},
|
|
25957
26040
|
"post": {
|
|
25958
26041
|
"operationId": "CreateVdi",
|
|
@@ -26019,7 +26102,8 @@
|
|
|
26019
26102
|
}
|
|
26020
26103
|
}
|
|
26021
26104
|
}
|
|
26022
|
-
}
|
|
26105
|
+
},
|
|
26106
|
+
"x-mcp-exposure": "confirm"
|
|
26023
26107
|
}
|
|
26024
26108
|
},
|
|
26025
26109
|
"/vdis/{id}": {
|
|
@@ -26095,7 +26179,8 @@
|
|
|
26095
26179
|
},
|
|
26096
26180
|
"example": "c77f9955-c1d2-4b39-aa1c-73cdb2dacb7e"
|
|
26097
26181
|
}
|
|
26098
|
-
]
|
|
26182
|
+
],
|
|
26183
|
+
"x-mcp-exposure": "allow"
|
|
26099
26184
|
},
|
|
26100
26185
|
"delete": {
|
|
26101
26186
|
"operationId": "DeleteVdi",
|
|
@@ -26135,7 +26220,8 @@
|
|
|
26135
26220
|
},
|
|
26136
26221
|
"example": "c77f9955-c1d2-4b39-aa1c-73cdb2dacb7e"
|
|
26137
26222
|
}
|
|
26138
|
-
]
|
|
26223
|
+
],
|
|
26224
|
+
"x-mcp-exposure": "confirm"
|
|
26139
26225
|
}
|
|
26140
26226
|
},
|
|
26141
26227
|
"/vdis/{id}/alarms": {
|
|
@@ -26244,7 +26330,8 @@
|
|
|
26244
26330
|
},
|
|
26245
26331
|
"example": 42
|
|
26246
26332
|
}
|
|
26247
|
-
]
|
|
26333
|
+
],
|
|
26334
|
+
"x-mcp-exposure": "allow"
|
|
26248
26335
|
}
|
|
26249
26336
|
},
|
|
26250
26337
|
"/vdis/{id}/messages": {
|
|
@@ -26363,7 +26450,8 @@
|
|
|
26363
26450
|
},
|
|
26364
26451
|
"example": 42
|
|
26365
26452
|
}
|
|
26366
|
-
]
|
|
26453
|
+
],
|
|
26454
|
+
"x-mcp-exposure": "allow"
|
|
26367
26455
|
}
|
|
26368
26456
|
},
|
|
26369
26457
|
"/vdis/{id}/tasks": {
|
|
@@ -26492,7 +26580,8 @@
|
|
|
26492
26580
|
},
|
|
26493
26581
|
"example": 42
|
|
26494
26582
|
}
|
|
26495
|
-
]
|
|
26583
|
+
],
|
|
26584
|
+
"x-mcp-exposure": "allow"
|
|
26496
26585
|
}
|
|
26497
26586
|
},
|
|
26498
26587
|
"/vdis/{id}/actions/migrate": {
|
|
@@ -26585,7 +26674,8 @@
|
|
|
26585
26674
|
}
|
|
26586
26675
|
}
|
|
26587
26676
|
}
|
|
26588
|
-
}
|
|
26677
|
+
},
|
|
26678
|
+
"x-mcp-exposure": "confirm"
|
|
26589
26679
|
}
|
|
26590
26680
|
},
|
|
26591
26681
|
"/vdis/{id}/tags/{tag}": {
|
|
@@ -26636,7 +26726,8 @@
|
|
|
26636
26726
|
},
|
|
26637
26727
|
"example": "from-rest-api"
|
|
26638
26728
|
}
|
|
26639
|
-
]
|
|
26729
|
+
],
|
|
26730
|
+
"x-mcp-exposure": "confirm"
|
|
26640
26731
|
},
|
|
26641
26732
|
"delete": {
|
|
26642
26733
|
"operationId": "DeleteVdiTag",
|
|
@@ -26685,7 +26776,8 @@
|
|
|
26685
26776
|
},
|
|
26686
26777
|
"example": "from-rest-api"
|
|
26687
26778
|
}
|
|
26688
|
-
]
|
|
26779
|
+
],
|
|
26780
|
+
"x-mcp-exposure": "confirm"
|
|
26689
26781
|
}
|
|
26690
26782
|
},
|
|
26691
26783
|
"/vdi-snapshots": {
|
|
@@ -26788,7 +26880,8 @@
|
|
|
26788
26880
|
},
|
|
26789
26881
|
"example": 42
|
|
26790
26882
|
}
|
|
26791
|
-
]
|
|
26883
|
+
],
|
|
26884
|
+
"x-mcp-exposure": "allow"
|
|
26792
26885
|
}
|
|
26793
26886
|
},
|
|
26794
26887
|
"/vdi-snapshots/{id}.{format}": {
|
|
@@ -26846,7 +26939,8 @@
|
|
|
26846
26939
|
"$ref": "#/components/schemas/Exclude_SUPPORTED_VDI_FORMAT.qcow2_"
|
|
26847
26940
|
}
|
|
26848
26941
|
}
|
|
26849
|
-
]
|
|
26942
|
+
],
|
|
26943
|
+
"x-mcp-exposure": "deny"
|
|
26850
26944
|
}
|
|
26851
26945
|
},
|
|
26852
26946
|
"/vdi-snapshots/{id}": {
|
|
@@ -26922,7 +27016,8 @@
|
|
|
26922
27016
|
},
|
|
26923
27017
|
"example": "d2727772-735b-478f-b6f9-11e7db56dfd0"
|
|
26924
27018
|
}
|
|
26925
|
-
]
|
|
27019
|
+
],
|
|
27020
|
+
"x-mcp-exposure": "allow"
|
|
26926
27021
|
},
|
|
26927
27022
|
"delete": {
|
|
26928
27023
|
"operationId": "DeleteVdiSnapshot",
|
|
@@ -26958,7 +27053,8 @@
|
|
|
26958
27053
|
},
|
|
26959
27054
|
"example": "d2727772-735b-478f-b6f9-11e7db56dfd0"
|
|
26960
27055
|
}
|
|
26961
|
-
]
|
|
27056
|
+
],
|
|
27057
|
+
"x-mcp-exposure": "confirm"
|
|
26962
27058
|
}
|
|
26963
27059
|
},
|
|
26964
27060
|
"/vdi-snapshots/{id}/alarms": {
|
|
@@ -27067,7 +27163,8 @@
|
|
|
27067
27163
|
},
|
|
27068
27164
|
"example": 42
|
|
27069
27165
|
}
|
|
27070
|
-
]
|
|
27166
|
+
],
|
|
27167
|
+
"x-mcp-exposure": "allow"
|
|
27071
27168
|
}
|
|
27072
27169
|
},
|
|
27073
27170
|
"/vdi-snapshots/{id}/messages": {
|
|
@@ -27186,7 +27283,8 @@
|
|
|
27186
27283
|
},
|
|
27187
27284
|
"example": 42
|
|
27188
27285
|
}
|
|
27189
|
-
]
|
|
27286
|
+
],
|
|
27287
|
+
"x-mcp-exposure": "allow"
|
|
27190
27288
|
}
|
|
27191
27289
|
},
|
|
27192
27290
|
"/vdi-snapshots/{id}/tasks": {
|
|
@@ -27315,7 +27413,8 @@
|
|
|
27315
27413
|
},
|
|
27316
27414
|
"example": 42
|
|
27317
27415
|
}
|
|
27318
|
-
]
|
|
27416
|
+
],
|
|
27417
|
+
"x-mcp-exposure": "allow"
|
|
27319
27418
|
}
|
|
27320
27419
|
},
|
|
27321
27420
|
"/vdi-snapshots/{id}/tags/{tag}": {
|
|
@@ -27362,7 +27461,8 @@
|
|
|
27362
27461
|
},
|
|
27363
27462
|
"example": "from-rest-api"
|
|
27364
27463
|
}
|
|
27365
|
-
]
|
|
27464
|
+
],
|
|
27465
|
+
"x-mcp-exposure": "confirm"
|
|
27366
27466
|
},
|
|
27367
27467
|
"delete": {
|
|
27368
27468
|
"operationId": "DeleteVdiSnapshotTag",
|
|
@@ -27407,7 +27507,8 @@
|
|
|
27407
27507
|
},
|
|
27408
27508
|
"example": "from-rest-api"
|
|
27409
27509
|
}
|
|
27410
|
-
]
|
|
27510
|
+
],
|
|
27511
|
+
"x-mcp-exposure": "confirm"
|
|
27411
27512
|
}
|
|
27412
27513
|
},
|
|
27413
27514
|
"/vbds": {
|
|
@@ -27511,7 +27612,8 @@
|
|
|
27511
27612
|
},
|
|
27512
27613
|
"example": 42
|
|
27513
27614
|
}
|
|
27514
|
-
]
|
|
27615
|
+
],
|
|
27616
|
+
"x-mcp-exposure": "allow"
|
|
27515
27617
|
},
|
|
27516
27618
|
"post": {
|
|
27517
27619
|
"operationId": "CreateVbd",
|
|
@@ -27598,7 +27700,8 @@
|
|
|
27598
27700
|
}
|
|
27599
27701
|
}
|
|
27600
27702
|
}
|
|
27601
|
-
}
|
|
27703
|
+
},
|
|
27704
|
+
"x-mcp-exposure": "confirm"
|
|
27602
27705
|
}
|
|
27603
27706
|
},
|
|
27604
27707
|
"/vbds/{id}": {
|
|
@@ -27667,7 +27770,8 @@
|
|
|
27667
27770
|
},
|
|
27668
27771
|
"example": "f07ab729-c0e8-721c-45ec-f11276377030"
|
|
27669
27772
|
}
|
|
27670
|
-
]
|
|
27773
|
+
],
|
|
27774
|
+
"x-mcp-exposure": "allow"
|
|
27671
27775
|
},
|
|
27672
27776
|
"delete": {
|
|
27673
27777
|
"operationId": "DeleteVbd",
|
|
@@ -27704,7 +27808,8 @@
|
|
|
27704
27808
|
},
|
|
27705
27809
|
"example": "f07ab729-c0e8-721c-45ec-f11276377030"
|
|
27706
27810
|
}
|
|
27707
|
-
]
|
|
27811
|
+
],
|
|
27812
|
+
"x-mcp-exposure": "confirm"
|
|
27708
27813
|
}
|
|
27709
27814
|
},
|
|
27710
27815
|
"/vbds/{id}/alarms": {
|
|
@@ -27813,7 +27918,8 @@
|
|
|
27813
27918
|
},
|
|
27814
27919
|
"example": 42
|
|
27815
27920
|
}
|
|
27816
|
-
]
|
|
27921
|
+
],
|
|
27922
|
+
"x-mcp-exposure": "allow"
|
|
27817
27923
|
}
|
|
27818
27924
|
},
|
|
27819
27925
|
"/vbds/{id}/messages": {
|
|
@@ -27932,7 +28038,8 @@
|
|
|
27932
28038
|
},
|
|
27933
28039
|
"example": 42
|
|
27934
28040
|
}
|
|
27935
|
-
]
|
|
28041
|
+
],
|
|
28042
|
+
"x-mcp-exposure": "allow"
|
|
27936
28043
|
}
|
|
27937
28044
|
},
|
|
27938
28045
|
"/vbds/{id}/tasks": {
|
|
@@ -28061,7 +28168,8 @@
|
|
|
28061
28168
|
},
|
|
28062
28169
|
"example": 42
|
|
28063
28170
|
}
|
|
28064
|
-
]
|
|
28171
|
+
],
|
|
28172
|
+
"x-mcp-exposure": "allow"
|
|
28065
28173
|
}
|
|
28066
28174
|
},
|
|
28067
28175
|
"/vbds/{id}/actions/connect": {
|
|
@@ -28128,7 +28236,8 @@
|
|
|
28128
28236
|
"type": "boolean"
|
|
28129
28237
|
}
|
|
28130
28238
|
}
|
|
28131
|
-
]
|
|
28239
|
+
],
|
|
28240
|
+
"x-mcp-exposure": "confirm"
|
|
28132
28241
|
}
|
|
28133
28242
|
},
|
|
28134
28243
|
"/vbds/{id}/actions/disconnect": {
|
|
@@ -28195,7 +28304,8 @@
|
|
|
28195
28304
|
"type": "boolean"
|
|
28196
28305
|
}
|
|
28197
28306
|
}
|
|
28198
|
-
]
|
|
28307
|
+
],
|
|
28308
|
+
"x-mcp-exposure": "confirm"
|
|
28199
28309
|
}
|
|
28200
28310
|
},
|
|
28201
28311
|
"/users": {
|
|
@@ -28298,7 +28408,8 @@
|
|
|
28298
28408
|
},
|
|
28299
28409
|
"example": 42
|
|
28300
28410
|
}
|
|
28301
|
-
]
|
|
28411
|
+
],
|
|
28412
|
+
"x-mcp-exposure": "allow"
|
|
28302
28413
|
},
|
|
28303
28414
|
"post": {
|
|
28304
28415
|
"operationId": "CreateUser",
|
|
@@ -28384,7 +28495,8 @@
|
|
|
28384
28495
|
}
|
|
28385
28496
|
}
|
|
28386
28497
|
}
|
|
28387
|
-
}
|
|
28498
|
+
},
|
|
28499
|
+
"x-mcp-exposure": "confirm"
|
|
28388
28500
|
}
|
|
28389
28501
|
},
|
|
28390
28502
|
"/users/{id}": {
|
|
@@ -28449,7 +28561,8 @@
|
|
|
28449
28561
|
},
|
|
28450
28562
|
"example": "722d17b9-699b-49d2-8193-be1ac573d3de"
|
|
28451
28563
|
}
|
|
28452
|
-
]
|
|
28564
|
+
],
|
|
28565
|
+
"x-mcp-exposure": "allow"
|
|
28453
28566
|
},
|
|
28454
28567
|
"patch": {
|
|
28455
28568
|
"operationId": "UpdateUser",
|
|
@@ -28508,7 +28621,8 @@
|
|
|
28508
28621
|
}
|
|
28509
28622
|
}
|
|
28510
28623
|
}
|
|
28511
|
-
}
|
|
28624
|
+
},
|
|
28625
|
+
"x-mcp-exposure": "confirm"
|
|
28512
28626
|
},
|
|
28513
28627
|
"delete": {
|
|
28514
28628
|
"operationId": "DeleteUser",
|
|
@@ -28548,7 +28662,8 @@
|
|
|
28548
28662
|
},
|
|
28549
28663
|
"example": "722d17b9-699b-49d2-8193-be1ac573d3de"
|
|
28550
28664
|
}
|
|
28551
|
-
]
|
|
28665
|
+
],
|
|
28666
|
+
"x-mcp-exposure": "confirm"
|
|
28552
28667
|
}
|
|
28553
28668
|
},
|
|
28554
28669
|
"/users/{id}/groups": {
|
|
@@ -28670,7 +28785,8 @@
|
|
|
28670
28785
|
},
|
|
28671
28786
|
"example": 42
|
|
28672
28787
|
}
|
|
28673
|
-
]
|
|
28788
|
+
],
|
|
28789
|
+
"x-mcp-exposure": "allow"
|
|
28674
28790
|
}
|
|
28675
28791
|
},
|
|
28676
28792
|
"/users/{id}/authentication_tokens": {
|
|
@@ -28779,7 +28895,8 @@
|
|
|
28779
28895
|
},
|
|
28780
28896
|
"example": 42
|
|
28781
28897
|
}
|
|
28782
|
-
]
|
|
28898
|
+
],
|
|
28899
|
+
"x-mcp-exposure": "allow"
|
|
28783
28900
|
},
|
|
28784
28901
|
"post": {
|
|
28785
28902
|
"operationId": "PostAuthenticationTokens",
|
|
@@ -28893,7 +29010,8 @@
|
|
|
28893
29010
|
}
|
|
28894
29011
|
}
|
|
28895
29012
|
}
|
|
28896
|
-
}
|
|
29013
|
+
},
|
|
29014
|
+
"x-mcp-exposure": "confirm"
|
|
28897
29015
|
}
|
|
28898
29016
|
},
|
|
28899
29017
|
"/users/{id}/tasks": {
|
|
@@ -29022,7 +29140,8 @@
|
|
|
29022
29140
|
},
|
|
29023
29141
|
"example": 42
|
|
29024
29142
|
}
|
|
29025
|
-
]
|
|
29143
|
+
],
|
|
29144
|
+
"x-mcp-exposure": "allow"
|
|
29026
29145
|
}
|
|
29027
29146
|
},
|
|
29028
29147
|
"/users/authentication_tokens": {
|
|
@@ -29123,7 +29242,8 @@
|
|
|
29123
29242
|
}
|
|
29124
29243
|
}
|
|
29125
29244
|
}
|
|
29126
|
-
}
|
|
29245
|
+
},
|
|
29246
|
+
"x-mcp-exposure": "confirm"
|
|
29127
29247
|
}
|
|
29128
29248
|
},
|
|
29129
29249
|
"/users/{id}/acl-privileges": {
|
|
@@ -29176,7 +29296,7 @@
|
|
|
29176
29296
|
},
|
|
29177
29297
|
"description": "Returns all ACL privileges that match the following privilege:\n- resource: acl-privilege, action: read (if not self)",
|
|
29178
29298
|
"tags": [
|
|
29179
|
-
"
|
|
29299
|
+
"rbacs",
|
|
29180
29300
|
"users"
|
|
29181
29301
|
],
|
|
29182
29302
|
"security": [
|
|
@@ -29232,7 +29352,8 @@
|
|
|
29232
29352
|
},
|
|
29233
29353
|
"example": 42
|
|
29234
29354
|
}
|
|
29235
|
-
]
|
|
29355
|
+
],
|
|
29356
|
+
"x-mcp-exposure": "allow"
|
|
29236
29357
|
}
|
|
29237
29358
|
},
|
|
29238
29359
|
"/tasks": {
|
|
@@ -29356,7 +29477,8 @@
|
|
|
29356
29477
|
},
|
|
29357
29478
|
"example": 42
|
|
29358
29479
|
}
|
|
29359
|
-
]
|
|
29480
|
+
],
|
|
29481
|
+
"x-mcp-exposure": "allow"
|
|
29360
29482
|
},
|
|
29361
29483
|
"delete": {
|
|
29362
29484
|
"operationId": "DeleteTasks",
|
|
@@ -29382,7 +29504,8 @@
|
|
|
29382
29504
|
]
|
|
29383
29505
|
}
|
|
29384
29506
|
],
|
|
29385
|
-
"parameters": []
|
|
29507
|
+
"parameters": [],
|
|
29508
|
+
"x-mcp-exposure": "confirm"
|
|
29386
29509
|
}
|
|
29387
29510
|
},
|
|
29388
29511
|
"/tasks/{id}": {
|
|
@@ -29462,7 +29585,8 @@
|
|
|
29462
29585
|
"type": "boolean"
|
|
29463
29586
|
}
|
|
29464
29587
|
}
|
|
29465
|
-
]
|
|
29588
|
+
],
|
|
29589
|
+
"x-mcp-exposure": "allow"
|
|
29466
29590
|
},
|
|
29467
29591
|
"delete": {
|
|
29468
29592
|
"operationId": "DeleteTask",
|
|
@@ -29502,7 +29626,8 @@
|
|
|
29502
29626
|
},
|
|
29503
29627
|
"example": "0mdd1basu"
|
|
29504
29628
|
}
|
|
29505
|
-
]
|
|
29629
|
+
],
|
|
29630
|
+
"x-mcp-exposure": "confirm"
|
|
29506
29631
|
}
|
|
29507
29632
|
},
|
|
29508
29633
|
"/tasks/{id}/actions/abort": {
|
|
@@ -29569,7 +29694,8 @@
|
|
|
29569
29694
|
"type": "boolean"
|
|
29570
29695
|
}
|
|
29571
29696
|
}
|
|
29572
|
-
]
|
|
29697
|
+
],
|
|
29698
|
+
"x-mcp-exposure": "confirm"
|
|
29573
29699
|
}
|
|
29574
29700
|
},
|
|
29575
29701
|
"/srs": {
|
|
@@ -29685,7 +29811,8 @@
|
|
|
29685
29811
|
},
|
|
29686
29812
|
"example": 42
|
|
29687
29813
|
}
|
|
29688
|
-
]
|
|
29814
|
+
],
|
|
29815
|
+
"x-mcp-exposure": "allow"
|
|
29689
29816
|
}
|
|
29690
29817
|
},
|
|
29691
29818
|
"/srs/{id}": {
|
|
@@ -29791,7 +29918,8 @@
|
|
|
29791
29918
|
},
|
|
29792
29919
|
"example": "c4284e12-37c9-7967-b9e8-83ef229c3e03"
|
|
29793
29920
|
}
|
|
29794
|
-
]
|
|
29921
|
+
],
|
|
29922
|
+
"x-mcp-exposure": "allow"
|
|
29795
29923
|
},
|
|
29796
29924
|
"delete": {
|
|
29797
29925
|
"operationId": "DeleteSr",
|
|
@@ -29831,7 +29959,8 @@
|
|
|
29831
29959
|
},
|
|
29832
29960
|
"example": "c4284e12-37c9-7967-b9e8-83ef229c3e03"
|
|
29833
29961
|
}
|
|
29834
|
-
]
|
|
29962
|
+
],
|
|
29963
|
+
"x-mcp-exposure": "confirm"
|
|
29835
29964
|
}
|
|
29836
29965
|
},
|
|
29837
29966
|
"/srs/{id}/alarms": {
|
|
@@ -29940,7 +30069,8 @@
|
|
|
29940
30069
|
},
|
|
29941
30070
|
"example": 42
|
|
29942
30071
|
}
|
|
29943
|
-
]
|
|
30072
|
+
],
|
|
30073
|
+
"x-mcp-exposure": "allow"
|
|
29944
30074
|
}
|
|
29945
30075
|
},
|
|
29946
30076
|
"/srs/{id}/messages": {
|
|
@@ -30059,7 +30189,8 @@
|
|
|
30059
30189
|
},
|
|
30060
30190
|
"example": 42
|
|
30061
30191
|
}
|
|
30062
|
-
]
|
|
30192
|
+
],
|
|
30193
|
+
"x-mcp-exposure": "allow"
|
|
30063
30194
|
}
|
|
30064
30195
|
},
|
|
30065
30196
|
"/srs/{id}/tasks": {
|
|
@@ -30188,7 +30319,8 @@
|
|
|
30188
30319
|
},
|
|
30189
30320
|
"example": 42
|
|
30190
30321
|
}
|
|
30191
|
-
]
|
|
30322
|
+
],
|
|
30323
|
+
"x-mcp-exposure": "allow"
|
|
30192
30324
|
}
|
|
30193
30325
|
},
|
|
30194
30326
|
"/srs/{id}/tags/{tag}": {
|
|
@@ -30239,7 +30371,8 @@
|
|
|
30239
30371
|
},
|
|
30240
30372
|
"example": "from-rest-api"
|
|
30241
30373
|
}
|
|
30242
|
-
]
|
|
30374
|
+
],
|
|
30375
|
+
"x-mcp-exposure": "confirm"
|
|
30243
30376
|
},
|
|
30244
30377
|
"delete": {
|
|
30245
30378
|
"operationId": "DeleteSrTag",
|
|
@@ -30288,7 +30421,8 @@
|
|
|
30288
30421
|
},
|
|
30289
30422
|
"example": "from-rest-api"
|
|
30290
30423
|
}
|
|
30291
|
-
]
|
|
30424
|
+
],
|
|
30425
|
+
"x-mcp-exposure": "confirm"
|
|
30292
30426
|
}
|
|
30293
30427
|
},
|
|
30294
30428
|
"/srs/{id}/actions/reclaim_space": {
|
|
@@ -30357,7 +30491,8 @@
|
|
|
30357
30491
|
"type": "boolean"
|
|
30358
30492
|
}
|
|
30359
30493
|
}
|
|
30360
|
-
]
|
|
30494
|
+
],
|
|
30495
|
+
"x-mcp-exposure": "confirm"
|
|
30361
30496
|
}
|
|
30362
30497
|
},
|
|
30363
30498
|
"/srs/{id}/actions/scan": {
|
|
@@ -30426,7 +30561,8 @@
|
|
|
30426
30561
|
"type": "boolean"
|
|
30427
30562
|
}
|
|
30428
30563
|
}
|
|
30429
|
-
]
|
|
30564
|
+
],
|
|
30565
|
+
"x-mcp-exposure": "confirm"
|
|
30430
30566
|
}
|
|
30431
30567
|
},
|
|
30432
30568
|
"/srs/{id}/actions/forget": {
|
|
@@ -30495,7 +30631,8 @@
|
|
|
30495
30631
|
"type": "boolean"
|
|
30496
30632
|
}
|
|
30497
30633
|
}
|
|
30498
|
-
]
|
|
30634
|
+
],
|
|
30635
|
+
"x-mcp-exposure": "confirm"
|
|
30499
30636
|
}
|
|
30500
30637
|
},
|
|
30501
30638
|
"/sms": {
|
|
@@ -30599,7 +30736,8 @@
|
|
|
30599
30736
|
},
|
|
30600
30737
|
"example": 42
|
|
30601
30738
|
}
|
|
30602
|
-
]
|
|
30739
|
+
],
|
|
30740
|
+
"x-mcp-exposure": "allow"
|
|
30603
30741
|
}
|
|
30604
30742
|
},
|
|
30605
30743
|
"/sms/{id}": {
|
|
@@ -30689,7 +30827,8 @@
|
|
|
30689
30827
|
},
|
|
30690
30828
|
"example": "c4284e12-37c9-7967-b9e8-83ef229c3e03"
|
|
30691
30829
|
}
|
|
30692
|
-
]
|
|
30830
|
+
],
|
|
30831
|
+
"x-mcp-exposure": "allow"
|
|
30693
30832
|
}
|
|
30694
30833
|
},
|
|
30695
30834
|
"/servers": {
|
|
@@ -30791,7 +30930,8 @@
|
|
|
30791
30930
|
},
|
|
30792
30931
|
"example": 42
|
|
30793
30932
|
}
|
|
30794
|
-
]
|
|
30933
|
+
],
|
|
30934
|
+
"x-mcp-exposure": "allow"
|
|
30795
30935
|
},
|
|
30796
30936
|
"post": {
|
|
30797
30937
|
"operationId": "AddServer",
|
|
@@ -30863,7 +31003,8 @@
|
|
|
30863
31003
|
}
|
|
30864
31004
|
}
|
|
30865
31005
|
}
|
|
30866
|
-
}
|
|
31006
|
+
},
|
|
31007
|
+
"x-mcp-exposure": "confirm"
|
|
30867
31008
|
}
|
|
30868
31009
|
},
|
|
30869
31010
|
"/servers/{id}": {
|
|
@@ -30928,7 +31069,8 @@
|
|
|
30928
31069
|
},
|
|
30929
31070
|
"example": "f07ab729-c0e8-721c-45ec-f11276377030"
|
|
30930
31071
|
}
|
|
30931
|
-
]
|
|
31072
|
+
],
|
|
31073
|
+
"x-mcp-exposure": "allow"
|
|
30932
31074
|
},
|
|
30933
31075
|
"delete": {
|
|
30934
31076
|
"operationId": "DeleteServer",
|
|
@@ -30968,7 +31110,8 @@
|
|
|
30968
31110
|
},
|
|
30969
31111
|
"example": "f07ab729-c0e8-721c-45ec-f11276377030"
|
|
30970
31112
|
}
|
|
30971
|
-
]
|
|
31113
|
+
],
|
|
31114
|
+
"x-mcp-exposure": "confirm"
|
|
30972
31115
|
}
|
|
30973
31116
|
},
|
|
30974
31117
|
"/servers/{id}/actions/connect": {
|
|
@@ -31038,7 +31181,8 @@
|
|
|
31038
31181
|
"type": "boolean"
|
|
31039
31182
|
}
|
|
31040
31183
|
}
|
|
31041
|
-
]
|
|
31184
|
+
],
|
|
31185
|
+
"x-mcp-exposure": "confirm"
|
|
31042
31186
|
}
|
|
31043
31187
|
},
|
|
31044
31188
|
"/servers/{id}/actions/disconnect": {
|
|
@@ -31108,7 +31252,8 @@
|
|
|
31108
31252
|
"type": "boolean"
|
|
31109
31253
|
}
|
|
31110
31254
|
}
|
|
31111
|
-
]
|
|
31255
|
+
],
|
|
31256
|
+
"x-mcp-exposure": "confirm"
|
|
31112
31257
|
}
|
|
31113
31258
|
},
|
|
31114
31259
|
"/servers/{id}/tasks": {
|
|
@@ -31237,7 +31382,8 @@
|
|
|
31237
31382
|
},
|
|
31238
31383
|
"example": 42
|
|
31239
31384
|
}
|
|
31240
|
-
]
|
|
31385
|
+
],
|
|
31386
|
+
"x-mcp-exposure": "allow"
|
|
31241
31387
|
}
|
|
31242
31388
|
},
|
|
31243
31389
|
"/schedules": {
|
|
@@ -31343,7 +31489,8 @@
|
|
|
31343
31489
|
},
|
|
31344
31490
|
"example": 42
|
|
31345
31491
|
}
|
|
31346
|
-
]
|
|
31492
|
+
],
|
|
31493
|
+
"x-mcp-exposure": "allow"
|
|
31347
31494
|
}
|
|
31348
31495
|
},
|
|
31349
31496
|
"/schedules/{id}": {
|
|
@@ -31405,7 +31552,8 @@
|
|
|
31405
31552
|
},
|
|
31406
31553
|
"example": "cf7249f8-d20b-494f-97f4-b1f32f94e780"
|
|
31407
31554
|
}
|
|
31408
|
-
]
|
|
31555
|
+
],
|
|
31556
|
+
"x-mcp-exposure": "allow"
|
|
31409
31557
|
}
|
|
31410
31558
|
},
|
|
31411
31559
|
"/schedules/{id}/actions/run": {
|
|
@@ -31475,7 +31623,8 @@
|
|
|
31475
31623
|
"type": "boolean"
|
|
31476
31624
|
}
|
|
31477
31625
|
}
|
|
31478
|
-
]
|
|
31626
|
+
],
|
|
31627
|
+
"x-mcp-exposure": "confirm"
|
|
31479
31628
|
}
|
|
31480
31629
|
},
|
|
31481
31630
|
"/restore-logs": {
|
|
@@ -31587,7 +31736,8 @@
|
|
|
31587
31736
|
},
|
|
31588
31737
|
"example": 42
|
|
31589
31738
|
}
|
|
31590
|
-
]
|
|
31739
|
+
],
|
|
31740
|
+
"x-mcp-exposure": "allow"
|
|
31591
31741
|
}
|
|
31592
31742
|
},
|
|
31593
31743
|
"/restore-logs/{id}": {
|
|
@@ -31670,7 +31820,8 @@
|
|
|
31670
31820
|
},
|
|
31671
31821
|
"example": "1758180544428"
|
|
31672
31822
|
}
|
|
31673
|
-
]
|
|
31823
|
+
],
|
|
31824
|
+
"x-mcp-exposure": "allow"
|
|
31674
31825
|
}
|
|
31675
31826
|
},
|
|
31676
31827
|
"/restore/logs": {
|
|
@@ -31781,7 +31932,8 @@
|
|
|
31781
31932
|
},
|
|
31782
31933
|
"example": 42
|
|
31783
31934
|
}
|
|
31784
|
-
]
|
|
31935
|
+
],
|
|
31936
|
+
"x-mcp-exposure": "allow"
|
|
31785
31937
|
}
|
|
31786
31938
|
},
|
|
31787
31939
|
"/restore/logs/{id}": {
|
|
@@ -31858,7 +32010,8 @@
|
|
|
31858
32010
|
},
|
|
31859
32011
|
"example": "1758180544428"
|
|
31860
32012
|
}
|
|
31861
|
-
]
|
|
32013
|
+
],
|
|
32014
|
+
"x-mcp-exposure": "allow"
|
|
31862
32015
|
}
|
|
31863
32016
|
},
|
|
31864
32017
|
"/proxies": {
|
|
@@ -31962,7 +32115,8 @@
|
|
|
31962
32115
|
},
|
|
31963
32116
|
"example": 42
|
|
31964
32117
|
}
|
|
31965
|
-
]
|
|
32118
|
+
],
|
|
32119
|
+
"x-mcp-exposure": "allow"
|
|
31966
32120
|
}
|
|
31967
32121
|
},
|
|
31968
32122
|
"/proxies/{id}": {
|
|
@@ -32022,7 +32176,8 @@
|
|
|
32022
32176
|
},
|
|
32023
32177
|
"example": "e625ea0c-a876-405a-b838-109d762efe88"
|
|
32024
32178
|
}
|
|
32025
|
-
]
|
|
32179
|
+
],
|
|
32180
|
+
"x-mcp-exposure": "allow"
|
|
32026
32181
|
}
|
|
32027
32182
|
},
|
|
32028
32183
|
"/pools": {
|
|
@@ -32126,7 +32281,8 @@
|
|
|
32126
32281
|
},
|
|
32127
32282
|
"example": 42
|
|
32128
32283
|
}
|
|
32129
|
-
]
|
|
32284
|
+
],
|
|
32285
|
+
"x-mcp-exposure": "allow"
|
|
32130
32286
|
}
|
|
32131
32287
|
},
|
|
32132
32288
|
"/pools/{id}": {
|
|
@@ -32230,7 +32386,8 @@
|
|
|
32230
32386
|
},
|
|
32231
32387
|
"example": "355ee47d-ff4c-4924-3db2-fd86ae629676"
|
|
32232
32388
|
}
|
|
32233
|
-
]
|
|
32389
|
+
],
|
|
32390
|
+
"x-mcp-exposure": "allow"
|
|
32234
32391
|
}
|
|
32235
32392
|
},
|
|
32236
32393
|
"/pools/{id}/actions/create_network": {
|
|
@@ -32325,7 +32482,8 @@
|
|
|
32325
32482
|
}
|
|
32326
32483
|
}
|
|
32327
32484
|
}
|
|
32328
|
-
}
|
|
32485
|
+
},
|
|
32486
|
+
"x-mcp-exposure": "confirm"
|
|
32329
32487
|
}
|
|
32330
32488
|
},
|
|
32331
32489
|
"/pools/{id}/actions/create_bonded_network": {
|
|
@@ -32419,7 +32577,8 @@
|
|
|
32419
32577
|
}
|
|
32420
32578
|
}
|
|
32421
32579
|
}
|
|
32422
|
-
}
|
|
32580
|
+
},
|
|
32581
|
+
"x-mcp-exposure": "confirm"
|
|
32423
32582
|
}
|
|
32424
32583
|
},
|
|
32425
32584
|
"/pools/{id}/actions/create_internal_network": {
|
|
@@ -32508,7 +32667,8 @@
|
|
|
32508
32667
|
}
|
|
32509
32668
|
}
|
|
32510
32669
|
}
|
|
32511
|
-
}
|
|
32670
|
+
},
|
|
32671
|
+
"x-mcp-exposure": "confirm"
|
|
32512
32672
|
}
|
|
32513
32673
|
},
|
|
32514
32674
|
"/pools/{id}/actions/emergency_shutdown": {
|
|
@@ -32575,7 +32735,8 @@
|
|
|
32575
32735
|
"type": "boolean"
|
|
32576
32736
|
}
|
|
32577
32737
|
}
|
|
32578
|
-
]
|
|
32738
|
+
],
|
|
32739
|
+
"x-mcp-exposure": "confirm"
|
|
32579
32740
|
}
|
|
32580
32741
|
},
|
|
32581
32742
|
"/pools/{id}/actions/rolling_reboot": {
|
|
@@ -32642,7 +32803,8 @@
|
|
|
32642
32803
|
"type": "boolean"
|
|
32643
32804
|
}
|
|
32644
32805
|
}
|
|
32645
|
-
]
|
|
32806
|
+
],
|
|
32807
|
+
"x-mcp-exposure": "confirm"
|
|
32646
32808
|
}
|
|
32647
32809
|
},
|
|
32648
32810
|
"/pools/{id}/actions/rolling_update": {
|
|
@@ -32709,7 +32871,8 @@
|
|
|
32709
32871
|
"type": "boolean"
|
|
32710
32872
|
}
|
|
32711
32873
|
}
|
|
32712
|
-
]
|
|
32874
|
+
],
|
|
32875
|
+
"x-mcp-exposure": "confirm"
|
|
32713
32876
|
}
|
|
32714
32877
|
},
|
|
32715
32878
|
"/pools/{id}/actions/create_vm": {
|
|
@@ -32800,7 +32963,8 @@
|
|
|
32800
32963
|
}
|
|
32801
32964
|
}
|
|
32802
32965
|
}
|
|
32803
|
-
}
|
|
32966
|
+
},
|
|
32967
|
+
"x-mcp-exposure": "confirm"
|
|
32804
32968
|
}
|
|
32805
32969
|
},
|
|
32806
32970
|
"/pools/{id}/stats": {
|
|
@@ -34836,7 +35000,8 @@
|
|
|
34836
35000
|
"$ref": "#/components/schemas/XapiStatsGranularity"
|
|
34837
35001
|
}
|
|
34838
35002
|
}
|
|
34839
|
-
]
|
|
35003
|
+
],
|
|
35004
|
+
"x-mcp-exposure": "deny"
|
|
34840
35005
|
}
|
|
34841
35006
|
},
|
|
34842
35007
|
"/pools/{id}/dashboard": {
|
|
@@ -35103,7 +35268,8 @@
|
|
|
35103
35268
|
"type": "boolean"
|
|
35104
35269
|
}
|
|
35105
35270
|
}
|
|
35106
|
-
]
|
|
35271
|
+
],
|
|
35272
|
+
"x-mcp-exposure": "allow"
|
|
35107
35273
|
}
|
|
35108
35274
|
},
|
|
35109
35275
|
"/pools/{id}/alarms": {
|
|
@@ -35212,7 +35378,8 @@
|
|
|
35212
35378
|
},
|
|
35213
35379
|
"example": 42
|
|
35214
35380
|
}
|
|
35215
|
-
]
|
|
35381
|
+
],
|
|
35382
|
+
"x-mcp-exposure": "allow"
|
|
35216
35383
|
}
|
|
35217
35384
|
},
|
|
35218
35385
|
"/pools/{id}/missing_patches": {
|
|
@@ -35308,7 +35475,8 @@
|
|
|
35308
35475
|
},
|
|
35309
35476
|
"example": "355ee47d-ff4c-4924-3db2-fd86ae629676"
|
|
35310
35477
|
}
|
|
35311
|
-
]
|
|
35478
|
+
],
|
|
35479
|
+
"x-mcp-exposure": "allow"
|
|
35312
35480
|
}
|
|
35313
35481
|
},
|
|
35314
35482
|
"/pools/{id}/messages": {
|
|
@@ -35427,7 +35595,8 @@
|
|
|
35427
35595
|
},
|
|
35428
35596
|
"example": 42
|
|
35429
35597
|
}
|
|
35430
|
-
]
|
|
35598
|
+
],
|
|
35599
|
+
"x-mcp-exposure": "allow"
|
|
35431
35600
|
}
|
|
35432
35601
|
},
|
|
35433
35602
|
"/pools/{id}/tags/{tag}": {
|
|
@@ -35478,7 +35647,8 @@
|
|
|
35478
35647
|
},
|
|
35479
35648
|
"example": "from-rest-api"
|
|
35480
35649
|
}
|
|
35481
|
-
]
|
|
35650
|
+
],
|
|
35651
|
+
"x-mcp-exposure": "confirm"
|
|
35482
35652
|
},
|
|
35483
35653
|
"delete": {
|
|
35484
35654
|
"operationId": "DeletePoolTag",
|
|
@@ -35527,7 +35697,8 @@
|
|
|
35527
35697
|
},
|
|
35528
35698
|
"example": "from-rest-api"
|
|
35529
35699
|
}
|
|
35530
|
-
]
|
|
35700
|
+
],
|
|
35701
|
+
"x-mcp-exposure": "confirm"
|
|
35531
35702
|
}
|
|
35532
35703
|
},
|
|
35533
35704
|
"/pools/{id}/tasks": {
|
|
@@ -35655,7 +35826,8 @@
|
|
|
35655
35826
|
},
|
|
35656
35827
|
"example": 42
|
|
35657
35828
|
}
|
|
35658
|
-
]
|
|
35829
|
+
],
|
|
35830
|
+
"x-mcp-exposure": "allow"
|
|
35659
35831
|
}
|
|
35660
35832
|
},
|
|
35661
35833
|
"/pools/{id}/actions/management_reconfigure": {
|
|
@@ -35746,7 +35918,8 @@
|
|
|
35746
35918
|
}
|
|
35747
35919
|
}
|
|
35748
35920
|
}
|
|
35749
|
-
}
|
|
35921
|
+
},
|
|
35922
|
+
"x-mcp-exposure": "confirm"
|
|
35750
35923
|
}
|
|
35751
35924
|
},
|
|
35752
35925
|
"/pifs": {
|
|
@@ -35852,7 +36025,8 @@
|
|
|
35852
36025
|
},
|
|
35853
36026
|
"example": 42
|
|
35854
36027
|
}
|
|
35855
|
-
]
|
|
36028
|
+
],
|
|
36029
|
+
"x-mcp-exposure": "allow"
|
|
35856
36030
|
}
|
|
35857
36031
|
},
|
|
35858
36032
|
"/pifs/{id}": {
|
|
@@ -35936,7 +36110,8 @@
|
|
|
35936
36110
|
},
|
|
35937
36111
|
"example": "d9e42451-3794-089f-de81-4ee0e6137bee"
|
|
35938
36112
|
}
|
|
35939
|
-
]
|
|
36113
|
+
],
|
|
36114
|
+
"x-mcp-exposure": "allow"
|
|
35940
36115
|
}
|
|
35941
36116
|
},
|
|
35942
36117
|
"/pifs/{id}/alarms": {
|
|
@@ -36045,7 +36220,8 @@
|
|
|
36045
36220
|
},
|
|
36046
36221
|
"example": 42
|
|
36047
36222
|
}
|
|
36048
|
-
]
|
|
36223
|
+
],
|
|
36224
|
+
"x-mcp-exposure": "allow"
|
|
36049
36225
|
}
|
|
36050
36226
|
},
|
|
36051
36227
|
"/pifs/{id}/messages": {
|
|
@@ -36164,7 +36340,8 @@
|
|
|
36164
36340
|
},
|
|
36165
36341
|
"example": 42
|
|
36166
36342
|
}
|
|
36167
|
-
]
|
|
36343
|
+
],
|
|
36344
|
+
"x-mcp-exposure": "allow"
|
|
36168
36345
|
}
|
|
36169
36346
|
},
|
|
36170
36347
|
"/pifs/{id}/tasks": {
|
|
@@ -36293,7 +36470,8 @@
|
|
|
36293
36470
|
},
|
|
36294
36471
|
"example": 42
|
|
36295
36472
|
}
|
|
36296
|
-
]
|
|
36473
|
+
],
|
|
36474
|
+
"x-mcp-exposure": "allow"
|
|
36297
36475
|
}
|
|
36298
36476
|
},
|
|
36299
36477
|
"/pgpus": {
|
|
@@ -36397,7 +36575,8 @@
|
|
|
36397
36575
|
},
|
|
36398
36576
|
"example": 42
|
|
36399
36577
|
}
|
|
36400
|
-
]
|
|
36578
|
+
],
|
|
36579
|
+
"x-mcp-exposure": "allow"
|
|
36401
36580
|
}
|
|
36402
36581
|
},
|
|
36403
36582
|
"/pgpus/{id}": {
|
|
@@ -36468,7 +36647,8 @@
|
|
|
36468
36647
|
},
|
|
36469
36648
|
"example": "838335fa-ee21-15e1-760a-a37a3a4ef1db"
|
|
36470
36649
|
}
|
|
36471
|
-
]
|
|
36650
|
+
],
|
|
36651
|
+
"x-mcp-exposure": "allow"
|
|
36472
36652
|
}
|
|
36473
36653
|
},
|
|
36474
36654
|
"/pcis": {
|
|
@@ -36572,7 +36752,8 @@
|
|
|
36572
36752
|
},
|
|
36573
36753
|
"example": 42
|
|
36574
36754
|
}
|
|
36575
|
-
]
|
|
36755
|
+
],
|
|
36756
|
+
"x-mcp-exposure": "allow"
|
|
36576
36757
|
}
|
|
36577
36758
|
},
|
|
36578
36759
|
"/pcis/{id}": {
|
|
@@ -36637,7 +36818,8 @@
|
|
|
36637
36818
|
},
|
|
36638
36819
|
"example": "9377b642-cc71-8749-1e71-308898b652da"
|
|
36639
36820
|
}
|
|
36640
|
-
]
|
|
36821
|
+
],
|
|
36822
|
+
"x-mcp-exposure": "allow"
|
|
36641
36823
|
}
|
|
36642
36824
|
},
|
|
36643
36825
|
"/pbds": {
|
|
@@ -36747,7 +36929,8 @@
|
|
|
36747
36929
|
},
|
|
36748
36930
|
"example": 42
|
|
36749
36931
|
}
|
|
36750
|
-
]
|
|
36932
|
+
],
|
|
36933
|
+
"x-mcp-exposure": "allow"
|
|
36751
36934
|
}
|
|
36752
36935
|
},
|
|
36753
36936
|
"/pbds/{id}": {
|
|
@@ -36817,7 +37000,8 @@
|
|
|
36817
37000
|
},
|
|
36818
37001
|
"example": "16b2a60f-7c4d-f45f-7c7a-963b06fc587d"
|
|
36819
37002
|
}
|
|
36820
|
-
]
|
|
37003
|
+
],
|
|
37004
|
+
"x-mcp-exposure": "allow"
|
|
36821
37005
|
}
|
|
36822
37006
|
},
|
|
36823
37007
|
"/pbds/{id}/actions/plug": {
|
|
@@ -36886,7 +37070,8 @@
|
|
|
36886
37070
|
"type": "boolean"
|
|
36887
37071
|
}
|
|
36888
37072
|
}
|
|
36889
|
-
]
|
|
37073
|
+
],
|
|
37074
|
+
"x-mcp-exposure": "confirm"
|
|
36890
37075
|
}
|
|
36891
37076
|
},
|
|
36892
37077
|
"/pbds/{id}/actions/unplug": {
|
|
@@ -36955,7 +37140,8 @@
|
|
|
36955
37140
|
"type": "boolean"
|
|
36956
37141
|
}
|
|
36957
37142
|
}
|
|
36958
|
-
]
|
|
37143
|
+
],
|
|
37144
|
+
"x-mcp-exposure": "confirm"
|
|
36959
37145
|
}
|
|
36960
37146
|
},
|
|
36961
37147
|
"/networks": {
|
|
@@ -37059,7 +37245,8 @@
|
|
|
37059
37245
|
},
|
|
37060
37246
|
"example": 42
|
|
37061
37247
|
}
|
|
37062
|
-
]
|
|
37248
|
+
],
|
|
37249
|
+
"x-mcp-exposure": "allow"
|
|
37063
37250
|
}
|
|
37064
37251
|
},
|
|
37065
37252
|
"/networks/{id}": {
|
|
@@ -37144,7 +37331,8 @@
|
|
|
37144
37331
|
},
|
|
37145
37332
|
"example": "9fe12ca3-d75d-cfb0-492e-cfd2bc6c568f"
|
|
37146
37333
|
}
|
|
37147
|
-
]
|
|
37334
|
+
],
|
|
37335
|
+
"x-mcp-exposure": "allow"
|
|
37148
37336
|
},
|
|
37149
37337
|
"delete": {
|
|
37150
37338
|
"operationId": "DeleteNetwork",
|
|
@@ -37184,7 +37372,8 @@
|
|
|
37184
37372
|
},
|
|
37185
37373
|
"example": "9fe12ca3-d75d-cfb0-492e-cfd2bc6c568f"
|
|
37186
37374
|
}
|
|
37187
|
-
]
|
|
37375
|
+
],
|
|
37376
|
+
"x-mcp-exposure": "confirm"
|
|
37188
37377
|
}
|
|
37189
37378
|
},
|
|
37190
37379
|
"/networks/{id}/alarms": {
|
|
@@ -37293,7 +37482,8 @@
|
|
|
37293
37482
|
},
|
|
37294
37483
|
"example": 42
|
|
37295
37484
|
}
|
|
37296
|
-
]
|
|
37485
|
+
],
|
|
37486
|
+
"x-mcp-exposure": "allow"
|
|
37297
37487
|
}
|
|
37298
37488
|
},
|
|
37299
37489
|
"/networks/{id}/messages": {
|
|
@@ -37412,7 +37602,8 @@
|
|
|
37412
37602
|
},
|
|
37413
37603
|
"example": 42
|
|
37414
37604
|
}
|
|
37415
|
-
]
|
|
37605
|
+
],
|
|
37606
|
+
"x-mcp-exposure": "allow"
|
|
37416
37607
|
}
|
|
37417
37608
|
},
|
|
37418
37609
|
"/networks/{id}/tasks": {
|
|
@@ -37541,7 +37732,8 @@
|
|
|
37541
37732
|
},
|
|
37542
37733
|
"example": 42
|
|
37543
37734
|
}
|
|
37544
|
-
]
|
|
37735
|
+
],
|
|
37736
|
+
"x-mcp-exposure": "allow"
|
|
37545
37737
|
}
|
|
37546
37738
|
},
|
|
37547
37739
|
"/networks/{id}/tags/{tag}": {
|
|
@@ -37592,7 +37784,8 @@
|
|
|
37592
37784
|
},
|
|
37593
37785
|
"example": "from-rest-api"
|
|
37594
37786
|
}
|
|
37595
|
-
]
|
|
37787
|
+
],
|
|
37788
|
+
"x-mcp-exposure": "confirm"
|
|
37596
37789
|
},
|
|
37597
37790
|
"delete": {
|
|
37598
37791
|
"operationId": "DeleteNetworkTag",
|
|
@@ -37641,7 +37834,8 @@
|
|
|
37641
37834
|
},
|
|
37642
37835
|
"example": "from-rest-api"
|
|
37643
37836
|
}
|
|
37644
|
-
]
|
|
37837
|
+
],
|
|
37838
|
+
"x-mcp-exposure": "confirm"
|
|
37645
37839
|
}
|
|
37646
37840
|
},
|
|
37647
37841
|
"/messages": {
|
|
@@ -37747,7 +37941,8 @@
|
|
|
37747
37941
|
},
|
|
37748
37942
|
"example": 42
|
|
37749
37943
|
}
|
|
37750
|
-
]
|
|
37944
|
+
],
|
|
37945
|
+
"x-mcp-exposure": "allow"
|
|
37751
37946
|
}
|
|
37752
37947
|
},
|
|
37753
37948
|
"/messages/{id}": {
|
|
@@ -37812,7 +38007,45 @@
|
|
|
37812
38007
|
},
|
|
37813
38008
|
"example": "f775eaeb-abe5-94e0-9682-14c37c3a1dfe"
|
|
37814
38009
|
}
|
|
37815
|
-
]
|
|
38010
|
+
],
|
|
38011
|
+
"x-mcp-exposure": "allow"
|
|
38012
|
+
}
|
|
38013
|
+
},
|
|
38014
|
+
"/mcp/status": {
|
|
38015
|
+
"get": {
|
|
38016
|
+
"operationId": "GetMcpStatus",
|
|
38017
|
+
"responses": {
|
|
38018
|
+
"200": {
|
|
38019
|
+
"description": "MCP is enabled",
|
|
38020
|
+
"content": {
|
|
38021
|
+
"application/json": {
|
|
38022
|
+
"schema": {
|
|
38023
|
+
"$ref": "#/components/schemas/McpStatus"
|
|
38024
|
+
},
|
|
38025
|
+
"examples": {
|
|
38026
|
+
"Example 1": {
|
|
38027
|
+
"value": {
|
|
38028
|
+
"enabled": true
|
|
38029
|
+
}
|
|
38030
|
+
}
|
|
38031
|
+
}
|
|
38032
|
+
}
|
|
38033
|
+
}
|
|
38034
|
+
},
|
|
38035
|
+
"503": {
|
|
38036
|
+
"description": "MCP is disabled by administrator"
|
|
38037
|
+
}
|
|
38038
|
+
},
|
|
38039
|
+
"description": "Returns whether MCP is currently enabled on this XO server.\n\nThe route is publicly reachable (no authentication required) so the\n`@xen-orchestra/mcp` binary can check the kill-switch at startup,\nbefore any credentials have been configured.",
|
|
38040
|
+
"tags": [
|
|
38041
|
+
"mcp"
|
|
38042
|
+
],
|
|
38043
|
+
"security": [
|
|
38044
|
+
{
|
|
38045
|
+
"none": []
|
|
38046
|
+
}
|
|
38047
|
+
],
|
|
38048
|
+
"parameters": []
|
|
37816
38049
|
}
|
|
37817
38050
|
},
|
|
37818
38051
|
"/hosts": {
|
|
@@ -37916,7 +38149,8 @@
|
|
|
37916
38149
|
},
|
|
37917
38150
|
"example": 42
|
|
37918
38151
|
}
|
|
37919
|
-
]
|
|
38152
|
+
],
|
|
38153
|
+
"x-mcp-exposure": "allow"
|
|
37920
38154
|
}
|
|
37921
38155
|
},
|
|
37922
38156
|
"/hosts/{id}": {
|
|
@@ -38193,7 +38427,8 @@
|
|
|
38193
38427
|
},
|
|
38194
38428
|
"example": "b61a5c92-700e-4966-a13b-00633f03eea8"
|
|
38195
38429
|
}
|
|
38196
|
-
]
|
|
38430
|
+
],
|
|
38431
|
+
"x-mcp-exposure": "allow"
|
|
38197
38432
|
}
|
|
38198
38433
|
},
|
|
38199
38434
|
"/hosts/{id}/stats": {
|
|
@@ -44414,7 +44649,8 @@
|
|
|
44414
44649
|
"$ref": "#/components/schemas/XapiStatsGranularity"
|
|
44415
44650
|
}
|
|
44416
44651
|
}
|
|
44417
|
-
]
|
|
44652
|
+
],
|
|
44653
|
+
"x-mcp-exposure": "deny"
|
|
44418
44654
|
}
|
|
44419
44655
|
},
|
|
44420
44656
|
"/hosts/{id}/audit.txt": {
|
|
@@ -44459,7 +44695,8 @@
|
|
|
44459
44695
|
},
|
|
44460
44696
|
"example": "b61a5c92-700e-4966-a13b-00633f03eea8"
|
|
44461
44697
|
}
|
|
44462
|
-
]
|
|
44698
|
+
],
|
|
44699
|
+
"x-mcp-exposure": "deny"
|
|
44463
44700
|
}
|
|
44464
44701
|
},
|
|
44465
44702
|
"/hosts/{id}/logs.tgz": {
|
|
@@ -44504,7 +44741,8 @@
|
|
|
44504
44741
|
},
|
|
44505
44742
|
"example": "b61a5c92-700e-4966-a13b-00633f03eea8"
|
|
44506
44743
|
}
|
|
44507
|
-
]
|
|
44744
|
+
],
|
|
44745
|
+
"x-mcp-exposure": "deny"
|
|
44508
44746
|
}
|
|
44509
44747
|
},
|
|
44510
44748
|
"/hosts/{id}/alarms": {
|
|
@@ -44613,7 +44851,8 @@
|
|
|
44613
44851
|
},
|
|
44614
44852
|
"example": 42
|
|
44615
44853
|
}
|
|
44616
|
-
]
|
|
44854
|
+
],
|
|
44855
|
+
"x-mcp-exposure": "allow"
|
|
44617
44856
|
}
|
|
44618
44857
|
},
|
|
44619
44858
|
"/hosts/{id}/smt": {
|
|
@@ -44680,7 +44919,8 @@
|
|
|
44680
44919
|
},
|
|
44681
44920
|
"example": "b61a5c92-700e-4966-a13b-00633f03eea8"
|
|
44682
44921
|
}
|
|
44683
|
-
]
|
|
44922
|
+
],
|
|
44923
|
+
"x-mcp-exposure": "allow"
|
|
44684
44924
|
}
|
|
44685
44925
|
},
|
|
44686
44926
|
"/hosts/{id}/missing_patches": {
|
|
@@ -44776,7 +45016,8 @@
|
|
|
44776
45016
|
},
|
|
44777
45017
|
"example": "b61a5c92-700e-4966-a13b-00633f03eea8"
|
|
44778
45018
|
}
|
|
44779
|
-
]
|
|
45019
|
+
],
|
|
45020
|
+
"x-mcp-exposure": "allow"
|
|
44780
45021
|
}
|
|
44781
45022
|
},
|
|
44782
45023
|
"/hosts/{id}/messages": {
|
|
@@ -44895,7 +45136,8 @@
|
|
|
44895
45136
|
},
|
|
44896
45137
|
"example": 42
|
|
44897
45138
|
}
|
|
44898
|
-
]
|
|
45139
|
+
],
|
|
45140
|
+
"x-mcp-exposure": "allow"
|
|
44899
45141
|
}
|
|
44900
45142
|
},
|
|
44901
45143
|
"/hosts/{id}/tasks": {
|
|
@@ -45024,7 +45266,8 @@
|
|
|
45024
45266
|
},
|
|
45025
45267
|
"example": 42
|
|
45026
45268
|
}
|
|
45027
|
-
]
|
|
45269
|
+
],
|
|
45270
|
+
"x-mcp-exposure": "allow"
|
|
45028
45271
|
}
|
|
45029
45272
|
},
|
|
45030
45273
|
"/hosts/{id}/tags/{tag}": {
|
|
@@ -45075,7 +45318,8 @@
|
|
|
45075
45318
|
},
|
|
45076
45319
|
"example": "from-rest-api"
|
|
45077
45320
|
}
|
|
45078
|
-
]
|
|
45321
|
+
],
|
|
45322
|
+
"x-mcp-exposure": "confirm"
|
|
45079
45323
|
},
|
|
45080
45324
|
"delete": {
|
|
45081
45325
|
"operationId": "DeleteHostTag",
|
|
@@ -45124,7 +45368,8 @@
|
|
|
45124
45368
|
},
|
|
45125
45369
|
"example": "from-rest-api"
|
|
45126
45370
|
}
|
|
45127
|
-
]
|
|
45371
|
+
],
|
|
45372
|
+
"x-mcp-exposure": "confirm"
|
|
45128
45373
|
}
|
|
45129
45374
|
},
|
|
45130
45375
|
"/hosts/{id}/actions/management_reconfigure": {
|
|
@@ -45218,7 +45463,8 @@
|
|
|
45218
45463
|
}
|
|
45219
45464
|
}
|
|
45220
45465
|
}
|
|
45221
|
-
}
|
|
45466
|
+
},
|
|
45467
|
+
"x-mcp-exposure": "confirm"
|
|
45222
45468
|
}
|
|
45223
45469
|
},
|
|
45224
45470
|
"/hosts/{id}/actions/disable": {
|
|
@@ -45344,7 +45590,8 @@
|
|
|
45344
45590
|
}
|
|
45345
45591
|
}
|
|
45346
45592
|
}
|
|
45347
|
-
}
|
|
45593
|
+
},
|
|
45594
|
+
"x-mcp-exposure": "confirm"
|
|
45348
45595
|
}
|
|
45349
45596
|
},
|
|
45350
45597
|
"/hosts/{id}/actions/enable": {
|
|
@@ -45414,7 +45661,8 @@
|
|
|
45414
45661
|
"type": "boolean"
|
|
45415
45662
|
}
|
|
45416
45663
|
}
|
|
45417
|
-
]
|
|
45664
|
+
],
|
|
45665
|
+
"x-mcp-exposure": "confirm"
|
|
45418
45666
|
}
|
|
45419
45667
|
},
|
|
45420
45668
|
"/groups": {
|
|
@@ -45523,7 +45771,8 @@
|
|
|
45523
45771
|
},
|
|
45524
45772
|
"example": 42
|
|
45525
45773
|
}
|
|
45526
|
-
]
|
|
45774
|
+
],
|
|
45775
|
+
"x-mcp-exposure": "allow"
|
|
45527
45776
|
},
|
|
45528
45777
|
"post": {
|
|
45529
45778
|
"operationId": "CreateGroup",
|
|
@@ -45599,7 +45848,8 @@
|
|
|
45599
45848
|
}
|
|
45600
45849
|
}
|
|
45601
45850
|
}
|
|
45602
|
-
}
|
|
45851
|
+
},
|
|
45852
|
+
"x-mcp-exposure": "confirm"
|
|
45603
45853
|
}
|
|
45604
45854
|
},
|
|
45605
45855
|
"/groups/{id}": {
|
|
@@ -45659,7 +45909,8 @@
|
|
|
45659
45909
|
},
|
|
45660
45910
|
"example": "7d98fee4-3357-41a7-ac3f-9124212badb7"
|
|
45661
45911
|
}
|
|
45662
|
-
]
|
|
45912
|
+
],
|
|
45913
|
+
"x-mcp-exposure": "allow"
|
|
45663
45914
|
},
|
|
45664
45915
|
"patch": {
|
|
45665
45916
|
"operationId": "UpdateGroup",
|
|
@@ -45715,7 +45966,8 @@
|
|
|
45715
45966
|
}
|
|
45716
45967
|
}
|
|
45717
45968
|
}
|
|
45718
|
-
}
|
|
45969
|
+
},
|
|
45970
|
+
"x-mcp-exposure": "confirm"
|
|
45719
45971
|
},
|
|
45720
45972
|
"delete": {
|
|
45721
45973
|
"operationId": "DeleteGroup",
|
|
@@ -45755,7 +46007,8 @@
|
|
|
45755
46007
|
},
|
|
45756
46008
|
"example": "7d98fee4-3357-41a7-ac3f-9124212badb7"
|
|
45757
46009
|
}
|
|
45758
|
-
]
|
|
46010
|
+
],
|
|
46011
|
+
"x-mcp-exposure": "confirm"
|
|
45759
46012
|
}
|
|
45760
46013
|
},
|
|
45761
46014
|
"/groups/{id}/users/{userId}": {
|
|
@@ -45806,7 +46059,8 @@
|
|
|
45806
46059
|
},
|
|
45807
46060
|
"example": "722d17b9-699b-49d2-8193-be1ac573d3de"
|
|
45808
46061
|
}
|
|
45809
|
-
]
|
|
46062
|
+
],
|
|
46063
|
+
"x-mcp-exposure": "confirm"
|
|
45810
46064
|
},
|
|
45811
46065
|
"put": {
|
|
45812
46066
|
"operationId": "AddUserToGroup",
|
|
@@ -45855,7 +46109,8 @@
|
|
|
45855
46109
|
},
|
|
45856
46110
|
"example": "722d17b9-699b-49d2-8193-be1ac573d3de"
|
|
45857
46111
|
}
|
|
45858
|
-
]
|
|
46112
|
+
],
|
|
46113
|
+
"x-mcp-exposure": "confirm"
|
|
45859
46114
|
}
|
|
45860
46115
|
},
|
|
45861
46116
|
"/groups/{id}/users": {
|
|
@@ -45971,7 +46226,8 @@
|
|
|
45971
46226
|
},
|
|
45972
46227
|
"example": 42
|
|
45973
46228
|
}
|
|
45974
|
-
]
|
|
46229
|
+
],
|
|
46230
|
+
"x-mcp-exposure": "allow"
|
|
45975
46231
|
}
|
|
45976
46232
|
},
|
|
45977
46233
|
"/groups/{id}/tasks": {
|
|
@@ -46100,7 +46356,8 @@
|
|
|
46100
46356
|
},
|
|
46101
46357
|
"example": 42
|
|
46102
46358
|
}
|
|
46103
|
-
]
|
|
46359
|
+
],
|
|
46360
|
+
"x-mcp-exposure": "allow"
|
|
46104
46361
|
}
|
|
46105
46362
|
},
|
|
46106
46363
|
"/events": {
|
|
@@ -46128,7 +46385,8 @@
|
|
|
46128
46385
|
]
|
|
46129
46386
|
}
|
|
46130
46387
|
],
|
|
46131
|
-
"parameters": []
|
|
46388
|
+
"parameters": [],
|
|
46389
|
+
"x-mcp-exposure": "allow"
|
|
46132
46390
|
}
|
|
46133
46391
|
},
|
|
46134
46392
|
"/events/{id}/subscriptions": {
|
|
@@ -46232,7 +46490,8 @@
|
|
|
46232
46490
|
}
|
|
46233
46491
|
}
|
|
46234
46492
|
}
|
|
46235
|
-
}
|
|
46493
|
+
},
|
|
46494
|
+
"x-mcp-exposure": "confirm"
|
|
46236
46495
|
}
|
|
46237
46496
|
},
|
|
46238
46497
|
"/events/{id}/subscriptions/{subscriptionId}": {
|
|
@@ -46281,7 +46540,8 @@
|
|
|
46281
46540
|
"$ref": "#/components/schemas/XoListenerType"
|
|
46282
46541
|
}
|
|
46283
46542
|
}
|
|
46284
|
-
]
|
|
46543
|
+
],
|
|
46544
|
+
"x-mcp-exposure": "confirm"
|
|
46285
46545
|
}
|
|
46286
46546
|
},
|
|
46287
46547
|
"/backup-repositories": {
|
|
@@ -46385,7 +46645,8 @@
|
|
|
46385
46645
|
},
|
|
46386
46646
|
"example": 42
|
|
46387
46647
|
}
|
|
46388
|
-
]
|
|
46648
|
+
],
|
|
46649
|
+
"x-mcp-exposure": "allow"
|
|
46389
46650
|
}
|
|
46390
46651
|
},
|
|
46391
46652
|
"/backup-repositories/{id}": {
|
|
@@ -46451,7 +46712,8 @@
|
|
|
46451
46712
|
},
|
|
46452
46713
|
"example": "c4284e12-37c9-7967-b9e8-83ef229c3e03"
|
|
46453
46714
|
}
|
|
46454
|
-
]
|
|
46715
|
+
],
|
|
46716
|
+
"x-mcp-exposure": "allow"
|
|
46455
46717
|
}
|
|
46456
46718
|
},
|
|
46457
46719
|
"/backup-logs": {
|
|
@@ -46561,7 +46823,8 @@
|
|
|
46561
46823
|
},
|
|
46562
46824
|
"example": 42
|
|
46563
46825
|
}
|
|
46564
|
-
]
|
|
46826
|
+
],
|
|
46827
|
+
"x-mcp-exposure": "allow"
|
|
46565
46828
|
}
|
|
46566
46829
|
},
|
|
46567
46830
|
"/backup-logs/{id}": {
|
|
@@ -46688,7 +46951,8 @@
|
|
|
46688
46951
|
},
|
|
46689
46952
|
"example": "1753776067468"
|
|
46690
46953
|
}
|
|
46691
|
-
]
|
|
46954
|
+
],
|
|
46955
|
+
"x-mcp-exposure": "allow"
|
|
46692
46956
|
}
|
|
46693
46957
|
},
|
|
46694
46958
|
"/backup-jobs": {
|
|
@@ -46794,7 +47058,8 @@
|
|
|
46794
47058
|
},
|
|
46795
47059
|
"example": 42
|
|
46796
47060
|
}
|
|
46797
|
-
]
|
|
47061
|
+
],
|
|
47062
|
+
"x-mcp-exposure": "allow"
|
|
46798
47063
|
}
|
|
46799
47064
|
},
|
|
46800
47065
|
"/backup-jobs/{id}": {
|
|
@@ -46875,7 +47140,8 @@
|
|
|
46875
47140
|
},
|
|
46876
47141
|
"example": "d33f3dc1-92b4-469c-ad58-4c2a106a4721"
|
|
46877
47142
|
}
|
|
46878
|
-
]
|
|
47143
|
+
],
|
|
47144
|
+
"x-mcp-exposure": "allow"
|
|
46879
47145
|
}
|
|
46880
47146
|
},
|
|
46881
47147
|
"/backup/jobs/vm": {
|
|
@@ -46982,7 +47248,8 @@
|
|
|
46982
47248
|
},
|
|
46983
47249
|
"example": 42
|
|
46984
47250
|
}
|
|
46985
|
-
]
|
|
47251
|
+
],
|
|
47252
|
+
"x-mcp-exposure": "allow"
|
|
46986
47253
|
}
|
|
46987
47254
|
},
|
|
46988
47255
|
"/backup/jobs/vm/{id}": {
|
|
@@ -47060,7 +47327,8 @@
|
|
|
47060
47327
|
},
|
|
47061
47328
|
"example": "d33f3dc1-92b4-469c-ad58-4c2a106a4721"
|
|
47062
47329
|
}
|
|
47063
|
-
]
|
|
47330
|
+
],
|
|
47331
|
+
"x-mcp-exposure": "allow"
|
|
47064
47332
|
}
|
|
47065
47333
|
},
|
|
47066
47334
|
"/backup/jobs/metadata": {
|
|
@@ -47165,7 +47433,8 @@
|
|
|
47165
47433
|
},
|
|
47166
47434
|
"example": 42
|
|
47167
47435
|
}
|
|
47168
|
-
]
|
|
47436
|
+
],
|
|
47437
|
+
"x-mcp-exposure": "allow"
|
|
47169
47438
|
}
|
|
47170
47439
|
},
|
|
47171
47440
|
"/backup/jobs/metadata/{id}": {
|
|
@@ -47230,7 +47499,8 @@
|
|
|
47230
47499
|
},
|
|
47231
47500
|
"example": "b50f95fd-f6b7-4027-87b6-6a02c7dcd5f5"
|
|
47232
47501
|
}
|
|
47233
|
-
]
|
|
47502
|
+
],
|
|
47503
|
+
"x-mcp-exposure": "allow"
|
|
47234
47504
|
}
|
|
47235
47505
|
},
|
|
47236
47506
|
"/backup/jobs/mirror": {
|
|
@@ -47335,7 +47605,8 @@
|
|
|
47335
47605
|
},
|
|
47336
47606
|
"example": 42
|
|
47337
47607
|
}
|
|
47338
|
-
]
|
|
47608
|
+
],
|
|
47609
|
+
"x-mcp-exposure": "allow"
|
|
47339
47610
|
}
|
|
47340
47611
|
},
|
|
47341
47612
|
"/backup/jobs/mirror/{id}": {
|
|
@@ -47419,7 +47690,8 @@
|
|
|
47419
47690
|
},
|
|
47420
47691
|
"example": "e680c14c-ab52-45c8-bb0e-bd4ca12ea8f9"
|
|
47421
47692
|
}
|
|
47422
|
-
]
|
|
47693
|
+
],
|
|
47694
|
+
"x-mcp-exposure": "allow"
|
|
47423
47695
|
}
|
|
47424
47696
|
},
|
|
47425
47697
|
"/backup/logs": {
|
|
@@ -47530,7 +47802,8 @@
|
|
|
47530
47802
|
},
|
|
47531
47803
|
"example": 42
|
|
47532
47804
|
}
|
|
47533
|
-
]
|
|
47805
|
+
],
|
|
47806
|
+
"x-mcp-exposure": "allow"
|
|
47534
47807
|
}
|
|
47535
47808
|
},
|
|
47536
47809
|
"/backup/logs/{id}": {
|
|
@@ -47651,7 +47924,8 @@
|
|
|
47651
47924
|
},
|
|
47652
47925
|
"example": "1753776067468"
|
|
47653
47926
|
}
|
|
47654
|
-
]
|
|
47927
|
+
],
|
|
47928
|
+
"x-mcp-exposure": "allow"
|
|
47655
47929
|
}
|
|
47656
47930
|
},
|
|
47657
47931
|
"/backup-archives": {
|
|
@@ -47790,7 +48064,8 @@
|
|
|
47790
48064
|
},
|
|
47791
48065
|
"example": 42
|
|
47792
48066
|
}
|
|
47793
|
-
]
|
|
48067
|
+
],
|
|
48068
|
+
"x-mcp-exposure": "allow"
|
|
47794
48069
|
}
|
|
47795
48070
|
},
|
|
47796
48071
|
"/backup-archives/{id}": {
|
|
@@ -47871,7 +48146,8 @@
|
|
|
47871
48146
|
},
|
|
47872
48147
|
"example": "231264c3-af43-4ec0-a3be-394c5b1fdbfc/xo-vm-backups/6ef7c09e-677b-1e6f-0546-7ab30413c61c/20250801T080832Z.json"
|
|
47873
48148
|
}
|
|
47874
|
-
]
|
|
48149
|
+
],
|
|
48150
|
+
"x-mcp-exposure": "allow"
|
|
47875
48151
|
}
|
|
47876
48152
|
},
|
|
47877
48153
|
"/alarms": {
|
|
@@ -47988,7 +48264,8 @@
|
|
|
47988
48264
|
},
|
|
47989
48265
|
"example": 42
|
|
47990
48266
|
}
|
|
47991
|
-
]
|
|
48267
|
+
],
|
|
48268
|
+
"x-mcp-exposure": "allow"
|
|
47992
48269
|
}
|
|
47993
48270
|
},
|
|
47994
48271
|
"/alarms/{id}": {
|
|
@@ -48059,7 +48336,8 @@
|
|
|
48059
48336
|
},
|
|
48060
48337
|
"example": "0c98c71c-2f9c-d5c2-b9b6-2c8371730eab"
|
|
48061
48338
|
}
|
|
48062
|
-
]
|
|
48339
|
+
],
|
|
48340
|
+
"x-mcp-exposure": "allow"
|
|
48063
48341
|
}
|
|
48064
48342
|
},
|
|
48065
48343
|
"/acl-roles": {
|
|
@@ -48108,7 +48386,7 @@
|
|
|
48108
48386
|
},
|
|
48109
48387
|
"description": "Returns all ACL roles that match the following privilege:\n- resource: acl-role, action: read",
|
|
48110
48388
|
"tags": [
|
|
48111
|
-
"
|
|
48389
|
+
"rbacs"
|
|
48112
48390
|
],
|
|
48113
48391
|
"security": [
|
|
48114
48392
|
{
|
|
@@ -48154,7 +48432,8 @@
|
|
|
48154
48432
|
},
|
|
48155
48433
|
"example": 42
|
|
48156
48434
|
}
|
|
48157
|
-
]
|
|
48435
|
+
],
|
|
48436
|
+
"x-mcp-exposure": "allow"
|
|
48158
48437
|
},
|
|
48159
48438
|
"post": {
|
|
48160
48439
|
"operationId": "CreateAclV2Role",
|
|
@@ -48199,7 +48478,7 @@
|
|
|
48199
48478
|
},
|
|
48200
48479
|
"description": "Required privilege:\n- resource: acl-role, action: create",
|
|
48201
48480
|
"tags": [
|
|
48202
|
-
"
|
|
48481
|
+
"rbacs"
|
|
48203
48482
|
],
|
|
48204
48483
|
"security": [
|
|
48205
48484
|
{
|
|
@@ -48231,7 +48510,8 @@
|
|
|
48231
48510
|
}
|
|
48232
48511
|
}
|
|
48233
48512
|
}
|
|
48234
|
-
}
|
|
48513
|
+
},
|
|
48514
|
+
"x-mcp-exposure": "confirm"
|
|
48235
48515
|
}
|
|
48236
48516
|
},
|
|
48237
48517
|
"/acl-roles/{id}": {
|
|
@@ -48272,7 +48552,7 @@
|
|
|
48272
48552
|
},
|
|
48273
48553
|
"description": "Required privilege:\n- resource: acl-role, action: read",
|
|
48274
48554
|
"tags": [
|
|
48275
|
-
"
|
|
48555
|
+
"rbacs"
|
|
48276
48556
|
],
|
|
48277
48557
|
"security": [
|
|
48278
48558
|
{
|
|
@@ -48289,7 +48569,8 @@
|
|
|
48289
48569
|
},
|
|
48290
48570
|
"example": "784bd959-08de-4b26-b575-92ded5aef872"
|
|
48291
48571
|
}
|
|
48292
|
-
]
|
|
48572
|
+
],
|
|
48573
|
+
"x-mcp-exposure": "allow"
|
|
48293
48574
|
},
|
|
48294
48575
|
"delete": {
|
|
48295
48576
|
"operationId": "DeleteAclV2Role",
|
|
@@ -48312,7 +48593,7 @@
|
|
|
48312
48593
|
},
|
|
48313
48594
|
"description": "Required privilege:\n- resource: acl-role, action: delete",
|
|
48314
48595
|
"tags": [
|
|
48315
|
-
"
|
|
48596
|
+
"rbacs"
|
|
48316
48597
|
],
|
|
48317
48598
|
"security": [
|
|
48318
48599
|
{
|
|
@@ -48329,7 +48610,8 @@
|
|
|
48329
48610
|
},
|
|
48330
48611
|
"example": "784bd959-08de-4b26-b575-92ded5aef872"
|
|
48331
48612
|
}
|
|
48332
|
-
]
|
|
48613
|
+
],
|
|
48614
|
+
"x-mcp-exposure": "confirm"
|
|
48333
48615
|
},
|
|
48334
48616
|
"patch": {
|
|
48335
48617
|
"operationId": "UpdateAclV2Role",
|
|
@@ -48355,7 +48637,7 @@
|
|
|
48355
48637
|
},
|
|
48356
48638
|
"description": "Required privileges:\n- resource: acl-role, action: update (grants all fields)\n- resource: acl-role, action: update:name (if name is passed)\n- resource: acl-role, action: update:description (if description is passed)",
|
|
48357
48639
|
"tags": [
|
|
48358
|
-
"
|
|
48640
|
+
"rbacs"
|
|
48359
48641
|
],
|
|
48360
48642
|
"security": [
|
|
48361
48643
|
{
|
|
@@ -48395,7 +48677,8 @@
|
|
|
48395
48677
|
}
|
|
48396
48678
|
}
|
|
48397
48679
|
}
|
|
48398
|
-
}
|
|
48680
|
+
},
|
|
48681
|
+
"x-mcp-exposure": "confirm"
|
|
48399
48682
|
}
|
|
48400
48683
|
},
|
|
48401
48684
|
"/acl-roles/{id}/actions/copy": {
|
|
@@ -48437,7 +48720,7 @@
|
|
|
48437
48720
|
},
|
|
48438
48721
|
"description": "Copy a role with all its privileges. Possibility to modify the name and description of the copied role.\n\nRequired privileges:\n- resource: acl-role, action: create\n- resource: acl-privilege, action: create (if copied role has privileges)",
|
|
48439
48722
|
"tags": [
|
|
48440
|
-
"
|
|
48723
|
+
"rbacs"
|
|
48441
48724
|
],
|
|
48442
48725
|
"security": [
|
|
48443
48726
|
{
|
|
@@ -48483,7 +48766,8 @@
|
|
|
48483
48766
|
}
|
|
48484
48767
|
}
|
|
48485
48768
|
}
|
|
48486
|
-
}
|
|
48769
|
+
},
|
|
48770
|
+
"x-mcp-exposure": "confirm"
|
|
48487
48771
|
}
|
|
48488
48772
|
},
|
|
48489
48773
|
"/acl-roles/{id}/privileges": {
|
|
@@ -48536,7 +48820,7 @@
|
|
|
48536
48820
|
},
|
|
48537
48821
|
"description": "Returns all ACL privileges that match the following privilege:\n- resource: acl-privilege, action: read",
|
|
48538
48822
|
"tags": [
|
|
48539
|
-
"
|
|
48823
|
+
"rbacs"
|
|
48540
48824
|
],
|
|
48541
48825
|
"security": [
|
|
48542
48826
|
{
|
|
@@ -48591,7 +48875,8 @@
|
|
|
48591
48875
|
},
|
|
48592
48876
|
"example": 42
|
|
48593
48877
|
}
|
|
48594
|
-
]
|
|
48878
|
+
],
|
|
48879
|
+
"x-mcp-exposure": "allow"
|
|
48595
48880
|
}
|
|
48596
48881
|
},
|
|
48597
48882
|
"/acl-roles/{id}/groups/{groupId}": {
|
|
@@ -48619,7 +48904,7 @@
|
|
|
48619
48904
|
},
|
|
48620
48905
|
"description": "Attach an ACL V2 role to a group.\n\nRequired privilege:\n- resource: acl-role, action: update:groups",
|
|
48621
48906
|
"tags": [
|
|
48622
|
-
"
|
|
48907
|
+
"rbacs"
|
|
48623
48908
|
],
|
|
48624
48909
|
"security": [
|
|
48625
48910
|
{
|
|
@@ -48645,7 +48930,8 @@
|
|
|
48645
48930
|
},
|
|
48646
48931
|
"example": "ee4965bf-d8af-4ca2-aa0e-5f29d0c5f9e2"
|
|
48647
48932
|
}
|
|
48648
|
-
]
|
|
48933
|
+
],
|
|
48934
|
+
"x-mcp-exposure": "confirm"
|
|
48649
48935
|
},
|
|
48650
48936
|
"delete": {
|
|
48651
48937
|
"operationId": "DetachAclV2Group",
|
|
@@ -48668,7 +48954,7 @@
|
|
|
48668
48954
|
},
|
|
48669
48955
|
"description": "Detach an ACL V2 role from a group.\n\nRequired privilege:\n- resource: acl-role, action: update:groups",
|
|
48670
48956
|
"tags": [
|
|
48671
|
-
"
|
|
48957
|
+
"rbacs"
|
|
48672
48958
|
],
|
|
48673
48959
|
"security": [
|
|
48674
48960
|
{
|
|
@@ -48694,7 +48980,8 @@
|
|
|
48694
48980
|
},
|
|
48695
48981
|
"example": "ee4965bf-d8af-4ca2-aa0e-5f29d0c5f9e2"
|
|
48696
48982
|
}
|
|
48697
|
-
]
|
|
48983
|
+
],
|
|
48984
|
+
"x-mcp-exposure": "confirm"
|
|
48698
48985
|
}
|
|
48699
48986
|
},
|
|
48700
48987
|
"/acl-roles/{id}/users/{userId}": {
|
|
@@ -48722,7 +49009,7 @@
|
|
|
48722
49009
|
},
|
|
48723
49010
|
"description": "Attach an ACL V2 role to a user.\n\nRequired privilege:\n- resource: acl-role, action: update:users",
|
|
48724
49011
|
"tags": [
|
|
48725
|
-
"
|
|
49012
|
+
"rbacs"
|
|
48726
49013
|
],
|
|
48727
49014
|
"security": [
|
|
48728
49015
|
{
|
|
@@ -48748,7 +49035,8 @@
|
|
|
48748
49035
|
},
|
|
48749
49036
|
"example": "ee4965bf-d8af-4ca2-aa0e-5f29d0c5f9e2"
|
|
48750
49037
|
}
|
|
48751
|
-
]
|
|
49038
|
+
],
|
|
49039
|
+
"x-mcp-exposure": "confirm"
|
|
48752
49040
|
},
|
|
48753
49041
|
"delete": {
|
|
48754
49042
|
"operationId": "DetachAclV2User",
|
|
@@ -48771,7 +49059,7 @@
|
|
|
48771
49059
|
},
|
|
48772
49060
|
"description": "Detach an ACL V2 role from a user.\n\nRequired privilege:\n- resource: acl-role, action: update:users",
|
|
48773
49061
|
"tags": [
|
|
48774
|
-
"
|
|
49062
|
+
"rbacs"
|
|
48775
49063
|
],
|
|
48776
49064
|
"security": [
|
|
48777
49065
|
{
|
|
@@ -48797,7 +49085,8 @@
|
|
|
48797
49085
|
},
|
|
48798
49086
|
"example": "ee4965bf-d8af-4ca2-aa0e-5f29d0c5f9e2"
|
|
48799
49087
|
}
|
|
48800
|
-
]
|
|
49088
|
+
],
|
|
49089
|
+
"x-mcp-exposure": "confirm"
|
|
48801
49090
|
}
|
|
48802
49091
|
},
|
|
48803
49092
|
"/acl-privileges": {
|
|
@@ -48847,7 +49136,7 @@
|
|
|
48847
49136
|
},
|
|
48848
49137
|
"description": "Returns all ACL privileges that match the following privilege:\n- resource: acl-privilege, action: read",
|
|
48849
49138
|
"tags": [
|
|
48850
|
-
"
|
|
49139
|
+
"rbacs"
|
|
48851
49140
|
],
|
|
48852
49141
|
"security": [
|
|
48853
49142
|
{
|
|
@@ -48893,7 +49182,8 @@
|
|
|
48893
49182
|
},
|
|
48894
49183
|
"example": 42
|
|
48895
49184
|
}
|
|
48896
|
-
]
|
|
49185
|
+
],
|
|
49186
|
+
"x-mcp-exposure": "allow"
|
|
48897
49187
|
},
|
|
48898
49188
|
"post": {
|
|
48899
49189
|
"operationId": "CreateAclV2Privilege",
|
|
@@ -48941,7 +49231,7 @@
|
|
|
48941
49231
|
},
|
|
48942
49232
|
"description": "Required privilege:\n- resource: acl-privilege, action: create",
|
|
48943
49233
|
"tags": [
|
|
48944
|
-
"
|
|
49234
|
+
"rbacs"
|
|
48945
49235
|
],
|
|
48946
49236
|
"security": [
|
|
48947
49237
|
{
|
|
@@ -48965,7 +49255,8 @@
|
|
|
48965
49255
|
}
|
|
48966
49256
|
}
|
|
48967
49257
|
}
|
|
48968
|
-
}
|
|
49258
|
+
},
|
|
49259
|
+
"x-mcp-exposure": "confirm"
|
|
48969
49260
|
}
|
|
48970
49261
|
},
|
|
48971
49262
|
"/acl-privileges/{id}": {
|
|
@@ -49008,7 +49299,7 @@
|
|
|
49008
49299
|
},
|
|
49009
49300
|
"description": "Required privilege:\n- resource: acl-privilege, action: read",
|
|
49010
49301
|
"tags": [
|
|
49011
|
-
"
|
|
49302
|
+
"rbacs"
|
|
49012
49303
|
],
|
|
49013
49304
|
"security": [
|
|
49014
49305
|
{
|
|
@@ -49025,7 +49316,8 @@
|
|
|
49025
49316
|
},
|
|
49026
49317
|
"example": "c5d89d1a-df1e-4b72-98a0-c40adfdf49c1"
|
|
49027
49318
|
}
|
|
49028
|
-
]
|
|
49319
|
+
],
|
|
49320
|
+
"x-mcp-exposure": "allow"
|
|
49029
49321
|
},
|
|
49030
49322
|
"delete": {
|
|
49031
49323
|
"operationId": "DeleteAclV2Privilege",
|
|
@@ -49048,7 +49340,7 @@
|
|
|
49048
49340
|
},
|
|
49049
49341
|
"description": "Required privilege:\n- resource: acl-privilege, action: delete",
|
|
49050
49342
|
"tags": [
|
|
49051
|
-
"
|
|
49343
|
+
"rbacs"
|
|
49052
49344
|
],
|
|
49053
49345
|
"security": [
|
|
49054
49346
|
{
|
|
@@ -49065,7 +49357,8 @@
|
|
|
49065
49357
|
},
|
|
49066
49358
|
"example": "784bd959-08de-4b26-b575-92ded5aef872"
|
|
49067
49359
|
}
|
|
49068
|
-
]
|
|
49360
|
+
],
|
|
49361
|
+
"x-mcp-exposure": "confirm"
|
|
49069
49362
|
},
|
|
49070
49363
|
"patch": {
|
|
49071
49364
|
"operationId": "UpdateAclV2Privilege",
|
|
@@ -49091,7 +49384,7 @@
|
|
|
49091
49384
|
},
|
|
49092
49385
|
"description": "Required privileges:\n- resource: acl-privilege, action: update (grants all fields)\n- resource: acl-privilege, action: update:action (if action is passed)\n- resource: acl-privilege, action: update:resource (if resource is passed)\n- resource: acl-privilege, action: update:effect (if effect is passed)\n- resource: acl-privilege, action: update:selector (if selector is passed)",
|
|
49093
49386
|
"tags": [
|
|
49094
|
-
"
|
|
49387
|
+
"rbacs"
|
|
49095
49388
|
],
|
|
49096
49389
|
"security": [
|
|
49097
49390
|
{
|
|
@@ -49124,7 +49417,8 @@
|
|
|
49124
49417
|
}
|
|
49125
49418
|
}
|
|
49126
49419
|
}
|
|
49127
|
-
}
|
|
49420
|
+
},
|
|
49421
|
+
"x-mcp-exposure": "confirm"
|
|
49128
49422
|
}
|
|
49129
49423
|
},
|
|
49130
49424
|
"/pools/{id}/vms": {
|
|
@@ -49202,6 +49496,7 @@
|
|
|
49202
49496
|
"example": "c787b75c-3e0d-70fa-d0c3-cbfd382d7e33"
|
|
49203
49497
|
}
|
|
49204
49498
|
],
|
|
49499
|
+
"x-mcp-exposure": "confirm",
|
|
49205
49500
|
"requestBody": {
|
|
49206
49501
|
"required": true,
|
|
49207
49502
|
"content": {
|
|
@@ -49305,6 +49600,7 @@
|
|
|
49305
49600
|
"example": true
|
|
49306
49601
|
}
|
|
49307
49602
|
],
|
|
49603
|
+
"x-mcp-exposure": "confirm",
|
|
49308
49604
|
"requestBody": {
|
|
49309
49605
|
"required": true,
|
|
49310
49606
|
"content": {
|
|
@@ -49376,7 +49672,8 @@
|
|
|
49376
49672
|
"$ref": "#/components/schemas/Exclude_SUPPORTED_VDI_FORMAT.qcow2_"
|
|
49377
49673
|
}
|
|
49378
49674
|
}
|
|
49379
|
-
]
|
|
49675
|
+
],
|
|
49676
|
+
"x-mcp-exposure": "deny"
|
|
49380
49677
|
},
|
|
49381
49678
|
"put": {
|
|
49382
49679
|
"operationId": "ImportVdiContent",
|
|
@@ -49431,6 +49728,7 @@
|
|
|
49431
49728
|
}
|
|
49432
49729
|
}
|
|
49433
49730
|
],
|
|
49731
|
+
"x-mcp-exposure": "deny",
|
|
49434
49732
|
"requestBody": {
|
|
49435
49733
|
"required": true,
|
|
49436
49734
|
"content": {
|
|
@@ -49455,7 +49753,8 @@
|
|
|
49455
49753
|
},
|
|
49456
49754
|
"tags": [
|
|
49457
49755
|
"docs"
|
|
49458
|
-
]
|
|
49756
|
+
],
|
|
49757
|
+
"x-mcp-exposure": "deny"
|
|
49459
49758
|
}
|
|
49460
49759
|
}
|
|
49461
49760
|
}
|