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

    Type Alias PostResizeLinodeInstanceData

    type PostResizeLinodeInstanceData = {
        body: {
            allow_auto_disk_resize?: boolean;
            migration_type?: "warm" | "cold";
            type: string;
        };
        path: { linodeId: number };
        query?: never;
        url: "linode/instances/{linodeId}/resize";
    }
    Index

    Properties

    Properties

    body: {
        allow_auto_disk_resize?: boolean;
        migration_type?: "warm" | "cold";
        type: string;
    }

    The Type your current Linode will resize to, and whether to attempt to automatically resize the Linode's disks.

    Type Declaration

    • Optionalallow_auto_disk_resize?: boolean

      Automatically resize disks when resizing a Linode. When resizing down to a smaller plan your Linode's data must fit within the smaller disk size.

    • Optionalmigration_type?: "warm" | "cold"

      Type of migration used in moving to a new host or Linode type.

      warm: the Linode will not power down until the migration is complete. Warm migrations are not available for DC migrations.

      cold: the Linode will be powered down and migrated. When the migration is complete, the Linode will be powered on.

    • type: string

      The ID representing the Linode Type.

    path: { linodeId: number }

    Type Declaration

    • linodeId: number

      ID of the Linode to resize.

    query?: never
    url: "linode/instances/{linodeId}/resize"