This commit is contained in:
Łukasz Magiera 2021-02-18 16:48:53 +01:00
parent 37b1fb97fb
commit 1c4c9f262a

View File

@ -1772,13 +1772,17 @@ Inputs:
"ID": "76f1988b-ef30-4d7e-b3ec-9a627f4ba5a8", "ID": "76f1988b-ef30-4d7e-b3ec-9a627f4ba5a8",
"URLs": null, "URLs": null,
"Weight": 42, "Weight": 42,
"MaxStorage": 42,
"CanSeal": true, "CanSeal": true,
"CanStore": true "CanStore": true
}, },
{ {
"Capacity": 9, "Capacity": 9,
"Available": 9, "Available": 9,
"Reserved": 9 "FSAvailable": 9,
"Reserved": 9,
"Max": 9,
"Used": 9
} }
] ]
``` ```
@ -1878,6 +1882,7 @@ Response:
"ID": "76f1988b-ef30-4d7e-b3ec-9a627f4ba5a8", "ID": "76f1988b-ef30-4d7e-b3ec-9a627f4ba5a8",
"URLs": null, "URLs": null,
"Weight": 42, "Weight": 42,
"MaxStorage": 42,
"CanSeal": true, "CanSeal": true,
"CanStore": true "CanStore": true
} }
@ -1949,7 +1954,10 @@ Inputs:
"Stat": { "Stat": {
"Capacity": 9, "Capacity": 9,
"Available": 9, "Available": 9,
"Reserved": 9 "FSAvailable": 9,
"Reserved": 9,
"Max": 9,
"Used": 9
}, },
"Err": "string value" "Err": "string value"
} }
@ -1975,7 +1983,10 @@ Response:
{ {
"Capacity": 9, "Capacity": 9,
"Available": 9, "Available": 9,
"Reserved": 9 "FSAvailable": 9,
"Reserved": 9,
"Max": 9,
"Used": 9
} }
``` ```