action linode_get_linode_volumes { label: "Linode's Volumes List" description: "View Block Storage Volumes attached to this Linode.\n" provider: linode method: GET path: "/linode/instances/{linodeId}/volumes" encoding: json output: { type: "object" properties: { data: { type: "array" items: { type: "object" description: "A Block Storage Volume associated with your Account.\n" properties: { created: { type: "string" format: "date-time" description: "When this Volume was created." } filesystem_path: { type: "string" description: "The full filesystem path for the Volume based on the Volume's label. Path is /dev/disk/by-id/scsi-0Linode_Volume_ + Volume label.\n" } hardware_type: { type: "string" description: "The storage type of this Volume." enum: ["hdd", "nvme"] } id: { type: "integer" description: "The unique ID of this Volume." } label: { type: "string" description: "The Volume's label is for display purposes only.\n" } linode_id: { type: "integer" description: "If a Volume is attached to a specific Linode, the ID of that Linode will be displayed here.\n" } linode_label: { type: "string" description: "If a Volume is attached to a specific Linode, the label of that Linode will be displayed here.\n" } region: { type: "string" description: "The unique ID of this Region." } size: { type: "integer" description: "The Volume's size, in GiB.\n" } status: { type: "string" description: "The current status of the volume. Can be one of:\n\n * `creating` - the Volume is being created and is not yet available\n for use.\n * `active` - the Volume is online and available for use.\n * `resizing` - the Volume is in the process of upgrading\n its current capacity.\n" enum: ["creating", "active", "resizing"] } tags: { type: "array" description: "An array of Tags applied to this object. Tags are for organizational purposes only.\n" items: { type: "string" } } updated: { type: "string" format: "date-time" description: "When this Volume was last updated." } } } } page: { type: "integer" description: "The current [page](/docs/api/#pagination)." } pages: { type: "integer" description: "The total number of [pages](/docs/api/#pagination)." } results: { type: "integer" description: "The total number of results." } } } }