You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: openapi.yaml
+21-3Lines changed: 21 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
openapi: 3.0.1
2
2
info:
3
-
version: 4.156.0
3
+
version: 4.157.0
4
4
5
5
title: Linode API
6
6
description: |
@@ -8443,7 +8443,7 @@ paths:
8443
8443
post:
8444
8444
x-linode-grant: read_write
8445
8445
summary: Linode Rebuild
8446
-
description: >
8446
+
description: |
8447
8447
Rebuilds a Linode you have the `read_write` permission to modify.
8448
8448
8449
8449
A rebuild will first shut down the Linode, delete all disks and configs
@@ -8454,6 +8454,13 @@ paths:
8454
8454
* Requires a `root_pass` be supplied to use for the root User's Account.
8455
8455
* It is recommended to supply SSH keys for the root User using the
8456
8456
`authorized_keys` field.
8457
+
8458
+
You also have the option to resize the Linode to a different plan by including the `type` parameter with your request. Note that resizing involves migrating the Linode to a new hardware host, while rebuilding without resizing maintains the same hardware host. Resizing also requires significantly more time for completion of this command. The following additional conditions apply:
8459
+
8460
+
* The Linode must not have a pending migration.
8461
+
* Your Account cannot have an outstanding balance.
8462
+
* The Linode must not have more disk allocation than the new Type allows.
8463
+
* In that situation, you must first delete or resize the disk to be smaller.
8457
8464
tags:
8458
8465
- Linode Instances
8459
8466
operationId: rebuildLinodeInstance
@@ -8474,6 +8481,13 @@ paths:
8474
8481
- root_pass
8475
8482
allOf:
8476
8483
- $ref: '#/components/schemas/LinodeRequest'
8484
+
- type: object
8485
+
properties:
8486
+
type:
8487
+
type: string
8488
+
description: >
8489
+
The ID of the [Linode Type](/docs/api/linode-types/#types-list) to resize to with this request.
0 commit comments