action linode_get_linode_disk { label: "Disk View" description: "View Disk information for a Disk associated with this Linode.\n" provider: linode method: GET path: "/linode/instances/{linodeId}/disks/{diskId}" encoding: json output: { type: "object" properties: { created: { type: "string" format: "date-time" description: "When this Disk was created." } filesystem: { type: "string" description: "The Disk filesystem can be one of:\n\n * raw - No filesystem, just a raw binary stream.\n * swap - Linux swap area.\n * ext3 - The ext3 journaling filesystem for Linux.\n * ext4 - The ext4 journaling filesystem for Linux.\n * initrd - initrd (uncompressed initrd, ext2, max 32 MB).\n" enum: ["raw", "swap", "ext3", "ext4", "initrd"] } id: { type: "integer" description: "This Disk's ID which must be provided for all operations impacting this Disk.\n" } label: { type: "string" description: "The Disk's label is for display purposes only.\n" } size: { type: "integer" description: "The size of the Disk in MB." } status: { type: "string" description: "A brief description of this Disk's current state. This field may change without direct action from you, as a result of operations performed to the Disk or the Linode containing the Disk.\n" enum: ["ready", "not ready", "deleting"] } updated: { type: "string" format: "date-time" description: "When this Disk was last updated." } } } }