action bluemix_get_volumes_fs_flavors_json { label: "List available file share sizes" description: "This endpoint returns a list of available file shares in gigabyte (corresponding IBM Containers command: `cf ic volume fs-flavor-list`)." provider: bluemix method: GET path: "/volumes/fs/flavors/json" encoding: json input: { type: "object" properties: { "X-Auth-Project-Id": { type: "string" } "X-Auth-Token": { type: "string" } } required: ["X-Auth-Project-Id", "X-Auth-Token"] additionalProperties: false } output: { type: "array" items: { type: "integer" } } }