action bluemix_get_volumes_json { label: "List all volumes for a space" description: "This endpoint returns a list of all volumes that are available in the given space (corresponding IBM Containers command: `cf ic volume list`)." provider: bluemix method: GET path: "/volumes/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: { properties: { fsID: { type: "string" description: " Unique identifier representing the file share on which the volume is hosted. " } hostPath: { type: "string" description: "Full path to the mounted volume inside the container." } otherSpaceVisibility: { type: "array" description: "List of space IDs in which the volume is visible and can be used by all the single containers and container groups. " items: { type: "string" } } spaceGuid: { type: "string" description: "Unique identifier representing the space where the volume got created." } volName: { type: "string" description: "The name of the volume." } } } } }