@nxtedition/types 23.0.35 → 23.0.37
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/domains/index.d.ts +3 -1
- package/dist/domains/index.js +1 -0
- package/dist/domains/monitor.d.ts +416 -0
- package/dist/domains/monitor.js +6382 -0
- package/dist/domains/render.d.ts +128 -1
- package/dist/domains/render.js +2849 -139
- package/dist/index.d.ts +5 -1
- package/dist/index.js +16 -12
- package/dist/monitor.d.ts +71 -0
- package/dist/monitor.js +1942 -0
- package/dist/nxtpression.d.ts +321 -3
- package/dist/schema.json +682 -2
- package/dist/storage.d.ts +51 -0
- package/dist/storage.js +1036 -0
- package/package.json +1 -1
package/dist/schema.json
CHANGED
|
@@ -1277,6 +1277,9 @@
|
|
|
1277
1277
|
":media.updateSubtitles?": {
|
|
1278
1278
|
"$ref": "#/definitions/Record<string,unknown>"
|
|
1279
1279
|
},
|
|
1280
|
+
":monitor.stats?": {
|
|
1281
|
+
"$ref": "#/definitions/Record<string,MonitorStatsRecord>"
|
|
1282
|
+
},
|
|
1280
1283
|
":panel": {
|
|
1281
1284
|
"$ref": "#/definitions/PanelDomainPanelRecord"
|
|
1282
1285
|
},
|
|
@@ -1328,6 +1331,9 @@
|
|
|
1328
1331
|
":render.result?": {
|
|
1329
1332
|
"$ref": "#/definitions/RenderDomainResultRecord"
|
|
1330
1333
|
},
|
|
1334
|
+
":render.schedulers?": {
|
|
1335
|
+
"$ref": "#/definitions/RenderDomainSchedulersRecord"
|
|
1336
|
+
},
|
|
1331
1337
|
":render.stats?": {
|
|
1332
1338
|
"$ref": "#/definitions/RenderDomainStatsRecord"
|
|
1333
1339
|
},
|
|
@@ -1442,6 +1448,7 @@
|
|
|
1442
1448
|
":media.transcriptChanges",
|
|
1443
1449
|
":media.updateGraphics?",
|
|
1444
1450
|
":media.updateSubtitles?",
|
|
1451
|
+
":monitor.stats?",
|
|
1445
1452
|
":panel",
|
|
1446
1453
|
":permission",
|
|
1447
1454
|
":permission?",
|
|
@@ -1459,6 +1466,7 @@
|
|
|
1459
1466
|
":render-preset",
|
|
1460
1467
|
":render.query?",
|
|
1461
1468
|
":render.result?",
|
|
1469
|
+
":render.schedulers?",
|
|
1462
1470
|
":render.stats?",
|
|
1463
1471
|
":revs?",
|
|
1464
1472
|
":role.tags",
|
|
@@ -1552,6 +1560,7 @@
|
|
|
1552
1560
|
":media.transcriptChanges",
|
|
1553
1561
|
":media.updateGraphics?",
|
|
1554
1562
|
":media.updateSubtitles?",
|
|
1563
|
+
":monitor.stats?",
|
|
1555
1564
|
":panel",
|
|
1556
1565
|
":permission",
|
|
1557
1566
|
":permission?",
|
|
@@ -1569,6 +1578,7 @@
|
|
|
1569
1578
|
":render-preset",
|
|
1570
1579
|
":render.query?",
|
|
1571
1580
|
":render.result?",
|
|
1581
|
+
":render.schedulers?",
|
|
1572
1582
|
":render.stats?",
|
|
1573
1583
|
":revs?",
|
|
1574
1584
|
":role.tags",
|
|
@@ -3840,6 +3850,190 @@
|
|
|
3840
3850
|
],
|
|
3841
3851
|
"type": "object"
|
|
3842
3852
|
},
|
|
3853
|
+
"NxtStatusNode": {
|
|
3854
|
+
"additionalProperties": false,
|
|
3855
|
+
"properties": {
|
|
3856
|
+
"address": {
|
|
3857
|
+
"type": "string"
|
|
3858
|
+
},
|
|
3859
|
+
"availability": {
|
|
3860
|
+
"type": "string"
|
|
3861
|
+
},
|
|
3862
|
+
"classes": {
|
|
3863
|
+
"items": {
|
|
3864
|
+
"type": "string"
|
|
3865
|
+
},
|
|
3866
|
+
"type": "array"
|
|
3867
|
+
},
|
|
3868
|
+
"leader": {
|
|
3869
|
+
"type": "boolean"
|
|
3870
|
+
},
|
|
3871
|
+
"level": {
|
|
3872
|
+
"type": "number"
|
|
3873
|
+
},
|
|
3874
|
+
"messages": {
|
|
3875
|
+
"items": {
|
|
3876
|
+
"additionalProperties": false,
|
|
3877
|
+
"properties": {
|
|
3878
|
+
"level": {
|
|
3879
|
+
"type": "number"
|
|
3880
|
+
},
|
|
3881
|
+
"msg": {
|
|
3882
|
+
"type": "string"
|
|
3883
|
+
}
|
|
3884
|
+
},
|
|
3885
|
+
"required": [
|
|
3886
|
+
"level",
|
|
3887
|
+
"msg"
|
|
3888
|
+
],
|
|
3889
|
+
"type": "object"
|
|
3890
|
+
},
|
|
3891
|
+
"type": "array"
|
|
3892
|
+
},
|
|
3893
|
+
"role": {
|
|
3894
|
+
"type": "string"
|
|
3895
|
+
},
|
|
3896
|
+
"state": {
|
|
3897
|
+
"type": "string"
|
|
3898
|
+
},
|
|
3899
|
+
"status": {
|
|
3900
|
+
"type": "string"
|
|
3901
|
+
}
|
|
3902
|
+
},
|
|
3903
|
+
"required": [
|
|
3904
|
+
"level",
|
|
3905
|
+
"messages",
|
|
3906
|
+
"status"
|
|
3907
|
+
],
|
|
3908
|
+
"type": "object"
|
|
3909
|
+
},
|
|
3910
|
+
"NxtStatusRecord": {
|
|
3911
|
+
"additionalProperties": false,
|
|
3912
|
+
"properties": {
|
|
3913
|
+
"level": {
|
|
3914
|
+
"type": "number"
|
|
3915
|
+
},
|
|
3916
|
+
"nodes": {
|
|
3917
|
+
"additionalProperties": {
|
|
3918
|
+
"$ref": "#/definitions/NxtStatusNode"
|
|
3919
|
+
},
|
|
3920
|
+
"type": "object"
|
|
3921
|
+
},
|
|
3922
|
+
"services": {
|
|
3923
|
+
"additionalProperties": {
|
|
3924
|
+
"$ref": "#/definitions/NxtStatusService"
|
|
3925
|
+
},
|
|
3926
|
+
"type": "object"
|
|
3927
|
+
},
|
|
3928
|
+
"status": {
|
|
3929
|
+
"type": "string"
|
|
3930
|
+
}
|
|
3931
|
+
},
|
|
3932
|
+
"required": [
|
|
3933
|
+
"level",
|
|
3934
|
+
"nodes",
|
|
3935
|
+
"services",
|
|
3936
|
+
"status"
|
|
3937
|
+
],
|
|
3938
|
+
"type": "object"
|
|
3939
|
+
},
|
|
3940
|
+
"NxtStatusService": {
|
|
3941
|
+
"additionalProperties": false,
|
|
3942
|
+
"properties": {
|
|
3943
|
+
"image": {
|
|
3944
|
+
"type": "string"
|
|
3945
|
+
},
|
|
3946
|
+
"level": {
|
|
3947
|
+
"type": "number"
|
|
3948
|
+
},
|
|
3949
|
+
"messages": {
|
|
3950
|
+
"items": {
|
|
3951
|
+
"additionalProperties": false,
|
|
3952
|
+
"properties": {
|
|
3953
|
+
"level": {
|
|
3954
|
+
"type": "number"
|
|
3955
|
+
},
|
|
3956
|
+
"msg": {
|
|
3957
|
+
"type": "string"
|
|
3958
|
+
}
|
|
3959
|
+
},
|
|
3960
|
+
"required": [
|
|
3961
|
+
"level",
|
|
3962
|
+
"msg"
|
|
3963
|
+
],
|
|
3964
|
+
"type": "object"
|
|
3965
|
+
},
|
|
3966
|
+
"type": "array"
|
|
3967
|
+
},
|
|
3968
|
+
"mode": {
|
|
3969
|
+
"type": "string"
|
|
3970
|
+
},
|
|
3971
|
+
"running": {
|
|
3972
|
+
"type": "number"
|
|
3973
|
+
},
|
|
3974
|
+
"status": {
|
|
3975
|
+
"type": "string"
|
|
3976
|
+
},
|
|
3977
|
+
"tasks": {
|
|
3978
|
+
"items": {
|
|
3979
|
+
"additionalProperties": false,
|
|
3980
|
+
"properties": {
|
|
3981
|
+
"container": {
|
|
3982
|
+
"type": "string"
|
|
3983
|
+
},
|
|
3984
|
+
"id": {
|
|
3985
|
+
"type": "string"
|
|
3986
|
+
},
|
|
3987
|
+
"level": {
|
|
3988
|
+
"type": "number"
|
|
3989
|
+
},
|
|
3990
|
+
"messages": {
|
|
3991
|
+
"items": {
|
|
3992
|
+
"additionalProperties": false,
|
|
3993
|
+
"properties": {
|
|
3994
|
+
"level": {
|
|
3995
|
+
"type": "number"
|
|
3996
|
+
},
|
|
3997
|
+
"msg": {
|
|
3998
|
+
"type": "string"
|
|
3999
|
+
}
|
|
4000
|
+
},
|
|
4001
|
+
"required": [
|
|
4002
|
+
"level",
|
|
4003
|
+
"msg"
|
|
4004
|
+
],
|
|
4005
|
+
"type": "object"
|
|
4006
|
+
},
|
|
4007
|
+
"type": "array"
|
|
4008
|
+
},
|
|
4009
|
+
"node": {
|
|
4010
|
+
"type": "string"
|
|
4011
|
+
},
|
|
4012
|
+
"status": {
|
|
4013
|
+
"type": "string"
|
|
4014
|
+
}
|
|
4015
|
+
},
|
|
4016
|
+
"required": [
|
|
4017
|
+
"container",
|
|
4018
|
+
"id",
|
|
4019
|
+
"messages",
|
|
4020
|
+
"node"
|
|
4021
|
+
],
|
|
4022
|
+
"type": "object"
|
|
4023
|
+
},
|
|
4024
|
+
"type": "array"
|
|
4025
|
+
},
|
|
4026
|
+
"total": {
|
|
4027
|
+
"type": "number"
|
|
4028
|
+
}
|
|
4029
|
+
},
|
|
4030
|
+
"required": [
|
|
4031
|
+
"level",
|
|
4032
|
+
"messages",
|
|
4033
|
+
"status"
|
|
4034
|
+
],
|
|
4035
|
+
"type": "object"
|
|
4036
|
+
},
|
|
3843
4037
|
"Nxtpression": {
|
|
3844
4038
|
"anyOf": [
|
|
3845
4039
|
{
|
|
@@ -4888,6 +5082,10 @@
|
|
|
4888
5082
|
"additionalProperties": false,
|
|
4889
5083
|
"type": "object"
|
|
4890
5084
|
},
|
|
5085
|
+
"Record<string,MonitorStatsRecord>": {
|
|
5086
|
+
"additionalProperties": false,
|
|
5087
|
+
"type": "object"
|
|
5088
|
+
},
|
|
4891
5089
|
"Record<string,TemplateProperty>": {
|
|
4892
5090
|
"additionalProperties": false,
|
|
4893
5091
|
"type": "object"
|
|
@@ -5208,6 +5406,15 @@
|
|
|
5208
5406
|
"languages"
|
|
5209
5407
|
],
|
|
5210
5408
|
"type": "object"
|
|
5409
|
+
},
|
|
5410
|
+
"nxt.status?": {
|
|
5411
|
+
"$ref": "#/definitions/NxtStatusRecord"
|
|
5412
|
+
},
|
|
5413
|
+
"storage.locations?": {
|
|
5414
|
+
"$ref": "#/definitions/StorageLocationsRecord"
|
|
5415
|
+
},
|
|
5416
|
+
"storage.zones?": {
|
|
5417
|
+
"$ref": "#/definitions/StorageZonesRecord"
|
|
5211
5418
|
}
|
|
5212
5419
|
},
|
|
5213
5420
|
"required": [
|
|
@@ -5230,7 +5437,10 @@
|
|
|
5230
5437
|
"media.consolidate",
|
|
5231
5438
|
"media.subtitles",
|
|
5232
5439
|
"media.subtitles?",
|
|
5233
|
-
"media.transcribe?"
|
|
5440
|
+
"media.transcribe?",
|
|
5441
|
+
"nxt.status?",
|
|
5442
|
+
"storage.locations?",
|
|
5443
|
+
"storage.zones?"
|
|
5234
5444
|
],
|
|
5235
5445
|
"type": "object"
|
|
5236
5446
|
},
|
|
@@ -5251,6 +5461,169 @@
|
|
|
5251
5461
|
],
|
|
5252
5462
|
"type": "object"
|
|
5253
5463
|
},
|
|
5464
|
+
"RenderDomainCpuStats": {
|
|
5465
|
+
"additionalProperties": false,
|
|
5466
|
+
"properties": {
|
|
5467
|
+
"cpu": {
|
|
5468
|
+
"additionalProperties": false,
|
|
5469
|
+
"properties": {
|
|
5470
|
+
"idle": {
|
|
5471
|
+
"type": "number"
|
|
5472
|
+
},
|
|
5473
|
+
"total": {
|
|
5474
|
+
"type": "number"
|
|
5475
|
+
}
|
|
5476
|
+
},
|
|
5477
|
+
"required": [
|
|
5478
|
+
"idle",
|
|
5479
|
+
"total"
|
|
5480
|
+
],
|
|
5481
|
+
"type": "object"
|
|
5482
|
+
},
|
|
5483
|
+
"mem": {
|
|
5484
|
+
"additionalProperties": false,
|
|
5485
|
+
"properties": {
|
|
5486
|
+
"arcstats": {
|
|
5487
|
+
"additionalProperties": false,
|
|
5488
|
+
"properties": {
|
|
5489
|
+
"size": {
|
|
5490
|
+
"type": "number"
|
|
5491
|
+
}
|
|
5492
|
+
},
|
|
5493
|
+
"required": [
|
|
5494
|
+
"size"
|
|
5495
|
+
],
|
|
5496
|
+
"type": "object"
|
|
5497
|
+
},
|
|
5498
|
+
"meminfo": {
|
|
5499
|
+
"additionalProperties": false,
|
|
5500
|
+
"properties": {
|
|
5501
|
+
"active": {
|
|
5502
|
+
"type": "number"
|
|
5503
|
+
},
|
|
5504
|
+
"available": {
|
|
5505
|
+
"type": "number"
|
|
5506
|
+
},
|
|
5507
|
+
"buffcache": {
|
|
5508
|
+
"type": "number"
|
|
5509
|
+
},
|
|
5510
|
+
"buffers": {
|
|
5511
|
+
"type": "number"
|
|
5512
|
+
},
|
|
5513
|
+
"cached": {
|
|
5514
|
+
"type": "number"
|
|
5515
|
+
},
|
|
5516
|
+
"free": {
|
|
5517
|
+
"type": "number"
|
|
5518
|
+
},
|
|
5519
|
+
"kernelStack": {
|
|
5520
|
+
"type": "number"
|
|
5521
|
+
},
|
|
5522
|
+
"memAvailable": {
|
|
5523
|
+
"type": "number"
|
|
5524
|
+
},
|
|
5525
|
+
"memTotal": {
|
|
5526
|
+
"type": "number"
|
|
5527
|
+
},
|
|
5528
|
+
"reclaimable": {
|
|
5529
|
+
"type": "number"
|
|
5530
|
+
},
|
|
5531
|
+
"sReclaimable": {
|
|
5532
|
+
"type": "number"
|
|
5533
|
+
},
|
|
5534
|
+
"slab": {
|
|
5535
|
+
"type": "number"
|
|
5536
|
+
},
|
|
5537
|
+
"swapfree": {
|
|
5538
|
+
"type": "number"
|
|
5539
|
+
},
|
|
5540
|
+
"swaptotal": {
|
|
5541
|
+
"type": "number"
|
|
5542
|
+
},
|
|
5543
|
+
"swapused": {
|
|
5544
|
+
"type": "number"
|
|
5545
|
+
},
|
|
5546
|
+
"total": {
|
|
5547
|
+
"type": "number"
|
|
5548
|
+
},
|
|
5549
|
+
"used": {
|
|
5550
|
+
"type": "number"
|
|
5551
|
+
}
|
|
5552
|
+
},
|
|
5553
|
+
"required": [
|
|
5554
|
+
"active",
|
|
5555
|
+
"available",
|
|
5556
|
+
"buffcache",
|
|
5557
|
+
"buffers",
|
|
5558
|
+
"cached",
|
|
5559
|
+
"free",
|
|
5560
|
+
"kernelStack",
|
|
5561
|
+
"memAvailable",
|
|
5562
|
+
"memTotal",
|
|
5563
|
+
"reclaimable",
|
|
5564
|
+
"sReclaimable",
|
|
5565
|
+
"slab",
|
|
5566
|
+
"swapfree",
|
|
5567
|
+
"swaptotal",
|
|
5568
|
+
"swapused",
|
|
5569
|
+
"total",
|
|
5570
|
+
"used"
|
|
5571
|
+
],
|
|
5572
|
+
"type": "object"
|
|
5573
|
+
},
|
|
5574
|
+
"total": {
|
|
5575
|
+
"type": "number"
|
|
5576
|
+
},
|
|
5577
|
+
"used": {
|
|
5578
|
+
"type": "number"
|
|
5579
|
+
}
|
|
5580
|
+
},
|
|
5581
|
+
"required": [
|
|
5582
|
+
"arcstats",
|
|
5583
|
+
"meminfo",
|
|
5584
|
+
"total",
|
|
5585
|
+
"used"
|
|
5586
|
+
],
|
|
5587
|
+
"type": "object"
|
|
5588
|
+
}
|
|
5589
|
+
},
|
|
5590
|
+
"required": [
|
|
5591
|
+
"cpu",
|
|
5592
|
+
"mem"
|
|
5593
|
+
],
|
|
5594
|
+
"type": "object"
|
|
5595
|
+
},
|
|
5596
|
+
"RenderDomainGpuStats": {
|
|
5597
|
+
"additionalProperties": {},
|
|
5598
|
+
"type": "object"
|
|
5599
|
+
},
|
|
5600
|
+
"RenderDomainNetStats": {
|
|
5601
|
+
"additionalProperties": false,
|
|
5602
|
+
"properties": {
|
|
5603
|
+
"dev": {
|
|
5604
|
+
"additionalProperties": false,
|
|
5605
|
+
"properties": {
|
|
5606
|
+
"used": {
|
|
5607
|
+
"type": "number"
|
|
5608
|
+
}
|
|
5609
|
+
},
|
|
5610
|
+
"required": [
|
|
5611
|
+
"used"
|
|
5612
|
+
],
|
|
5613
|
+
"type": "object"
|
|
5614
|
+
},
|
|
5615
|
+
"type": {
|
|
5616
|
+
"type": "string"
|
|
5617
|
+
},
|
|
5618
|
+
"used": {
|
|
5619
|
+
"type": "number"
|
|
5620
|
+
}
|
|
5621
|
+
},
|
|
5622
|
+
"required": [
|
|
5623
|
+
"used"
|
|
5624
|
+
],
|
|
5625
|
+
"type": "object"
|
|
5626
|
+
},
|
|
5254
5627
|
"RenderDomainQueryRecord": {
|
|
5255
5628
|
"additionalProperties": false,
|
|
5256
5629
|
"properties": {
|
|
@@ -5310,22 +5683,216 @@
|
|
|
5310
5683
|
},
|
|
5311
5684
|
"type": "object"
|
|
5312
5685
|
},
|
|
5686
|
+
"RenderDomainSchedulersRecord": {
|
|
5687
|
+
"additionalProperties": {
|
|
5688
|
+
"items": {
|
|
5689
|
+
"type": "number"
|
|
5690
|
+
},
|
|
5691
|
+
"type": "array"
|
|
5692
|
+
},
|
|
5693
|
+
"type": "object"
|
|
5694
|
+
},
|
|
5313
5695
|
"RenderDomainStatsRecord": {
|
|
5314
5696
|
"additionalProperties": false,
|
|
5315
5697
|
"properties": {
|
|
5698
|
+
"activeCount": {
|
|
5699
|
+
"type": "number"
|
|
5700
|
+
},
|
|
5701
|
+
"available": {
|
|
5702
|
+
"type": "boolean"
|
|
5703
|
+
},
|
|
5704
|
+
"cpu": {
|
|
5705
|
+
"type": "number"
|
|
5706
|
+
},
|
|
5707
|
+
"cpuAvailable": {
|
|
5708
|
+
"type": "boolean"
|
|
5709
|
+
},
|
|
5710
|
+
"cpuCompute": {
|
|
5711
|
+
"type": "number"
|
|
5712
|
+
},
|
|
5713
|
+
"cpuComputeAvailable": {
|
|
5714
|
+
"type": "boolean"
|
|
5715
|
+
},
|
|
5716
|
+
"cpuComputeLimit": {
|
|
5717
|
+
"type": "number"
|
|
5718
|
+
},
|
|
5719
|
+
"cpuComputeReservation": {
|
|
5720
|
+
"type": "number"
|
|
5721
|
+
},
|
|
5722
|
+
"cpuComputeTotal": {
|
|
5723
|
+
"type": "number"
|
|
5724
|
+
},
|
|
5725
|
+
"cpuComputeValue": {
|
|
5726
|
+
"type": "number"
|
|
5727
|
+
},
|
|
5728
|
+
"cpuMemory": {
|
|
5729
|
+
"type": "number"
|
|
5730
|
+
},
|
|
5731
|
+
"cpuMemoryAvailable": {
|
|
5732
|
+
"type": "boolean"
|
|
5733
|
+
},
|
|
5734
|
+
"cpuMemoryLimit": {
|
|
5735
|
+
"type": "number"
|
|
5736
|
+
},
|
|
5737
|
+
"cpuMemoryReservation": {
|
|
5738
|
+
"type": "number"
|
|
5739
|
+
},
|
|
5740
|
+
"cpuMemoryTotal": {
|
|
5741
|
+
"type": "number"
|
|
5742
|
+
},
|
|
5743
|
+
"cpuMemoryValue": {
|
|
5744
|
+
"type": "number"
|
|
5745
|
+
},
|
|
5746
|
+
"cpuStat": {
|
|
5747
|
+
"$ref": "#/definitions/RenderDomainCpuStats"
|
|
5748
|
+
},
|
|
5316
5749
|
"error": {
|
|
5317
5750
|
"items": {
|
|
5318
5751
|
"$ref": "#/definitions/Record<string,unknown>"
|
|
5319
5752
|
},
|
|
5320
5753
|
"type": "array"
|
|
5321
5754
|
},
|
|
5755
|
+
"gpuAvailable": {
|
|
5756
|
+
"type": "boolean"
|
|
5757
|
+
},
|
|
5758
|
+
"gpuCompute": {
|
|
5759
|
+
"type": "number"
|
|
5760
|
+
},
|
|
5761
|
+
"gpuComputeAvailable": {
|
|
5762
|
+
"type": "boolean"
|
|
5763
|
+
},
|
|
5764
|
+
"gpuComputeLimit": {
|
|
5765
|
+
"type": "number"
|
|
5766
|
+
},
|
|
5767
|
+
"gpuComputeReservation": {
|
|
5768
|
+
"type": "number"
|
|
5769
|
+
},
|
|
5770
|
+
"gpuComputeTotal": {
|
|
5771
|
+
"type": "number"
|
|
5772
|
+
},
|
|
5773
|
+
"gpuComputeValue": {
|
|
5774
|
+
"type": "number"
|
|
5775
|
+
},
|
|
5776
|
+
"gpuDecoder": {
|
|
5777
|
+
"type": "number"
|
|
5778
|
+
},
|
|
5779
|
+
"gpuDecoderLimit": {
|
|
5780
|
+
"type": "number"
|
|
5781
|
+
},
|
|
5782
|
+
"gpuDecoderTotal": {
|
|
5783
|
+
"type": "number"
|
|
5784
|
+
},
|
|
5785
|
+
"gpuDecoderValue": {
|
|
5786
|
+
"type": "null"
|
|
5787
|
+
},
|
|
5788
|
+
"gpuEncoder": {
|
|
5789
|
+
"type": "number"
|
|
5790
|
+
},
|
|
5791
|
+
"gpuEncoderLimit": {
|
|
5792
|
+
"type": "number"
|
|
5793
|
+
},
|
|
5794
|
+
"gpuEncoderTotal": {
|
|
5795
|
+
"type": "number"
|
|
5796
|
+
},
|
|
5797
|
+
"gpuEncoderValue": {
|
|
5798
|
+
"type": "number"
|
|
5799
|
+
},
|
|
5800
|
+
"gpuMemory": {
|
|
5801
|
+
"type": "number"
|
|
5802
|
+
},
|
|
5803
|
+
"gpuMemoryAvailable": {
|
|
5804
|
+
"type": "boolean"
|
|
5805
|
+
},
|
|
5806
|
+
"gpuMemoryLimit": {
|
|
5807
|
+
"type": "number"
|
|
5808
|
+
},
|
|
5809
|
+
"gpuMemoryReservation": {
|
|
5810
|
+
"type": "number"
|
|
5811
|
+
},
|
|
5812
|
+
"gpuMemoryTotal": {
|
|
5813
|
+
"type": "number"
|
|
5814
|
+
},
|
|
5815
|
+
"gpuMemoryValue": {
|
|
5816
|
+
"type": "number"
|
|
5817
|
+
},
|
|
5818
|
+
"gpuQueueAvailable": {
|
|
5819
|
+
"type": "boolean"
|
|
5820
|
+
},
|
|
5821
|
+
"gpuQueueLimit": {
|
|
5822
|
+
"type": "number"
|
|
5823
|
+
},
|
|
5824
|
+
"gpuQueueReservation": {
|
|
5825
|
+
"type": "number"
|
|
5826
|
+
},
|
|
5827
|
+
"gpuQueueTotal": {
|
|
5828
|
+
"type": "number"
|
|
5829
|
+
},
|
|
5830
|
+
"gpuQueueValue": {
|
|
5831
|
+
"type": "number"
|
|
5832
|
+
},
|
|
5833
|
+
"gpuStat": {
|
|
5834
|
+
"$ref": "#/definitions/RenderDomainGpuStats"
|
|
5835
|
+
},
|
|
5836
|
+
"gpuType": {
|
|
5837
|
+
"type": "string"
|
|
5838
|
+
},
|
|
5839
|
+
"lag": {
|
|
5840
|
+
"type": "number"
|
|
5841
|
+
},
|
|
5842
|
+
"memory": {
|
|
5843
|
+
"type": "number"
|
|
5844
|
+
},
|
|
5845
|
+
"netAvailable": {
|
|
5846
|
+
"type": "boolean"
|
|
5847
|
+
},
|
|
5848
|
+
"netStat": {
|
|
5849
|
+
"$ref": "#/definitions/RenderDomainNetStats"
|
|
5850
|
+
},
|
|
5851
|
+
"netTransfer": {
|
|
5852
|
+
"type": "number"
|
|
5853
|
+
},
|
|
5854
|
+
"netTransferAvailable": {
|
|
5855
|
+
"type": "boolean"
|
|
5856
|
+
},
|
|
5857
|
+
"netTransferLimit": {
|
|
5858
|
+
"type": "number"
|
|
5859
|
+
},
|
|
5860
|
+
"netTransferReservation": {
|
|
5861
|
+
"type": "number"
|
|
5862
|
+
},
|
|
5863
|
+
"netTransferTotal": {
|
|
5864
|
+
"type": "number"
|
|
5865
|
+
},
|
|
5866
|
+
"netTransferValue": {
|
|
5867
|
+
"type": "number"
|
|
5868
|
+
},
|
|
5322
5869
|
"progress": {
|
|
5323
5870
|
"type": "number"
|
|
5324
5871
|
},
|
|
5325
5872
|
"status": {
|
|
5326
|
-
"
|
|
5873
|
+
"anyOf": [
|
|
5874
|
+
{
|
|
5875
|
+
"items": {
|
|
5876
|
+
"type": "string"
|
|
5877
|
+
},
|
|
5878
|
+
"type": "array"
|
|
5879
|
+
},
|
|
5880
|
+
{
|
|
5881
|
+
"type": "string"
|
|
5882
|
+
}
|
|
5883
|
+
]
|
|
5884
|
+
},
|
|
5885
|
+
"toobusy": {
|
|
5886
|
+
"type": "boolean"
|
|
5887
|
+
},
|
|
5888
|
+
"totalCount": {
|
|
5889
|
+
"type": "number"
|
|
5327
5890
|
}
|
|
5328
5891
|
},
|
|
5892
|
+
"required": [
|
|
5893
|
+
"activeCount",
|
|
5894
|
+
"totalCount"
|
|
5895
|
+
],
|
|
5329
5896
|
"type": "object"
|
|
5330
5897
|
},
|
|
5331
5898
|
"RenderPreset": {
|
|
@@ -7051,6 +7618,119 @@
|
|
|
7051
7618
|
],
|
|
7052
7619
|
"type": "object"
|
|
7053
7620
|
},
|
|
7621
|
+
"StorageLocationsRecord": {
|
|
7622
|
+
"additionalProperties": {
|
|
7623
|
+
"$ref": "#/definitions/StorageLocationsRecordEntry"
|
|
7624
|
+
},
|
|
7625
|
+
"type": "object"
|
|
7626
|
+
},
|
|
7627
|
+
"StorageLocationsRecordEntry": {
|
|
7628
|
+
"additionalProperties": false,
|
|
7629
|
+
"properties": {
|
|
7630
|
+
"allows": {
|
|
7631
|
+
"items": {
|
|
7632
|
+
"enum": [
|
|
7633
|
+
"del",
|
|
7634
|
+
"get",
|
|
7635
|
+
"put"
|
|
7636
|
+
],
|
|
7637
|
+
"type": "string"
|
|
7638
|
+
},
|
|
7639
|
+
"type": "array"
|
|
7640
|
+
},
|
|
7641
|
+
"available": {
|
|
7642
|
+
"type": "number"
|
|
7643
|
+
},
|
|
7644
|
+
"cache": {
|
|
7645
|
+
"type": "boolean"
|
|
7646
|
+
},
|
|
7647
|
+
"capacity": {
|
|
7648
|
+
"type": "number"
|
|
7649
|
+
},
|
|
7650
|
+
"free": {
|
|
7651
|
+
"type": "number"
|
|
7652
|
+
},
|
|
7653
|
+
"id": {
|
|
7654
|
+
"type": "string"
|
|
7655
|
+
},
|
|
7656
|
+
"latency": {
|
|
7657
|
+
"type": "number"
|
|
7658
|
+
},
|
|
7659
|
+
"location": {
|
|
7660
|
+
"type": "string"
|
|
7661
|
+
},
|
|
7662
|
+
"net": {
|
|
7663
|
+
"additionalProperties": false,
|
|
7664
|
+
"properties": {
|
|
7665
|
+
"rx": {
|
|
7666
|
+
"type": "number"
|
|
7667
|
+
},
|
|
7668
|
+
"tx": {
|
|
7669
|
+
"type": "number"
|
|
7670
|
+
}
|
|
7671
|
+
},
|
|
7672
|
+
"required": [
|
|
7673
|
+
"rx",
|
|
7674
|
+
"tx"
|
|
7675
|
+
],
|
|
7676
|
+
"type": "object"
|
|
7677
|
+
},
|
|
7678
|
+
"origin": {
|
|
7679
|
+
"type": "string"
|
|
7680
|
+
},
|
|
7681
|
+
"size": {
|
|
7682
|
+
"type": "number"
|
|
7683
|
+
},
|
|
7684
|
+
"timestamp": {
|
|
7685
|
+
"type": "string"
|
|
7686
|
+
},
|
|
7687
|
+
"type": {
|
|
7688
|
+
"type": "string"
|
|
7689
|
+
},
|
|
7690
|
+
"zone": {
|
|
7691
|
+
"type": "string"
|
|
7692
|
+
}
|
|
7693
|
+
},
|
|
7694
|
+
"required": [
|
|
7695
|
+
"allows",
|
|
7696
|
+
"available",
|
|
7697
|
+
"cache",
|
|
7698
|
+
"capacity",
|
|
7699
|
+
"free",
|
|
7700
|
+
"id",
|
|
7701
|
+
"latency",
|
|
7702
|
+
"location",
|
|
7703
|
+
"net",
|
|
7704
|
+
"origin",
|
|
7705
|
+
"size",
|
|
7706
|
+
"timestamp",
|
|
7707
|
+
"type",
|
|
7708
|
+
"zone"
|
|
7709
|
+
],
|
|
7710
|
+
"type": "object"
|
|
7711
|
+
},
|
|
7712
|
+
"StorageZonesRecord": {
|
|
7713
|
+
"additionalProperties": {
|
|
7714
|
+
"additionalProperties": false,
|
|
7715
|
+
"properties": {
|
|
7716
|
+
"locations": {
|
|
7717
|
+
"items": {
|
|
7718
|
+
"type": "string"
|
|
7719
|
+
},
|
|
7720
|
+
"type": "array"
|
|
7721
|
+
},
|
|
7722
|
+
"priority": {
|
|
7723
|
+
"type": "number"
|
|
7724
|
+
}
|
|
7725
|
+
},
|
|
7726
|
+
"required": [
|
|
7727
|
+
"locations",
|
|
7728
|
+
"priority"
|
|
7729
|
+
],
|
|
7730
|
+
"type": "object"
|
|
7731
|
+
},
|
|
7732
|
+
"type": "object"
|
|
7733
|
+
},
|
|
7054
7734
|
"StoryboardDomainPipelinesRecord": {
|
|
7055
7735
|
"additionalProperties": false,
|
|
7056
7736
|
"properties": {
|