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

    Type Alias GetVolumesResponses

    type GetVolumesResponses = {
        "200": {
            data: {
                created: string;
                encryption: "enabled" | "disabled";
                filesystem_path: string;
                hardware_type: "hdd" | "nvme";
                id: number;
                io_ready: boolean;
                label: string;
                linode_id: number | null;
                linode_label: string | null;
                region: string;
                size: number;
                status: "creating" | "active" | "resizing" | "key_rotating";
                tags: string[];
                updated: string;
            }[];
            page: number;
            pages: number;
            results: number;
        };
    }
    Index

    Properties

    Properties

    "200": {
        data: {
            created: string;
            encryption: "enabled" | "disabled";
            filesystem_path: string;
            hardware_type: "hdd" | "nvme";
            id: number;
            io_ready: boolean;
            label: string;
            linode_id: number | null;
            linode_label: string | null;
            region: string;
            size: number;
            status: "creating" | "active" | "resizing" | "key_rotating";
            tags: string[];
            updated: string;
        }[];
        page: number;
        pages: number;
        results: number;
    }

    The Block Storage volumes on your account are returned.

    Type Declaration

    • data: {
          created: string;
          encryption: "enabled" | "disabled";
          filesystem_path: string;
          hardware_type: "hdd" | "nvme";
          id: number;
          io_ready: boolean;
          label: string;
          linode_id: number | null;
          linode_label: string | null;
          region: string;
          size: number;
          status: "creating" | "active" | "resizing" | "key_rotating";
          tags: string[];
          updated: string;
      }[]
    • Readonlypage: number

      Read-only The current page.

    • Readonlypages: number

      Read-only The total number of pages.

    • Readonlyresults: number

      Read-only The total number of results.