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: services/director-v2/openapi.json
+31Lines changed: 31 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2291,6 +2291,26 @@
2291
2291
}
2292
2292
}
2293
2293
},
2294
+
"LegacyState": {
2295
+
"properties": {
2296
+
"old_state_path": {
2297
+
"type": "string",
2298
+
"format": "path",
2299
+
"title": "Old State Path"
2300
+
},
2301
+
"new_state_path": {
2302
+
"type": "string",
2303
+
"format": "path",
2304
+
"title": "New State Path"
2305
+
}
2306
+
},
2307
+
"type": "object",
2308
+
"required": [
2309
+
"old_state_path",
2310
+
"new_state_path"
2311
+
],
2312
+
"title": "LegacyState"
2313
+
},
2294
2314
"NATRule": {
2295
2315
"properties": {
2296
2316
"hostname": {
@@ -2449,6 +2469,17 @@
2449
2469
],
2450
2470
"title": "Volume Size Limits",
2451
2471
"description": "Apply volume size limits to entries in: `inputs_path`, `outputs_path` and `state_paths`. Limits must be parsable by Pydantic's ByteSize."
2472
+
},
2473
+
"legacy_state": {
2474
+
"anyOf": [
2475
+
{
2476
+
"$ref": "#/components/schemas/LegacyState"
2477
+
},
2478
+
{
2479
+
"type": "null"
2480
+
}
2481
+
],
2482
+
"description": "if present, the service needs to first try to download the legacy statecoming from a different path."
0 commit comments