@nxtedition/types 23.0.34 → 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/schema.json CHANGED
@@ -861,7 +861,16 @@
861
861
  "ConnectionRecord": {
862
862
  "anyOf": [
863
863
  {
864
- "$ref": "#/definitions/FilePublishConnectionS3Record"
864
+ "$ref": "#/definitions/FileConnectionS3Record"
865
+ },
866
+ {
867
+ "$ref": "#/definitions/FileConnectionFtpRecord"
868
+ },
869
+ {
870
+ "$ref": "#/definitions/FileConnectionSmbRecord"
871
+ },
872
+ {
873
+ "$ref": "#/definitions/FileConnectionSftpRecord"
865
874
  },
866
875
  {
867
876
  "$ref": "#/definitions/ReutersConnectionRecord"
@@ -1268,6 +1277,9 @@
1268
1277
  ":media.updateSubtitles?": {
1269
1278
  "$ref": "#/definitions/Record<string,unknown>"
1270
1279
  },
1280
+ ":monitor.stats?": {
1281
+ "$ref": "#/definitions/Record<string,MonitorStatsRecord>"
1282
+ },
1271
1283
  ":panel": {
1272
1284
  "$ref": "#/definitions/PanelDomainPanelRecord"
1273
1285
  },
@@ -1319,6 +1331,9 @@
1319
1331
  ":render.result?": {
1320
1332
  "$ref": "#/definitions/RenderDomainResultRecord"
1321
1333
  },
1334
+ ":render.schedulers?": {
1335
+ "$ref": "#/definitions/RenderDomainSchedulersRecord"
1336
+ },
1322
1337
  ":render.stats?": {
1323
1338
  "$ref": "#/definitions/RenderDomainStatsRecord"
1324
1339
  },
@@ -1331,7 +1346,7 @@
1331
1346
  ":script.children": {
1332
1347
  "$ref": "#/definitions/ScriptChildrenRecord"
1333
1348
  },
1334
- ":search": {
1349
+ ":search?": {
1335
1350
  "$ref": "#/definitions/SearchRecord"
1336
1351
  },
1337
1352
  ":settings": {
@@ -1433,6 +1448,7 @@
1433
1448
  ":media.transcriptChanges",
1434
1449
  ":media.updateGraphics?",
1435
1450
  ":media.updateSubtitles?",
1451
+ ":monitor.stats?",
1436
1452
  ":panel",
1437
1453
  ":permission",
1438
1454
  ":permission?",
@@ -1450,11 +1466,12 @@
1450
1466
  ":render-preset",
1451
1467
  ":render.query?",
1452
1468
  ":render.result?",
1469
+ ":render.schedulers?",
1453
1470
  ":render.stats?",
1454
1471
  ":revs?",
1455
1472
  ":role.tags",
1456
1473
  ":script.children",
1457
- ":search",
1474
+ ":search?",
1458
1475
  ":settings",
1459
1476
  ":storyboard",
1460
1477
  ":storyboard.pipelines",
@@ -1543,6 +1560,7 @@
1543
1560
  ":media.transcriptChanges",
1544
1561
  ":media.updateGraphics?",
1545
1562
  ":media.updateSubtitles?",
1563
+ ":monitor.stats?",
1546
1564
  ":panel",
1547
1565
  ":permission",
1548
1566
  ":permission?",
@@ -1560,11 +1578,12 @@
1560
1578
  ":render-preset",
1561
1579
  ":render.query?",
1562
1580
  ":render.result?",
1581
+ ":render.schedulers?",
1563
1582
  ":render.stats?",
1564
1583
  ":revs?",
1565
1584
  ":role.tags",
1566
1585
  ":script.children",
1567
- ":search",
1586
+ ":search?",
1568
1587
  ":settings",
1569
1588
  ":storyboard",
1570
1589
  ":storyboard.pipelines",
@@ -1956,30 +1975,93 @@
1956
1975
  },
1957
1976
  "type": "object"
1958
1977
  },
1959
- "FileDomainRecords": {
1978
+ "FileConnectionFtpRecord": {
1960
1979
  "additionalProperties": false,
1961
1980
  "properties": {
1962
- ":file.replicate": {
1963
- "$ref": "#/definitions/FileReplicateRecord"
1981
+ "concurrency": {
1982
+ "type": "number"
1964
1983
  },
1965
- ":file.restrictions": {
1966
- "$ref": "#/definitions/FileRestrictionsRecord"
1984
+ "host": {
1985
+ "type": "string"
1967
1986
  },
1968
- ":file.stats?": {
1969
- "$ref": "#/definitions/FileStats"
1987
+ "ignoreMissing": {
1988
+ "type": "boolean"
1989
+ },
1990
+ "listConcurrency": {
1991
+ "type": "number"
1992
+ },
1993
+ "metafile": {
1994
+ "additionalProperties": false,
1995
+ "properties": {
1996
+ "content": {
1997
+ "type": "string"
1998
+ }
1999
+ },
2000
+ "required": [
2001
+ "content"
2002
+ ],
2003
+ "type": "object"
2004
+ },
2005
+ "password": {
2006
+ "type": "string"
2007
+ },
2008
+ "pollInterval": {
2009
+ "type": "number"
2010
+ },
2011
+ "port": {
2012
+ "type": [
2013
+ "string",
2014
+ "number"
2015
+ ]
2016
+ },
2017
+ "protocol": {
2018
+ "const": "ftp",
2019
+ "type": "string"
2020
+ },
2021
+ "stabilityThreshold": {
2022
+ "type": "number"
2023
+ },
2024
+ "timezone": {
2025
+ "type": "string"
2026
+ },
2027
+ "type": {
2028
+ "const": "file",
2029
+ "type": "string"
2030
+ },
2031
+ "userNotificationsEnabled": {
2032
+ "type": "boolean"
2033
+ },
2034
+ "username": {
2035
+ "type": "string"
2036
+ },
2037
+ "utf8": {
2038
+ "type": "boolean"
1970
2039
  }
1971
2040
  },
1972
2041
  "required": [
1973
- ":file.replicate",
1974
- ":file.restrictions",
1975
- ":file.stats?"
2042
+ "host",
2043
+ "protocol",
2044
+ "type"
1976
2045
  ],
1977
2046
  "type": "object"
1978
2047
  },
1979
- "FileDomainStatsRecord": {
1980
- "$ref": "#/definitions/FileStats"
2048
+ "FileConnectionRecord": {
2049
+ "anyOf": [
2050
+ {
2051
+ "$ref": "#/definitions/FileConnectionS3Record"
2052
+ },
2053
+ {
2054
+ "$ref": "#/definitions/FileConnectionFtpRecord"
2055
+ },
2056
+ {
2057
+ "$ref": "#/definitions/FileConnectionSmbRecord"
2058
+ },
2059
+ {
2060
+ "$ref": "#/definitions/FileConnectionSftpRecord"
2061
+ }
2062
+ ]
1981
2063
  },
1982
- "FilePublishBaseConnectionRecord": {
2064
+ "FileConnectionRecordCommon": {
1983
2065
  "additionalProperties": false,
1984
2066
  "properties": {
1985
2067
  "concurrency": {
@@ -2035,10 +2117,7 @@
2035
2117
  ],
2036
2118
  "type": "object"
2037
2119
  },
2038
- "FilePublishConnectionRecord": {
2039
- "$ref": "#/definitions/FilePublishConnectionS3Record"
2040
- },
2041
- "FilePublishConnectionS3Record": {
2120
+ "FileConnectionS3Record": {
2042
2121
  "additionalProperties": false,
2043
2122
  "properties": {
2044
2123
  "bucket": {
@@ -2099,6 +2178,185 @@
2099
2178
  ],
2100
2179
  "type": "object"
2101
2180
  },
2181
+ "FileConnectionSftpRecord": {
2182
+ "additionalProperties": false,
2183
+ "properties": {
2184
+ "concurrency": {
2185
+ "type": "number"
2186
+ },
2187
+ "debug": {
2188
+ "type": "boolean"
2189
+ },
2190
+ "host": {
2191
+ "type": "string"
2192
+ },
2193
+ "ignoreMissing": {
2194
+ "type": "boolean"
2195
+ },
2196
+ "listConcurrency": {
2197
+ "type": "number"
2198
+ },
2199
+ "metafile": {
2200
+ "additionalProperties": false,
2201
+ "properties": {
2202
+ "content": {
2203
+ "type": "string"
2204
+ }
2205
+ },
2206
+ "required": [
2207
+ "content"
2208
+ ],
2209
+ "type": "object"
2210
+ },
2211
+ "mode": {
2212
+ "enum": [
2213
+ "lftp",
2214
+ "libcurl",
2215
+ "openssh",
2216
+ "ssh2"
2217
+ ],
2218
+ "type": "string"
2219
+ },
2220
+ "password": {
2221
+ "type": "string"
2222
+ },
2223
+ "pollInterval": {
2224
+ "type": "number"
2225
+ },
2226
+ "port": {
2227
+ "type": [
2228
+ "string",
2229
+ "number"
2230
+ ]
2231
+ },
2232
+ "privateKey": {
2233
+ "type": "string"
2234
+ },
2235
+ "protocol": {
2236
+ "const": "sftp",
2237
+ "type": "string"
2238
+ },
2239
+ "root": {
2240
+ "type": "string"
2241
+ },
2242
+ "stabilityThreshold": {
2243
+ "type": "number"
2244
+ },
2245
+ "timezone": {
2246
+ "type": "string"
2247
+ },
2248
+ "type": {
2249
+ "const": "file",
2250
+ "type": "string"
2251
+ },
2252
+ "userNotificationsEnabled": {
2253
+ "type": "boolean"
2254
+ },
2255
+ "username": {
2256
+ "type": "string"
2257
+ }
2258
+ },
2259
+ "required": [
2260
+ "host",
2261
+ "protocol",
2262
+ "type"
2263
+ ],
2264
+ "type": "object"
2265
+ },
2266
+ "FileConnectionSmbRecord": {
2267
+ "additionalProperties": false,
2268
+ "properties": {
2269
+ "concurrency": {
2270
+ "type": "number"
2271
+ },
2272
+ "host": {
2273
+ "type": "string"
2274
+ },
2275
+ "ignoreMissing": {
2276
+ "type": "boolean"
2277
+ },
2278
+ "listConcurrency": {
2279
+ "type": "number"
2280
+ },
2281
+ "metafile": {
2282
+ "additionalProperties": false,
2283
+ "properties": {
2284
+ "content": {
2285
+ "type": "string"
2286
+ }
2287
+ },
2288
+ "required": [
2289
+ "content"
2290
+ ],
2291
+ "type": "object"
2292
+ },
2293
+ "password": {
2294
+ "type": "string"
2295
+ },
2296
+ "pollInterval": {
2297
+ "type": "number"
2298
+ },
2299
+ "port": {
2300
+ "type": [
2301
+ "string",
2302
+ "number"
2303
+ ]
2304
+ },
2305
+ "protocol": {
2306
+ "const": "smb",
2307
+ "type": "string"
2308
+ },
2309
+ "share": {
2310
+ "type": "string"
2311
+ },
2312
+ "stabilityThreshold": {
2313
+ "type": "number"
2314
+ },
2315
+ "type": {
2316
+ "const": "file",
2317
+ "type": "string"
2318
+ },
2319
+ "userNotificationsEnabled": {
2320
+ "type": "boolean"
2321
+ },
2322
+ "username": {
2323
+ "type": "string"
2324
+ },
2325
+ "workgroup": {
2326
+ "type": "string"
2327
+ }
2328
+ },
2329
+ "required": [
2330
+ "host",
2331
+ "protocol",
2332
+ "share",
2333
+ "type"
2334
+ ],
2335
+ "type": "object"
2336
+ },
2337
+ "FileDomainRecords": {
2338
+ "additionalProperties": false,
2339
+ "properties": {
2340
+ ":file.replicate": {
2341
+ "$ref": "#/definitions/FileReplicateRecord"
2342
+ },
2343
+ ":file.restrictions": {
2344
+ "$ref": "#/definitions/FileRestrictionsRecord"
2345
+ },
2346
+ ":file.stats?": {
2347
+ "$ref": "#/definitions/FileStats"
2348
+ }
2349
+ },
2350
+ "required": [
2351
+ ":file.replicate",
2352
+ ":file.restrictions",
2353
+ ":file.stats?"
2354
+ ],
2355
+ "type": "object"
2356
+ },
2357
+ "FileDomainStatsRecord": {
2358
+ "$ref": "#/definitions/FileStats"
2359
+ },
2102
2360
  "FilePublishDefaults": {
2103
2361
  "additionalProperties": false,
2104
2362
  "properties": {
@@ -3592,16 +3850,200 @@
3592
3850
  ],
3593
3851
  "type": "object"
3594
3852
  },
3595
- "Nxtpression": {
3596
- "anyOf": [
3597
- {
3598
- "additionalProperties": false,
3599
- "properties": {
3600
- "__context": {
3601
- "additionalProperties": true,
3602
- "description": "TS-HACK: this property doesn't really exist on the nxtpression string,\nit is only here to make sure the generic Context won't get stripped.",
3603
- "properties": {},
3604
- "type": "object"
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
+ },
4037
+ "Nxtpression": {
4038
+ "anyOf": [
4039
+ {
4040
+ "additionalProperties": false,
4041
+ "properties": {
4042
+ "__context": {
4043
+ "additionalProperties": true,
4044
+ "description": "TS-HACK: this property doesn't really exist on the nxtpression string,\nit is only here to make sure the generic Context won't get stripped.",
4045
+ "properties": {},
4046
+ "type": "object"
3605
4047
  },
3606
4048
  "__returnValue": {
3607
4049
  "description": "TS-HACK: this property doesn't really exist on the nxtpression string,\nit is only here to make sure the generic Context won't get stripped.",
@@ -4640,6 +5082,10 @@
4640
5082
  "additionalProperties": false,
4641
5083
  "type": "object"
4642
5084
  },
5085
+ "Record<string,MonitorStatsRecord>": {
5086
+ "additionalProperties": false,
5087
+ "type": "object"
5088
+ },
4643
5089
  "Record<string,TemplateProperty>": {
4644
5090
  "additionalProperties": false,
4645
5091
  "type": "object"
@@ -4960,6 +5406,15 @@
4960
5406
  "languages"
4961
5407
  ],
4962
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"
4963
5418
  }
4964
5419
  },
4965
5420
  "required": [
@@ -4982,7 +5437,10 @@
4982
5437
  "media.consolidate",
4983
5438
  "media.subtitles",
4984
5439
  "media.subtitles?",
4985
- "media.transcribe?"
5440
+ "media.transcribe?",
5441
+ "nxt.status?",
5442
+ "storage.locations?",
5443
+ "storage.zones?"
4986
5444
  ],
4987
5445
  "type": "object"
4988
5446
  },
@@ -5003,6 +5461,169 @@
5003
5461
  ],
5004
5462
  "type": "object"
5005
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
+ },
5006
5627
  "RenderDomainQueryRecord": {
5007
5628
  "additionalProperties": false,
5008
5629
  "properties": {
@@ -5062,22 +5683,216 @@
5062
5683
  },
5063
5684
  "type": "object"
5064
5685
  },
5686
+ "RenderDomainSchedulersRecord": {
5687
+ "additionalProperties": {
5688
+ "items": {
5689
+ "type": "number"
5690
+ },
5691
+ "type": "array"
5692
+ },
5693
+ "type": "object"
5694
+ },
5065
5695
  "RenderDomainStatsRecord": {
5066
5696
  "additionalProperties": false,
5067
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
+ },
5068
5749
  "error": {
5069
5750
  "items": {
5070
5751
  "$ref": "#/definitions/Record<string,unknown>"
5071
5752
  },
5072
5753
  "type": "array"
5073
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
+ },
5074
5869
  "progress": {
5075
5870
  "type": "number"
5076
5871
  },
5077
5872
  "status": {
5078
- "type": "string"
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"
5079
5890
  }
5080
5891
  },
5892
+ "required": [
5893
+ "activeCount",
5894
+ "totalCount"
5895
+ ],
5081
5896
  "type": "object"
5082
5897
  },
5083
5898
  "RenderPreset": {
@@ -6803,6 +7618,119 @@
6803
7618
  ],
6804
7619
  "type": "object"
6805
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
+ },
6806
7734
  "StoryboardDomainPipelinesRecord": {
6807
7735
  "additionalProperties": false,
6808
7736
  "properties": {