Details
-
Sub-task
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
Reviewed
Description
Right now ozone rest api output is displayed as a raw json string in single line, not quite human readable,
{"volumes":[{"owner":{"name":"wwei"},"quota":{"unit":"GB","size":200},"volumeName":"volume-aug-1","createdOn":null,"createdBy":null}]}
propose to improve the output format by pretty printer
{ "volumes" : [ { "owner" : { "name" : "wwei" }, "quota" : { "unit" : "GB", "size" : 200 }, "volumeName" : "volume-aug-1", "createdOn" : null, "createdBy" : null } ] }