|
Post by jasonzhang on Nov 27, 2017 3:08:03 GMT
According to the content of 6.13 chapter in Swordfish Scalable Storage Management API User's Guide, the content of Patch request body is as follows when expanding capacity of a volume:
{ "Capacity.Data.AllocatedBytes": 1374389534720 }
Whether the following representation of request body is equivalent to the above?
{
"Capacity": {
"Data": {
"AllocatedBytes": 1374389534720
}
}
}
|
|
|
Post by gericson on Dec 7, 2017 14:50:29 GMT
Yes Additional Info: While legal JSON, it turns out that the original example is NOT legal in OData.
|
|