@xen-orchestra/rest-api 0.9.0 → 0.11.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/abstract-classes/base-controller.mjs +26 -1
- package/dist/alarms/alarm.controller.mjs +1 -1
- package/dist/helpers/utils.helper.mjs +1 -0
- package/dist/hosts/host.controller.mjs +30 -1
- package/dist/ioc/ioc.mjs +8 -0
- package/dist/messages/message.controller.mjs +1 -1
- package/dist/middlewares/generic-error-handler.middleware.mjs +15 -11
- package/dist/middlewares/tsoa-to-xo-error.middleware.mjs +1 -1
- package/dist/open-api/oa-examples/pool.oa-example.mjs +204 -0
- package/dist/open-api/oa-examples/sm.oa-example.mjs +58 -0
- package/dist/open-api/routes/routes.js +373 -23
- package/dist/pools/pool.controller.mjs +93 -3
- package/dist/rest-api/rest-api.mjs +3 -0
- package/dist/sms/sm.controller.mjs +60 -0
- package/dist/vms/vm.controller.mjs +127 -4
- package/dist/vms/vm.service.mjs +47 -0
- package/dist/xoa/xoa.controller.mjs +21 -5
- package/dist/xoa/xoa.service.mjs +103 -22
- package/open-api/spec/swagger.json +3854 -697
- package/package.json +5 -3
- package/tsoa.json +20 -0
|
@@ -323,6 +323,60 @@
|
|
|
323
323
|
}
|
|
324
324
|
]
|
|
325
325
|
},
|
|
326
|
+
"vmsStatus": {
|
|
327
|
+
"properties": {
|
|
328
|
+
"total": {
|
|
329
|
+
"type": "number",
|
|
330
|
+
"format": "double"
|
|
331
|
+
},
|
|
332
|
+
"unknown": {
|
|
333
|
+
"type": "number",
|
|
334
|
+
"format": "double"
|
|
335
|
+
},
|
|
336
|
+
"inactive": {
|
|
337
|
+
"type": "number",
|
|
338
|
+
"format": "double"
|
|
339
|
+
},
|
|
340
|
+
"active": {
|
|
341
|
+
"type": "number",
|
|
342
|
+
"format": "double"
|
|
343
|
+
}
|
|
344
|
+
},
|
|
345
|
+
"required": [
|
|
346
|
+
"total",
|
|
347
|
+
"unknown",
|
|
348
|
+
"inactive",
|
|
349
|
+
"active"
|
|
350
|
+
],
|
|
351
|
+
"type": "object"
|
|
352
|
+
},
|
|
353
|
+
"hostsStatus": {
|
|
354
|
+
"properties": {
|
|
355
|
+
"total": {
|
|
356
|
+
"type": "number",
|
|
357
|
+
"format": "double"
|
|
358
|
+
},
|
|
359
|
+
"unknown": {
|
|
360
|
+
"type": "number",
|
|
361
|
+
"format": "double"
|
|
362
|
+
},
|
|
363
|
+
"halted": {
|
|
364
|
+
"type": "number",
|
|
365
|
+
"format": "double"
|
|
366
|
+
},
|
|
367
|
+
"running": {
|
|
368
|
+
"type": "number",
|
|
369
|
+
"format": "double"
|
|
370
|
+
}
|
|
371
|
+
},
|
|
372
|
+
"required": [
|
|
373
|
+
"total",
|
|
374
|
+
"unknown",
|
|
375
|
+
"halted",
|
|
376
|
+
"running"
|
|
377
|
+
],
|
|
378
|
+
"type": "object"
|
|
379
|
+
},
|
|
326
380
|
"nHostsEol": {
|
|
327
381
|
"type": "number",
|
|
328
382
|
"format": "double"
|
|
@@ -341,6 +395,8 @@
|
|
|
341
395
|
"resourcesOverview",
|
|
342
396
|
"storageRepositories",
|
|
343
397
|
"missingPatches",
|
|
398
|
+
"vmsStatus",
|
|
399
|
+
"hostsStatus",
|
|
344
400
|
"nHosts",
|
|
345
401
|
"nPools"
|
|
346
402
|
],
|
|
@@ -1201,181 +1257,151 @@
|
|
|
1201
1257
|
],
|
|
1202
1258
|
"type": "object"
|
|
1203
1259
|
},
|
|
1204
|
-
"
|
|
1260
|
+
"StatValues": {
|
|
1261
|
+
"items": {
|
|
1262
|
+
"type": "number",
|
|
1263
|
+
"format": "double",
|
|
1264
|
+
"nullable": true
|
|
1265
|
+
},
|
|
1266
|
+
"type": "array"
|
|
1267
|
+
},
|
|
1268
|
+
"Record_string.StatValues_": {
|
|
1205
1269
|
"properties": {},
|
|
1206
1270
|
"additionalProperties": {
|
|
1207
|
-
"
|
|
1208
|
-
"type": "number",
|
|
1209
|
-
"format": "double"
|
|
1210
|
-
},
|
|
1211
|
-
"type": "array"
|
|
1271
|
+
"$ref": "#/components/schemas/StatValues"
|
|
1212
1272
|
},
|
|
1213
1273
|
"type": "object",
|
|
1214
1274
|
"description": "Construct a type with a set of properties K of type T"
|
|
1215
1275
|
},
|
|
1216
|
-
"
|
|
1276
|
+
"RecordStatValues": {
|
|
1277
|
+
"$ref": "#/components/schemas/Record_string.StatValues_"
|
|
1278
|
+
},
|
|
1279
|
+
"XapiVmStatsRaw": {
|
|
1217
1280
|
"properties": {
|
|
1218
|
-
"
|
|
1281
|
+
"vbdAvgquSz": {
|
|
1282
|
+
"$ref": "#/components/schemas/RecordStatValues"
|
|
1283
|
+
},
|
|
1284
|
+
"vbdInflight": {
|
|
1285
|
+
"$ref": "#/components/schemas/RecordStatValues"
|
|
1286
|
+
},
|
|
1287
|
+
"vbdIowait": {
|
|
1288
|
+
"$ref": "#/components/schemas/RecordStatValues"
|
|
1289
|
+
},
|
|
1290
|
+
"vbdLatency": {
|
|
1219
1291
|
"properties": {
|
|
1220
|
-
"
|
|
1221
|
-
"$ref": "#/components/schemas/
|
|
1222
|
-
},
|
|
1223
|
-
"vbdInflight": {
|
|
1224
|
-
"$ref": "#/components/schemas/Record_string.number-Array_"
|
|
1225
|
-
},
|
|
1226
|
-
"vbdIowait": {
|
|
1227
|
-
"$ref": "#/components/schemas/Record_string.number-Array_"
|
|
1228
|
-
},
|
|
1229
|
-
"vbdLatency": {
|
|
1230
|
-
"properties": {
|
|
1231
|
-
"r": {
|
|
1232
|
-
"$ref": "#/components/schemas/Record_string.number-Array_"
|
|
1233
|
-
},
|
|
1234
|
-
"w": {
|
|
1235
|
-
"$ref": "#/components/schemas/Record_string.number-Array_"
|
|
1236
|
-
}
|
|
1237
|
-
},
|
|
1238
|
-
"required": [
|
|
1239
|
-
"r",
|
|
1240
|
-
"w"
|
|
1241
|
-
],
|
|
1242
|
-
"type": "object"
|
|
1292
|
+
"r": {
|
|
1293
|
+
"$ref": "#/components/schemas/RecordStatValues"
|
|
1243
1294
|
},
|
|
1244
|
-
"
|
|
1245
|
-
"
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
"vifErrors": {
|
|
1259
|
-
"properties": {
|
|
1260
|
-
"tx": {
|
|
1261
|
-
"$ref": "#/components/schemas/Record_string.number-Array_"
|
|
1262
|
-
},
|
|
1263
|
-
"rx": {
|
|
1264
|
-
"$ref": "#/components/schemas/Record_string.number-Array_"
|
|
1265
|
-
}
|
|
1266
|
-
},
|
|
1267
|
-
"required": [
|
|
1268
|
-
"tx",
|
|
1269
|
-
"rx"
|
|
1270
|
-
],
|
|
1271
|
-
"type": "object"
|
|
1272
|
-
},
|
|
1273
|
-
"vifs": {
|
|
1274
|
-
"properties": {
|
|
1275
|
-
"tx": {
|
|
1276
|
-
"$ref": "#/components/schemas/Record_string.number-Array_"
|
|
1277
|
-
},
|
|
1278
|
-
"rx": {
|
|
1279
|
-
"$ref": "#/components/schemas/Record_string.number-Array_"
|
|
1280
|
-
}
|
|
1281
|
-
},
|
|
1282
|
-
"required": [
|
|
1283
|
-
"tx",
|
|
1284
|
-
"rx"
|
|
1285
|
-
],
|
|
1286
|
-
"type": "object"
|
|
1287
|
-
},
|
|
1288
|
-
"memoryTarget": {
|
|
1289
|
-
"items": {
|
|
1290
|
-
"type": "number",
|
|
1291
|
-
"format": "double"
|
|
1292
|
-
},
|
|
1293
|
-
"type": "array"
|
|
1294
|
-
},
|
|
1295
|
-
"memoryFree": {
|
|
1296
|
-
"items": {
|
|
1297
|
-
"type": "number",
|
|
1298
|
-
"format": "double"
|
|
1299
|
-
},
|
|
1300
|
-
"type": "array"
|
|
1301
|
-
},
|
|
1302
|
-
"memory": {
|
|
1303
|
-
"items": {
|
|
1304
|
-
"type": "number",
|
|
1305
|
-
"format": "double"
|
|
1306
|
-
},
|
|
1307
|
-
"type": "array"
|
|
1308
|
-
},
|
|
1309
|
-
"iops": {
|
|
1310
|
-
"properties": {
|
|
1311
|
-
"w": {
|
|
1312
|
-
"$ref": "#/components/schemas/Record_string.number-Array_"
|
|
1313
|
-
},
|
|
1314
|
-
"r": {
|
|
1315
|
-
"$ref": "#/components/schemas/Record_string.number-Array_"
|
|
1316
|
-
}
|
|
1317
|
-
},
|
|
1318
|
-
"required": [
|
|
1319
|
-
"w",
|
|
1320
|
-
"r"
|
|
1321
|
-
],
|
|
1322
|
-
"type": "object"
|
|
1323
|
-
},
|
|
1324
|
-
"runstateBlocked": {
|
|
1325
|
-
"items": {
|
|
1326
|
-
"type": "number",
|
|
1327
|
-
"format": "double"
|
|
1328
|
-
},
|
|
1329
|
-
"type": "array"
|
|
1330
|
-
},
|
|
1331
|
-
"runstateConcurrencyHazard": {
|
|
1332
|
-
"items": {
|
|
1333
|
-
"type": "number",
|
|
1334
|
-
"format": "double"
|
|
1335
|
-
},
|
|
1336
|
-
"type": "array"
|
|
1337
|
-
},
|
|
1338
|
-
"runstatePartialContention": {
|
|
1339
|
-
"items": {
|
|
1340
|
-
"type": "number",
|
|
1341
|
-
"format": "double"
|
|
1342
|
-
},
|
|
1343
|
-
"type": "array"
|
|
1295
|
+
"w": {
|
|
1296
|
+
"$ref": "#/components/schemas/RecordStatValues"
|
|
1297
|
+
}
|
|
1298
|
+
},
|
|
1299
|
+
"required": [
|
|
1300
|
+
"r",
|
|
1301
|
+
"w"
|
|
1302
|
+
],
|
|
1303
|
+
"type": "object"
|
|
1304
|
+
},
|
|
1305
|
+
"xvds": {
|
|
1306
|
+
"properties": {
|
|
1307
|
+
"total": {
|
|
1308
|
+
"$ref": "#/components/schemas/RecordStatValues"
|
|
1344
1309
|
},
|
|
1345
|
-
"
|
|
1346
|
-
"
|
|
1347
|
-
"type": "number",
|
|
1348
|
-
"format": "double"
|
|
1349
|
-
},
|
|
1350
|
-
"type": "array"
|
|
1310
|
+
"r": {
|
|
1311
|
+
"$ref": "#/components/schemas/RecordStatValues"
|
|
1351
1312
|
},
|
|
1352
|
-
"
|
|
1353
|
-
"
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1313
|
+
"w": {
|
|
1314
|
+
"$ref": "#/components/schemas/RecordStatValues"
|
|
1315
|
+
}
|
|
1316
|
+
},
|
|
1317
|
+
"type": "object"
|
|
1318
|
+
},
|
|
1319
|
+
"vifErrors": {
|
|
1320
|
+
"properties": {
|
|
1321
|
+
"tx": {
|
|
1322
|
+
"$ref": "#/components/schemas/RecordStatValues"
|
|
1358
1323
|
},
|
|
1359
|
-
"
|
|
1360
|
-
"
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1324
|
+
"rx": {
|
|
1325
|
+
"$ref": "#/components/schemas/RecordStatValues"
|
|
1326
|
+
}
|
|
1327
|
+
},
|
|
1328
|
+
"required": [
|
|
1329
|
+
"tx",
|
|
1330
|
+
"rx"
|
|
1331
|
+
],
|
|
1332
|
+
"type": "object"
|
|
1333
|
+
},
|
|
1334
|
+
"vifs": {
|
|
1335
|
+
"properties": {
|
|
1336
|
+
"tx": {
|
|
1337
|
+
"$ref": "#/components/schemas/RecordStatValues"
|
|
1365
1338
|
},
|
|
1366
|
-
"
|
|
1367
|
-
"
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1339
|
+
"rx": {
|
|
1340
|
+
"$ref": "#/components/schemas/RecordStatValues"
|
|
1341
|
+
}
|
|
1342
|
+
},
|
|
1343
|
+
"required": [
|
|
1344
|
+
"tx",
|
|
1345
|
+
"rx"
|
|
1346
|
+
],
|
|
1347
|
+
"type": "object"
|
|
1348
|
+
},
|
|
1349
|
+
"memoryTarget": {
|
|
1350
|
+
"$ref": "#/components/schemas/StatValues"
|
|
1351
|
+
},
|
|
1352
|
+
"memoryFree": {
|
|
1353
|
+
"$ref": "#/components/schemas/StatValues"
|
|
1354
|
+
},
|
|
1355
|
+
"memory": {
|
|
1356
|
+
"$ref": "#/components/schemas/StatValues"
|
|
1357
|
+
},
|
|
1358
|
+
"iops": {
|
|
1359
|
+
"properties": {
|
|
1360
|
+
"w": {
|
|
1361
|
+
"$ref": "#/components/schemas/RecordStatValues"
|
|
1372
1362
|
},
|
|
1373
|
-
"
|
|
1374
|
-
"$ref": "#/components/schemas/
|
|
1363
|
+
"r": {
|
|
1364
|
+
"$ref": "#/components/schemas/RecordStatValues"
|
|
1375
1365
|
}
|
|
1376
1366
|
},
|
|
1367
|
+
"required": [
|
|
1368
|
+
"w",
|
|
1369
|
+
"r"
|
|
1370
|
+
],
|
|
1377
1371
|
"type": "object"
|
|
1378
1372
|
},
|
|
1373
|
+
"runstateBlocked": {
|
|
1374
|
+
"$ref": "#/components/schemas/StatValues"
|
|
1375
|
+
},
|
|
1376
|
+
"runstateConcurrencyHazard": {
|
|
1377
|
+
"$ref": "#/components/schemas/StatValues"
|
|
1378
|
+
},
|
|
1379
|
+
"runstatePartialContention": {
|
|
1380
|
+
"$ref": "#/components/schemas/StatValues"
|
|
1381
|
+
},
|
|
1382
|
+
"runstatePartialRun": {
|
|
1383
|
+
"$ref": "#/components/schemas/StatValues"
|
|
1384
|
+
},
|
|
1385
|
+
"runstateFullContention": {
|
|
1386
|
+
"$ref": "#/components/schemas/StatValues"
|
|
1387
|
+
},
|
|
1388
|
+
"runstateFullrun": {
|
|
1389
|
+
"$ref": "#/components/schemas/StatValues"
|
|
1390
|
+
},
|
|
1391
|
+
"cpuUsage": {
|
|
1392
|
+
"$ref": "#/components/schemas/StatValues"
|
|
1393
|
+
},
|
|
1394
|
+
"cpus": {
|
|
1395
|
+
"$ref": "#/components/schemas/RecordStatValues"
|
|
1396
|
+
}
|
|
1397
|
+
},
|
|
1398
|
+
"type": "object"
|
|
1399
|
+
},
|
|
1400
|
+
"XapiStatsResponse_XapiVmStatsRaw_": {
|
|
1401
|
+
"properties": {
|
|
1402
|
+
"stats": {
|
|
1403
|
+
"$ref": "#/components/schemas/XapiVmStatsRaw"
|
|
1404
|
+
},
|
|
1379
1405
|
"interval": {
|
|
1380
1406
|
"type": "number",
|
|
1381
1407
|
"format": "double"
|
|
@@ -1393,7 +1419,7 @@
|
|
|
1393
1419
|
"type": "object"
|
|
1394
1420
|
},
|
|
1395
1421
|
"XapiVmStats": {
|
|
1396
|
-
"$ref": "#/components/schemas/
|
|
1422
|
+
"$ref": "#/components/schemas/XapiStatsResponse_XapiVmStatsRaw_"
|
|
1397
1423
|
},
|
|
1398
1424
|
"XapiStatsGranularity": {
|
|
1399
1425
|
"type": "string",
|
|
@@ -4077,6 +4103,9 @@
|
|
|
4077
4103
|
"parent": {
|
|
4078
4104
|
"type": "string"
|
|
4079
4105
|
},
|
|
4106
|
+
"image_format": {
|
|
4107
|
+
"type": "string"
|
|
4108
|
+
},
|
|
4080
4109
|
"size": {
|
|
4081
4110
|
"type": "number",
|
|
4082
4111
|
"format": "double"
|
|
@@ -4195,6 +4224,9 @@
|
|
|
4195
4224
|
"parent": {
|
|
4196
4225
|
"type": "string"
|
|
4197
4226
|
},
|
|
4227
|
+
"image_format": {
|
|
4228
|
+
"type": "string"
|
|
4229
|
+
},
|
|
4198
4230
|
"size": {
|
|
4199
4231
|
"type": "number",
|
|
4200
4232
|
"format": "double"
|
|
@@ -4296,6 +4328,9 @@
|
|
|
4296
4328
|
"parent": {
|
|
4297
4329
|
"type": "string"
|
|
4298
4330
|
},
|
|
4331
|
+
"image_format": {
|
|
4332
|
+
"type": "string"
|
|
4333
|
+
},
|
|
4299
4334
|
"size": {
|
|
4300
4335
|
"type": "number",
|
|
4301
4336
|
"format": "double"
|
|
@@ -4421,6 +4456,9 @@
|
|
|
4421
4456
|
"parent": {
|
|
4422
4457
|
"type": "string"
|
|
4423
4458
|
},
|
|
4459
|
+
"image_format": {
|
|
4460
|
+
"type": "string"
|
|
4461
|
+
},
|
|
4424
4462
|
"size": {
|
|
4425
4463
|
"type": "number",
|
|
4426
4464
|
"format": "double"
|
|
@@ -5009,68 +5047,249 @@
|
|
|
5009
5047
|
],
|
|
5010
5048
|
"type": "object"
|
|
5011
5049
|
},
|
|
5012
|
-
"Record_string.
|
|
5050
|
+
"Record_string.number_": {
|
|
5013
5051
|
"properties": {},
|
|
5014
5052
|
"type": "object",
|
|
5015
5053
|
"description": "Construct a type with a set of properties K of type T"
|
|
5016
5054
|
},
|
|
5017
|
-
"
|
|
5055
|
+
"Partial_Unbrand_XoSm__": {
|
|
5018
5056
|
"properties": {
|
|
5019
|
-
"
|
|
5020
|
-
"type": "
|
|
5021
|
-
},
|
|
5022
|
-
"enabled": {
|
|
5023
|
-
"type": "boolean"
|
|
5057
|
+
"$pool": {
|
|
5058
|
+
"type": "string"
|
|
5024
5059
|
},
|
|
5025
|
-
"
|
|
5026
|
-
"
|
|
5060
|
+
"$poolId": {
|
|
5061
|
+
"type": "string",
|
|
5062
|
+
"deprecated": true
|
|
5027
5063
|
},
|
|
5028
|
-
"
|
|
5064
|
+
"_xapiRef": {
|
|
5029
5065
|
"type": "string"
|
|
5030
5066
|
},
|
|
5031
|
-
"
|
|
5067
|
+
"uuid": {
|
|
5032
5068
|
"type": "string"
|
|
5033
5069
|
},
|
|
5034
5070
|
"id": {
|
|
5035
5071
|
"type": "string"
|
|
5036
5072
|
},
|
|
5037
|
-
"
|
|
5073
|
+
"SM_type": {
|
|
5038
5074
|
"type": "string"
|
|
5039
5075
|
},
|
|
5040
|
-
"
|
|
5076
|
+
"vendor": {
|
|
5041
5077
|
"type": "string"
|
|
5042
5078
|
},
|
|
5043
|
-
"
|
|
5079
|
+
"name_label": {
|
|
5044
5080
|
"type": "string"
|
|
5045
5081
|
},
|
|
5046
|
-
"
|
|
5082
|
+
"name_description": {
|
|
5047
5083
|
"type": "string"
|
|
5048
5084
|
},
|
|
5049
|
-
"
|
|
5085
|
+
"configuration": {
|
|
5086
|
+
"$ref": "#/components/schemas/Record_string.string_"
|
|
5087
|
+
},
|
|
5088
|
+
"features": {
|
|
5089
|
+
"$ref": "#/components/schemas/Record_string.number_"
|
|
5090
|
+
},
|
|
5091
|
+
"driver_filename": {
|
|
5050
5092
|
"type": "string"
|
|
5051
5093
|
},
|
|
5052
|
-
"
|
|
5053
|
-
"
|
|
5094
|
+
"required_cluster_stack": {
|
|
5095
|
+
"items": {
|
|
5096
|
+
"type": "string"
|
|
5097
|
+
},
|
|
5098
|
+
"type": "array"
|
|
5054
5099
|
},
|
|
5055
|
-
"
|
|
5100
|
+
"supported_image_formats": {
|
|
5101
|
+
"items": {
|
|
5102
|
+
"type": "string"
|
|
5103
|
+
},
|
|
5104
|
+
"type": "array"
|
|
5105
|
+
},
|
|
5106
|
+
"type": {
|
|
5056
5107
|
"type": "string",
|
|
5057
5108
|
"enum": [
|
|
5058
|
-
"
|
|
5059
|
-
"disconnected",
|
|
5060
|
-
"connecting"
|
|
5109
|
+
"SM"
|
|
5061
5110
|
]
|
|
5062
|
-
},
|
|
5063
|
-
"username": {
|
|
5064
|
-
"type": "string"
|
|
5065
5111
|
}
|
|
5066
5112
|
},
|
|
5067
5113
|
"type": "object",
|
|
5068
5114
|
"description": "Make all properties in T optional"
|
|
5069
5115
|
},
|
|
5070
|
-
"
|
|
5116
|
+
"WithHref_Partial_Unbrand_XoSm___": {
|
|
5071
5117
|
"allOf": [
|
|
5072
5118
|
{
|
|
5073
|
-
"$ref": "#/components/schemas/
|
|
5119
|
+
"$ref": "#/components/schemas/Partial_Unbrand_XoSm__"
|
|
5120
|
+
},
|
|
5121
|
+
{
|
|
5122
|
+
"properties": {
|
|
5123
|
+
"href": {
|
|
5124
|
+
"type": "string"
|
|
5125
|
+
}
|
|
5126
|
+
},
|
|
5127
|
+
"required": [
|
|
5128
|
+
"href"
|
|
5129
|
+
],
|
|
5130
|
+
"type": "object"
|
|
5131
|
+
}
|
|
5132
|
+
]
|
|
5133
|
+
},
|
|
5134
|
+
"SendObjects_Partial_Unbrand_XoSm___": {
|
|
5135
|
+
"anyOf": [
|
|
5136
|
+
{
|
|
5137
|
+
"items": {
|
|
5138
|
+
"type": "string"
|
|
5139
|
+
},
|
|
5140
|
+
"type": "array"
|
|
5141
|
+
},
|
|
5142
|
+
{
|
|
5143
|
+
"items": {
|
|
5144
|
+
"$ref": "#/components/schemas/WithHref_Partial_Unbrand_XoSm___"
|
|
5145
|
+
},
|
|
5146
|
+
"type": "array"
|
|
5147
|
+
},
|
|
5148
|
+
{
|
|
5149
|
+
"$ref": "#/components/schemas/NdjsonStream"
|
|
5150
|
+
}
|
|
5151
|
+
]
|
|
5152
|
+
},
|
|
5153
|
+
"Unbrand_XoSm_": {
|
|
5154
|
+
"properties": {
|
|
5155
|
+
"$pool": {
|
|
5156
|
+
"type": "string"
|
|
5157
|
+
},
|
|
5158
|
+
"$poolId": {
|
|
5159
|
+
"type": "string",
|
|
5160
|
+
"deprecated": true
|
|
5161
|
+
},
|
|
5162
|
+
"_xapiRef": {
|
|
5163
|
+
"type": "string"
|
|
5164
|
+
},
|
|
5165
|
+
"uuid": {
|
|
5166
|
+
"type": "string"
|
|
5167
|
+
},
|
|
5168
|
+
"id": {
|
|
5169
|
+
"type": "string"
|
|
5170
|
+
},
|
|
5171
|
+
"SM_type": {
|
|
5172
|
+
"type": "string"
|
|
5173
|
+
},
|
|
5174
|
+
"vendor": {
|
|
5175
|
+
"type": "string"
|
|
5176
|
+
},
|
|
5177
|
+
"name_label": {
|
|
5178
|
+
"type": "string"
|
|
5179
|
+
},
|
|
5180
|
+
"name_description": {
|
|
5181
|
+
"type": "string"
|
|
5182
|
+
},
|
|
5183
|
+
"configuration": {
|
|
5184
|
+
"$ref": "#/components/schemas/Record_string.string_"
|
|
5185
|
+
},
|
|
5186
|
+
"features": {
|
|
5187
|
+
"$ref": "#/components/schemas/Record_string.number_"
|
|
5188
|
+
},
|
|
5189
|
+
"driver_filename": {
|
|
5190
|
+
"type": "string"
|
|
5191
|
+
},
|
|
5192
|
+
"required_cluster_stack": {
|
|
5193
|
+
"items": {
|
|
5194
|
+
"type": "string"
|
|
5195
|
+
},
|
|
5196
|
+
"type": "array"
|
|
5197
|
+
},
|
|
5198
|
+
"supported_image_formats": {
|
|
5199
|
+
"items": {
|
|
5200
|
+
"type": "string"
|
|
5201
|
+
},
|
|
5202
|
+
"type": "array"
|
|
5203
|
+
},
|
|
5204
|
+
"type": {
|
|
5205
|
+
"type": "string",
|
|
5206
|
+
"enum": [
|
|
5207
|
+
"SM"
|
|
5208
|
+
],
|
|
5209
|
+
"nullable": false
|
|
5210
|
+
}
|
|
5211
|
+
},
|
|
5212
|
+
"required": [
|
|
5213
|
+
"$pool",
|
|
5214
|
+
"$poolId",
|
|
5215
|
+
"_xapiRef",
|
|
5216
|
+
"uuid",
|
|
5217
|
+
"id",
|
|
5218
|
+
"SM_type",
|
|
5219
|
+
"vendor",
|
|
5220
|
+
"name_label",
|
|
5221
|
+
"name_description",
|
|
5222
|
+
"configuration",
|
|
5223
|
+
"features",
|
|
5224
|
+
"driver_filename",
|
|
5225
|
+
"required_cluster_stack",
|
|
5226
|
+
"supported_image_formats",
|
|
5227
|
+
"type"
|
|
5228
|
+
],
|
|
5229
|
+
"type": "object"
|
|
5230
|
+
},
|
|
5231
|
+
"Record_string.unknown_": {
|
|
5232
|
+
"properties": {},
|
|
5233
|
+
"type": "object",
|
|
5234
|
+
"description": "Construct a type with a set of properties K of type T"
|
|
5235
|
+
},
|
|
5236
|
+
"Partial_Unbrand_XoServer__": {
|
|
5237
|
+
"properties": {
|
|
5238
|
+
"allowUnauthorized": {
|
|
5239
|
+
"type": "boolean"
|
|
5240
|
+
},
|
|
5241
|
+
"enabled": {
|
|
5242
|
+
"type": "boolean"
|
|
5243
|
+
},
|
|
5244
|
+
"error": {
|
|
5245
|
+
"$ref": "#/components/schemas/Record_string.unknown_"
|
|
5246
|
+
},
|
|
5247
|
+
"host": {
|
|
5248
|
+
"type": "string"
|
|
5249
|
+
},
|
|
5250
|
+
"httpProxy": {
|
|
5251
|
+
"type": "string"
|
|
5252
|
+
},
|
|
5253
|
+
"id": {
|
|
5254
|
+
"type": "string"
|
|
5255
|
+
},
|
|
5256
|
+
"label": {
|
|
5257
|
+
"type": "string"
|
|
5258
|
+
},
|
|
5259
|
+
"master": {
|
|
5260
|
+
"type": "string"
|
|
5261
|
+
},
|
|
5262
|
+
"poolId": {
|
|
5263
|
+
"type": "string"
|
|
5264
|
+
},
|
|
5265
|
+
"poolNameDescription": {
|
|
5266
|
+
"type": "string"
|
|
5267
|
+
},
|
|
5268
|
+
"poolNameLabel": {
|
|
5269
|
+
"type": "string"
|
|
5270
|
+
},
|
|
5271
|
+
"readOnly": {
|
|
5272
|
+
"type": "boolean"
|
|
5273
|
+
},
|
|
5274
|
+
"status": {
|
|
5275
|
+
"type": "string",
|
|
5276
|
+
"enum": [
|
|
5277
|
+
"connected",
|
|
5278
|
+
"disconnected",
|
|
5279
|
+
"connecting"
|
|
5280
|
+
]
|
|
5281
|
+
},
|
|
5282
|
+
"username": {
|
|
5283
|
+
"type": "string"
|
|
5284
|
+
}
|
|
5285
|
+
},
|
|
5286
|
+
"type": "object",
|
|
5287
|
+
"description": "Make all properties in T optional"
|
|
5288
|
+
},
|
|
5289
|
+
"WithHref_Partial_Unbrand_XoServer___": {
|
|
5290
|
+
"allOf": [
|
|
5291
|
+
{
|
|
5292
|
+
"$ref": "#/components/schemas/Partial_Unbrand_XoServer__"
|
|
5074
5293
|
},
|
|
5075
5294
|
{
|
|
5076
5295
|
"properties": {
|
|
@@ -5582,72 +5801,395 @@
|
|
|
5582
5801
|
"type": "object",
|
|
5583
5802
|
"additionalProperties": false
|
|
5584
5803
|
},
|
|
5585
|
-
"
|
|
5586
|
-
"allOf": [
|
|
5587
|
-
{
|
|
5588
|
-
"type": "string"
|
|
5589
|
-
},
|
|
5590
|
-
{
|
|
5591
|
-
"properties": {
|
|
5592
|
-
"undefined": {
|
|
5593
|
-
"type": "string",
|
|
5594
|
-
"enum": [
|
|
5595
|
-
"PIF"
|
|
5596
|
-
],
|
|
5597
|
-
"nullable": false
|
|
5598
|
-
}
|
|
5599
|
-
},
|
|
5600
|
-
"required": [
|
|
5601
|
-
null
|
|
5602
|
-
],
|
|
5603
|
-
"type": "object"
|
|
5604
|
-
}
|
|
5605
|
-
]
|
|
5606
|
-
},
|
|
5607
|
-
"IPV6_CONFIGURATION_MODE": {
|
|
5608
|
-
"type": "string",
|
|
5609
|
-
"enum": [
|
|
5610
|
-
"DHCP",
|
|
5611
|
-
"Autoconf",
|
|
5612
|
-
"None",
|
|
5613
|
-
"Static"
|
|
5614
|
-
]
|
|
5615
|
-
},
|
|
5616
|
-
"IP_CONFIGURATION_MODE": {
|
|
5617
|
-
"type": "string",
|
|
5618
|
-
"enum": [
|
|
5619
|
-
"DHCP",
|
|
5620
|
-
"None",
|
|
5621
|
-
"Static"
|
|
5622
|
-
]
|
|
5623
|
-
},
|
|
5624
|
-
"PRIMARY_ADDRESS_TYPE": {
|
|
5625
|
-
"type": "string",
|
|
5626
|
-
"enum": [
|
|
5627
|
-
"IPv4",
|
|
5628
|
-
"IPv6"
|
|
5629
|
-
]
|
|
5630
|
-
},
|
|
5631
|
-
"Partial_UnbrandedXoPif_": {
|
|
5804
|
+
"Unbrand_CreateVmBody_": {
|
|
5632
5805
|
"properties": {
|
|
5633
|
-
"
|
|
5806
|
+
"name_label": {
|
|
5634
5807
|
"type": "string"
|
|
5635
5808
|
},
|
|
5636
|
-
"
|
|
5637
|
-
"type": "
|
|
5638
|
-
"deprecated": true
|
|
5809
|
+
"clone": {
|
|
5810
|
+
"type": "boolean"
|
|
5639
5811
|
},
|
|
5640
|
-
"
|
|
5641
|
-
"
|
|
5812
|
+
"vifs": {
|
|
5813
|
+
"items": {
|
|
5814
|
+
"anyOf": [
|
|
5815
|
+
{
|
|
5816
|
+
"properties": {
|
|
5817
|
+
"network": {
|
|
5818
|
+
"type": "string"
|
|
5819
|
+
},
|
|
5820
|
+
"mtu": {
|
|
5821
|
+
"type": "number",
|
|
5822
|
+
"format": "double"
|
|
5823
|
+
},
|
|
5824
|
+
"mac": {
|
|
5825
|
+
"type": "string"
|
|
5826
|
+
},
|
|
5827
|
+
"ipv6_allowed": {
|
|
5828
|
+
"items": {
|
|
5829
|
+
"type": "string"
|
|
5830
|
+
},
|
|
5831
|
+
"type": "array"
|
|
5832
|
+
},
|
|
5833
|
+
"ipv4_allowed": {
|
|
5834
|
+
"items": {
|
|
5835
|
+
"type": "string"
|
|
5836
|
+
},
|
|
5837
|
+
"type": "array"
|
|
5838
|
+
},
|
|
5839
|
+
"device": {
|
|
5840
|
+
"type": "string"
|
|
5841
|
+
}
|
|
5842
|
+
},
|
|
5843
|
+
"required": [
|
|
5844
|
+
"network"
|
|
5845
|
+
],
|
|
5846
|
+
"type": "object"
|
|
5847
|
+
},
|
|
5848
|
+
{
|
|
5849
|
+
"properties": {
|
|
5850
|
+
"device": {
|
|
5851
|
+
"type": "string"
|
|
5852
|
+
},
|
|
5853
|
+
"destroy": {
|
|
5854
|
+
"type": "boolean",
|
|
5855
|
+
"enum": [
|
|
5856
|
+
true
|
|
5857
|
+
],
|
|
5858
|
+
"nullable": false
|
|
5859
|
+
}
|
|
5860
|
+
},
|
|
5861
|
+
"required": [
|
|
5862
|
+
"device",
|
|
5863
|
+
"destroy"
|
|
5864
|
+
],
|
|
5865
|
+
"type": "object"
|
|
5866
|
+
}
|
|
5867
|
+
]
|
|
5868
|
+
},
|
|
5869
|
+
"type": "array"
|
|
5642
5870
|
},
|
|
5643
|
-
"
|
|
5871
|
+
"vgpuType": {
|
|
5644
5872
|
"type": "string"
|
|
5645
5873
|
},
|
|
5646
|
-
"
|
|
5874
|
+
"gpuGroup": {
|
|
5647
5875
|
"type": "string"
|
|
5648
5876
|
},
|
|
5649
|
-
"
|
|
5650
|
-
"type": "
|
|
5877
|
+
"copyHostBiosStrings": {
|
|
5878
|
+
"type": "boolean"
|
|
5879
|
+
},
|
|
5880
|
+
"template": {
|
|
5881
|
+
"type": "string",
|
|
5882
|
+
"description": "template UUID"
|
|
5883
|
+
},
|
|
5884
|
+
"affinity": {
|
|
5885
|
+
"type": "string"
|
|
5886
|
+
},
|
|
5887
|
+
"vdis": {
|
|
5888
|
+
"items": {
|
|
5889
|
+
"anyOf": [
|
|
5890
|
+
{
|
|
5891
|
+
"properties": {
|
|
5892
|
+
"name_description": {
|
|
5893
|
+
"type": "string"
|
|
5894
|
+
},
|
|
5895
|
+
"sr": {
|
|
5896
|
+
"type": "string"
|
|
5897
|
+
},
|
|
5898
|
+
"size": {
|
|
5899
|
+
"type": "number",
|
|
5900
|
+
"format": "double"
|
|
5901
|
+
},
|
|
5902
|
+
"name_label": {
|
|
5903
|
+
"type": "string"
|
|
5904
|
+
}
|
|
5905
|
+
},
|
|
5906
|
+
"required": [
|
|
5907
|
+
"size",
|
|
5908
|
+
"name_label"
|
|
5909
|
+
],
|
|
5910
|
+
"type": "object"
|
|
5911
|
+
},
|
|
5912
|
+
{
|
|
5913
|
+
"properties": {
|
|
5914
|
+
"name_description": {
|
|
5915
|
+
"type": "string"
|
|
5916
|
+
},
|
|
5917
|
+
"sr": {
|
|
5918
|
+
"type": "string"
|
|
5919
|
+
},
|
|
5920
|
+
"size": {
|
|
5921
|
+
"type": "number",
|
|
5922
|
+
"format": "double"
|
|
5923
|
+
},
|
|
5924
|
+
"name_label": {
|
|
5925
|
+
"type": "string"
|
|
5926
|
+
},
|
|
5927
|
+
"userdevice": {
|
|
5928
|
+
"type": "string"
|
|
5929
|
+
}
|
|
5930
|
+
},
|
|
5931
|
+
"required": [
|
|
5932
|
+
"userdevice"
|
|
5933
|
+
],
|
|
5934
|
+
"type": "object"
|
|
5935
|
+
},
|
|
5936
|
+
{
|
|
5937
|
+
"properties": {
|
|
5938
|
+
"userdervice": {
|
|
5939
|
+
"type": "string"
|
|
5940
|
+
},
|
|
5941
|
+
"destroy": {
|
|
5942
|
+
"type": "boolean",
|
|
5943
|
+
"enum": [
|
|
5944
|
+
true
|
|
5945
|
+
],
|
|
5946
|
+
"nullable": false
|
|
5947
|
+
}
|
|
5948
|
+
},
|
|
5949
|
+
"required": [
|
|
5950
|
+
"userdervice",
|
|
5951
|
+
"destroy"
|
|
5952
|
+
],
|
|
5953
|
+
"type": "object"
|
|
5954
|
+
}
|
|
5955
|
+
]
|
|
5956
|
+
},
|
|
5957
|
+
"type": "array"
|
|
5958
|
+
},
|
|
5959
|
+
"install": {
|
|
5960
|
+
"properties": {
|
|
5961
|
+
"repository": {
|
|
5962
|
+
"type": "string"
|
|
5963
|
+
},
|
|
5964
|
+
"method": {
|
|
5965
|
+
"type": "string",
|
|
5966
|
+
"enum": [
|
|
5967
|
+
"network",
|
|
5968
|
+
"cdrom"
|
|
5969
|
+
]
|
|
5970
|
+
}
|
|
5971
|
+
},
|
|
5972
|
+
"required": [
|
|
5973
|
+
"repository",
|
|
5974
|
+
"method"
|
|
5975
|
+
],
|
|
5976
|
+
"type": "object"
|
|
5977
|
+
},
|
|
5978
|
+
"cloud_config": {
|
|
5979
|
+
"type": "string"
|
|
5980
|
+
},
|
|
5981
|
+
"network_config": {
|
|
5982
|
+
"type": "string"
|
|
5983
|
+
},
|
|
5984
|
+
"boot": {
|
|
5985
|
+
"type": "boolean"
|
|
5986
|
+
},
|
|
5987
|
+
"destroy_cloud_config_vdi": {
|
|
5988
|
+
"type": "boolean"
|
|
5989
|
+
}
|
|
5990
|
+
},
|
|
5991
|
+
"required": [
|
|
5992
|
+
"name_label",
|
|
5993
|
+
"template"
|
|
5994
|
+
],
|
|
5995
|
+
"type": "object"
|
|
5996
|
+
},
|
|
5997
|
+
"XapiHostStatsRaw": {
|
|
5998
|
+
"properties": {
|
|
5999
|
+
"pifs": {
|
|
6000
|
+
"properties": {
|
|
6001
|
+
"tx": {
|
|
6002
|
+
"$ref": "#/components/schemas/RecordStatValues"
|
|
6003
|
+
},
|
|
6004
|
+
"rx": {
|
|
6005
|
+
"$ref": "#/components/schemas/RecordStatValues"
|
|
6006
|
+
}
|
|
6007
|
+
},
|
|
6008
|
+
"required": [
|
|
6009
|
+
"tx",
|
|
6010
|
+
"rx"
|
|
6011
|
+
],
|
|
6012
|
+
"type": "object"
|
|
6013
|
+
},
|
|
6014
|
+
"memoryFree": {
|
|
6015
|
+
"$ref": "#/components/schemas/StatValues"
|
|
6016
|
+
},
|
|
6017
|
+
"memory": {
|
|
6018
|
+
"$ref": "#/components/schemas/StatValues"
|
|
6019
|
+
},
|
|
6020
|
+
"load": {
|
|
6021
|
+
"$ref": "#/components/schemas/StatValues"
|
|
6022
|
+
},
|
|
6023
|
+
"latency": {
|
|
6024
|
+
"properties": {
|
|
6025
|
+
"w": {
|
|
6026
|
+
"$ref": "#/components/schemas/RecordStatValues"
|
|
6027
|
+
},
|
|
6028
|
+
"r": {
|
|
6029
|
+
"$ref": "#/components/schemas/RecordStatValues"
|
|
6030
|
+
}
|
|
6031
|
+
},
|
|
6032
|
+
"required": [
|
|
6033
|
+
"w",
|
|
6034
|
+
"r"
|
|
6035
|
+
],
|
|
6036
|
+
"type": "object"
|
|
6037
|
+
},
|
|
6038
|
+
"iowait": {
|
|
6039
|
+
"$ref": "#/components/schemas/RecordStatValues"
|
|
6040
|
+
},
|
|
6041
|
+
"iops": {
|
|
6042
|
+
"properties": {
|
|
6043
|
+
"w": {
|
|
6044
|
+
"$ref": "#/components/schemas/RecordStatValues"
|
|
6045
|
+
},
|
|
6046
|
+
"r": {
|
|
6047
|
+
"$ref": "#/components/schemas/RecordStatValues"
|
|
6048
|
+
}
|
|
6049
|
+
},
|
|
6050
|
+
"required": [
|
|
6051
|
+
"w",
|
|
6052
|
+
"r"
|
|
6053
|
+
],
|
|
6054
|
+
"type": "object"
|
|
6055
|
+
},
|
|
6056
|
+
"ioThroughput": {
|
|
6057
|
+
"properties": {
|
|
6058
|
+
"w": {
|
|
6059
|
+
"$ref": "#/components/schemas/RecordStatValues"
|
|
6060
|
+
},
|
|
6061
|
+
"r": {
|
|
6062
|
+
"$ref": "#/components/schemas/RecordStatValues"
|
|
6063
|
+
}
|
|
6064
|
+
},
|
|
6065
|
+
"required": [
|
|
6066
|
+
"w",
|
|
6067
|
+
"r"
|
|
6068
|
+
],
|
|
6069
|
+
"type": "object"
|
|
6070
|
+
},
|
|
6071
|
+
"cpus": {
|
|
6072
|
+
"$ref": "#/components/schemas/RecordStatValues"
|
|
6073
|
+
}
|
|
6074
|
+
},
|
|
6075
|
+
"type": "object"
|
|
6076
|
+
},
|
|
6077
|
+
"XapiStatsResponse_XapiHostStatsRaw_": {
|
|
6078
|
+
"properties": {
|
|
6079
|
+
"stats": {
|
|
6080
|
+
"$ref": "#/components/schemas/XapiHostStatsRaw"
|
|
6081
|
+
},
|
|
6082
|
+
"interval": {
|
|
6083
|
+
"type": "number",
|
|
6084
|
+
"format": "double"
|
|
6085
|
+
},
|
|
6086
|
+
"endTimestamp": {
|
|
6087
|
+
"type": "number",
|
|
6088
|
+
"format": "double"
|
|
6089
|
+
}
|
|
6090
|
+
},
|
|
6091
|
+
"required": [
|
|
6092
|
+
"stats",
|
|
6093
|
+
"interval",
|
|
6094
|
+
"endTimestamp"
|
|
6095
|
+
],
|
|
6096
|
+
"type": "object"
|
|
6097
|
+
},
|
|
6098
|
+
"XapiHostStats": {
|
|
6099
|
+
"$ref": "#/components/schemas/XapiStatsResponse_XapiHostStatsRaw_"
|
|
6100
|
+
},
|
|
6101
|
+
"Record_XoHost-at-id.XapiHostStats-or-_error-Record_string.unknown___": {
|
|
6102
|
+
"properties": {},
|
|
6103
|
+
"additionalProperties": {
|
|
6104
|
+
"anyOf": [
|
|
6105
|
+
{
|
|
6106
|
+
"$ref": "#/components/schemas/XapiHostStats"
|
|
6107
|
+
},
|
|
6108
|
+
{
|
|
6109
|
+
"properties": {
|
|
6110
|
+
"error": {
|
|
6111
|
+
"$ref": "#/components/schemas/Record_string.unknown_"
|
|
6112
|
+
}
|
|
6113
|
+
},
|
|
6114
|
+
"required": [
|
|
6115
|
+
"error"
|
|
6116
|
+
],
|
|
6117
|
+
"type": "object"
|
|
6118
|
+
}
|
|
6119
|
+
]
|
|
6120
|
+
},
|
|
6121
|
+
"type": "object",
|
|
6122
|
+
"description": "Construct a type with a set of properties K of type T"
|
|
6123
|
+
},
|
|
6124
|
+
"XapiPoolStats": {
|
|
6125
|
+
"$ref": "#/components/schemas/Record_XoHost-at-id.XapiHostStats-or-_error-Record_string.unknown___"
|
|
6126
|
+
},
|
|
6127
|
+
"Branded_PIF_": {
|
|
6128
|
+
"allOf": [
|
|
6129
|
+
{
|
|
6130
|
+
"type": "string"
|
|
6131
|
+
},
|
|
6132
|
+
{
|
|
6133
|
+
"properties": {
|
|
6134
|
+
"undefined": {
|
|
6135
|
+
"type": "string",
|
|
6136
|
+
"enum": [
|
|
6137
|
+
"PIF"
|
|
6138
|
+
],
|
|
6139
|
+
"nullable": false
|
|
6140
|
+
}
|
|
6141
|
+
},
|
|
6142
|
+
"required": [
|
|
6143
|
+
null
|
|
6144
|
+
],
|
|
6145
|
+
"type": "object"
|
|
6146
|
+
}
|
|
6147
|
+
]
|
|
6148
|
+
},
|
|
6149
|
+
"IPV6_CONFIGURATION_MODE": {
|
|
6150
|
+
"type": "string",
|
|
6151
|
+
"enum": [
|
|
6152
|
+
"DHCP",
|
|
6153
|
+
"Autoconf",
|
|
6154
|
+
"None",
|
|
6155
|
+
"Static"
|
|
6156
|
+
]
|
|
6157
|
+
},
|
|
6158
|
+
"IP_CONFIGURATION_MODE": {
|
|
6159
|
+
"type": "string",
|
|
6160
|
+
"enum": [
|
|
6161
|
+
"DHCP",
|
|
6162
|
+
"None",
|
|
6163
|
+
"Static"
|
|
6164
|
+
]
|
|
6165
|
+
},
|
|
6166
|
+
"PRIMARY_ADDRESS_TYPE": {
|
|
6167
|
+
"type": "string",
|
|
6168
|
+
"enum": [
|
|
6169
|
+
"IPv4",
|
|
6170
|
+
"IPv6"
|
|
6171
|
+
]
|
|
6172
|
+
},
|
|
6173
|
+
"Partial_UnbrandedXoPif_": {
|
|
6174
|
+
"properties": {
|
|
6175
|
+
"$pool": {
|
|
6176
|
+
"type": "string"
|
|
6177
|
+
},
|
|
6178
|
+
"$poolId": {
|
|
6179
|
+
"type": "string",
|
|
6180
|
+
"deprecated": true
|
|
6181
|
+
},
|
|
6182
|
+
"_xapiRef": {
|
|
6183
|
+
"type": "string"
|
|
6184
|
+
},
|
|
6185
|
+
"uuid": {
|
|
6186
|
+
"type": "string"
|
|
6187
|
+
},
|
|
6188
|
+
"$host": {
|
|
6189
|
+
"type": "string"
|
|
6190
|
+
},
|
|
6191
|
+
"$network": {
|
|
6192
|
+
"type": "string"
|
|
5651
6193
|
},
|
|
5652
6194
|
"attached": {
|
|
5653
6195
|
"type": "boolean"
|
|
@@ -6539,20 +7081,21 @@
|
|
|
6539
7081
|
"VM",
|
|
6540
7082
|
"VM-snapshot",
|
|
6541
7083
|
"SR",
|
|
6542
|
-
"
|
|
6543
|
-
"message",
|
|
6544
|
-
"gpuGroup",
|
|
6545
|
-
"network",
|
|
6546
|
-
"PCI",
|
|
6547
|
-
"PGPU",
|
|
6548
|
-
"PIF",
|
|
7084
|
+
"VM-template",
|
|
6549
7085
|
"VDI",
|
|
6550
|
-
"
|
|
7086
|
+
"VM-controller",
|
|
7087
|
+
"network",
|
|
6551
7088
|
"VDI-unmanaged",
|
|
7089
|
+
"VDI-snapshot",
|
|
7090
|
+
"unknown",
|
|
7091
|
+
"SM",
|
|
6552
7092
|
"vgpuType",
|
|
6553
|
-
"
|
|
6554
|
-
"
|
|
6555
|
-
"
|
|
7093
|
+
"gpuGroup",
|
|
7094
|
+
"PIF",
|
|
7095
|
+
"PGPU",
|
|
7096
|
+
"PCI",
|
|
7097
|
+
"message",
|
|
7098
|
+
"vgpu"
|
|
6556
7099
|
]
|
|
6557
7100
|
}
|
|
6558
7101
|
},
|
|
@@ -6669,20 +7212,21 @@
|
|
|
6669
7212
|
"VM",
|
|
6670
7213
|
"VM-snapshot",
|
|
6671
7214
|
"SR",
|
|
6672
|
-
"
|
|
6673
|
-
"
|
|
6674
|
-
"
|
|
7215
|
+
"VM-template",
|
|
7216
|
+
"VDI",
|
|
7217
|
+
"VM-controller",
|
|
6675
7218
|
"network",
|
|
6676
|
-
"PCI",
|
|
6677
|
-
"PGPU",
|
|
6678
|
-
"PIF",
|
|
6679
|
-
"VDI",
|
|
6680
|
-
"VDI-snapshot",
|
|
6681
7219
|
"VDI-unmanaged",
|
|
7220
|
+
"VDI-snapshot",
|
|
7221
|
+
"unknown",
|
|
7222
|
+
"SM",
|
|
6682
7223
|
"vgpuType",
|
|
6683
|
-
"
|
|
6684
|
-
"
|
|
6685
|
-
"
|
|
7224
|
+
"gpuGroup",
|
|
7225
|
+
"PIF",
|
|
7226
|
+
"PGPU",
|
|
7227
|
+
"PCI",
|
|
7228
|
+
"message",
|
|
7229
|
+
"vgpu"
|
|
6686
7230
|
]
|
|
6687
7231
|
}
|
|
6688
7232
|
},
|
|
@@ -7607,119 +8151,6 @@
|
|
|
7607
8151
|
],
|
|
7608
8152
|
"type": "object"
|
|
7609
8153
|
},
|
|
7610
|
-
"XapiStatsResponse__cpus_63_-Record_string.number-Array_--ioThroughput_63__58__r-Record_string.number-Array_--w-Record_string.number-Array__--iops_63__58__r-Record_string.number-Array_--w-Record_string.number-Array__--iowait_63_-Record_string.number-Array_--latency_63__58__r-Record_string.number-Array_--w-Record_string.number-Array__--load_63_-number-Array--memory_63_-number-Array--memoryFree_63_-number-Array--pifs_63__58__rx-Record_string.number-Array_--tx-Record_string.number-Array____": {
|
|
7611
|
-
"properties": {
|
|
7612
|
-
"stats": {
|
|
7613
|
-
"properties": {
|
|
7614
|
-
"pifs": {
|
|
7615
|
-
"properties": {
|
|
7616
|
-
"tx": {
|
|
7617
|
-
"$ref": "#/components/schemas/Record_string.number-Array_"
|
|
7618
|
-
},
|
|
7619
|
-
"rx": {
|
|
7620
|
-
"$ref": "#/components/schemas/Record_string.number-Array_"
|
|
7621
|
-
}
|
|
7622
|
-
},
|
|
7623
|
-
"required": [
|
|
7624
|
-
"tx",
|
|
7625
|
-
"rx"
|
|
7626
|
-
],
|
|
7627
|
-
"type": "object"
|
|
7628
|
-
},
|
|
7629
|
-
"memoryFree": {
|
|
7630
|
-
"items": {
|
|
7631
|
-
"type": "number",
|
|
7632
|
-
"format": "double"
|
|
7633
|
-
},
|
|
7634
|
-
"type": "array"
|
|
7635
|
-
},
|
|
7636
|
-
"memory": {
|
|
7637
|
-
"items": {
|
|
7638
|
-
"type": "number",
|
|
7639
|
-
"format": "double"
|
|
7640
|
-
},
|
|
7641
|
-
"type": "array"
|
|
7642
|
-
},
|
|
7643
|
-
"load": {
|
|
7644
|
-
"items": {
|
|
7645
|
-
"type": "number",
|
|
7646
|
-
"format": "double"
|
|
7647
|
-
},
|
|
7648
|
-
"type": "array"
|
|
7649
|
-
},
|
|
7650
|
-
"latency": {
|
|
7651
|
-
"properties": {
|
|
7652
|
-
"w": {
|
|
7653
|
-
"$ref": "#/components/schemas/Record_string.number-Array_"
|
|
7654
|
-
},
|
|
7655
|
-
"r": {
|
|
7656
|
-
"$ref": "#/components/schemas/Record_string.number-Array_"
|
|
7657
|
-
}
|
|
7658
|
-
},
|
|
7659
|
-
"required": [
|
|
7660
|
-
"w",
|
|
7661
|
-
"r"
|
|
7662
|
-
],
|
|
7663
|
-
"type": "object"
|
|
7664
|
-
},
|
|
7665
|
-
"iowait": {
|
|
7666
|
-
"$ref": "#/components/schemas/Record_string.number-Array_"
|
|
7667
|
-
},
|
|
7668
|
-
"iops": {
|
|
7669
|
-
"properties": {
|
|
7670
|
-
"w": {
|
|
7671
|
-
"$ref": "#/components/schemas/Record_string.number-Array_"
|
|
7672
|
-
},
|
|
7673
|
-
"r": {
|
|
7674
|
-
"$ref": "#/components/schemas/Record_string.number-Array_"
|
|
7675
|
-
}
|
|
7676
|
-
},
|
|
7677
|
-
"required": [
|
|
7678
|
-
"w",
|
|
7679
|
-
"r"
|
|
7680
|
-
],
|
|
7681
|
-
"type": "object"
|
|
7682
|
-
},
|
|
7683
|
-
"ioThroughput": {
|
|
7684
|
-
"properties": {
|
|
7685
|
-
"w": {
|
|
7686
|
-
"$ref": "#/components/schemas/Record_string.number-Array_"
|
|
7687
|
-
},
|
|
7688
|
-
"r": {
|
|
7689
|
-
"$ref": "#/components/schemas/Record_string.number-Array_"
|
|
7690
|
-
}
|
|
7691
|
-
},
|
|
7692
|
-
"required": [
|
|
7693
|
-
"w",
|
|
7694
|
-
"r"
|
|
7695
|
-
],
|
|
7696
|
-
"type": "object"
|
|
7697
|
-
},
|
|
7698
|
-
"cpus": {
|
|
7699
|
-
"$ref": "#/components/schemas/Record_string.number-Array_"
|
|
7700
|
-
}
|
|
7701
|
-
},
|
|
7702
|
-
"type": "object"
|
|
7703
|
-
},
|
|
7704
|
-
"interval": {
|
|
7705
|
-
"type": "number",
|
|
7706
|
-
"format": "double"
|
|
7707
|
-
},
|
|
7708
|
-
"endTimestamp": {
|
|
7709
|
-
"type": "number",
|
|
7710
|
-
"format": "double"
|
|
7711
|
-
}
|
|
7712
|
-
},
|
|
7713
|
-
"required": [
|
|
7714
|
-
"stats",
|
|
7715
|
-
"interval",
|
|
7716
|
-
"endTimestamp"
|
|
7717
|
-
],
|
|
7718
|
-
"type": "object"
|
|
7719
|
-
},
|
|
7720
|
-
"XapiHostStats": {
|
|
7721
|
-
"$ref": "#/components/schemas/XapiStatsResponse__cpus_63_-Record_string.number-Array_--ioThroughput_63__58__r-Record_string.number-Array_--w-Record_string.number-Array__--iops_63__58__r-Record_string.number-Array_--w-Record_string.number-Array__--iowait_63_-Record_string.number-Array_--latency_63__58__r-Record_string.number-Array_--w-Record_string.number-Array__--load_63_-number-Array--memory_63_-number-Array--memoryFree_63_-number-Array--pifs_63__58__rx-Record_string.number-Array_--tx-Record_string.number-Array____"
|
|
7722
|
-
},
|
|
7723
8154
|
"Partial_Unbrand_XoGroup__": {
|
|
7724
8155
|
"properties": {
|
|
7725
8156
|
"id": {
|
|
@@ -7820,7 +8251,7 @@
|
|
|
7820
8251
|
},
|
|
7821
8252
|
"info": {
|
|
7822
8253
|
"title": "@xen-orchestra/rest-api",
|
|
7823
|
-
"version": "0.
|
|
8254
|
+
"version": "0.11.0",
|
|
7824
8255
|
"description": "REST API to manage your XOA",
|
|
7825
8256
|
"license": {
|
|
7826
8257
|
"name": "AGPL-3.0-or-later"
|
|
@@ -7830,6 +8261,11 @@
|
|
|
7830
8261
|
"url": "https://vates.fr"
|
|
7831
8262
|
}
|
|
7832
8263
|
},
|
|
8264
|
+
"servers": [
|
|
8265
|
+
{
|
|
8266
|
+
"url": "/rest/v0"
|
|
8267
|
+
}
|
|
8268
|
+
],
|
|
7833
8269
|
"paths": {
|
|
7834
8270
|
"/dashboard": {
|
|
7835
8271
|
"get": {
|
|
@@ -7922,7 +8358,16 @@
|
|
|
7922
8358
|
"*": []
|
|
7923
8359
|
}
|
|
7924
8360
|
],
|
|
7925
|
-
"parameters": [
|
|
8361
|
+
"parameters": [
|
|
8362
|
+
{
|
|
8363
|
+
"in": "query",
|
|
8364
|
+
"name": "ndjson",
|
|
8365
|
+
"required": false,
|
|
8366
|
+
"schema": {
|
|
8367
|
+
"type": "boolean"
|
|
8368
|
+
}
|
|
8369
|
+
}
|
|
8370
|
+
]
|
|
7926
8371
|
}
|
|
7927
8372
|
},
|
|
7928
8373
|
"/vms": {
|
|
@@ -9551,7 +9996,14 @@
|
|
|
9551
9996
|
"description": "Action executed asynchronously",
|
|
9552
9997
|
"content": {
|
|
9553
9998
|
"text/plain": {
|
|
9554
|
-
"schema": {
|
|
9999
|
+
"schema": {
|
|
10000
|
+
"anyOf": [
|
|
10001
|
+
{
|
|
10002
|
+
"type": "string"
|
|
10003
|
+
},
|
|
10004
|
+
{}
|
|
10005
|
+
]
|
|
10006
|
+
},
|
|
9555
10007
|
"examples": {
|
|
9556
10008
|
"Example 1": {
|
|
9557
10009
|
"value": "/rest/v0/tasks/0m7kl0j9l"
|
|
@@ -9573,6 +10025,7 @@
|
|
|
9573
10025
|
"description": "Internal server error, XenServer/XCP-ng error"
|
|
9574
10026
|
}
|
|
9575
10027
|
},
|
|
10028
|
+
"description": "The VM must be halted",
|
|
9576
10029
|
"tags": [
|
|
9577
10030
|
"vms"
|
|
9578
10031
|
],
|
|
@@ -9599,7 +10052,25 @@
|
|
|
9599
10052
|
"type": "boolean"
|
|
9600
10053
|
}
|
|
9601
10054
|
}
|
|
9602
|
-
]
|
|
10055
|
+
],
|
|
10056
|
+
"requestBody": {
|
|
10057
|
+
"required": false,
|
|
10058
|
+
"content": {
|
|
10059
|
+
"application/json": {
|
|
10060
|
+
"schema": {
|
|
10061
|
+
"properties": {
|
|
10062
|
+
"hostId": {
|
|
10063
|
+
"type": "string"
|
|
10064
|
+
}
|
|
10065
|
+
},
|
|
10066
|
+
"type": "object"
|
|
10067
|
+
},
|
|
10068
|
+
"example": {
|
|
10069
|
+
"hostId": "b61a5c92-700e-4966-a13b-00633f03eea8"
|
|
10070
|
+
}
|
|
10071
|
+
}
|
|
10072
|
+
}
|
|
10073
|
+
}
|
|
9603
10074
|
}
|
|
9604
10075
|
},
|
|
9605
10076
|
"/vms/{id}/actions/clean_shutdown": {
|
|
@@ -9859,32 +10330,19 @@
|
|
|
9859
10330
|
]
|
|
9860
10331
|
}
|
|
9861
10332
|
},
|
|
9862
|
-
"/vms/{id}/actions/
|
|
10333
|
+
"/vms/{id}/actions/pause": {
|
|
9863
10334
|
"post": {
|
|
9864
|
-
"operationId": "
|
|
10335
|
+
"operationId": "PauseVm",
|
|
9865
10336
|
"responses": {
|
|
9866
|
-
"201": {
|
|
9867
|
-
"description": "Snapshot created"
|
|
9868
|
-
},
|
|
9869
10337
|
"202": {
|
|
9870
10338
|
"description": "Action executed asynchronously",
|
|
9871
10339
|
"content": {
|
|
9872
10340
|
"text/plain": {
|
|
9873
10341
|
"schema": {
|
|
9874
10342
|
"anyOf": [
|
|
10343
|
+
{},
|
|
9875
10344
|
{
|
|
9876
10345
|
"type": "string"
|
|
9877
|
-
},
|
|
9878
|
-
{
|
|
9879
|
-
"properties": {
|
|
9880
|
-
"id": {
|
|
9881
|
-
"type": "string"
|
|
9882
|
-
}
|
|
9883
|
-
},
|
|
9884
|
-
"required": [
|
|
9885
|
-
"id"
|
|
9886
|
-
],
|
|
9887
|
-
"type": "object"
|
|
9888
10346
|
}
|
|
9889
10347
|
]
|
|
9890
10348
|
},
|
|
@@ -9896,6 +10354,9 @@
|
|
|
9896
10354
|
}
|
|
9897
10355
|
}
|
|
9898
10356
|
},
|
|
10357
|
+
"204": {
|
|
10358
|
+
"description": "No content"
|
|
10359
|
+
},
|
|
9899
10360
|
"401": {
|
|
9900
10361
|
"description": "Authentication required"
|
|
9901
10362
|
},
|
|
@@ -9906,6 +10367,7 @@
|
|
|
9906
10367
|
"description": "Internal server error, XenServer/XCP-ng error"
|
|
9907
10368
|
}
|
|
9908
10369
|
},
|
|
10370
|
+
"description": "The VM must be running",
|
|
9909
10371
|
"tags": [
|
|
9910
10372
|
"vms"
|
|
9911
10373
|
],
|
|
@@ -9932,69 +10394,47 @@
|
|
|
9932
10394
|
"type": "boolean"
|
|
9933
10395
|
}
|
|
9934
10396
|
}
|
|
9935
|
-
]
|
|
9936
|
-
"requestBody": {
|
|
9937
|
-
"required": false,
|
|
9938
|
-
"content": {
|
|
9939
|
-
"application/json": {
|
|
9940
|
-
"schema": {
|
|
9941
|
-
"properties": {
|
|
9942
|
-
"name_label": {
|
|
9943
|
-
"type": "string"
|
|
9944
|
-
}
|
|
9945
|
-
},
|
|
9946
|
-
"type": "object"
|
|
9947
|
-
},
|
|
9948
|
-
"example": {
|
|
9949
|
-
"name_label": "my_awesome_snapshot"
|
|
9950
|
-
}
|
|
9951
|
-
}
|
|
9952
|
-
}
|
|
9953
|
-
}
|
|
10397
|
+
]
|
|
9954
10398
|
}
|
|
9955
10399
|
},
|
|
9956
|
-
"/
|
|
9957
|
-
"
|
|
9958
|
-
"operationId": "
|
|
10400
|
+
"/vms/{id}/actions/suspend": {
|
|
10401
|
+
"post": {
|
|
10402
|
+
"operationId": "SuspendVm",
|
|
9959
10403
|
"responses": {
|
|
9960
|
-
"
|
|
9961
|
-
"description": "
|
|
10404
|
+
"202": {
|
|
10405
|
+
"description": "Action executed asynchronously",
|
|
9962
10406
|
"content": {
|
|
9963
|
-
"
|
|
10407
|
+
"text/plain": {
|
|
9964
10408
|
"schema": {
|
|
9965
|
-
"
|
|
10409
|
+
"anyOf": [
|
|
10410
|
+
{},
|
|
10411
|
+
{
|
|
10412
|
+
"type": "string"
|
|
10413
|
+
}
|
|
10414
|
+
]
|
|
9966
10415
|
},
|
|
9967
10416
|
"examples": {
|
|
9968
10417
|
"Example 1": {
|
|
9969
|
-
"value":
|
|
9970
|
-
"/rest/v0/vm-templates/fe3d015b-d08e-1c68-9587-64aff7f9e5f5-7279a78a-4756-4fc3-99f0-3e7694c0319e",
|
|
9971
|
-
"/rest/v0/vm-templates/fe3d015b-d08e-1c68-9587-64aff7f9e5f5-a3d70e4d-c5ac-4dfb-999b-30a0a7efe546"
|
|
9972
|
-
]
|
|
9973
|
-
},
|
|
9974
|
-
"Example 2": {
|
|
9975
|
-
"value": [
|
|
9976
|
-
{
|
|
9977
|
-
"id": "fe3d015b-d08e-1c68-9587-64aff7f9e5f5-7279a78a-4756-4fc3-99f0-3e7694c0319e",
|
|
9978
|
-
"isDefaultTemplate": true,
|
|
9979
|
-
"name_label": "NeoKylin Linux Server 7",
|
|
9980
|
-
"href": "/rest/v0/vm-templates/fe3d015b-d08e-1c68-9587-64aff7f9e5f5-7279a78a-4756-4fc3-99f0-3e7694c0319e"
|
|
9981
|
-
},
|
|
9982
|
-
{
|
|
9983
|
-
"id": "fe3d015b-d08e-1c68-9587-64aff7f9e5f5-a3d70e4d-c5ac-4dfb-999b-30a0a7efe546",
|
|
9984
|
-
"isDefaultTemplate": true,
|
|
9985
|
-
"name_label": "CentOS Stream 9",
|
|
9986
|
-
"href": "/rest/v0/vm-templates/fe3d015b-d08e-1c68-9587-64aff7f9e5f5-a3d70e4d-c5ac-4dfb-999b-30a0a7efe546"
|
|
9987
|
-
}
|
|
9988
|
-
]
|
|
10418
|
+
"value": "/rest/v0/tasks/0m7kl0j9l"
|
|
9989
10419
|
}
|
|
9990
10420
|
}
|
|
9991
10421
|
}
|
|
9992
10422
|
}
|
|
9993
10423
|
},
|
|
10424
|
+
"204": {
|
|
10425
|
+
"description": "No content"
|
|
10426
|
+
},
|
|
9994
10427
|
"401": {
|
|
9995
10428
|
"description": "Authentication required"
|
|
10429
|
+
},
|
|
10430
|
+
"404": {
|
|
10431
|
+
"description": "Resource not found"
|
|
10432
|
+
},
|
|
10433
|
+
"500": {
|
|
10434
|
+
"description": "Internal server error, XenServer/XCP-ng error"
|
|
9996
10435
|
}
|
|
9997
10436
|
},
|
|
10437
|
+
"description": "The VM must be running",
|
|
9998
10438
|
"tags": [
|
|
9999
10439
|
"vms"
|
|
10000
10440
|
],
|
|
@@ -10005,55 +10445,354 @@
|
|
|
10005
10445
|
],
|
|
10006
10446
|
"parameters": [
|
|
10007
10447
|
{
|
|
10008
|
-
"in": "
|
|
10009
|
-
"name": "
|
|
10010
|
-
"required":
|
|
10448
|
+
"in": "path",
|
|
10449
|
+
"name": "id",
|
|
10450
|
+
"required": true,
|
|
10011
10451
|
"schema": {
|
|
10012
10452
|
"type": "string"
|
|
10013
10453
|
},
|
|
10014
|
-
"example": "
|
|
10454
|
+
"example": "f07ab729-c0e8-721c-45ec-f11276377030"
|
|
10015
10455
|
},
|
|
10016
10456
|
{
|
|
10017
10457
|
"in": "query",
|
|
10018
|
-
"name": "
|
|
10458
|
+
"name": "sync",
|
|
10019
10459
|
"required": false,
|
|
10020
10460
|
"schema": {
|
|
10021
10461
|
"type": "boolean"
|
|
10022
10462
|
}
|
|
10023
|
-
},
|
|
10024
|
-
{
|
|
10025
|
-
"in": "query",
|
|
10026
|
-
"name": "filter",
|
|
10027
|
-
"required": false,
|
|
10028
|
-
"schema": {
|
|
10029
|
-
"type": "string"
|
|
10030
|
-
},
|
|
10031
|
-
"example": "isDefaultTemplate?"
|
|
10032
|
-
},
|
|
10033
|
-
{
|
|
10034
|
-
"in": "query",
|
|
10035
|
-
"name": "limit",
|
|
10036
|
-
"required": false,
|
|
10037
|
-
"schema": {
|
|
10038
|
-
"format": "double",
|
|
10039
|
-
"type": "number"
|
|
10040
|
-
},
|
|
10041
|
-
"example": 42
|
|
10042
10463
|
}
|
|
10043
10464
|
]
|
|
10044
10465
|
}
|
|
10045
10466
|
},
|
|
10046
|
-
"/
|
|
10047
|
-
"
|
|
10048
|
-
"operationId": "
|
|
10467
|
+
"/vms/{id}/actions/resume": {
|
|
10468
|
+
"post": {
|
|
10469
|
+
"operationId": "ResumeVm",
|
|
10049
10470
|
"responses": {
|
|
10050
|
-
"
|
|
10051
|
-
"description": "
|
|
10471
|
+
"202": {
|
|
10472
|
+
"description": "Action executed asynchronously",
|
|
10052
10473
|
"content": {
|
|
10053
|
-
"
|
|
10474
|
+
"text/plain": {
|
|
10054
10475
|
"schema": {
|
|
10055
|
-
"
|
|
10056
|
-
|
|
10476
|
+
"anyOf": [
|
|
10477
|
+
{},
|
|
10478
|
+
{
|
|
10479
|
+
"type": "string"
|
|
10480
|
+
}
|
|
10481
|
+
]
|
|
10482
|
+
},
|
|
10483
|
+
"examples": {
|
|
10484
|
+
"Example 1": {
|
|
10485
|
+
"value": "/rest/v0/tasks/0m7kl0j9l"
|
|
10486
|
+
}
|
|
10487
|
+
}
|
|
10488
|
+
}
|
|
10489
|
+
}
|
|
10490
|
+
},
|
|
10491
|
+
"204": {
|
|
10492
|
+
"description": "No content"
|
|
10493
|
+
},
|
|
10494
|
+
"401": {
|
|
10495
|
+
"description": "Authentication required"
|
|
10496
|
+
},
|
|
10497
|
+
"404": {
|
|
10498
|
+
"description": "Resource not found"
|
|
10499
|
+
},
|
|
10500
|
+
"500": {
|
|
10501
|
+
"description": "Internal server error, XenServer/XCP-ng error"
|
|
10502
|
+
}
|
|
10503
|
+
},
|
|
10504
|
+
"description": "The VM must be suspended",
|
|
10505
|
+
"tags": [
|
|
10506
|
+
"vms"
|
|
10507
|
+
],
|
|
10508
|
+
"security": [
|
|
10509
|
+
{
|
|
10510
|
+
"*": []
|
|
10511
|
+
}
|
|
10512
|
+
],
|
|
10513
|
+
"parameters": [
|
|
10514
|
+
{
|
|
10515
|
+
"in": "path",
|
|
10516
|
+
"name": "id",
|
|
10517
|
+
"required": true,
|
|
10518
|
+
"schema": {
|
|
10519
|
+
"type": "string"
|
|
10520
|
+
},
|
|
10521
|
+
"example": "f07ab729-c0e8-721c-45ec-f11276377030"
|
|
10522
|
+
},
|
|
10523
|
+
{
|
|
10524
|
+
"in": "query",
|
|
10525
|
+
"name": "sync",
|
|
10526
|
+
"required": false,
|
|
10527
|
+
"schema": {
|
|
10528
|
+
"type": "boolean"
|
|
10529
|
+
}
|
|
10530
|
+
}
|
|
10531
|
+
]
|
|
10532
|
+
}
|
|
10533
|
+
},
|
|
10534
|
+
"/vms/{id}/actions/unpause": {
|
|
10535
|
+
"post": {
|
|
10536
|
+
"operationId": "UnpauseVm",
|
|
10537
|
+
"responses": {
|
|
10538
|
+
"202": {
|
|
10539
|
+
"description": "Action executed asynchronously",
|
|
10540
|
+
"content": {
|
|
10541
|
+
"text/plain": {
|
|
10542
|
+
"schema": {
|
|
10543
|
+
"anyOf": [
|
|
10544
|
+
{},
|
|
10545
|
+
{
|
|
10546
|
+
"type": "string"
|
|
10547
|
+
}
|
|
10548
|
+
]
|
|
10549
|
+
},
|
|
10550
|
+
"examples": {
|
|
10551
|
+
"Example 1": {
|
|
10552
|
+
"value": "/rest/v0/tasks/0m7kl0j9l"
|
|
10553
|
+
}
|
|
10554
|
+
}
|
|
10555
|
+
}
|
|
10556
|
+
}
|
|
10557
|
+
},
|
|
10558
|
+
"204": {
|
|
10559
|
+
"description": "No content"
|
|
10560
|
+
},
|
|
10561
|
+
"401": {
|
|
10562
|
+
"description": "Authentication required"
|
|
10563
|
+
},
|
|
10564
|
+
"404": {
|
|
10565
|
+
"description": "Resource not found"
|
|
10566
|
+
},
|
|
10567
|
+
"500": {
|
|
10568
|
+
"description": "Internal server error, XenServer/XCP-ng error"
|
|
10569
|
+
}
|
|
10570
|
+
},
|
|
10571
|
+
"description": "The VM must be paused",
|
|
10572
|
+
"tags": [
|
|
10573
|
+
"vms"
|
|
10574
|
+
],
|
|
10575
|
+
"security": [
|
|
10576
|
+
{
|
|
10577
|
+
"*": []
|
|
10578
|
+
}
|
|
10579
|
+
],
|
|
10580
|
+
"parameters": [
|
|
10581
|
+
{
|
|
10582
|
+
"in": "path",
|
|
10583
|
+
"name": "id",
|
|
10584
|
+
"required": true,
|
|
10585
|
+
"schema": {
|
|
10586
|
+
"type": "string"
|
|
10587
|
+
},
|
|
10588
|
+
"example": "f07ab729-c0e8-721c-45ec-f11276377030"
|
|
10589
|
+
},
|
|
10590
|
+
{
|
|
10591
|
+
"in": "query",
|
|
10592
|
+
"name": "sync",
|
|
10593
|
+
"required": false,
|
|
10594
|
+
"schema": {
|
|
10595
|
+
"type": "boolean"
|
|
10596
|
+
}
|
|
10597
|
+
}
|
|
10598
|
+
]
|
|
10599
|
+
}
|
|
10600
|
+
},
|
|
10601
|
+
"/vms/{id}/actions/snapshot": {
|
|
10602
|
+
"post": {
|
|
10603
|
+
"operationId": "SnapshotVm",
|
|
10604
|
+
"responses": {
|
|
10605
|
+
"201": {
|
|
10606
|
+
"description": "Snapshot created"
|
|
10607
|
+
},
|
|
10608
|
+
"202": {
|
|
10609
|
+
"description": "Action executed asynchronously",
|
|
10610
|
+
"content": {
|
|
10611
|
+
"text/plain": {
|
|
10612
|
+
"schema": {
|
|
10613
|
+
"anyOf": [
|
|
10614
|
+
{
|
|
10615
|
+
"type": "string"
|
|
10616
|
+
},
|
|
10617
|
+
{
|
|
10618
|
+
"properties": {
|
|
10619
|
+
"id": {
|
|
10620
|
+
"type": "string"
|
|
10621
|
+
}
|
|
10622
|
+
},
|
|
10623
|
+
"required": [
|
|
10624
|
+
"id"
|
|
10625
|
+
],
|
|
10626
|
+
"type": "object"
|
|
10627
|
+
}
|
|
10628
|
+
]
|
|
10629
|
+
},
|
|
10630
|
+
"examples": {
|
|
10631
|
+
"Example 1": {
|
|
10632
|
+
"value": "/rest/v0/tasks/0m7kl0j9l"
|
|
10633
|
+
}
|
|
10634
|
+
}
|
|
10635
|
+
}
|
|
10636
|
+
}
|
|
10637
|
+
},
|
|
10638
|
+
"401": {
|
|
10639
|
+
"description": "Authentication required"
|
|
10640
|
+
},
|
|
10641
|
+
"404": {
|
|
10642
|
+
"description": "Resource not found"
|
|
10643
|
+
},
|
|
10644
|
+
"500": {
|
|
10645
|
+
"description": "Internal server error, XenServer/XCP-ng error"
|
|
10646
|
+
}
|
|
10647
|
+
},
|
|
10648
|
+
"tags": [
|
|
10649
|
+
"vms"
|
|
10650
|
+
],
|
|
10651
|
+
"security": [
|
|
10652
|
+
{
|
|
10653
|
+
"*": []
|
|
10654
|
+
}
|
|
10655
|
+
],
|
|
10656
|
+
"parameters": [
|
|
10657
|
+
{
|
|
10658
|
+
"in": "path",
|
|
10659
|
+
"name": "id",
|
|
10660
|
+
"required": true,
|
|
10661
|
+
"schema": {
|
|
10662
|
+
"type": "string"
|
|
10663
|
+
},
|
|
10664
|
+
"example": "f07ab729-c0e8-721c-45ec-f11276377030"
|
|
10665
|
+
},
|
|
10666
|
+
{
|
|
10667
|
+
"in": "query",
|
|
10668
|
+
"name": "sync",
|
|
10669
|
+
"required": false,
|
|
10670
|
+
"schema": {
|
|
10671
|
+
"type": "boolean"
|
|
10672
|
+
}
|
|
10673
|
+
}
|
|
10674
|
+
],
|
|
10675
|
+
"requestBody": {
|
|
10676
|
+
"required": false,
|
|
10677
|
+
"content": {
|
|
10678
|
+
"application/json": {
|
|
10679
|
+
"schema": {
|
|
10680
|
+
"properties": {
|
|
10681
|
+
"name_label": {
|
|
10682
|
+
"type": "string"
|
|
10683
|
+
}
|
|
10684
|
+
},
|
|
10685
|
+
"type": "object"
|
|
10686
|
+
},
|
|
10687
|
+
"example": {
|
|
10688
|
+
"name_label": "my_awesome_snapshot"
|
|
10689
|
+
}
|
|
10690
|
+
}
|
|
10691
|
+
}
|
|
10692
|
+
}
|
|
10693
|
+
}
|
|
10694
|
+
},
|
|
10695
|
+
"/vm-templates": {
|
|
10696
|
+
"get": {
|
|
10697
|
+
"operationId": "GetVmTemplates",
|
|
10698
|
+
"responses": {
|
|
10699
|
+
"200": {
|
|
10700
|
+
"description": "Ok",
|
|
10701
|
+
"content": {
|
|
10702
|
+
"application/json": {
|
|
10703
|
+
"schema": {
|
|
10704
|
+
"$ref": "#/components/schemas/SendObjects_Partial_Unbrand_XoVmTemplate___"
|
|
10705
|
+
},
|
|
10706
|
+
"examples": {
|
|
10707
|
+
"Example 1": {
|
|
10708
|
+
"value": [
|
|
10709
|
+
"/rest/v0/vm-templates/fe3d015b-d08e-1c68-9587-64aff7f9e5f5-7279a78a-4756-4fc3-99f0-3e7694c0319e",
|
|
10710
|
+
"/rest/v0/vm-templates/fe3d015b-d08e-1c68-9587-64aff7f9e5f5-a3d70e4d-c5ac-4dfb-999b-30a0a7efe546"
|
|
10711
|
+
]
|
|
10712
|
+
},
|
|
10713
|
+
"Example 2": {
|
|
10714
|
+
"value": [
|
|
10715
|
+
{
|
|
10716
|
+
"id": "fe3d015b-d08e-1c68-9587-64aff7f9e5f5-7279a78a-4756-4fc3-99f0-3e7694c0319e",
|
|
10717
|
+
"isDefaultTemplate": true,
|
|
10718
|
+
"name_label": "NeoKylin Linux Server 7",
|
|
10719
|
+
"href": "/rest/v0/vm-templates/fe3d015b-d08e-1c68-9587-64aff7f9e5f5-7279a78a-4756-4fc3-99f0-3e7694c0319e"
|
|
10720
|
+
},
|
|
10721
|
+
{
|
|
10722
|
+
"id": "fe3d015b-d08e-1c68-9587-64aff7f9e5f5-a3d70e4d-c5ac-4dfb-999b-30a0a7efe546",
|
|
10723
|
+
"isDefaultTemplate": true,
|
|
10724
|
+
"name_label": "CentOS Stream 9",
|
|
10725
|
+
"href": "/rest/v0/vm-templates/fe3d015b-d08e-1c68-9587-64aff7f9e5f5-a3d70e4d-c5ac-4dfb-999b-30a0a7efe546"
|
|
10726
|
+
}
|
|
10727
|
+
]
|
|
10728
|
+
}
|
|
10729
|
+
}
|
|
10730
|
+
}
|
|
10731
|
+
}
|
|
10732
|
+
},
|
|
10733
|
+
"401": {
|
|
10734
|
+
"description": "Authentication required"
|
|
10735
|
+
}
|
|
10736
|
+
},
|
|
10737
|
+
"tags": [
|
|
10738
|
+
"vms"
|
|
10739
|
+
],
|
|
10740
|
+
"security": [
|
|
10741
|
+
{
|
|
10742
|
+
"*": []
|
|
10743
|
+
}
|
|
10744
|
+
],
|
|
10745
|
+
"parameters": [
|
|
10746
|
+
{
|
|
10747
|
+
"in": "query",
|
|
10748
|
+
"name": "fields",
|
|
10749
|
+
"required": false,
|
|
10750
|
+
"schema": {
|
|
10751
|
+
"type": "string"
|
|
10752
|
+
},
|
|
10753
|
+
"example": "id,isDefaultTemplate,name_label"
|
|
10754
|
+
},
|
|
10755
|
+
{
|
|
10756
|
+
"in": "query",
|
|
10757
|
+
"name": "ndjson",
|
|
10758
|
+
"required": false,
|
|
10759
|
+
"schema": {
|
|
10760
|
+
"type": "boolean"
|
|
10761
|
+
}
|
|
10762
|
+
},
|
|
10763
|
+
{
|
|
10764
|
+
"in": "query",
|
|
10765
|
+
"name": "filter",
|
|
10766
|
+
"required": false,
|
|
10767
|
+
"schema": {
|
|
10768
|
+
"type": "string"
|
|
10769
|
+
},
|
|
10770
|
+
"example": "isDefaultTemplate?"
|
|
10771
|
+
},
|
|
10772
|
+
{
|
|
10773
|
+
"in": "query",
|
|
10774
|
+
"name": "limit",
|
|
10775
|
+
"required": false,
|
|
10776
|
+
"schema": {
|
|
10777
|
+
"format": "double",
|
|
10778
|
+
"type": "number"
|
|
10779
|
+
},
|
|
10780
|
+
"example": 42
|
|
10781
|
+
}
|
|
10782
|
+
]
|
|
10783
|
+
}
|
|
10784
|
+
},
|
|
10785
|
+
"/vm-templates/{id}": {
|
|
10786
|
+
"get": {
|
|
10787
|
+
"operationId": "GetVmTemplate",
|
|
10788
|
+
"responses": {
|
|
10789
|
+
"200": {
|
|
10790
|
+
"description": "Ok",
|
|
10791
|
+
"content": {
|
|
10792
|
+
"application/json": {
|
|
10793
|
+
"schema": {
|
|
10794
|
+
"$ref": "#/components/schemas/Unbrand_XoVmTemplate_"
|
|
10795
|
+
},
|
|
10057
10796
|
"examples": {
|
|
10058
10797
|
"Example 1": {
|
|
10059
10798
|
"value": {
|
|
@@ -11475,9 +12214,210 @@
|
|
|
11475
12214
|
"7d98fee4-3357-41a7-ac3f-9124212badb7",
|
|
11476
12215
|
"7981ba62-c395-4546-bfa4-d1261653a77f"
|
|
11477
12216
|
],
|
|
11478
|
-
"name": "admin@admin.net",
|
|
11479
|
-
"preferences": {},
|
|
11480
|
-
"id": "722d17b9-699b-49d2-8193-be1ac573d3de"
|
|
12217
|
+
"name": "admin@admin.net",
|
|
12218
|
+
"preferences": {},
|
|
12219
|
+
"id": "722d17b9-699b-49d2-8193-be1ac573d3de"
|
|
12220
|
+
}
|
|
12221
|
+
}
|
|
12222
|
+
}
|
|
12223
|
+
}
|
|
12224
|
+
}
|
|
12225
|
+
},
|
|
12226
|
+
"401": {
|
|
12227
|
+
"description": "Authentication required"
|
|
12228
|
+
},
|
|
12229
|
+
"404": {
|
|
12230
|
+
"description": "Resource not found"
|
|
12231
|
+
}
|
|
12232
|
+
},
|
|
12233
|
+
"tags": [
|
|
12234
|
+
"users"
|
|
12235
|
+
],
|
|
12236
|
+
"security": [
|
|
12237
|
+
{
|
|
12238
|
+
"*": []
|
|
12239
|
+
}
|
|
12240
|
+
],
|
|
12241
|
+
"parameters": [
|
|
12242
|
+
{
|
|
12243
|
+
"in": "path",
|
|
12244
|
+
"name": "id",
|
|
12245
|
+
"required": true,
|
|
12246
|
+
"schema": {
|
|
12247
|
+
"type": "string"
|
|
12248
|
+
},
|
|
12249
|
+
"example": "722d17b9-699b-49d2-8193-be1ac573d3de"
|
|
12250
|
+
}
|
|
12251
|
+
]
|
|
12252
|
+
}
|
|
12253
|
+
},
|
|
12254
|
+
"/srs": {
|
|
12255
|
+
"get": {
|
|
12256
|
+
"operationId": "GetSrs",
|
|
12257
|
+
"responses": {
|
|
12258
|
+
"200": {
|
|
12259
|
+
"description": "Ok",
|
|
12260
|
+
"content": {
|
|
12261
|
+
"application/json": {
|
|
12262
|
+
"schema": {
|
|
12263
|
+
"$ref": "#/components/schemas/SendObjects_Partial_Unbrand_XoSr___"
|
|
12264
|
+
},
|
|
12265
|
+
"examples": {
|
|
12266
|
+
"Example 1": {
|
|
12267
|
+
"value": [
|
|
12268
|
+
"/rest/v0/srs/e46e7ea5-1bbe-e499-69a5-6bfb395eb146",
|
|
12269
|
+
"/rest/v0/srs/3d1227f3-7d40-a104-efc6-fb797b58f258"
|
|
12270
|
+
]
|
|
12271
|
+
},
|
|
12272
|
+
"Example 2": {
|
|
12273
|
+
"value": [
|
|
12274
|
+
{
|
|
12275
|
+
"uuid": "4cb0d74e-a7c1-0b7d-46e3-09382c012abb",
|
|
12276
|
+
"name_label": "Local storage",
|
|
12277
|
+
"allocationStrategy": "thin",
|
|
12278
|
+
"href": "/rest/v0/srs/4cb0d74e-a7c1-0b7d-46e3-09382c012abb"
|
|
12279
|
+
},
|
|
12280
|
+
{
|
|
12281
|
+
"uuid": "c4284e12-37c9-7967-b9e8-83ef229c3e03",
|
|
12282
|
+
"name_label": "Local storage",
|
|
12283
|
+
"allocationStrategy": "thin",
|
|
12284
|
+
"href": "/rest/v0/srs/c4284e12-37c9-7967-b9e8-83ef229c3e03"
|
|
12285
|
+
},
|
|
12286
|
+
{
|
|
12287
|
+
"uuid": "8aa2fb4a-143e-c2bc-05d4-c68bbb101d41",
|
|
12288
|
+
"name_label": "Local storage",
|
|
12289
|
+
"allocationStrategy": "thin",
|
|
12290
|
+
"href": "/rest/v0/srs/8aa2fb4a-143e-c2bc-05d4-c68bbb101d41"
|
|
12291
|
+
},
|
|
12292
|
+
{
|
|
12293
|
+
"uuid": "c787b75c-3e0d-70fa-d0c3-cbfd382d7e33",
|
|
12294
|
+
"name_label": "XOSTOR NVME",
|
|
12295
|
+
"allocationStrategy": "thin",
|
|
12296
|
+
"href": "/rest/v0/srs/c787b75c-3e0d-70fa-d0c3-cbfd382d7e33"
|
|
12297
|
+
}
|
|
12298
|
+
]
|
|
12299
|
+
}
|
|
12300
|
+
}
|
|
12301
|
+
}
|
|
12302
|
+
}
|
|
12303
|
+
},
|
|
12304
|
+
"401": {
|
|
12305
|
+
"description": "Authentication required"
|
|
12306
|
+
}
|
|
12307
|
+
},
|
|
12308
|
+
"tags": [
|
|
12309
|
+
"srs"
|
|
12310
|
+
],
|
|
12311
|
+
"security": [
|
|
12312
|
+
{
|
|
12313
|
+
"*": []
|
|
12314
|
+
}
|
|
12315
|
+
],
|
|
12316
|
+
"parameters": [
|
|
12317
|
+
{
|
|
12318
|
+
"in": "query",
|
|
12319
|
+
"name": "fields",
|
|
12320
|
+
"required": false,
|
|
12321
|
+
"schema": {
|
|
12322
|
+
"type": "string"
|
|
12323
|
+
},
|
|
12324
|
+
"example": "uuid,name_label,allocationStrategy"
|
|
12325
|
+
},
|
|
12326
|
+
{
|
|
12327
|
+
"in": "query",
|
|
12328
|
+
"name": "ndjson",
|
|
12329
|
+
"required": false,
|
|
12330
|
+
"schema": {
|
|
12331
|
+
"type": "boolean"
|
|
12332
|
+
}
|
|
12333
|
+
},
|
|
12334
|
+
{
|
|
12335
|
+
"in": "query",
|
|
12336
|
+
"name": "filter",
|
|
12337
|
+
"required": false,
|
|
12338
|
+
"schema": {
|
|
12339
|
+
"type": "string"
|
|
12340
|
+
},
|
|
12341
|
+
"example": "allocationStrategy:thin"
|
|
12342
|
+
},
|
|
12343
|
+
{
|
|
12344
|
+
"in": "query",
|
|
12345
|
+
"name": "limit",
|
|
12346
|
+
"required": false,
|
|
12347
|
+
"schema": {
|
|
12348
|
+
"format": "double",
|
|
12349
|
+
"type": "number"
|
|
12350
|
+
},
|
|
12351
|
+
"example": 42
|
|
12352
|
+
}
|
|
12353
|
+
]
|
|
12354
|
+
}
|
|
12355
|
+
},
|
|
12356
|
+
"/srs/{id}": {
|
|
12357
|
+
"get": {
|
|
12358
|
+
"operationId": "GetSr",
|
|
12359
|
+
"responses": {
|
|
12360
|
+
"200": {
|
|
12361
|
+
"description": "Ok",
|
|
12362
|
+
"content": {
|
|
12363
|
+
"application/json": {
|
|
12364
|
+
"schema": {
|
|
12365
|
+
"$ref": "#/components/schemas/Unbrand_XoSr_"
|
|
12366
|
+
},
|
|
12367
|
+
"examples": {
|
|
12368
|
+
"Example 1": {
|
|
12369
|
+
"value": {
|
|
12370
|
+
"type": "SR",
|
|
12371
|
+
"content_type": "user",
|
|
12372
|
+
"physical_usage": 16423866368,
|
|
12373
|
+
"allocationStrategy": "thin",
|
|
12374
|
+
"current_operations": {},
|
|
12375
|
+
"inMaintenanceMode": false,
|
|
12376
|
+
"name_description": "",
|
|
12377
|
+
"name_label": "Local storage",
|
|
12378
|
+
"size": 73682485248,
|
|
12379
|
+
"shared": false,
|
|
12380
|
+
"SR_type": "ext",
|
|
12381
|
+
"tags": [],
|
|
12382
|
+
"usage": 112759681168,
|
|
12383
|
+
"VDIs": [
|
|
12384
|
+
"7192fab6-e985-42a5-9d23-62deca4b8823",
|
|
12385
|
+
"a2caa5f0-b7c9-4ac3-8a65-a9829a39bd98",
|
|
12386
|
+
"f8e3da31-4556-4922-b7ce-76429fa88d5e",
|
|
12387
|
+
"4b737630-2958-46f0-a997-c9dc8f4457b4",
|
|
12388
|
+
"882e52c5-afd5-44b5-a218-e4f7d1aa68b3",
|
|
12389
|
+
"d636a574-ebe4-42b8-9456-790e111c60f0",
|
|
12390
|
+
"55860d04-cf0a-4cc3-8295-e537ad4a9687",
|
|
12391
|
+
"fbda4d74-9017-460a-8a4c-bb5c39795ec4",
|
|
12392
|
+
"0e63828c-5a37-429d-b28f-9172424a541a",
|
|
12393
|
+
"fc3ff36a-3f08-4999-a3ea-7944e44a2e9b",
|
|
12394
|
+
"b4661cb7-6b3f-46e4-b2b7-1acb9d3a28be",
|
|
12395
|
+
"656052a2-2e3e-467b-88ba-63a9ea5e4a54",
|
|
12396
|
+
"82182c28-9883-4aa4-8807-7cd781e6ca5b",
|
|
12397
|
+
"daafd3d5-3c8d-42d1-8f3d-100341b1d0b4",
|
|
12398
|
+
"6b4d50c0-e6e3-4126-b658-e98a8001588a",
|
|
12399
|
+
"802bdb62-11bc-4a31-9e71-cef8dad121ea",
|
|
12400
|
+
"c0dea89f-4ea8-45a3-856d-cad1d5bbe374",
|
|
12401
|
+
"1d8129a2-6f29-4966-abfd-763ecd07d4bc",
|
|
12402
|
+
"1c5c13c8-30b4-4935-8116-6b0d878cf02d",
|
|
12403
|
+
"499e9da8-c26a-4179-b929-69dc49f46ad1"
|
|
12404
|
+
],
|
|
12405
|
+
"other_config": {
|
|
12406
|
+
"i18n-original-value-name_label": "Local storage",
|
|
12407
|
+
"i18n-key": "local-storage"
|
|
12408
|
+
},
|
|
12409
|
+
"sm_config": {
|
|
12410
|
+
"devserial": "scsi-35707c181005e11cd"
|
|
12411
|
+
},
|
|
12412
|
+
"$container": "84e555d8-267a-4720-aa5f-fd19035aadae",
|
|
12413
|
+
"$PBDs": [
|
|
12414
|
+
"387a2513-e835-baba-5684-e4a104acd78b"
|
|
12415
|
+
],
|
|
12416
|
+
"id": "c4284e12-37c9-7967-b9e8-83ef229c3e03",
|
|
12417
|
+
"uuid": "c4284e12-37c9-7967-b9e8-83ef229c3e03",
|
|
12418
|
+
"$pool": "b7569d99-30f8-178a-7d94-801de3e29b5b",
|
|
12419
|
+
"$poolId": "b7569d99-30f8-178a-7d94-801de3e29b5b",
|
|
12420
|
+
"_xapiRef": "OpaqueRef:a7bf6969-0e15-9fa5-f987-8515fee801c5"
|
|
11481
12421
|
}
|
|
11482
12422
|
}
|
|
11483
12423
|
}
|
|
@@ -11492,7 +12432,7 @@
|
|
|
11492
12432
|
}
|
|
11493
12433
|
},
|
|
11494
12434
|
"tags": [
|
|
11495
|
-
"
|
|
12435
|
+
"srs"
|
|
11496
12436
|
],
|
|
11497
12437
|
"security": [
|
|
11498
12438
|
{
|
|
@@ -11507,12 +12447,12 @@
|
|
|
11507
12447
|
"schema": {
|
|
11508
12448
|
"type": "string"
|
|
11509
12449
|
},
|
|
11510
|
-
"example": "
|
|
12450
|
+
"example": "c4284e12-37c9-7967-b9e8-83ef229c3e03"
|
|
11511
12451
|
}
|
|
11512
12452
|
]
|
|
11513
12453
|
}
|
|
11514
12454
|
},
|
|
11515
|
-
"/
|
|
12455
|
+
"/sms": {
|
|
11516
12456
|
"get": {
|
|
11517
12457
|
"operationId": "GetSrs",
|
|
11518
12458
|
"responses": {
|
|
@@ -11521,40 +12461,28 @@
|
|
|
11521
12461
|
"content": {
|
|
11522
12462
|
"application/json": {
|
|
11523
12463
|
"schema": {
|
|
11524
|
-
"$ref": "#/components/schemas/
|
|
12464
|
+
"$ref": "#/components/schemas/SendObjects_Partial_Unbrand_XoSm___"
|
|
11525
12465
|
},
|
|
11526
12466
|
"examples": {
|
|
11527
12467
|
"Example 1": {
|
|
11528
12468
|
"value": [
|
|
11529
|
-
"/rest/v0/
|
|
11530
|
-
"/rest/v0/
|
|
12469
|
+
"/rest/v0/sms/5bfb2f8a-70f3-8cff-1748-3cd4de2153da",
|
|
12470
|
+
"/rest/v0/sms/d3df5d0f-bac8-ed31-22e9-b7d89fb39e0e"
|
|
11531
12471
|
]
|
|
11532
12472
|
},
|
|
11533
12473
|
"Example 2": {
|
|
11534
12474
|
"value": [
|
|
11535
12475
|
{
|
|
11536
|
-
"uuid": "
|
|
11537
|
-
"name_label": "Local
|
|
11538
|
-
"
|
|
11539
|
-
"href": "/rest/v0/
|
|
11540
|
-
},
|
|
11541
|
-
{
|
|
11542
|
-
"uuid": "c4284e12-37c9-7967-b9e8-83ef229c3e03",
|
|
11543
|
-
"name_label": "Local storage",
|
|
11544
|
-
"allocationStrategy": "thin",
|
|
11545
|
-
"href": "/rest/v0/srs/c4284e12-37c9-7967-b9e8-83ef229c3e03"
|
|
11546
|
-
},
|
|
11547
|
-
{
|
|
11548
|
-
"uuid": "8aa2fb4a-143e-c2bc-05d4-c68bbb101d41",
|
|
11549
|
-
"name_label": "Local storage",
|
|
11550
|
-
"allocationStrategy": "thin",
|
|
11551
|
-
"href": "/rest/v0/srs/8aa2fb4a-143e-c2bc-05d4-c68bbb101d41"
|
|
12476
|
+
"uuid": "5bfb2f8a-70f3-8cff-1748-3cd4de2153da",
|
|
12477
|
+
"name_label": "Local EXT4 VHD and QCOW2",
|
|
12478
|
+
"SM_type": "ext",
|
|
12479
|
+
"href": "/rest/v0/sms/5bfb2f8a-70f3-8cff-1748-3cd4de2153da"
|
|
11552
12480
|
},
|
|
11553
12481
|
{
|
|
11554
|
-
"uuid": "
|
|
11555
|
-
"name_label": "
|
|
11556
|
-
"
|
|
11557
|
-
"href": "/rest/v0/
|
|
12482
|
+
"uuid": "0d48516d-f7ad-1c36-39ea-17cfb16e04ab",
|
|
12483
|
+
"name_label": "Local EXT4 VHD and QCOW2",
|
|
12484
|
+
"SM_type": "ext",
|
|
12485
|
+
"href": "/rest/v0/sms/0d48516d-f7ad-1c36-39ea-17cfb16e04ab"
|
|
11558
12486
|
}
|
|
11559
12487
|
]
|
|
11560
12488
|
}
|
|
@@ -11567,7 +12495,7 @@
|
|
|
11567
12495
|
}
|
|
11568
12496
|
},
|
|
11569
12497
|
"tags": [
|
|
11570
|
-
"
|
|
12498
|
+
"sms"
|
|
11571
12499
|
],
|
|
11572
12500
|
"security": [
|
|
11573
12501
|
{
|
|
@@ -11582,7 +12510,7 @@
|
|
|
11582
12510
|
"schema": {
|
|
11583
12511
|
"type": "string"
|
|
11584
12512
|
},
|
|
11585
|
-
"example": "uuid,name_label,
|
|
12513
|
+
"example": "uuid,name_label,SM_type"
|
|
11586
12514
|
},
|
|
11587
12515
|
{
|
|
11588
12516
|
"in": "query",
|
|
@@ -11599,7 +12527,7 @@
|
|
|
11599
12527
|
"schema": {
|
|
11600
12528
|
"type": "string"
|
|
11601
12529
|
},
|
|
11602
|
-
"example": "
|
|
12530
|
+
"example": "SM_type:ext"
|
|
11603
12531
|
},
|
|
11604
12532
|
{
|
|
11605
12533
|
"in": "query",
|
|
@@ -11614,7 +12542,7 @@
|
|
|
11614
12542
|
]
|
|
11615
12543
|
}
|
|
11616
12544
|
},
|
|
11617
|
-
"/
|
|
12545
|
+
"/sms/{id}": {
|
|
11618
12546
|
"get": {
|
|
11619
12547
|
"operationId": "GetSr",
|
|
11620
12548
|
"responses": {
|
|
@@ -11623,62 +12551,49 @@
|
|
|
11623
12551
|
"content": {
|
|
11624
12552
|
"application/json": {
|
|
11625
12553
|
"schema": {
|
|
11626
|
-
"$ref": "#/components/schemas/
|
|
12554
|
+
"$ref": "#/components/schemas/Unbrand_XoSm_"
|
|
11627
12555
|
},
|
|
11628
12556
|
"examples": {
|
|
11629
12557
|
"Example 1": {
|
|
11630
12558
|
"value": {
|
|
11631
|
-
"type": "
|
|
11632
|
-
"
|
|
11633
|
-
"
|
|
11634
|
-
"
|
|
11635
|
-
"
|
|
11636
|
-
"
|
|
11637
|
-
|
|
11638
|
-
"name_label": "Local storage",
|
|
11639
|
-
"size": 73682485248,
|
|
11640
|
-
"shared": false,
|
|
11641
|
-
"SR_type": "ext",
|
|
11642
|
-
"tags": [],
|
|
11643
|
-
"usage": 112759681168,
|
|
11644
|
-
"VDIs": [
|
|
11645
|
-
"7192fab6-e985-42a5-9d23-62deca4b8823",
|
|
11646
|
-
"a2caa5f0-b7c9-4ac3-8a65-a9829a39bd98",
|
|
11647
|
-
"f8e3da31-4556-4922-b7ce-76429fa88d5e",
|
|
11648
|
-
"4b737630-2958-46f0-a997-c9dc8f4457b4",
|
|
11649
|
-
"882e52c5-afd5-44b5-a218-e4f7d1aa68b3",
|
|
11650
|
-
"d636a574-ebe4-42b8-9456-790e111c60f0",
|
|
11651
|
-
"55860d04-cf0a-4cc3-8295-e537ad4a9687",
|
|
11652
|
-
"fbda4d74-9017-460a-8a4c-bb5c39795ec4",
|
|
11653
|
-
"0e63828c-5a37-429d-b28f-9172424a541a",
|
|
11654
|
-
"fc3ff36a-3f08-4999-a3ea-7944e44a2e9b",
|
|
11655
|
-
"b4661cb7-6b3f-46e4-b2b7-1acb9d3a28be",
|
|
11656
|
-
"656052a2-2e3e-467b-88ba-63a9ea5e4a54",
|
|
11657
|
-
"82182c28-9883-4aa4-8807-7cd781e6ca5b",
|
|
11658
|
-
"daafd3d5-3c8d-42d1-8f3d-100341b1d0b4",
|
|
11659
|
-
"6b4d50c0-e6e3-4126-b658-e98a8001588a",
|
|
11660
|
-
"802bdb62-11bc-4a31-9e71-cef8dad121ea",
|
|
11661
|
-
"c0dea89f-4ea8-45a3-856d-cad1d5bbe374",
|
|
11662
|
-
"1d8129a2-6f29-4966-abfd-763ecd07d4bc",
|
|
11663
|
-
"1c5c13c8-30b4-4935-8116-6b0d878cf02d",
|
|
11664
|
-
"499e9da8-c26a-4179-b929-69dc49f46ad1"
|
|
11665
|
-
],
|
|
11666
|
-
"other_config": {
|
|
11667
|
-
"i18n-original-value-name_label": "Local storage",
|
|
11668
|
-
"i18n-key": "local-storage"
|
|
12559
|
+
"type": "SM",
|
|
12560
|
+
"uuid": "5bfb2f8a-70f3-8cff-1748-3cd4de2153da",
|
|
12561
|
+
"name_description": "SR plugin which represents disks as VHD and QCOW2 files stored on a local EXT4 filesystem, created inside an LVM volume",
|
|
12562
|
+
"name_label": "Local EXT4 VHD and QCOW2",
|
|
12563
|
+
"SM_type": "ext",
|
|
12564
|
+
"configuration": {
|
|
12565
|
+
"device": "local device path (required) (e.g. /dev/sda3)"
|
|
11669
12566
|
},
|
|
11670
|
-
"
|
|
11671
|
-
|
|
12567
|
+
"vendor": "Citrix Systems Inc",
|
|
12568
|
+
"features": {
|
|
12569
|
+
"SR_PROBE": 1,
|
|
12570
|
+
"SR_SUPPORTS_LOCAL_CACHING": 1,
|
|
12571
|
+
"SR_UPDATE": 1,
|
|
12572
|
+
"THIN_PROVISIONING": 1,
|
|
12573
|
+
"VDI_ACTIVATE": 1,
|
|
12574
|
+
"VDI_ATTACH": 1,
|
|
12575
|
+
"VDI_CLONE": 1,
|
|
12576
|
+
"VDI_CONFIG_CBT": 1,
|
|
12577
|
+
"VDI_CREATE": 1,
|
|
12578
|
+
"VDI_DEACTIVATE": 1,
|
|
12579
|
+
"VDI_DELETE": 1,
|
|
12580
|
+
"VDI_DETACH": 1,
|
|
12581
|
+
"VDI_GENERATE_CONFIG": 1,
|
|
12582
|
+
"VDI_MIRROR": 1,
|
|
12583
|
+
"VDI_READ_CACHING": 1,
|
|
12584
|
+
"VDI_RESET_ON_BOOT": 2,
|
|
12585
|
+
"VDI_RESIZE": 1,
|
|
12586
|
+
"VDI_SNAPSHOT": 1,
|
|
12587
|
+
"VDI_UPDATE": 1
|
|
11672
12588
|
},
|
|
11673
|
-
"
|
|
11674
|
-
"
|
|
11675
|
-
|
|
11676
|
-
|
|
11677
|
-
"
|
|
11678
|
-
"
|
|
11679
|
-
"
|
|
11680
|
-
"
|
|
11681
|
-
"_xapiRef": "OpaqueRef:a7bf6969-0e15-9fa5-f987-8515fee801c5"
|
|
12589
|
+
"driver_filename": "/opt/xensource/sm/EXTSR",
|
|
12590
|
+
"required_cluster_stack": [],
|
|
12591
|
+
"supported_image_formats": [],
|
|
12592
|
+
"id": "5bfb2f8a-70f3-8cff-1748-3cd4de2153da",
|
|
12593
|
+
"pool": "d6ba2603-7f16-0261-a33f-6e91d3aa0ec7",
|
|
12594
|
+
"poolId": "d6ba2603-7f16-0261-a33f-6e91d3aa0ec7",
|
|
12595
|
+
"_xapiRef": "OpaqueRef:27086ace-74d7-9f68-7465-346c7249b799",
|
|
12596
|
+
"href": "/rest/v0/sms/5bfb2f8a-70f3-8cff-1748-3cd4de2153da"
|
|
11682
12597
|
}
|
|
11683
12598
|
}
|
|
11684
12599
|
}
|
|
@@ -11693,7 +12608,7 @@
|
|
|
11693
12608
|
}
|
|
11694
12609
|
},
|
|
11695
12610
|
"tags": [
|
|
11696
|
-
"
|
|
12611
|
+
"sms"
|
|
11697
12612
|
],
|
|
11698
12613
|
"security": [
|
|
11699
12614
|
{
|
|
@@ -12488,65 +13403,213 @@
|
|
|
12488
13403
|
"schema": {
|
|
12489
13404
|
"type": "string"
|
|
12490
13405
|
},
|
|
12491
|
-
"example": "355ee47d-ff4c-4924-3db2-fd86ae629676"
|
|
13406
|
+
"example": "355ee47d-ff4c-4924-3db2-fd86ae629676"
|
|
13407
|
+
}
|
|
13408
|
+
]
|
|
13409
|
+
}
|
|
13410
|
+
},
|
|
13411
|
+
"/pools/{id}/actions/create_network": {
|
|
13412
|
+
"post": {
|
|
13413
|
+
"operationId": "CreateNetwork",
|
|
13414
|
+
"responses": {
|
|
13415
|
+
"201": {
|
|
13416
|
+
"description": "Resource created",
|
|
13417
|
+
"content": {
|
|
13418
|
+
"application/json": {
|
|
13419
|
+
"schema": {
|
|
13420
|
+
"anyOf": [
|
|
13421
|
+
{
|
|
13422
|
+
"type": "string"
|
|
13423
|
+
},
|
|
13424
|
+
{
|
|
13425
|
+
"properties": {
|
|
13426
|
+
"id": {
|
|
13427
|
+
"type": "string"
|
|
13428
|
+
}
|
|
13429
|
+
},
|
|
13430
|
+
"required": [
|
|
13431
|
+
"id"
|
|
13432
|
+
],
|
|
13433
|
+
"type": "object"
|
|
13434
|
+
}
|
|
13435
|
+
]
|
|
13436
|
+
},
|
|
13437
|
+
"examples": {
|
|
13438
|
+
"Example 1": {
|
|
13439
|
+
"value": "/rest/v0/tasks/0m7kl0j9l"
|
|
13440
|
+
},
|
|
13441
|
+
"Example 2": {
|
|
13442
|
+
"value": {
|
|
13443
|
+
"id": "9fe12ca3-d75d-cfb0-492e-cfd2bc6c568f"
|
|
13444
|
+
}
|
|
13445
|
+
}
|
|
13446
|
+
}
|
|
13447
|
+
}
|
|
13448
|
+
}
|
|
13449
|
+
},
|
|
13450
|
+
"202": {
|
|
13451
|
+
"description": "Action executed asynchronously"
|
|
13452
|
+
},
|
|
13453
|
+
"401": {
|
|
13454
|
+
"description": "Authentication required"
|
|
13455
|
+
},
|
|
13456
|
+
"404": {
|
|
13457
|
+
"description": "Resource not found"
|
|
13458
|
+
},
|
|
13459
|
+
"500": {
|
|
13460
|
+
"description": "Internal server error, XenServer/XCP-ng error"
|
|
13461
|
+
}
|
|
13462
|
+
},
|
|
13463
|
+
"tags": [
|
|
13464
|
+
"networks",
|
|
13465
|
+
"pools"
|
|
13466
|
+
],
|
|
13467
|
+
"security": [
|
|
13468
|
+
{
|
|
13469
|
+
"*": []
|
|
13470
|
+
}
|
|
13471
|
+
],
|
|
13472
|
+
"parameters": [
|
|
13473
|
+
{
|
|
13474
|
+
"in": "path",
|
|
13475
|
+
"name": "id",
|
|
13476
|
+
"required": true,
|
|
13477
|
+
"schema": {
|
|
13478
|
+
"type": "string"
|
|
13479
|
+
},
|
|
13480
|
+
"example": "355ee47d-ff4c-4924-3db2-fd86ae629676"
|
|
13481
|
+
},
|
|
13482
|
+
{
|
|
13483
|
+
"in": "query",
|
|
13484
|
+
"name": "sync",
|
|
13485
|
+
"required": false,
|
|
13486
|
+
"schema": {
|
|
13487
|
+
"type": "boolean"
|
|
13488
|
+
}
|
|
13489
|
+
}
|
|
13490
|
+
],
|
|
13491
|
+
"requestBody": {
|
|
13492
|
+
"required": true,
|
|
13493
|
+
"content": {
|
|
13494
|
+
"application/json": {
|
|
13495
|
+
"schema": {
|
|
13496
|
+
"$ref": "#/components/schemas/CreateNetworkBody"
|
|
13497
|
+
},
|
|
13498
|
+
"example": {
|
|
13499
|
+
"name": "awes0me_network",
|
|
13500
|
+
"description": "random description",
|
|
13501
|
+
"pif": "ad15b2c8-3d9a-194e-c43a-e3dcda74b256",
|
|
13502
|
+
"vlan": 0
|
|
13503
|
+
}
|
|
13504
|
+
}
|
|
13505
|
+
}
|
|
13506
|
+
}
|
|
13507
|
+
}
|
|
13508
|
+
},
|
|
13509
|
+
"/pools/{id}/actions/emergency_shutdown": {
|
|
13510
|
+
"post": {
|
|
13511
|
+
"operationId": "EmergencyShutdown",
|
|
13512
|
+
"responses": {
|
|
13513
|
+
"202": {
|
|
13514
|
+
"description": "Action executed asynchronously",
|
|
13515
|
+
"content": {
|
|
13516
|
+
"text/plain": {
|
|
13517
|
+
"schema": {
|
|
13518
|
+
"anyOf": [
|
|
13519
|
+
{},
|
|
13520
|
+
{
|
|
13521
|
+
"type": "string"
|
|
13522
|
+
}
|
|
13523
|
+
]
|
|
13524
|
+
},
|
|
13525
|
+
"examples": {
|
|
13526
|
+
"Example 1": {
|
|
13527
|
+
"value": "/rest/v0/tasks/0m7kl0j9l"
|
|
13528
|
+
}
|
|
13529
|
+
}
|
|
13530
|
+
}
|
|
13531
|
+
}
|
|
13532
|
+
},
|
|
13533
|
+
"204": {
|
|
13534
|
+
"description": "No content"
|
|
13535
|
+
},
|
|
13536
|
+
"401": {
|
|
13537
|
+
"description": "Authentication required"
|
|
13538
|
+
},
|
|
13539
|
+
"403": {
|
|
13540
|
+
"description": "Feature unauthorized"
|
|
13541
|
+
},
|
|
13542
|
+
"404": {
|
|
13543
|
+
"description": "Resource not found"
|
|
13544
|
+
}
|
|
13545
|
+
},
|
|
13546
|
+
"tags": [
|
|
13547
|
+
"pools"
|
|
13548
|
+
],
|
|
13549
|
+
"security": [
|
|
13550
|
+
{
|
|
13551
|
+
"*": []
|
|
13552
|
+
}
|
|
13553
|
+
],
|
|
13554
|
+
"parameters": [
|
|
13555
|
+
{
|
|
13556
|
+
"in": "path",
|
|
13557
|
+
"name": "id",
|
|
13558
|
+
"required": true,
|
|
13559
|
+
"schema": {
|
|
13560
|
+
"type": "string"
|
|
13561
|
+
},
|
|
13562
|
+
"example": "355ee47d-ff4c-4924-3db2-fd86ae629677"
|
|
13563
|
+
},
|
|
13564
|
+
{
|
|
13565
|
+
"in": "query",
|
|
13566
|
+
"name": "sync",
|
|
13567
|
+
"required": false,
|
|
13568
|
+
"schema": {
|
|
13569
|
+
"type": "boolean"
|
|
13570
|
+
}
|
|
12492
13571
|
}
|
|
12493
13572
|
]
|
|
12494
13573
|
}
|
|
12495
13574
|
},
|
|
12496
|
-
"/pools/{id}/actions/
|
|
13575
|
+
"/pools/{id}/actions/rolling_reboot": {
|
|
12497
13576
|
"post": {
|
|
12498
|
-
"operationId": "
|
|
13577
|
+
"operationId": "RollingReboot",
|
|
12499
13578
|
"responses": {
|
|
12500
|
-
"
|
|
12501
|
-
"description": "
|
|
13579
|
+
"202": {
|
|
13580
|
+
"description": "Action executed asynchronously",
|
|
12502
13581
|
"content": {
|
|
12503
|
-
"
|
|
13582
|
+
"text/plain": {
|
|
12504
13583
|
"schema": {
|
|
12505
13584
|
"anyOf": [
|
|
13585
|
+
{},
|
|
12506
13586
|
{
|
|
12507
13587
|
"type": "string"
|
|
12508
|
-
},
|
|
12509
|
-
{
|
|
12510
|
-
"properties": {
|
|
12511
|
-
"id": {
|
|
12512
|
-
"type": "string"
|
|
12513
|
-
}
|
|
12514
|
-
},
|
|
12515
|
-
"required": [
|
|
12516
|
-
"id"
|
|
12517
|
-
],
|
|
12518
|
-
"type": "object"
|
|
12519
13588
|
}
|
|
12520
13589
|
]
|
|
12521
13590
|
},
|
|
12522
13591
|
"examples": {
|
|
12523
13592
|
"Example 1": {
|
|
12524
13593
|
"value": "/rest/v0/tasks/0m7kl0j9l"
|
|
12525
|
-
},
|
|
12526
|
-
"Example 2": {
|
|
12527
|
-
"value": {
|
|
12528
|
-
"id": "9fe12ca3-d75d-cfb0-492e-cfd2bc6c568f"
|
|
12529
|
-
}
|
|
12530
13594
|
}
|
|
12531
13595
|
}
|
|
12532
13596
|
}
|
|
12533
13597
|
}
|
|
12534
13598
|
},
|
|
12535
|
-
"
|
|
12536
|
-
"description": "
|
|
13599
|
+
"204": {
|
|
13600
|
+
"description": "No content"
|
|
12537
13601
|
},
|
|
12538
13602
|
"401": {
|
|
12539
13603
|
"description": "Authentication required"
|
|
12540
13604
|
},
|
|
13605
|
+
"403": {
|
|
13606
|
+
"description": "Feature unauthorized"
|
|
13607
|
+
},
|
|
12541
13608
|
"404": {
|
|
12542
13609
|
"description": "Resource not found"
|
|
12543
|
-
},
|
|
12544
|
-
"500": {
|
|
12545
|
-
"description": "Internal server error, XenServer/XCP-ng error"
|
|
12546
13610
|
}
|
|
12547
13611
|
},
|
|
12548
13612
|
"tags": [
|
|
12549
|
-
"networks",
|
|
12550
13613
|
"pools"
|
|
12551
13614
|
],
|
|
12552
13615
|
"security": [
|
|
@@ -12562,7 +13625,7 @@
|
|
|
12562
13625
|
"schema": {
|
|
12563
13626
|
"type": "string"
|
|
12564
13627
|
},
|
|
12565
|
-
"example": "355ee47d-ff4c-4924-3db2-
|
|
13628
|
+
"example": "355ee47d-ff4c-4924-3db2-fd86ae629677"
|
|
12566
13629
|
},
|
|
12567
13630
|
{
|
|
12568
13631
|
"in": "query",
|
|
@@ -12572,28 +13635,12 @@
|
|
|
12572
13635
|
"type": "boolean"
|
|
12573
13636
|
}
|
|
12574
13637
|
}
|
|
12575
|
-
]
|
|
12576
|
-
"requestBody": {
|
|
12577
|
-
"required": true,
|
|
12578
|
-
"content": {
|
|
12579
|
-
"application/json": {
|
|
12580
|
-
"schema": {
|
|
12581
|
-
"$ref": "#/components/schemas/CreateNetworkBody"
|
|
12582
|
-
},
|
|
12583
|
-
"example": {
|
|
12584
|
-
"name": "awes0me_network",
|
|
12585
|
-
"description": "random description",
|
|
12586
|
-
"pif": "ad15b2c8-3d9a-194e-c43a-e3dcda74b256",
|
|
12587
|
-
"vlan": 0
|
|
12588
|
-
}
|
|
12589
|
-
}
|
|
12590
|
-
}
|
|
12591
|
-
}
|
|
13638
|
+
]
|
|
12592
13639
|
}
|
|
12593
13640
|
},
|
|
12594
|
-
"/pools/{id}/actions/
|
|
13641
|
+
"/pools/{id}/actions/rolling_update": {
|
|
12595
13642
|
"post": {
|
|
12596
|
-
"operationId": "
|
|
13643
|
+
"operationId": "RollingUpdate",
|
|
12597
13644
|
"responses": {
|
|
12598
13645
|
"202": {
|
|
12599
13646
|
"description": "Action executed asynchronously",
|
|
@@ -12657,107 +13704,2101 @@
|
|
|
12657
13704
|
]
|
|
12658
13705
|
}
|
|
12659
13706
|
},
|
|
12660
|
-
"/pools/{id}/actions/
|
|
13707
|
+
"/pools/{id}/actions/create_vm": {
|
|
12661
13708
|
"post": {
|
|
12662
|
-
"operationId": "
|
|
13709
|
+
"operationId": "CreateVm",
|
|
12663
13710
|
"responses": {
|
|
12664
|
-
"
|
|
12665
|
-
"description": "
|
|
13711
|
+
"201": {
|
|
13712
|
+
"description": "Resource created",
|
|
12666
13713
|
"content": {
|
|
12667
|
-
"
|
|
13714
|
+
"application/json": {
|
|
12668
13715
|
"schema": {
|
|
12669
13716
|
"anyOf": [
|
|
12670
|
-
{},
|
|
12671
13717
|
{
|
|
12672
13718
|
"type": "string"
|
|
13719
|
+
},
|
|
13720
|
+
{
|
|
13721
|
+
"properties": {
|
|
13722
|
+
"id": {
|
|
13723
|
+
"type": "string"
|
|
13724
|
+
}
|
|
13725
|
+
},
|
|
13726
|
+
"required": [
|
|
13727
|
+
"id"
|
|
13728
|
+
],
|
|
13729
|
+
"type": "object"
|
|
13730
|
+
}
|
|
13731
|
+
]
|
|
13732
|
+
},
|
|
13733
|
+
"examples": {
|
|
13734
|
+
"Example 1": {
|
|
13735
|
+
"value": "/rest/v0/tasks/0m7kl0j9l"
|
|
13736
|
+
},
|
|
13737
|
+
"Example 2": {
|
|
13738
|
+
"value": {
|
|
13739
|
+
"id": "8279e670-cb58-c048-7007-230f075becfb"
|
|
13740
|
+
}
|
|
13741
|
+
}
|
|
13742
|
+
}
|
|
13743
|
+
}
|
|
13744
|
+
}
|
|
13745
|
+
},
|
|
13746
|
+
"202": {
|
|
13747
|
+
"description": "Action executed asynchronously"
|
|
13748
|
+
},
|
|
13749
|
+
"401": {
|
|
13750
|
+
"description": "Authentication required"
|
|
13751
|
+
},
|
|
13752
|
+
"404": {
|
|
13753
|
+
"description": "Resource not found"
|
|
13754
|
+
},
|
|
13755
|
+
"500": {
|
|
13756
|
+
"description": "Internal server error, XenServer/XCP-ng error"
|
|
13757
|
+
}
|
|
13758
|
+
},
|
|
13759
|
+
"tags": [
|
|
13760
|
+
"vms",
|
|
13761
|
+
"pools"
|
|
13762
|
+
],
|
|
13763
|
+
"security": [
|
|
13764
|
+
{
|
|
13765
|
+
"*": []
|
|
13766
|
+
}
|
|
13767
|
+
],
|
|
13768
|
+
"parameters": [
|
|
13769
|
+
{
|
|
13770
|
+
"in": "path",
|
|
13771
|
+
"name": "id",
|
|
13772
|
+
"required": true,
|
|
13773
|
+
"schema": {
|
|
13774
|
+
"type": "string"
|
|
13775
|
+
},
|
|
13776
|
+
"example": "355ee47d-ff4c-4924-3db2-fd86ae629677"
|
|
13777
|
+
},
|
|
13778
|
+
{
|
|
13779
|
+
"in": "query",
|
|
13780
|
+
"name": "sync",
|
|
13781
|
+
"required": false,
|
|
13782
|
+
"schema": {
|
|
13783
|
+
"type": "boolean"
|
|
13784
|
+
}
|
|
13785
|
+
}
|
|
13786
|
+
],
|
|
13787
|
+
"requestBody": {
|
|
13788
|
+
"required": true,
|
|
13789
|
+
"content": {
|
|
13790
|
+
"application/json": {
|
|
13791
|
+
"schema": {
|
|
13792
|
+
"$ref": "#/components/schemas/Unbrand_CreateVmBody_"
|
|
13793
|
+
},
|
|
13794
|
+
"example": {
|
|
13795
|
+
"name_label": "new VM from REST API",
|
|
13796
|
+
"template": "9bbcc5d1-ad4b-06f1-18f6-03125e809c38",
|
|
13797
|
+
"boot": true
|
|
13798
|
+
}
|
|
13799
|
+
}
|
|
13800
|
+
}
|
|
13801
|
+
}
|
|
13802
|
+
}
|
|
13803
|
+
},
|
|
13804
|
+
"/pools/{id}/stats": {
|
|
13805
|
+
"get": {
|
|
13806
|
+
"operationId": "GetStats",
|
|
13807
|
+
"responses": {
|
|
13808
|
+
"200": {
|
|
13809
|
+
"description": "Ok",
|
|
13810
|
+
"content": {
|
|
13811
|
+
"application/json": {
|
|
13812
|
+
"schema": {
|
|
13813
|
+
"$ref": "#/components/schemas/XapiPoolStats"
|
|
13814
|
+
},
|
|
13815
|
+
"examples": {
|
|
13816
|
+
"Example 1": {
|
|
13817
|
+
"value": {
|
|
13818
|
+
"6278d39b-f972-43b0-a1f8-d31dc2beb923": {
|
|
13819
|
+
"error": {
|
|
13820
|
+
"code": "HOST_OFFLINE",
|
|
13821
|
+
"params": [
|
|
13822
|
+
"OpaqueRef:9a9b0a02-e888-4eaf-9d8c-127cfd8e5d9e"
|
|
13823
|
+
],
|
|
13824
|
+
"call": {
|
|
13825
|
+
"duration": 158,
|
|
13826
|
+
"method": "host.get_servertime",
|
|
13827
|
+
"params": [
|
|
13828
|
+
"* session id *",
|
|
13829
|
+
"OpaqueRef:9a9b0a02-e888-4eaf-9d8c-127cfd8e5d9e"
|
|
13830
|
+
]
|
|
13831
|
+
}
|
|
13832
|
+
}
|
|
13833
|
+
},
|
|
13834
|
+
"0e21d25b-4487-4f63-b0d1-2d0f6bf5aa7f": {
|
|
13835
|
+
"endTimestamp": 1751031135,
|
|
13836
|
+
"interval": 5,
|
|
13837
|
+
"stats": {
|
|
13838
|
+
"memory": [
|
|
13839
|
+
4286177280,
|
|
13840
|
+
4286177280,
|
|
13841
|
+
4286177280,
|
|
13842
|
+
4286177280,
|
|
13843
|
+
4286177280,
|
|
13844
|
+
4286177280,
|
|
13845
|
+
4286177280,
|
|
13846
|
+
4286177280,
|
|
13847
|
+
4286177280,
|
|
13848
|
+
4286177280,
|
|
13849
|
+
4286177280,
|
|
13850
|
+
4286177280,
|
|
13851
|
+
4286177280,
|
|
13852
|
+
4286177280,
|
|
13853
|
+
4286177280,
|
|
13854
|
+
4286177280,
|
|
13855
|
+
4286177280,
|
|
13856
|
+
4286177280,
|
|
13857
|
+
4286177280,
|
|
13858
|
+
4286177280,
|
|
13859
|
+
4286177280,
|
|
13860
|
+
4286177280,
|
|
13861
|
+
4286177280,
|
|
13862
|
+
4286177280,
|
|
13863
|
+
4286177280,
|
|
13864
|
+
4286177280,
|
|
13865
|
+
4286177280,
|
|
13866
|
+
4286177280,
|
|
13867
|
+
4286177280,
|
|
13868
|
+
4286177280,
|
|
13869
|
+
4286177280,
|
|
13870
|
+
4286177280,
|
|
13871
|
+
4286177280,
|
|
13872
|
+
4286177280,
|
|
13873
|
+
4286177280,
|
|
13874
|
+
4286177280,
|
|
13875
|
+
4286177280,
|
|
13876
|
+
4286177280,
|
|
13877
|
+
4286177280,
|
|
13878
|
+
4286177280,
|
|
13879
|
+
4286177280,
|
|
13880
|
+
4286177280,
|
|
13881
|
+
4286177280,
|
|
13882
|
+
4286177280,
|
|
13883
|
+
4286177280,
|
|
13884
|
+
4286177280,
|
|
13885
|
+
4286177280,
|
|
13886
|
+
4286177280,
|
|
13887
|
+
4286177280,
|
|
13888
|
+
4286177280,
|
|
13889
|
+
4286177280,
|
|
13890
|
+
4286177280,
|
|
13891
|
+
4286177280,
|
|
13892
|
+
4286177280,
|
|
13893
|
+
4286177280,
|
|
13894
|
+
4286177280,
|
|
13895
|
+
4286177280,
|
|
13896
|
+
4286177280,
|
|
13897
|
+
4286177280,
|
|
13898
|
+
4286177280,
|
|
13899
|
+
4286177280,
|
|
13900
|
+
4286177280,
|
|
13901
|
+
4286177280,
|
|
13902
|
+
4286177280,
|
|
13903
|
+
4286177280,
|
|
13904
|
+
4286177280,
|
|
13905
|
+
4286177280,
|
|
13906
|
+
4286177280,
|
|
13907
|
+
4286177280,
|
|
13908
|
+
4286177280,
|
|
13909
|
+
4286177280,
|
|
13910
|
+
4286177280,
|
|
13911
|
+
4286177280,
|
|
13912
|
+
4286177280,
|
|
13913
|
+
4286177280,
|
|
13914
|
+
4286177280,
|
|
13915
|
+
4286177280,
|
|
13916
|
+
4286177280,
|
|
13917
|
+
4286177280,
|
|
13918
|
+
4286177280,
|
|
13919
|
+
4286177280,
|
|
13920
|
+
4286177280,
|
|
13921
|
+
4286177280,
|
|
13922
|
+
4286177280,
|
|
13923
|
+
4286177280,
|
|
13924
|
+
4286177280,
|
|
13925
|
+
4286177280,
|
|
13926
|
+
4286177280,
|
|
13927
|
+
4286177280,
|
|
13928
|
+
4286177280,
|
|
13929
|
+
4286177280,
|
|
13930
|
+
4286177280,
|
|
13931
|
+
4286177280,
|
|
13932
|
+
4286177280,
|
|
13933
|
+
4286177280,
|
|
13934
|
+
4286177280,
|
|
13935
|
+
4286177280,
|
|
13936
|
+
4286177280,
|
|
13937
|
+
4286177280,
|
|
13938
|
+
4286177280,
|
|
13939
|
+
4286177280,
|
|
13940
|
+
4286177280,
|
|
13941
|
+
4286177280,
|
|
13942
|
+
4286177280,
|
|
13943
|
+
4286177280,
|
|
13944
|
+
4286177280,
|
|
13945
|
+
4286177280,
|
|
13946
|
+
4286177280,
|
|
13947
|
+
4286177280,
|
|
13948
|
+
4286177280,
|
|
13949
|
+
4286177280,
|
|
13950
|
+
4286177280,
|
|
13951
|
+
4286177280,
|
|
13952
|
+
4286177280,
|
|
13953
|
+
4286177280,
|
|
13954
|
+
4286177280,
|
|
13955
|
+
4286177280,
|
|
13956
|
+
4286177280
|
|
13957
|
+
],
|
|
13958
|
+
"memoryFree": [
|
|
13959
|
+
2670882816,
|
|
13960
|
+
2670882816,
|
|
13961
|
+
2670882816,
|
|
13962
|
+
2670882816,
|
|
13963
|
+
2670882816,
|
|
13964
|
+
2670882816,
|
|
13965
|
+
2670882816,
|
|
13966
|
+
2670882816,
|
|
13967
|
+
2670882816,
|
|
13968
|
+
2670882816,
|
|
13969
|
+
2670882816,
|
|
13970
|
+
2670882816,
|
|
13971
|
+
2670882816,
|
|
13972
|
+
2670882816,
|
|
13973
|
+
2670882816,
|
|
13974
|
+
2670882816,
|
|
13975
|
+
2670882816,
|
|
13976
|
+
2670882816,
|
|
13977
|
+
2670882816,
|
|
13978
|
+
2670882816,
|
|
13979
|
+
2670882816,
|
|
13980
|
+
2670882816,
|
|
13981
|
+
2670882816,
|
|
13982
|
+
2670882816,
|
|
13983
|
+
2670882816,
|
|
13984
|
+
2670882816,
|
|
13985
|
+
2670882816,
|
|
13986
|
+
2670882816,
|
|
13987
|
+
2670882816,
|
|
13988
|
+
2670882816,
|
|
13989
|
+
2670882816,
|
|
13990
|
+
2670882816,
|
|
13991
|
+
2670882816,
|
|
13992
|
+
2670882816,
|
|
13993
|
+
2670882816,
|
|
13994
|
+
2670882816,
|
|
13995
|
+
2670882816,
|
|
13996
|
+
2670882816,
|
|
13997
|
+
2670882816,
|
|
13998
|
+
2670882816,
|
|
13999
|
+
2670882816,
|
|
14000
|
+
2670882816,
|
|
14001
|
+
2670882816,
|
|
14002
|
+
2670882816,
|
|
14003
|
+
2670882816,
|
|
14004
|
+
2670882816,
|
|
14005
|
+
2670882816,
|
|
14006
|
+
2670882816,
|
|
14007
|
+
2670882816,
|
|
14008
|
+
2670882816,
|
|
14009
|
+
2670882816,
|
|
14010
|
+
2670882816,
|
|
14011
|
+
2670882816,
|
|
14012
|
+
2670882816,
|
|
14013
|
+
2670882816,
|
|
14014
|
+
2670882816,
|
|
14015
|
+
2670882816,
|
|
14016
|
+
2670882816,
|
|
14017
|
+
2670882816,
|
|
14018
|
+
2670882816,
|
|
14019
|
+
2670882816,
|
|
14020
|
+
2670882816,
|
|
14021
|
+
2670882816,
|
|
14022
|
+
2670882816,
|
|
14023
|
+
2670882816,
|
|
14024
|
+
2670882816,
|
|
14025
|
+
2670882816,
|
|
14026
|
+
2670882816,
|
|
14027
|
+
2670882816,
|
|
14028
|
+
2670882816,
|
|
14029
|
+
2670882816,
|
|
14030
|
+
2670882816,
|
|
14031
|
+
2670882816,
|
|
14032
|
+
2670882816,
|
|
14033
|
+
2670882816,
|
|
14034
|
+
2670882816,
|
|
14035
|
+
2670882816,
|
|
14036
|
+
2670882816,
|
|
14037
|
+
2670882816,
|
|
14038
|
+
2670882816,
|
|
14039
|
+
2670882816,
|
|
14040
|
+
2670882816,
|
|
14041
|
+
2670882816,
|
|
14042
|
+
2670882816,
|
|
14043
|
+
2670882816,
|
|
14044
|
+
2670882816,
|
|
14045
|
+
2670882816,
|
|
14046
|
+
2670882816,
|
|
14047
|
+
2670882816,
|
|
14048
|
+
2670882816,
|
|
14049
|
+
2670882816,
|
|
14050
|
+
2670882816,
|
|
14051
|
+
2670882816,
|
|
14052
|
+
2670882816,
|
|
14053
|
+
2670882816,
|
|
14054
|
+
2670882816,
|
|
14055
|
+
2670882816,
|
|
14056
|
+
2670882816,
|
|
14057
|
+
2670882816,
|
|
14058
|
+
2670882816,
|
|
14059
|
+
2670882816,
|
|
14060
|
+
2670882816,
|
|
14061
|
+
2670882816,
|
|
14062
|
+
2670882816,
|
|
14063
|
+
2670882816,
|
|
14064
|
+
2670882816,
|
|
14065
|
+
2670882816,
|
|
14066
|
+
2670882816,
|
|
14067
|
+
2670882816,
|
|
14068
|
+
2670882816,
|
|
14069
|
+
2670882816,
|
|
14070
|
+
2670882816,
|
|
14071
|
+
2670882816,
|
|
14072
|
+
2670882816,
|
|
14073
|
+
2670882816,
|
|
14074
|
+
2670882816,
|
|
14075
|
+
2670882816,
|
|
14076
|
+
2670882816
|
|
14077
|
+
],
|
|
14078
|
+
"cpus": {
|
|
14079
|
+
"0": [
|
|
14080
|
+
10.07,
|
|
14081
|
+
9.56,
|
|
14082
|
+
8.88,
|
|
14083
|
+
9.6,
|
|
14084
|
+
10.31,
|
|
14085
|
+
8.88,
|
|
14086
|
+
9.36,
|
|
14087
|
+
9.84,
|
|
14088
|
+
10.459999999999999,
|
|
14089
|
+
10.299999999999999,
|
|
14090
|
+
11.48,
|
|
14091
|
+
9.719999999999999,
|
|
14092
|
+
8.35,
|
|
14093
|
+
8.63,
|
|
14094
|
+
9.44,
|
|
14095
|
+
10.059999999999999,
|
|
14096
|
+
10.34,
|
|
14097
|
+
8.81,
|
|
14098
|
+
8.5,
|
|
14099
|
+
8.89,
|
|
14100
|
+
10,
|
|
14101
|
+
11.12,
|
|
14102
|
+
12.120000000000001,
|
|
14103
|
+
9.92,
|
|
14104
|
+
9.21,
|
|
14105
|
+
9.58,
|
|
14106
|
+
9.719999999999999,
|
|
14107
|
+
9.85,
|
|
14108
|
+
10.979999999999999,
|
|
14109
|
+
9.950000000000001,
|
|
14110
|
+
10.54,
|
|
14111
|
+
10.84,
|
|
14112
|
+
10.290000000000001,
|
|
14113
|
+
11.74,
|
|
14114
|
+
12.18,
|
|
14115
|
+
10.22,
|
|
14116
|
+
8.559999999999999,
|
|
14117
|
+
9.25,
|
|
14118
|
+
9.53,
|
|
14119
|
+
11.64,
|
|
14120
|
+
15.24,
|
|
14121
|
+
9.82,
|
|
14122
|
+
9.78,
|
|
14123
|
+
9.19,
|
|
14124
|
+
9.71,
|
|
14125
|
+
10.040000000000001,
|
|
14126
|
+
11.129999999999999,
|
|
14127
|
+
9.06,
|
|
14128
|
+
9.28,
|
|
14129
|
+
9.53,
|
|
14130
|
+
9.629999999999999,
|
|
14131
|
+
9.77,
|
|
14132
|
+
10.96,
|
|
14133
|
+
10.32,
|
|
14134
|
+
9.3,
|
|
14135
|
+
9.65,
|
|
14136
|
+
14.41,
|
|
14137
|
+
26.479999999999997,
|
|
14138
|
+
30.159999999999997,
|
|
14139
|
+
20.29,
|
|
14140
|
+
17.09,
|
|
14141
|
+
15.43,
|
|
14142
|
+
14.37,
|
|
14143
|
+
11.23,
|
|
14144
|
+
10.27,
|
|
14145
|
+
9.4,
|
|
14146
|
+
8.649999999999999,
|
|
14147
|
+
13.020000000000001,
|
|
14148
|
+
18.86,
|
|
14149
|
+
9.27,
|
|
14150
|
+
11.27,
|
|
14151
|
+
10.81,
|
|
14152
|
+
11.23,
|
|
14153
|
+
12.85,
|
|
14154
|
+
11.19,
|
|
14155
|
+
9.370000000000001,
|
|
14156
|
+
10.59,
|
|
14157
|
+
10.39,
|
|
14158
|
+
10.82,
|
|
14159
|
+
10.79,
|
|
14160
|
+
14.04,
|
|
14161
|
+
10.83,
|
|
14162
|
+
11.83,
|
|
14163
|
+
9.5,
|
|
14164
|
+
9.77,
|
|
14165
|
+
9.48,
|
|
14166
|
+
9.59,
|
|
14167
|
+
13.36,
|
|
14168
|
+
20.49,
|
|
14169
|
+
8.57,
|
|
14170
|
+
11.03,
|
|
14171
|
+
17.01,
|
|
14172
|
+
18.05,
|
|
14173
|
+
10.549999999999999,
|
|
14174
|
+
13.100000000000001,
|
|
14175
|
+
10.18,
|
|
14176
|
+
10.38,
|
|
14177
|
+
9.27,
|
|
14178
|
+
10.93,
|
|
14179
|
+
11.05,
|
|
14180
|
+
11.59,
|
|
14181
|
+
12.11,
|
|
14182
|
+
15.459999999999999,
|
|
14183
|
+
10.290000000000001,
|
|
14184
|
+
11.469999999999999,
|
|
14185
|
+
20.5,
|
|
14186
|
+
12.36,
|
|
14187
|
+
10.31,
|
|
14188
|
+
9.27,
|
|
14189
|
+
8.97,
|
|
14190
|
+
10.51,
|
|
14191
|
+
9.959999999999999,
|
|
14192
|
+
11.4,
|
|
14193
|
+
10.65,
|
|
14194
|
+
8.82,
|
|
14195
|
+
8.67,
|
|
14196
|
+
9.93,
|
|
14197
|
+
16.12
|
|
14198
|
+
],
|
|
14199
|
+
"1": [
|
|
14200
|
+
9.04,
|
|
14201
|
+
8.57,
|
|
14202
|
+
8.52,
|
|
14203
|
+
9.44,
|
|
14204
|
+
10.15,
|
|
14205
|
+
9.790000000000001,
|
|
14206
|
+
9.53,
|
|
14207
|
+
9.120000000000001,
|
|
14208
|
+
8.75,
|
|
14209
|
+
9.47,
|
|
14210
|
+
9.8,
|
|
14211
|
+
8.82,
|
|
14212
|
+
9.959999999999999,
|
|
14213
|
+
10.03,
|
|
14214
|
+
9.01,
|
|
14215
|
+
9.36,
|
|
14216
|
+
10.23,
|
|
14217
|
+
10.36,
|
|
14218
|
+
10.68,
|
|
14219
|
+
9.62,
|
|
14220
|
+
9.25,
|
|
14221
|
+
9.26,
|
|
14222
|
+
9.29,
|
|
14223
|
+
9.34,
|
|
14224
|
+
9.120000000000001,
|
|
14225
|
+
9.139999999999999,
|
|
14226
|
+
9.520000000000001,
|
|
14227
|
+
9.47,
|
|
14228
|
+
9.78,
|
|
14229
|
+
8.09,
|
|
14230
|
+
7.7299999999999995,
|
|
14231
|
+
7.430000000000001,
|
|
14232
|
+
8.35,
|
|
14233
|
+
8.73,
|
|
14234
|
+
9.85,
|
|
14235
|
+
9.6,
|
|
14236
|
+
9.82,
|
|
14237
|
+
9.04,
|
|
14238
|
+
8.93,
|
|
14239
|
+
11.12,
|
|
14240
|
+
14.17,
|
|
14241
|
+
7.86,
|
|
14242
|
+
8.59,
|
|
14243
|
+
9.35,
|
|
14244
|
+
8.34,
|
|
14245
|
+
9.47,
|
|
14246
|
+
10.620000000000001,
|
|
14247
|
+
9.75,
|
|
14248
|
+
9.629999999999999,
|
|
14249
|
+
9.34,
|
|
14250
|
+
9.94,
|
|
14251
|
+
9.73,
|
|
14252
|
+
9.86,
|
|
14253
|
+
8.57,
|
|
14254
|
+
9.04,
|
|
14255
|
+
9.22,
|
|
14256
|
+
12.24,
|
|
14257
|
+
21.93,
|
|
14258
|
+
21.59,
|
|
14259
|
+
13.19,
|
|
14260
|
+
18.529999999999998,
|
|
14261
|
+
12,
|
|
14262
|
+
11.200000000000001,
|
|
14263
|
+
10.94,
|
|
14264
|
+
10.26,
|
|
14265
|
+
9.87,
|
|
14266
|
+
9.879999999999999,
|
|
14267
|
+
9.83,
|
|
14268
|
+
15.18,
|
|
14269
|
+
9.520000000000001,
|
|
14270
|
+
11.129999999999999,
|
|
14271
|
+
11.84,
|
|
14272
|
+
11.05,
|
|
14273
|
+
9.66,
|
|
14274
|
+
8.18,
|
|
14275
|
+
7.91,
|
|
14276
|
+
10.33,
|
|
14277
|
+
9.120000000000001,
|
|
14278
|
+
9.3,
|
|
14279
|
+
9.92,
|
|
14280
|
+
15.290000000000001,
|
|
14281
|
+
9.049999999999999,
|
|
14282
|
+
9.17,
|
|
14283
|
+
9.180000000000001,
|
|
14284
|
+
8.37,
|
|
14285
|
+
9.11,
|
|
14286
|
+
9.54,
|
|
14287
|
+
11,
|
|
14288
|
+
18.32,
|
|
14289
|
+
9.049999999999999,
|
|
14290
|
+
11.51,
|
|
14291
|
+
15.939999999999998,
|
|
14292
|
+
11.08,
|
|
14293
|
+
9.41,
|
|
14294
|
+
10.780000000000001,
|
|
14295
|
+
9.51,
|
|
14296
|
+
8.37,
|
|
14297
|
+
9.180000000000001,
|
|
14298
|
+
9.39,
|
|
14299
|
+
8.03,
|
|
14300
|
+
9.85,
|
|
14301
|
+
10.36,
|
|
14302
|
+
13.98,
|
|
14303
|
+
9.39,
|
|
14304
|
+
9.950000000000001,
|
|
14305
|
+
10.84,
|
|
14306
|
+
10.280000000000001,
|
|
14307
|
+
8.12,
|
|
14308
|
+
9.69,
|
|
14309
|
+
8.780000000000001,
|
|
14310
|
+
9.69,
|
|
14311
|
+
9.48,
|
|
14312
|
+
9.34,
|
|
14313
|
+
7.79,
|
|
14314
|
+
9.47,
|
|
14315
|
+
9.29,
|
|
14316
|
+
10.7,
|
|
14317
|
+
17.66
|
|
14318
|
+
]
|
|
14319
|
+
},
|
|
14320
|
+
"load": [
|
|
14321
|
+
0.1463,
|
|
14322
|
+
0.1364,
|
|
14323
|
+
0.1264,
|
|
14324
|
+
0.1164,
|
|
14325
|
+
0.135,
|
|
14326
|
+
0.1729,
|
|
14327
|
+
0.1565,
|
|
14328
|
+
0.1465,
|
|
14329
|
+
0.1365,
|
|
14330
|
+
0.1265,
|
|
14331
|
+
0.1165,
|
|
14332
|
+
0.1065,
|
|
14333
|
+
0.0966,
|
|
14334
|
+
0.0866,
|
|
14335
|
+
0.08,
|
|
14336
|
+
0.0766,
|
|
14337
|
+
0.0666,
|
|
14338
|
+
0.06,
|
|
14339
|
+
0.0567,
|
|
14340
|
+
0.05,
|
|
14341
|
+
0.0467,
|
|
14342
|
+
0.04,
|
|
14343
|
+
0.04,
|
|
14344
|
+
0.0368,
|
|
14345
|
+
0.03,
|
|
14346
|
+
0.03,
|
|
14347
|
+
0.03,
|
|
14348
|
+
0.0268,
|
|
14349
|
+
0.02,
|
|
14350
|
+
0.02,
|
|
14351
|
+
0.02,
|
|
14352
|
+
0.02,
|
|
14353
|
+
0.0169,
|
|
14354
|
+
0.01,
|
|
14355
|
+
0.01,
|
|
14356
|
+
0.01,
|
|
14357
|
+
0.01,
|
|
14358
|
+
0.01,
|
|
14359
|
+
0.01,
|
|
14360
|
+
0.01,
|
|
14361
|
+
0.01,
|
|
14362
|
+
0.0332,
|
|
14363
|
+
0.1101,
|
|
14364
|
+
0.1571,
|
|
14365
|
+
0.1443,
|
|
14366
|
+
0.1272,
|
|
14367
|
+
0.1172,
|
|
14368
|
+
0.1072,
|
|
14369
|
+
0.1,
|
|
14370
|
+
0.0972,
|
|
14371
|
+
0.131,
|
|
14372
|
+
0.2346,
|
|
14373
|
+
0.2146,
|
|
14374
|
+
0.1973,
|
|
14375
|
+
0.1846,
|
|
14376
|
+
0.1886,
|
|
14377
|
+
0.2347,
|
|
14378
|
+
0.2358,
|
|
14379
|
+
0.2748,
|
|
14380
|
+
0.2548,
|
|
14381
|
+
0.2555,
|
|
14382
|
+
0.2923,
|
|
14383
|
+
0.2649,
|
|
14384
|
+
0.245,
|
|
14385
|
+
0.225,
|
|
14386
|
+
0.2274,
|
|
14387
|
+
0.2726,
|
|
14388
|
+
0.2451,
|
|
14389
|
+
0.2446,
|
|
14390
|
+
0.2851,
|
|
14391
|
+
0.2652,
|
|
14392
|
+
0.2452,
|
|
14393
|
+
0.2253,
|
|
14394
|
+
0.2053,
|
|
14395
|
+
0.1877,
|
|
14396
|
+
0.1754,
|
|
14397
|
+
0.1554,
|
|
14398
|
+
0.156,
|
|
14399
|
+
0.2055,
|
|
14400
|
+
0.1855,
|
|
14401
|
+
0.1678,
|
|
14402
|
+
0.1578,
|
|
14403
|
+
0.1478,
|
|
14404
|
+
0.1356,
|
|
14405
|
+
0.1178,
|
|
14406
|
+
0.1079,
|
|
14407
|
+
0.1,
|
|
14408
|
+
0.0979,
|
|
14409
|
+
0.0879,
|
|
14410
|
+
0.0779,
|
|
14411
|
+
0.07,
|
|
14412
|
+
0.0843,
|
|
14413
|
+
0.138,
|
|
14414
|
+
0.128,
|
|
14415
|
+
0.118,
|
|
14416
|
+
0.108,
|
|
14417
|
+
0.0981,
|
|
14418
|
+
0.0881,
|
|
14419
|
+
0.08,
|
|
14420
|
+
0.0781,
|
|
14421
|
+
0.07,
|
|
14422
|
+
0.0682,
|
|
14423
|
+
0.06,
|
|
14424
|
+
0.0582,
|
|
14425
|
+
0.05,
|
|
14426
|
+
0.0482,
|
|
14427
|
+
0.04,
|
|
14428
|
+
0.04,
|
|
14429
|
+
0.0383,
|
|
14430
|
+
0.03,
|
|
14431
|
+
0.03,
|
|
14432
|
+
0.0283,
|
|
14433
|
+
0.02,
|
|
14434
|
+
0.033,
|
|
14435
|
+
0.0984,
|
|
14436
|
+
0.0884,
|
|
14437
|
+
0.08,
|
|
14438
|
+
0.1033
|
|
14439
|
+
],
|
|
14440
|
+
"pifs": {
|
|
14441
|
+
"rx": {
|
|
14442
|
+
"0": [
|
|
14443
|
+
177.1505,
|
|
14444
|
+
146.0538,
|
|
14445
|
+
65.197,
|
|
14446
|
+
161.1729,
|
|
14447
|
+
140.153,
|
|
14448
|
+
133.3197,
|
|
14449
|
+
95.6565,
|
|
14450
|
+
254.4575,
|
|
14451
|
+
622.2478,
|
|
14452
|
+
613.8387,
|
|
14453
|
+
154.9934,
|
|
14454
|
+
124.0258,
|
|
14455
|
+
187.5361,
|
|
14456
|
+
198.7337,
|
|
14457
|
+
166.6895,
|
|
14458
|
+
197.9211,
|
|
14459
|
+
159.0272,
|
|
14460
|
+
138.8176,
|
|
14461
|
+
177.7427,
|
|
14462
|
+
138.8519,
|
|
14463
|
+
138.6663,
|
|
14464
|
+
149.9577,
|
|
14465
|
+
156.1524,
|
|
14466
|
+
165.8935,
|
|
14467
|
+
173.4432,
|
|
14468
|
+
160.3388,
|
|
14469
|
+
233.173,
|
|
14470
|
+
260.8957,
|
|
14471
|
+
139.7597,
|
|
14472
|
+
169.8137,
|
|
14473
|
+
113.6127,
|
|
14474
|
+
421.4655,
|
|
14475
|
+
817.7339,
|
|
14476
|
+
266.2525,
|
|
14477
|
+
520.4689,
|
|
14478
|
+
150.6032,
|
|
14479
|
+
190.2794,
|
|
14480
|
+
193.0448,
|
|
14481
|
+
160.5704,
|
|
14482
|
+
182.0646,
|
|
14483
|
+
110.6279,
|
|
14484
|
+
62.0256,
|
|
14485
|
+
237.651,
|
|
14486
|
+
297.4287,
|
|
14487
|
+
248.6124,
|
|
14488
|
+
124.6001,
|
|
14489
|
+
135.1613,
|
|
14490
|
+
127.4922,
|
|
14491
|
+
137.3023,
|
|
14492
|
+
186.3178,
|
|
14493
|
+
215.8744,
|
|
14494
|
+
176.2602,
|
|
14495
|
+
166.0728,
|
|
14496
|
+
177.0399,
|
|
14497
|
+
122.5788,
|
|
14498
|
+
225.3141,
|
|
14499
|
+
622.6523,
|
|
14500
|
+
548.8357,
|
|
14501
|
+
122.3089,
|
|
14502
|
+
195.4243,
|
|
14503
|
+
276.8979,
|
|
14504
|
+
193.8274,
|
|
14505
|
+
190.4752,
|
|
14506
|
+
156.2348,
|
|
14507
|
+
199.6902,
|
|
14508
|
+
156.4138,
|
|
14509
|
+
136.0526,
|
|
14510
|
+
149.4206,
|
|
14511
|
+
142.098,
|
|
14512
|
+
165.8939,
|
|
14513
|
+
112.3953,
|
|
14514
|
+
125.9506,
|
|
14515
|
+
178.4714,
|
|
14516
|
+
262.318,
|
|
14517
|
+
207.2666,
|
|
14518
|
+
200.2995,
|
|
14519
|
+
174.3736,
|
|
14520
|
+
205.5677,
|
|
14521
|
+
18.7483,
|
|
14522
|
+
97.1194,
|
|
14523
|
+
370.3324,
|
|
14524
|
+
917.407,
|
|
14525
|
+
128.3314,
|
|
14526
|
+
175.9807,
|
|
14527
|
+
112.3198,
|
|
14528
|
+
111.9657,
|
|
14529
|
+
145.1591,
|
|
14530
|
+
140.079,
|
|
14531
|
+
218.2649,
|
|
14532
|
+
214.8196,
|
|
14533
|
+
192.7014,
|
|
14534
|
+
175.0843,
|
|
14535
|
+
119.3893,
|
|
14536
|
+
121.1903,
|
|
14537
|
+
144.0656,
|
|
14538
|
+
188.201,
|
|
14539
|
+
120.877,
|
|
14540
|
+
157.461,
|
|
14541
|
+
133.2787,
|
|
14542
|
+
168.9598,
|
|
14543
|
+
166.4183,
|
|
14544
|
+
193.7425,
|
|
14545
|
+
218.7006,
|
|
14546
|
+
312.7589,
|
|
14547
|
+
965.4944,
|
|
14548
|
+
155.9674,
|
|
14549
|
+
342.8991,
|
|
14550
|
+
296.6323,
|
|
14551
|
+
591.9749,
|
|
14552
|
+
166.365,
|
|
14553
|
+
112.7707,
|
|
14554
|
+
167.502,
|
|
14555
|
+
160.8092,
|
|
14556
|
+
223.3223,
|
|
14557
|
+
211.1992,
|
|
14558
|
+
177.7079,
|
|
14559
|
+
20.2051,
|
|
14560
|
+
127.1545
|
|
14561
|
+
],
|
|
14562
|
+
"1": [
|
|
14563
|
+
189.4876,
|
|
14564
|
+
116.8431,
|
|
14565
|
+
63.3135,
|
|
14566
|
+
181.0414,
|
|
14567
|
+
553.2811,
|
|
14568
|
+
838.5921,
|
|
14569
|
+
192.277,
|
|
14570
|
+
199.4739,
|
|
14571
|
+
177.2014,
|
|
14572
|
+
184.4713,
|
|
14573
|
+
513.2862,
|
|
14574
|
+
757.6664,
|
|
14575
|
+
177.6102,
|
|
14576
|
+
180.5172,
|
|
14577
|
+
191.3914,
|
|
14578
|
+
263.0015,
|
|
14579
|
+
591.4913,
|
|
14580
|
+
791.7061,
|
|
14581
|
+
298.3245,
|
|
14582
|
+
419.0697,
|
|
14583
|
+
231.2719,
|
|
14584
|
+
223.6201,
|
|
14585
|
+
489.2033,
|
|
14586
|
+
780.8646,
|
|
14587
|
+
183.6428,
|
|
14588
|
+
204.0968,
|
|
14589
|
+
230.1329,
|
|
14590
|
+
239.0858,
|
|
14591
|
+
655.997,
|
|
14592
|
+
980.0488,
|
|
14593
|
+
180.0527,
|
|
14594
|
+
192.8379,
|
|
14595
|
+
282.7487,
|
|
14596
|
+
656.5881,
|
|
14597
|
+
784.7719,
|
|
14598
|
+
183.571,
|
|
14599
|
+
186.4121,
|
|
14600
|
+
190.1587,
|
|
14601
|
+
208.6954,
|
|
14602
|
+
611.2658,
|
|
14603
|
+
1019.4175,
|
|
14604
|
+
55.8925,
|
|
14605
|
+
187.4972,
|
|
14606
|
+
179.731,
|
|
14607
|
+
192.0186,
|
|
14608
|
+
188.1511,
|
|
14609
|
+
479.8468,
|
|
14610
|
+
952.6181,
|
|
14611
|
+
216.3036,
|
|
14612
|
+
233.8062,
|
|
14613
|
+
240.7673,
|
|
14614
|
+
272.0145,
|
|
14615
|
+
512.7843,
|
|
14616
|
+
687.7659,
|
|
14617
|
+
224.8852,
|
|
14618
|
+
217.9776,
|
|
14619
|
+
206.3708,
|
|
14620
|
+
8436.2803,
|
|
14621
|
+
26685.4648,
|
|
14622
|
+
12811.7305,
|
|
14623
|
+
10669.3057,
|
|
14624
|
+
6786.4961,
|
|
14625
|
+
7084.0381,
|
|
14626
|
+
4580.3521,
|
|
14627
|
+
545.4028,
|
|
14628
|
+
864.8164,
|
|
14629
|
+
202.1622,
|
|
14630
|
+
505.0804,
|
|
14631
|
+
1147.189,
|
|
14632
|
+
452.3743,
|
|
14633
|
+
1086.2987,
|
|
14634
|
+
894.4191,
|
|
14635
|
+
1005.7607,
|
|
14636
|
+
2717.6548,
|
|
14637
|
+
245.2338,
|
|
14638
|
+
451.8658,
|
|
14639
|
+
987.2057,
|
|
14640
|
+
163.0364,
|
|
14641
|
+
1074.0902,
|
|
14642
|
+
3796.7485,
|
|
14643
|
+
784.3134,
|
|
14644
|
+
1258.4941,
|
|
14645
|
+
430.8885,
|
|
14646
|
+
887.2435,
|
|
14647
|
+
218.9164,
|
|
14648
|
+
206.8704,
|
|
14649
|
+
191.4602,
|
|
14650
|
+
330.3448,
|
|
14651
|
+
809.7494,
|
|
14652
|
+
883.0421,
|
|
14653
|
+
194.0328,
|
|
14654
|
+
208.9014,
|
|
14655
|
+
484.3492,
|
|
14656
|
+
1186.8184,
|
|
14657
|
+
440.232,
|
|
14658
|
+
987.4225,
|
|
14659
|
+
220.3967,
|
|
14660
|
+
218.6031,
|
|
14661
|
+
212.9356,
|
|
14662
|
+
246.0948,
|
|
14663
|
+
520.4993,
|
|
14664
|
+
1043.0072,
|
|
14665
|
+
194.5119,
|
|
14666
|
+
198.7182,
|
|
14667
|
+
419.5035,
|
|
14668
|
+
1362.4612,
|
|
14669
|
+
680.6985,
|
|
14670
|
+
555.4032,
|
|
14671
|
+
201.996,
|
|
14672
|
+
206.6911,
|
|
14673
|
+
220.3556,
|
|
14674
|
+
352.4922,
|
|
14675
|
+
1076.2238,
|
|
14676
|
+
200.6009,
|
|
14677
|
+
189.8869,
|
|
14678
|
+
146.8022,
|
|
14679
|
+
27.4213,
|
|
14680
|
+
365.4701
|
|
14681
|
+
]
|
|
14682
|
+
},
|
|
14683
|
+
"tx": {
|
|
14684
|
+
"0": [
|
|
14685
|
+
0,
|
|
14686
|
+
0,
|
|
14687
|
+
0,
|
|
14688
|
+
0,
|
|
14689
|
+
0,
|
|
14690
|
+
0,
|
|
14691
|
+
0,
|
|
14692
|
+
0,
|
|
14693
|
+
0,
|
|
14694
|
+
0,
|
|
14695
|
+
0,
|
|
14696
|
+
0,
|
|
14697
|
+
0,
|
|
14698
|
+
0,
|
|
14699
|
+
0,
|
|
14700
|
+
0,
|
|
14701
|
+
0,
|
|
14702
|
+
0,
|
|
14703
|
+
0,
|
|
14704
|
+
0,
|
|
14705
|
+
0,
|
|
14706
|
+
0,
|
|
14707
|
+
0,
|
|
14708
|
+
0,
|
|
14709
|
+
0,
|
|
14710
|
+
0,
|
|
14711
|
+
0,
|
|
14712
|
+
0,
|
|
14713
|
+
0,
|
|
14714
|
+
0,
|
|
14715
|
+
0,
|
|
14716
|
+
0,
|
|
14717
|
+
0,
|
|
14718
|
+
0,
|
|
14719
|
+
0,
|
|
14720
|
+
0,
|
|
14721
|
+
0,
|
|
14722
|
+
0,
|
|
14723
|
+
0,
|
|
14724
|
+
0,
|
|
14725
|
+
0,
|
|
14726
|
+
0,
|
|
14727
|
+
0,
|
|
14728
|
+
0,
|
|
14729
|
+
0,
|
|
14730
|
+
0,
|
|
14731
|
+
0,
|
|
14732
|
+
0,
|
|
14733
|
+
0,
|
|
14734
|
+
0,
|
|
14735
|
+
0,
|
|
14736
|
+
0,
|
|
14737
|
+
0,
|
|
14738
|
+
0,
|
|
14739
|
+
0,
|
|
14740
|
+
0,
|
|
14741
|
+
0,
|
|
14742
|
+
0,
|
|
14743
|
+
0,
|
|
14744
|
+
0,
|
|
14745
|
+
0,
|
|
14746
|
+
0,
|
|
14747
|
+
0,
|
|
14748
|
+
0,
|
|
14749
|
+
0,
|
|
14750
|
+
0,
|
|
14751
|
+
0,
|
|
14752
|
+
0,
|
|
14753
|
+
0,
|
|
14754
|
+
0,
|
|
14755
|
+
0,
|
|
14756
|
+
0,
|
|
14757
|
+
0,
|
|
14758
|
+
0,
|
|
14759
|
+
0,
|
|
14760
|
+
0,
|
|
14761
|
+
0,
|
|
14762
|
+
0,
|
|
14763
|
+
0,
|
|
14764
|
+
0,
|
|
14765
|
+
0,
|
|
14766
|
+
0,
|
|
14767
|
+
0,
|
|
14768
|
+
0,
|
|
14769
|
+
0,
|
|
14770
|
+
0,
|
|
14771
|
+
0,
|
|
14772
|
+
0,
|
|
14773
|
+
0,
|
|
14774
|
+
0,
|
|
14775
|
+
0,
|
|
14776
|
+
0,
|
|
14777
|
+
0,
|
|
14778
|
+
0,
|
|
14779
|
+
0,
|
|
14780
|
+
0,
|
|
14781
|
+
0,
|
|
14782
|
+
0,
|
|
14783
|
+
0,
|
|
14784
|
+
0,
|
|
14785
|
+
0,
|
|
14786
|
+
0,
|
|
14787
|
+
0,
|
|
14788
|
+
0,
|
|
14789
|
+
0,
|
|
14790
|
+
0,
|
|
14791
|
+
0,
|
|
14792
|
+
0,
|
|
14793
|
+
0,
|
|
14794
|
+
0,
|
|
14795
|
+
0,
|
|
14796
|
+
0,
|
|
14797
|
+
0,
|
|
14798
|
+
0,
|
|
14799
|
+
0,
|
|
14800
|
+
0,
|
|
14801
|
+
0,
|
|
14802
|
+
0
|
|
14803
|
+
],
|
|
14804
|
+
"1": [
|
|
14805
|
+
0,
|
|
14806
|
+
0,
|
|
14807
|
+
0,
|
|
14808
|
+
0,
|
|
14809
|
+
558.8698,
|
|
14810
|
+
1005.7303,
|
|
14811
|
+
6.3661,
|
|
14812
|
+
11.6339,
|
|
14813
|
+
0,
|
|
14814
|
+
0,
|
|
14815
|
+
541.6819,
|
|
14816
|
+
1022.9182,
|
|
14817
|
+
0,
|
|
14818
|
+
0,
|
|
14819
|
+
0,
|
|
14820
|
+
0,
|
|
14821
|
+
643.691,
|
|
14822
|
+
1278.509,
|
|
14823
|
+
0,
|
|
14824
|
+
0,
|
|
14825
|
+
0,
|
|
14826
|
+
0,
|
|
14827
|
+
516.5421,
|
|
14828
|
+
1075.058,
|
|
14829
|
+
0,
|
|
14830
|
+
0,
|
|
14831
|
+
0,
|
|
14832
|
+
0,
|
|
14833
|
+
766.8823,
|
|
14834
|
+
1675.5177,
|
|
14835
|
+
0,
|
|
14836
|
+
0,
|
|
14837
|
+
0,
|
|
14838
|
+
474.9793,
|
|
14839
|
+
1089.6207,
|
|
14840
|
+
0,
|
|
14841
|
+
0,
|
|
14842
|
+
0,
|
|
14843
|
+
0,
|
|
14844
|
+
473.7006,
|
|
14845
|
+
1144.8994,
|
|
14846
|
+
0,
|
|
14847
|
+
0,
|
|
14848
|
+
0,
|
|
14849
|
+
0,
|
|
14850
|
+
0,
|
|
14851
|
+
619.1703,
|
|
14852
|
+
1591.2296,
|
|
14853
|
+
0,
|
|
14854
|
+
0,
|
|
14855
|
+
0,
|
|
14856
|
+
0,
|
|
14857
|
+
454.2817,
|
|
14858
|
+
1231.9594,
|
|
14859
|
+
13.159,
|
|
14860
|
+
0,
|
|
14861
|
+
0,
|
|
14862
|
+
54619.0508,
|
|
14863
|
+
191640.25,
|
|
14864
|
+
150561.125,
|
|
14865
|
+
138005.5469,
|
|
14866
|
+
74966.125,
|
|
14867
|
+
85759.9531,
|
|
14868
|
+
56211.7656,
|
|
14869
|
+
390.0007,
|
|
14870
|
+
1174.5992,
|
|
14871
|
+
0,
|
|
14872
|
+
400.7921,
|
|
14873
|
+
1237.8263,
|
|
14874
|
+
376.2454,
|
|
14875
|
+
1520.9313,
|
|
14876
|
+
1188.0049,
|
|
14877
|
+
3194.2131,
|
|
14878
|
+
10315.5859,
|
|
14879
|
+
20.2006,
|
|
14880
|
+
355.7656,
|
|
14881
|
+
1181.8344,
|
|
14882
|
+
0,
|
|
14883
|
+
4256.373,
|
|
14884
|
+
14544.3926,
|
|
14885
|
+
454.6388,
|
|
14886
|
+
1551.9141,
|
|
14887
|
+
347.2362,
|
|
14888
|
+
1200.6456,
|
|
14889
|
+
0,
|
|
14890
|
+
0,
|
|
14891
|
+
0,
|
|
14892
|
+
0,
|
|
14893
|
+
326.7213,
|
|
14894
|
+
1237.8787,
|
|
14895
|
+
3.6863,
|
|
14896
|
+
14.3137,
|
|
14897
|
+
335.0124,
|
|
14898
|
+
1330.0206,
|
|
14899
|
+
376.2695,
|
|
14900
|
+
1487.8975,
|
|
14901
|
+
0,
|
|
14902
|
+
0,
|
|
14903
|
+
0,
|
|
14904
|
+
0,
|
|
14905
|
+
368.2305,
|
|
14906
|
+
1615.5696,
|
|
14907
|
+
0,
|
|
14908
|
+
0,
|
|
14909
|
+
347.7944,
|
|
14910
|
+
1874.757,
|
|
14911
|
+
1260.453,
|
|
14912
|
+
21.7956,
|
|
14913
|
+
0,
|
|
14914
|
+
0,
|
|
14915
|
+
0,
|
|
14916
|
+
258.9554,
|
|
14917
|
+
1305.6447,
|
|
14918
|
+
0,
|
|
14919
|
+
0,
|
|
14920
|
+
0,
|
|
14921
|
+
0,
|
|
14922
|
+
266.3527
|
|
14923
|
+
]
|
|
14924
|
+
}
|
|
14925
|
+
},
|
|
14926
|
+
"ioThroughput": {
|
|
14927
|
+
"r": {
|
|
14928
|
+
"a152347d": [
|
|
14929
|
+
0,
|
|
14930
|
+
0,
|
|
14931
|
+
0,
|
|
14932
|
+
0,
|
|
14933
|
+
0,
|
|
14934
|
+
0,
|
|
14935
|
+
0,
|
|
14936
|
+
0,
|
|
14937
|
+
0,
|
|
14938
|
+
0,
|
|
14939
|
+
0,
|
|
14940
|
+
0,
|
|
14941
|
+
0,
|
|
14942
|
+
0,
|
|
14943
|
+
0,
|
|
14944
|
+
0,
|
|
14945
|
+
0,
|
|
14946
|
+
0,
|
|
14947
|
+
0,
|
|
14948
|
+
0,
|
|
14949
|
+
0,
|
|
14950
|
+
0,
|
|
14951
|
+
0,
|
|
14952
|
+
0,
|
|
14953
|
+
0,
|
|
14954
|
+
0,
|
|
14955
|
+
0,
|
|
14956
|
+
0,
|
|
14957
|
+
0,
|
|
14958
|
+
0,
|
|
14959
|
+
0,
|
|
14960
|
+
0,
|
|
14961
|
+
0,
|
|
14962
|
+
0,
|
|
14963
|
+
0,
|
|
14964
|
+
0,
|
|
14965
|
+
0,
|
|
14966
|
+
0,
|
|
14967
|
+
0,
|
|
14968
|
+
0,
|
|
14969
|
+
0,
|
|
14970
|
+
0,
|
|
14971
|
+
0,
|
|
14972
|
+
0,
|
|
14973
|
+
0,
|
|
14974
|
+
0,
|
|
14975
|
+
0,
|
|
14976
|
+
0,
|
|
14977
|
+
0,
|
|
14978
|
+
0,
|
|
14979
|
+
0,
|
|
14980
|
+
0,
|
|
14981
|
+
0,
|
|
14982
|
+
0,
|
|
14983
|
+
0,
|
|
14984
|
+
0,
|
|
14985
|
+
0,
|
|
14986
|
+
0,
|
|
14987
|
+
0,
|
|
14988
|
+
0,
|
|
14989
|
+
0,
|
|
14990
|
+
0,
|
|
14991
|
+
0,
|
|
14992
|
+
0,
|
|
14993
|
+
0,
|
|
14994
|
+
0,
|
|
14995
|
+
0,
|
|
14996
|
+
0,
|
|
14997
|
+
0,
|
|
14998
|
+
0,
|
|
14999
|
+
0,
|
|
15000
|
+
0,
|
|
15001
|
+
0,
|
|
15002
|
+
0,
|
|
15003
|
+
0,
|
|
15004
|
+
0,
|
|
15005
|
+
0,
|
|
15006
|
+
0,
|
|
15007
|
+
0,
|
|
15008
|
+
0,
|
|
15009
|
+
0,
|
|
15010
|
+
0,
|
|
15011
|
+
0,
|
|
15012
|
+
0,
|
|
15013
|
+
0,
|
|
15014
|
+
0,
|
|
15015
|
+
0,
|
|
15016
|
+
0,
|
|
15017
|
+
0,
|
|
15018
|
+
0,
|
|
15019
|
+
0,
|
|
15020
|
+
0,
|
|
15021
|
+
0,
|
|
15022
|
+
0,
|
|
15023
|
+
0,
|
|
15024
|
+
0,
|
|
15025
|
+
0,
|
|
15026
|
+
0,
|
|
15027
|
+
0,
|
|
15028
|
+
0,
|
|
15029
|
+
0,
|
|
15030
|
+
0,
|
|
15031
|
+
0,
|
|
15032
|
+
0,
|
|
15033
|
+
0,
|
|
15034
|
+
0,
|
|
15035
|
+
0,
|
|
15036
|
+
0,
|
|
15037
|
+
0,
|
|
15038
|
+
0,
|
|
15039
|
+
0,
|
|
15040
|
+
0,
|
|
15041
|
+
0,
|
|
15042
|
+
0,
|
|
15043
|
+
0,
|
|
15044
|
+
0,
|
|
15045
|
+
0,
|
|
15046
|
+
0
|
|
15047
|
+
]
|
|
15048
|
+
},
|
|
15049
|
+
"w": {
|
|
15050
|
+
"a152347d": [
|
|
15051
|
+
0,
|
|
15052
|
+
0,
|
|
15053
|
+
0,
|
|
15054
|
+
0,
|
|
15055
|
+
0,
|
|
15056
|
+
0,
|
|
15057
|
+
0,
|
|
15058
|
+
0,
|
|
15059
|
+
0,
|
|
15060
|
+
0,
|
|
15061
|
+
0,
|
|
15062
|
+
0,
|
|
15063
|
+
0,
|
|
15064
|
+
0,
|
|
15065
|
+
0,
|
|
15066
|
+
0,
|
|
15067
|
+
0,
|
|
15068
|
+
0,
|
|
15069
|
+
0,
|
|
15070
|
+
0,
|
|
15071
|
+
0,
|
|
15072
|
+
0,
|
|
15073
|
+
0,
|
|
15074
|
+
0,
|
|
15075
|
+
0,
|
|
15076
|
+
0,
|
|
15077
|
+
0,
|
|
15078
|
+
0,
|
|
15079
|
+
0,
|
|
15080
|
+
0,
|
|
15081
|
+
0,
|
|
15082
|
+
0,
|
|
15083
|
+
0,
|
|
15084
|
+
0,
|
|
15085
|
+
0,
|
|
15086
|
+
0,
|
|
15087
|
+
0,
|
|
15088
|
+
0,
|
|
15089
|
+
0,
|
|
15090
|
+
0,
|
|
15091
|
+
0,
|
|
15092
|
+
0,
|
|
15093
|
+
0,
|
|
15094
|
+
0,
|
|
15095
|
+
0,
|
|
15096
|
+
0,
|
|
15097
|
+
0,
|
|
15098
|
+
0,
|
|
15099
|
+
0,
|
|
15100
|
+
0,
|
|
15101
|
+
0,
|
|
15102
|
+
0,
|
|
15103
|
+
0,
|
|
15104
|
+
0,
|
|
15105
|
+
0,
|
|
15106
|
+
0,
|
|
15107
|
+
0,
|
|
15108
|
+
0,
|
|
15109
|
+
0,
|
|
15110
|
+
0,
|
|
15111
|
+
0,
|
|
15112
|
+
0,
|
|
15113
|
+
0,
|
|
15114
|
+
0,
|
|
15115
|
+
0,
|
|
15116
|
+
0,
|
|
15117
|
+
0,
|
|
15118
|
+
0,
|
|
15119
|
+
0,
|
|
15120
|
+
0,
|
|
15121
|
+
0,
|
|
15122
|
+
0,
|
|
15123
|
+
0,
|
|
15124
|
+
0,
|
|
15125
|
+
0,
|
|
15126
|
+
0,
|
|
15127
|
+
0,
|
|
15128
|
+
0,
|
|
15129
|
+
0,
|
|
15130
|
+
0,
|
|
15131
|
+
0,
|
|
15132
|
+
0,
|
|
15133
|
+
0,
|
|
15134
|
+
0,
|
|
15135
|
+
0,
|
|
15136
|
+
0,
|
|
15137
|
+
0,
|
|
15138
|
+
0,
|
|
15139
|
+
0,
|
|
15140
|
+
0,
|
|
15141
|
+
0,
|
|
15142
|
+
0,
|
|
15143
|
+
0,
|
|
15144
|
+
0,
|
|
15145
|
+
0,
|
|
15146
|
+
0,
|
|
15147
|
+
0,
|
|
15148
|
+
0,
|
|
15149
|
+
0,
|
|
15150
|
+
0,
|
|
15151
|
+
0,
|
|
15152
|
+
0,
|
|
15153
|
+
0,
|
|
15154
|
+
0,
|
|
15155
|
+
0,
|
|
15156
|
+
0,
|
|
15157
|
+
0,
|
|
15158
|
+
0,
|
|
15159
|
+
0,
|
|
15160
|
+
0,
|
|
15161
|
+
0,
|
|
15162
|
+
0,
|
|
15163
|
+
0,
|
|
15164
|
+
0,
|
|
15165
|
+
0,
|
|
15166
|
+
0,
|
|
15167
|
+
0,
|
|
15168
|
+
0
|
|
15169
|
+
]
|
|
15170
|
+
}
|
|
15171
|
+
},
|
|
15172
|
+
"iops": {
|
|
15173
|
+
"r": {
|
|
15174
|
+
"a152347d": [
|
|
15175
|
+
0,
|
|
15176
|
+
0,
|
|
15177
|
+
0,
|
|
15178
|
+
0,
|
|
15179
|
+
0,
|
|
15180
|
+
0,
|
|
15181
|
+
0,
|
|
15182
|
+
0,
|
|
15183
|
+
0,
|
|
15184
|
+
0,
|
|
15185
|
+
0,
|
|
15186
|
+
0,
|
|
15187
|
+
0,
|
|
15188
|
+
0,
|
|
15189
|
+
0,
|
|
15190
|
+
0,
|
|
15191
|
+
0,
|
|
15192
|
+
0,
|
|
15193
|
+
0,
|
|
15194
|
+
0,
|
|
15195
|
+
0,
|
|
15196
|
+
0,
|
|
15197
|
+
0,
|
|
15198
|
+
0,
|
|
15199
|
+
0,
|
|
15200
|
+
0,
|
|
15201
|
+
0,
|
|
15202
|
+
0,
|
|
15203
|
+
0,
|
|
15204
|
+
0,
|
|
15205
|
+
0,
|
|
15206
|
+
0,
|
|
15207
|
+
0,
|
|
15208
|
+
0,
|
|
15209
|
+
0,
|
|
15210
|
+
0,
|
|
15211
|
+
0,
|
|
15212
|
+
0,
|
|
15213
|
+
0,
|
|
15214
|
+
0,
|
|
15215
|
+
0,
|
|
15216
|
+
0,
|
|
15217
|
+
0,
|
|
15218
|
+
0,
|
|
15219
|
+
0,
|
|
15220
|
+
0,
|
|
15221
|
+
0,
|
|
15222
|
+
0,
|
|
15223
|
+
0,
|
|
15224
|
+
0,
|
|
15225
|
+
0,
|
|
15226
|
+
0,
|
|
15227
|
+
0,
|
|
15228
|
+
0,
|
|
15229
|
+
0,
|
|
15230
|
+
0,
|
|
15231
|
+
0,
|
|
15232
|
+
0,
|
|
15233
|
+
0,
|
|
15234
|
+
0,
|
|
15235
|
+
0,
|
|
15236
|
+
0,
|
|
15237
|
+
0,
|
|
15238
|
+
0,
|
|
15239
|
+
0,
|
|
15240
|
+
0,
|
|
15241
|
+
0,
|
|
15242
|
+
0,
|
|
15243
|
+
0,
|
|
15244
|
+
0,
|
|
15245
|
+
0,
|
|
15246
|
+
0,
|
|
15247
|
+
0,
|
|
15248
|
+
0,
|
|
15249
|
+
0,
|
|
15250
|
+
0,
|
|
15251
|
+
0,
|
|
15252
|
+
0,
|
|
15253
|
+
0,
|
|
15254
|
+
0,
|
|
15255
|
+
0,
|
|
15256
|
+
0,
|
|
15257
|
+
0,
|
|
15258
|
+
0,
|
|
15259
|
+
0,
|
|
15260
|
+
0,
|
|
15261
|
+
0,
|
|
15262
|
+
0,
|
|
15263
|
+
0,
|
|
15264
|
+
0,
|
|
15265
|
+
0,
|
|
15266
|
+
0,
|
|
15267
|
+
0,
|
|
15268
|
+
0,
|
|
15269
|
+
0,
|
|
15270
|
+
0,
|
|
15271
|
+
0,
|
|
15272
|
+
0,
|
|
15273
|
+
0,
|
|
15274
|
+
0,
|
|
15275
|
+
0,
|
|
15276
|
+
0,
|
|
15277
|
+
0,
|
|
15278
|
+
0,
|
|
15279
|
+
0,
|
|
15280
|
+
0,
|
|
15281
|
+
0,
|
|
15282
|
+
0,
|
|
15283
|
+
0,
|
|
15284
|
+
0,
|
|
15285
|
+
0,
|
|
15286
|
+
0,
|
|
15287
|
+
0,
|
|
15288
|
+
0,
|
|
15289
|
+
0,
|
|
15290
|
+
0,
|
|
15291
|
+
0,
|
|
15292
|
+
0
|
|
15293
|
+
]
|
|
15294
|
+
},
|
|
15295
|
+
"w": {
|
|
15296
|
+
"a152347d": [
|
|
15297
|
+
0,
|
|
15298
|
+
0,
|
|
15299
|
+
0,
|
|
15300
|
+
0,
|
|
15301
|
+
0,
|
|
15302
|
+
0,
|
|
15303
|
+
0,
|
|
15304
|
+
0,
|
|
15305
|
+
0,
|
|
15306
|
+
0,
|
|
15307
|
+
0,
|
|
15308
|
+
0,
|
|
15309
|
+
0,
|
|
15310
|
+
0,
|
|
15311
|
+
0,
|
|
15312
|
+
0,
|
|
15313
|
+
0,
|
|
15314
|
+
0,
|
|
15315
|
+
0,
|
|
15316
|
+
0,
|
|
15317
|
+
0,
|
|
15318
|
+
0,
|
|
15319
|
+
0,
|
|
15320
|
+
0,
|
|
15321
|
+
0,
|
|
15322
|
+
0,
|
|
15323
|
+
0,
|
|
15324
|
+
0,
|
|
15325
|
+
0,
|
|
15326
|
+
0,
|
|
15327
|
+
0,
|
|
15328
|
+
0,
|
|
15329
|
+
0,
|
|
15330
|
+
0,
|
|
15331
|
+
0,
|
|
15332
|
+
0,
|
|
15333
|
+
0,
|
|
15334
|
+
0,
|
|
15335
|
+
0,
|
|
15336
|
+
0,
|
|
15337
|
+
0,
|
|
15338
|
+
0,
|
|
15339
|
+
0,
|
|
15340
|
+
0,
|
|
15341
|
+
0,
|
|
15342
|
+
0,
|
|
15343
|
+
0,
|
|
15344
|
+
0,
|
|
15345
|
+
0,
|
|
15346
|
+
0,
|
|
15347
|
+
0,
|
|
15348
|
+
0,
|
|
15349
|
+
0,
|
|
15350
|
+
0,
|
|
15351
|
+
0,
|
|
15352
|
+
0,
|
|
15353
|
+
0,
|
|
15354
|
+
0,
|
|
15355
|
+
0,
|
|
15356
|
+
0,
|
|
15357
|
+
0,
|
|
15358
|
+
0,
|
|
15359
|
+
0,
|
|
15360
|
+
0,
|
|
15361
|
+
0,
|
|
15362
|
+
0,
|
|
15363
|
+
0,
|
|
15364
|
+
0,
|
|
15365
|
+
0,
|
|
15366
|
+
0,
|
|
15367
|
+
0,
|
|
15368
|
+
0,
|
|
15369
|
+
0,
|
|
15370
|
+
0,
|
|
15371
|
+
0,
|
|
15372
|
+
0,
|
|
15373
|
+
0,
|
|
15374
|
+
0,
|
|
15375
|
+
0,
|
|
15376
|
+
0,
|
|
15377
|
+
0,
|
|
15378
|
+
0,
|
|
15379
|
+
0,
|
|
15380
|
+
0,
|
|
15381
|
+
0,
|
|
15382
|
+
0,
|
|
15383
|
+
0,
|
|
15384
|
+
0,
|
|
15385
|
+
0,
|
|
15386
|
+
0,
|
|
15387
|
+
0,
|
|
15388
|
+
0,
|
|
15389
|
+
0,
|
|
15390
|
+
0,
|
|
15391
|
+
0,
|
|
15392
|
+
0,
|
|
15393
|
+
0,
|
|
15394
|
+
0,
|
|
15395
|
+
0,
|
|
15396
|
+
0,
|
|
15397
|
+
0,
|
|
15398
|
+
0,
|
|
15399
|
+
0,
|
|
15400
|
+
0,
|
|
15401
|
+
0,
|
|
15402
|
+
0,
|
|
15403
|
+
0,
|
|
15404
|
+
0,
|
|
15405
|
+
0,
|
|
15406
|
+
0,
|
|
15407
|
+
0,
|
|
15408
|
+
0,
|
|
15409
|
+
0,
|
|
15410
|
+
0,
|
|
15411
|
+
0,
|
|
15412
|
+
0,
|
|
15413
|
+
0,
|
|
15414
|
+
0
|
|
15415
|
+
]
|
|
15416
|
+
}
|
|
15417
|
+
},
|
|
15418
|
+
"iowait": {
|
|
15419
|
+
"a152347d": [
|
|
15420
|
+
0,
|
|
15421
|
+
0,
|
|
15422
|
+
0,
|
|
15423
|
+
0,
|
|
15424
|
+
0,
|
|
15425
|
+
0,
|
|
15426
|
+
0,
|
|
15427
|
+
0,
|
|
15428
|
+
0,
|
|
15429
|
+
0,
|
|
15430
|
+
0,
|
|
15431
|
+
0,
|
|
15432
|
+
0,
|
|
15433
|
+
0,
|
|
15434
|
+
0,
|
|
15435
|
+
0,
|
|
15436
|
+
0,
|
|
15437
|
+
0,
|
|
15438
|
+
0,
|
|
15439
|
+
0,
|
|
15440
|
+
0,
|
|
15441
|
+
0,
|
|
15442
|
+
0,
|
|
15443
|
+
0,
|
|
15444
|
+
0,
|
|
15445
|
+
0,
|
|
15446
|
+
0,
|
|
15447
|
+
0,
|
|
15448
|
+
0,
|
|
15449
|
+
0,
|
|
15450
|
+
0,
|
|
15451
|
+
0,
|
|
15452
|
+
0,
|
|
15453
|
+
0,
|
|
15454
|
+
0,
|
|
15455
|
+
0,
|
|
15456
|
+
0,
|
|
15457
|
+
0,
|
|
15458
|
+
0,
|
|
15459
|
+
0,
|
|
15460
|
+
0,
|
|
15461
|
+
0,
|
|
15462
|
+
0,
|
|
15463
|
+
0,
|
|
15464
|
+
0,
|
|
15465
|
+
0,
|
|
15466
|
+
0,
|
|
15467
|
+
0,
|
|
15468
|
+
0,
|
|
15469
|
+
0,
|
|
15470
|
+
0,
|
|
15471
|
+
0,
|
|
15472
|
+
0,
|
|
15473
|
+
0,
|
|
15474
|
+
0,
|
|
15475
|
+
0,
|
|
15476
|
+
0,
|
|
15477
|
+
0,
|
|
15478
|
+
0,
|
|
15479
|
+
0,
|
|
15480
|
+
0,
|
|
15481
|
+
0,
|
|
15482
|
+
0,
|
|
15483
|
+
0,
|
|
15484
|
+
0,
|
|
15485
|
+
0,
|
|
15486
|
+
0,
|
|
15487
|
+
0,
|
|
15488
|
+
0,
|
|
15489
|
+
0,
|
|
15490
|
+
0,
|
|
15491
|
+
0,
|
|
15492
|
+
0,
|
|
15493
|
+
0,
|
|
15494
|
+
0,
|
|
15495
|
+
0,
|
|
15496
|
+
0,
|
|
15497
|
+
0,
|
|
15498
|
+
0,
|
|
15499
|
+
0,
|
|
15500
|
+
0,
|
|
15501
|
+
0,
|
|
15502
|
+
0,
|
|
15503
|
+
0,
|
|
15504
|
+
0,
|
|
15505
|
+
0,
|
|
15506
|
+
0,
|
|
15507
|
+
0,
|
|
15508
|
+
0,
|
|
15509
|
+
0,
|
|
15510
|
+
0,
|
|
15511
|
+
0,
|
|
15512
|
+
0,
|
|
15513
|
+
0,
|
|
15514
|
+
0,
|
|
15515
|
+
0,
|
|
15516
|
+
0,
|
|
15517
|
+
0,
|
|
15518
|
+
0,
|
|
15519
|
+
0,
|
|
15520
|
+
0,
|
|
15521
|
+
0,
|
|
15522
|
+
0,
|
|
15523
|
+
0,
|
|
15524
|
+
0,
|
|
15525
|
+
0,
|
|
15526
|
+
0,
|
|
15527
|
+
0,
|
|
15528
|
+
0,
|
|
15529
|
+
0,
|
|
15530
|
+
0,
|
|
15531
|
+
0,
|
|
15532
|
+
0,
|
|
15533
|
+
0,
|
|
15534
|
+
0,
|
|
15535
|
+
0,
|
|
15536
|
+
0,
|
|
15537
|
+
0
|
|
15538
|
+
]
|
|
15539
|
+
},
|
|
15540
|
+
"latency": {
|
|
15541
|
+
"r": {
|
|
15542
|
+
"a152347d": [
|
|
15543
|
+
0,
|
|
15544
|
+
0,
|
|
15545
|
+
0,
|
|
15546
|
+
0,
|
|
15547
|
+
0,
|
|
15548
|
+
0,
|
|
15549
|
+
0,
|
|
15550
|
+
0,
|
|
15551
|
+
0,
|
|
15552
|
+
0,
|
|
15553
|
+
0,
|
|
15554
|
+
0,
|
|
15555
|
+
0,
|
|
15556
|
+
0,
|
|
15557
|
+
0,
|
|
15558
|
+
0,
|
|
15559
|
+
0,
|
|
15560
|
+
0,
|
|
15561
|
+
0,
|
|
15562
|
+
0,
|
|
15563
|
+
0,
|
|
15564
|
+
0,
|
|
15565
|
+
0,
|
|
15566
|
+
0,
|
|
15567
|
+
0,
|
|
15568
|
+
0,
|
|
15569
|
+
0,
|
|
15570
|
+
0,
|
|
15571
|
+
0,
|
|
15572
|
+
0,
|
|
15573
|
+
0,
|
|
15574
|
+
0,
|
|
15575
|
+
0,
|
|
15576
|
+
0,
|
|
15577
|
+
0,
|
|
15578
|
+
0,
|
|
15579
|
+
0,
|
|
15580
|
+
0,
|
|
15581
|
+
0,
|
|
15582
|
+
0,
|
|
15583
|
+
0,
|
|
15584
|
+
0,
|
|
15585
|
+
0,
|
|
15586
|
+
0,
|
|
15587
|
+
0,
|
|
15588
|
+
0,
|
|
15589
|
+
0,
|
|
15590
|
+
0,
|
|
15591
|
+
0,
|
|
15592
|
+
0,
|
|
15593
|
+
0,
|
|
15594
|
+
0,
|
|
15595
|
+
0,
|
|
15596
|
+
0,
|
|
15597
|
+
0,
|
|
15598
|
+
0,
|
|
15599
|
+
0,
|
|
15600
|
+
0,
|
|
15601
|
+
0,
|
|
15602
|
+
0,
|
|
15603
|
+
0,
|
|
15604
|
+
0,
|
|
15605
|
+
0,
|
|
15606
|
+
0,
|
|
15607
|
+
0,
|
|
15608
|
+
0,
|
|
15609
|
+
0,
|
|
15610
|
+
0,
|
|
15611
|
+
0,
|
|
15612
|
+
0,
|
|
15613
|
+
0,
|
|
15614
|
+
0,
|
|
15615
|
+
0,
|
|
15616
|
+
0,
|
|
15617
|
+
0,
|
|
15618
|
+
0,
|
|
15619
|
+
0,
|
|
15620
|
+
0,
|
|
15621
|
+
0,
|
|
15622
|
+
0,
|
|
15623
|
+
0,
|
|
15624
|
+
0,
|
|
15625
|
+
0,
|
|
15626
|
+
0,
|
|
15627
|
+
0,
|
|
15628
|
+
0,
|
|
15629
|
+
0,
|
|
15630
|
+
0,
|
|
15631
|
+
0,
|
|
15632
|
+
0,
|
|
15633
|
+
0,
|
|
15634
|
+
0,
|
|
15635
|
+
0,
|
|
15636
|
+
0,
|
|
15637
|
+
0,
|
|
15638
|
+
0,
|
|
15639
|
+
0,
|
|
15640
|
+
0,
|
|
15641
|
+
0,
|
|
15642
|
+
0,
|
|
15643
|
+
0,
|
|
15644
|
+
0,
|
|
15645
|
+
0,
|
|
15646
|
+
0,
|
|
15647
|
+
0,
|
|
15648
|
+
0,
|
|
15649
|
+
0,
|
|
15650
|
+
0,
|
|
15651
|
+
0,
|
|
15652
|
+
0,
|
|
15653
|
+
0,
|
|
15654
|
+
0,
|
|
15655
|
+
0,
|
|
15656
|
+
0,
|
|
15657
|
+
0,
|
|
15658
|
+
0,
|
|
15659
|
+
0,
|
|
15660
|
+
0
|
|
15661
|
+
]
|
|
15662
|
+
},
|
|
15663
|
+
"w": {
|
|
15664
|
+
"a152347d": [
|
|
15665
|
+
0,
|
|
15666
|
+
0,
|
|
15667
|
+
0,
|
|
15668
|
+
0,
|
|
15669
|
+
0,
|
|
15670
|
+
0,
|
|
15671
|
+
0,
|
|
15672
|
+
0,
|
|
15673
|
+
0,
|
|
15674
|
+
0,
|
|
15675
|
+
0,
|
|
15676
|
+
0,
|
|
15677
|
+
0,
|
|
15678
|
+
0,
|
|
15679
|
+
0,
|
|
15680
|
+
0,
|
|
15681
|
+
0,
|
|
15682
|
+
0,
|
|
15683
|
+
0,
|
|
15684
|
+
0,
|
|
15685
|
+
0,
|
|
15686
|
+
0,
|
|
15687
|
+
0,
|
|
15688
|
+
0,
|
|
15689
|
+
0,
|
|
15690
|
+
0,
|
|
15691
|
+
0,
|
|
15692
|
+
0,
|
|
15693
|
+
0,
|
|
15694
|
+
0,
|
|
15695
|
+
0,
|
|
15696
|
+
0,
|
|
15697
|
+
0,
|
|
15698
|
+
0,
|
|
15699
|
+
0,
|
|
15700
|
+
0,
|
|
15701
|
+
0,
|
|
15702
|
+
0,
|
|
15703
|
+
0,
|
|
15704
|
+
0,
|
|
15705
|
+
0,
|
|
15706
|
+
0,
|
|
15707
|
+
0,
|
|
15708
|
+
0,
|
|
15709
|
+
0,
|
|
15710
|
+
0,
|
|
15711
|
+
0,
|
|
15712
|
+
0,
|
|
15713
|
+
0,
|
|
15714
|
+
0,
|
|
15715
|
+
0,
|
|
15716
|
+
0,
|
|
15717
|
+
0,
|
|
15718
|
+
0,
|
|
15719
|
+
0,
|
|
15720
|
+
0,
|
|
15721
|
+
0,
|
|
15722
|
+
0,
|
|
15723
|
+
0,
|
|
15724
|
+
0,
|
|
15725
|
+
0,
|
|
15726
|
+
0,
|
|
15727
|
+
0,
|
|
15728
|
+
0,
|
|
15729
|
+
0,
|
|
15730
|
+
0,
|
|
15731
|
+
0,
|
|
15732
|
+
0,
|
|
15733
|
+
0,
|
|
15734
|
+
0,
|
|
15735
|
+
0,
|
|
15736
|
+
0,
|
|
15737
|
+
0,
|
|
15738
|
+
0,
|
|
15739
|
+
0,
|
|
15740
|
+
0,
|
|
15741
|
+
0,
|
|
15742
|
+
0,
|
|
15743
|
+
0,
|
|
15744
|
+
0,
|
|
15745
|
+
0,
|
|
15746
|
+
0,
|
|
15747
|
+
0,
|
|
15748
|
+
0,
|
|
15749
|
+
0,
|
|
15750
|
+
0,
|
|
15751
|
+
0,
|
|
15752
|
+
0,
|
|
15753
|
+
0,
|
|
15754
|
+
0,
|
|
15755
|
+
0,
|
|
15756
|
+
0,
|
|
15757
|
+
0,
|
|
15758
|
+
0,
|
|
15759
|
+
0,
|
|
15760
|
+
0,
|
|
15761
|
+
0,
|
|
15762
|
+
0,
|
|
15763
|
+
0,
|
|
15764
|
+
0,
|
|
15765
|
+
0,
|
|
15766
|
+
0,
|
|
15767
|
+
0,
|
|
15768
|
+
0,
|
|
15769
|
+
0,
|
|
15770
|
+
0,
|
|
15771
|
+
0,
|
|
15772
|
+
0,
|
|
15773
|
+
0,
|
|
15774
|
+
0,
|
|
15775
|
+
0,
|
|
15776
|
+
0,
|
|
15777
|
+
0,
|
|
15778
|
+
0,
|
|
15779
|
+
0,
|
|
15780
|
+
0,
|
|
15781
|
+
0,
|
|
15782
|
+
0
|
|
15783
|
+
]
|
|
15784
|
+
}
|
|
15785
|
+
}
|
|
15786
|
+
}
|
|
15787
|
+
}
|
|
12673
15788
|
}
|
|
12674
|
-
]
|
|
12675
|
-
},
|
|
12676
|
-
"examples": {
|
|
12677
|
-
"Example 1": {
|
|
12678
|
-
"value": "/rest/v0/tasks/0m7kl0j9l"
|
|
12679
15789
|
}
|
|
12680
15790
|
}
|
|
12681
15791
|
}
|
|
12682
15792
|
}
|
|
12683
15793
|
},
|
|
12684
|
-
"204": {
|
|
12685
|
-
"description": "No content"
|
|
12686
|
-
},
|
|
12687
15794
|
"401": {
|
|
12688
15795
|
"description": "Authentication required"
|
|
12689
15796
|
},
|
|
12690
|
-
"403": {
|
|
12691
|
-
"description": "Feature unauthorized"
|
|
12692
|
-
},
|
|
12693
15797
|
"404": {
|
|
12694
15798
|
"description": "Resource not found"
|
|
12695
|
-
}
|
|
12696
|
-
},
|
|
12697
|
-
"tags": [
|
|
12698
|
-
"pools"
|
|
12699
|
-
],
|
|
12700
|
-
"security": [
|
|
12701
|
-
{
|
|
12702
|
-
"*": []
|
|
12703
|
-
}
|
|
12704
|
-
],
|
|
12705
|
-
"parameters": [
|
|
12706
|
-
{
|
|
12707
|
-
"in": "path",
|
|
12708
|
-
"name": "id",
|
|
12709
|
-
"required": true,
|
|
12710
|
-
"schema": {
|
|
12711
|
-
"type": "string"
|
|
12712
|
-
},
|
|
12713
|
-
"example": "355ee47d-ff4c-4924-3db2-fd86ae629677"
|
|
12714
|
-
},
|
|
12715
|
-
{
|
|
12716
|
-
"in": "query",
|
|
12717
|
-
"name": "sync",
|
|
12718
|
-
"required": false,
|
|
12719
|
-
"schema": {
|
|
12720
|
-
"type": "boolean"
|
|
12721
|
-
}
|
|
12722
|
-
}
|
|
12723
|
-
]
|
|
12724
|
-
}
|
|
12725
|
-
},
|
|
12726
|
-
"/pools/{id}/actions/rolling_update": {
|
|
12727
|
-
"post": {
|
|
12728
|
-
"operationId": "RollingUpdate",
|
|
12729
|
-
"responses": {
|
|
12730
|
-
"202": {
|
|
12731
|
-
"description": "Action executed asynchronously",
|
|
12732
|
-
"content": {
|
|
12733
|
-
"text/plain": {
|
|
12734
|
-
"schema": {
|
|
12735
|
-
"anyOf": [
|
|
12736
|
-
{},
|
|
12737
|
-
{
|
|
12738
|
-
"type": "string"
|
|
12739
|
-
}
|
|
12740
|
-
]
|
|
12741
|
-
},
|
|
12742
|
-
"examples": {
|
|
12743
|
-
"Example 1": {
|
|
12744
|
-
"value": "/rest/v0/tasks/0m7kl0j9l"
|
|
12745
|
-
}
|
|
12746
|
-
}
|
|
12747
|
-
}
|
|
12748
|
-
}
|
|
12749
|
-
},
|
|
12750
|
-
"204": {
|
|
12751
|
-
"description": "No content"
|
|
12752
|
-
},
|
|
12753
|
-
"401": {
|
|
12754
|
-
"description": "Authentication required"
|
|
12755
15799
|
},
|
|
12756
|
-
"
|
|
12757
|
-
"description": "
|
|
12758
|
-
},
|
|
12759
|
-
"404": {
|
|
12760
|
-
"description": "Resource not found"
|
|
15800
|
+
"422": {
|
|
15801
|
+
"description": "Invalid granularity"
|
|
12761
15802
|
}
|
|
12762
15803
|
},
|
|
12763
15804
|
"tags": [
|
|
@@ -12780,10 +15821,10 @@
|
|
|
12780
15821
|
},
|
|
12781
15822
|
{
|
|
12782
15823
|
"in": "query",
|
|
12783
|
-
"name": "
|
|
15824
|
+
"name": "granularity",
|
|
12784
15825
|
"required": false,
|
|
12785
15826
|
"schema": {
|
|
12786
|
-
"
|
|
15827
|
+
"$ref": "#/components/schemas/XapiStatsGranularity"
|
|
12787
15828
|
}
|
|
12788
15829
|
}
|
|
12789
15830
|
]
|
|
@@ -20353,6 +23394,45 @@
|
|
|
20353
23394
|
]
|
|
20354
23395
|
}
|
|
20355
23396
|
},
|
|
23397
|
+
"/hosts/{id}/audit.txt": {
|
|
23398
|
+
"get": {
|
|
23399
|
+
"operationId": "GetAuditLog",
|
|
23400
|
+
"responses": {
|
|
23401
|
+
"200": {
|
|
23402
|
+
"description": "Download started"
|
|
23403
|
+
},
|
|
23404
|
+
"401": {
|
|
23405
|
+
"description": "Authentication required"
|
|
23406
|
+
},
|
|
23407
|
+
"404": {
|
|
23408
|
+
"description": "Resource not found"
|
|
23409
|
+
},
|
|
23410
|
+
"500": {
|
|
23411
|
+
"description": "Internal server error, XenServer/XCP-ng error"
|
|
23412
|
+
}
|
|
23413
|
+
},
|
|
23414
|
+
"description": "Host must be running\n\nDownload the audit log of a host.",
|
|
23415
|
+
"tags": [
|
|
23416
|
+
"hosts"
|
|
23417
|
+
],
|
|
23418
|
+
"security": [
|
|
23419
|
+
{
|
|
23420
|
+
"*": []
|
|
23421
|
+
}
|
|
23422
|
+
],
|
|
23423
|
+
"parameters": [
|
|
23424
|
+
{
|
|
23425
|
+
"in": "path",
|
|
23426
|
+
"name": "id",
|
|
23427
|
+
"required": true,
|
|
23428
|
+
"schema": {
|
|
23429
|
+
"type": "string"
|
|
23430
|
+
},
|
|
23431
|
+
"example": "b61a5c92-700e-4966-a13b-00633f03eea8"
|
|
23432
|
+
}
|
|
23433
|
+
]
|
|
23434
|
+
}
|
|
23435
|
+
},
|
|
20356
23436
|
"/groups": {
|
|
20357
23437
|
"get": {
|
|
20358
23438
|
"operationId": "GetGroups",
|
|
@@ -20500,11 +23580,88 @@
|
|
|
20500
23580
|
}
|
|
20501
23581
|
]
|
|
20502
23582
|
}
|
|
23583
|
+
},
|
|
23584
|
+
"/pools/{id}/vms": {
|
|
23585
|
+
"post": {
|
|
23586
|
+
"operationId": "ImportVm",
|
|
23587
|
+
"responses": {
|
|
23588
|
+
"201": {
|
|
23589
|
+
"description": "VM imported",
|
|
23590
|
+
"content": {
|
|
23591
|
+
"application/json": {
|
|
23592
|
+
"schema": {
|
|
23593
|
+
"properties": {
|
|
23594
|
+
"id": {
|
|
23595
|
+
"type": "string"
|
|
23596
|
+
}
|
|
23597
|
+
},
|
|
23598
|
+
"required": [
|
|
23599
|
+
"id"
|
|
23600
|
+
],
|
|
23601
|
+
"type": "object"
|
|
23602
|
+
},
|
|
23603
|
+
"examples": {
|
|
23604
|
+
"Example 1": {
|
|
23605
|
+
"value": {
|
|
23606
|
+
"id": "9fe12ca3-d75d-cfb0-492e-cfd2bc6c568f"
|
|
23607
|
+
}
|
|
23608
|
+
}
|
|
23609
|
+
}
|
|
23610
|
+
}
|
|
23611
|
+
}
|
|
23612
|
+
},
|
|
23613
|
+
"401": {
|
|
23614
|
+
"description": "Authentication required"
|
|
23615
|
+
},
|
|
23616
|
+
"404": {
|
|
23617
|
+
"description": "Resource not found"
|
|
23618
|
+
},
|
|
23619
|
+
"500": {
|
|
23620
|
+
"description": "Internal server error, XenServer/XCP-ng error"
|
|
23621
|
+
}
|
|
23622
|
+
},
|
|
23623
|
+
"description": "Import an XVA VM into a pool",
|
|
23624
|
+
"tags": [
|
|
23625
|
+
"vms",
|
|
23626
|
+
"pools"
|
|
23627
|
+
],
|
|
23628
|
+
"security": [
|
|
23629
|
+
{
|
|
23630
|
+
"*": []
|
|
23631
|
+
}
|
|
23632
|
+
],
|
|
23633
|
+
"parameters": [
|
|
23634
|
+
{
|
|
23635
|
+
"in": "path",
|
|
23636
|
+
"name": "id",
|
|
23637
|
+
"required": true,
|
|
23638
|
+
"schema": {
|
|
23639
|
+
"type": "string"
|
|
23640
|
+
},
|
|
23641
|
+
"example": "355ee47d-ff4c-4924-3db2-fd86ae629677"
|
|
23642
|
+
},
|
|
23643
|
+
{
|
|
23644
|
+
"in": "query",
|
|
23645
|
+
"name": "sr",
|
|
23646
|
+
"required": false,
|
|
23647
|
+
"schema": {
|
|
23648
|
+
"type": "string"
|
|
23649
|
+
},
|
|
23650
|
+
"example": "c787b75c-3e0d-70fa-d0c3-cbfd382d7e33"
|
|
23651
|
+
}
|
|
23652
|
+
],
|
|
23653
|
+
"requestBody": {
|
|
23654
|
+
"required": true,
|
|
23655
|
+
"content": {
|
|
23656
|
+
"application/octet-stream": {
|
|
23657
|
+
"schema": {
|
|
23658
|
+
"type": "string",
|
|
23659
|
+
"format": "binary"
|
|
23660
|
+
}
|
|
23661
|
+
}
|
|
23662
|
+
}
|
|
23663
|
+
}
|
|
23664
|
+
}
|
|
20503
23665
|
}
|
|
20504
|
-
}
|
|
20505
|
-
"servers": [
|
|
20506
|
-
{
|
|
20507
|
-
"url": "/rest/v0"
|
|
20508
|
-
}
|
|
20509
|
-
]
|
|
23666
|
+
}
|
|
20510
23667
|
}
|