You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: website/static/schemas/v2/workspace.json
+21-9Lines changed: 21 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -186,11 +186,23 @@
186
186
"description": "Configures aspects of the content-addressable storage (CAS) cache.",
187
187
"type": "object",
188
188
"properties": {
189
+
"maxSize": {
190
+
"title": "maxSize",
191
+
"description": "Maximum total size of the local cache, for example \"10gb\" or \"512mib\". When exceeded, the least recently used cached task outputs are evicted. Unlimited when unset. @since 2.4.0",
192
+
"anyOf": [
193
+
{
194
+
"type": "string"
195
+
},
196
+
{
197
+
"type": "null"
198
+
}
199
+
]
200
+
},
189
201
"verifyIntegrity": {
190
202
"title": "verifyIntegrity",
191
-
"description": "Verify hash on every read. When enabled, reads are slower but detect on-disk corruption.",
203
+
"description": "Verify hash on every read. When enabled, reads are slower but detect on-disk corruption. @since 2.3.0",
192
204
"type": "boolean",
193
-
"markdownDescription": "Verify hash on every read. When enabled, reads are slower but detect on-disk corruption."
205
+
"markdownDescription": "Verify hash on every read. When enabled, reads are slower but detect on-disk corruption. @since 2.3.0"
194
206
}
195
207
},
196
208
"additionalProperties": false,
@@ -202,13 +214,13 @@
202
214
"properties": {
203
215
"cas": {
204
216
"title": "cas",
205
-
"description": "Configures aspects of the content-addressable storage (CAS) cache.",
217
+
"description": "Configures aspects of the content-addressable storage (CAS) cache. @since 2.3.0",
206
218
"allOf": [
207
219
{
208
220
"$ref": "#/definitions/CacheCasConfig"
209
221
}
210
222
],
211
-
"markdownDescription": "Configures aspects of the content-addressable storage (CAS) cache."
223
+
"markdownDescription": "Configures aspects of the content-addressable storage (CAS) cache. @since 2.3.0"
212
224
}
213
225
},
214
226
"additionalProperties": false
@@ -465,23 +477,23 @@
465
477
"properties": {
466
478
"asyncAffectedTracking": {
467
479
"title": "asyncAffectedTracking",
468
-
"description": "Track and determine affected projects and tasks asynchronously.",
480
+
"description": "Track and determine affected projects and tasks asynchronously. @since 2.2.0",
469
481
"type": "boolean"
470
482
},
471
483
"asyncGraphBuilding": {
472
484
"title": "asyncGraphBuilding",
473
-
"description": "Build the project and task graphs asynchronously.",
485
+
"description": "Build the project and task graphs asynchronously. @since 2.2.0",
474
486
"type": "boolean"
475
487
},
476
488
"casOutputsCache": {
477
489
"title": "casOutputsCache",
478
-
"description": "Store task outputs in a local CAS (content-addressable storage) cache.",
490
+
"description": "Store task outputs in a local CAS (content-addressable storage) cache. @since 2.3.0",
479
491
"type": "boolean",
480
-
"markdownDescription": "Store task outputs in a local CAS (content-addressable storage) cache."
492
+
"markdownDescription": "Store task outputs in a local CAS (content-addressable storage) cache. @since 2.3.0"
481
493
},
482
494
"nativeFileHashing": {
483
495
"title": "nativeFileHashing",
484
-
"description": "Use native file hashing instead of using the VCS.",
496
+
"description": "Use native file hashing instead of using the VCS. @since 2.3.0",
0 commit comments