action bluemix_get_volumes_fs_json { label: "List available file shares in a space" description: "This endpoint returns a list of all file shares that are availble in a space (corresponding IBM Containers command: `cf ic volume fs-list`)." provider: bluemix method: GET path: "/volumes/fs/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: "object" properties: { capacity: { type: "integer" description: "The size of the file share in gigabyte." } created_date: { type: "string" description: "The timestamp when the file share was created." } fsName: { type: "string" description: "The name of the file share." } hostPath: { type: "string" description: "The path to the volume on the host node." } iops: { type: "number" format: "double" description: "The number of Input/Output operations per second. " } iopsTotal: { type: "integer" description: "The total number of IOPS considering the size of the file share. The size of your file share in gigabyte multiplied with the number of IOPS indicates the total number of IOPS. The higher the number of IOPS the faster you can read from and write to your volumes." } orderId: { type: "string" description: "The ID received from softlayer when the file share was ordered to be set up in softlayer." } provider: { type: "string" description: "The provider of the file share." } spaceGuid: { type: "string" description: "The unique ID representing a Bluemix space in which the file share was created." } state: { type: "string" description: "The current state of the file share. When the file share is ready to be used, this attribute is set to `READY`." } updated_date: { type: "string" description: "The timestamp when the file share last was updated." } } } } }