@akamai/openapi-ts
    Preparing search index...

    Type Alias GetLinodeDiskResponses

    type GetLinodeDiskResponses = {
        "200": {
            created: string;
            disk_encryption: string;
            filesystem: "raw" | "swap" | "ext2" | "ext3" | "ext4" | "initrd";
            id: number;
            label: string;
            size: number;
            status: "ready" | "not ready" | "deleting";
            updated: string;
        };
    }
    Index

    Properties

    Properties

    "200": {
        created: string;
        disk_encryption: string;
        filesystem: "raw" | "swap" | "ext2" | "ext3" | "ext4" | "initrd";
        id: number;
        label: string;
        size: number;
        status: "ready" | "not ready" | "deleting";
        updated: string;
    }

    Returns a single Disk object.

    Type Declaration

    • Readonlycreated: string

      Read-only When this disk was created.

    • Readonlydisk_encryption: string

      Read-only Displays if encryption is enabled on this disk. This setting is based on the disk_encryption setting of the Linode.

    • filesystem: "raw" | "swap" | "ext2" | "ext3" | "ext4" | "initrd"

      The disk's format or file system. A value of raw indicates no file system, just a raw binary stream. A value of swap indicates a Linux swap area. The values ext3 or ext4 represent these Linux journaling file systems. The value ext2 is the deprecated ext2 Linux file system. Finally, initrd indicates the disk is formatted as an uncompressed initial RAM disk.

      📘

      The ext2 file system doesn't properly support timestamps and will be removed from Linux support in the near future. Also, initrd is a legacy format that no longer applies to most use cases. As a best practice, use the other supported formats or file systems instead.

    • Readonlyid: number

      Read-only This disk's ID. You need this value to run other operations that interact with the disk.

    • label: string

      Filterable The name of the disk. This is for display purposes only.

    • size: number

      Filterable The size of the disk in MB.

    • status: "ready" | "not ready" | "deleting"

      Read-only The current state of the disk.

    • Readonlyupdated: string

      Read-only When this disk was last updated.