action bluemix_delete_volumes_fs_name { label: "Delete a file share" description: "This endpoint deletes a file share from a space (corresponding IBM Containers command: `cf ic volume fs-rm FSNAME`).\n\n Before you can delete a file share, all mounted volumes must be deleted first. To delete a volume, run `cf ic volume rm VOLNAME` or call the `DELETE /volumes/{name}` API endpoint. \n\n **Note:** To delete a file share you must have been granted organization developer rights." provider: bluemix method: DELETE path: "/volumes/fs/{name}" 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: { type: "object" additionalProperties: true } }