action bluemix_get_volumes_name_json { label: "Retrieve detailed information about a volume. " description: "Retrieve a detailed list of information about a volume that is identified by the volume name (corresponding IBM Containers command: `cf ic volume inspect VOLNAME`)." provider: bluemix method: GET path: "/volumes/{name}/json" encoding: json input: { type: "object" properties: { "X-Auth-Project-Id": { type: "string" } "X-Auth-Token": { type: "string" } name: { type: "string" } } required: ["X-Auth-Project-Id", "X-Auth-Token", "name"] additionalProperties: false } output: { 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." } } } }