|
1 | 1 | openapi: 3.0.1
|
2 | 2 | info:
|
3 |
| - version: 4.4.0 |
| 3 | + version: 4.5.0 |
4 | 4 | title: Linode API
|
5 | 5 | description: |
|
6 | 6 | # Introduction
|
@@ -1557,6 +1557,42 @@ paths:
|
1557 | 1557 | linode-cli account settings-update \
|
1558 | 1558 | --longview_subscription longview-30 \
|
1559 | 1559 | --network_helper false
|
| 1560 | + /account/settings/managed-enable: |
| 1561 | + x-linode-cli-command: account |
| 1562 | + post: |
| 1563 | + x-linode-grant: read_write |
| 1564 | + tags: |
| 1565 | + - Account |
| 1566 | + summary: Enable Linode Managed |
| 1567 | + description: > |
| 1568 | + Enables Linode Managed for the entire account and sends a welcome email to the account's associated |
| 1569 | + email address. Linode Managed can monitor any service or software stack reachable over TCP or HTTP. See |
| 1570 | + our [Linode Managed guide](https://linode.com/docs/platform/linode-managed/) |
| 1571 | + to learn more. |
| 1572 | + operationId: enableAccountManged |
| 1573 | + x-linode-cli-action: enable-managed |
| 1574 | + security: |
| 1575 | + - personalAccessToken: [] |
| 1576 | + - oauth: |
| 1577 | + - account:read_write |
| 1578 | + responses: |
| 1579 | + '200': |
| 1580 | + description: Managed services enabled for account. |
| 1581 | + content: |
| 1582 | + application/json: |
| 1583 | + schema: |
| 1584 | + type: object |
| 1585 | + default: |
| 1586 | + $ref: '#/components/responses/ErrorResponse' |
| 1587 | + x-code-samples: |
| 1588 | + - lang: Shell |
| 1589 | + source: > |
| 1590 | + curl -H "Authorization: Bearer $TOKEN" \ |
| 1591 | + -X POST \ |
| 1592 | + https://api.linode.com/v4/account/settings/managed-enable |
| 1593 | + - lang: CLI |
| 1594 | + source: > |
| 1595 | + linode-cli account enable-managed |
1560 | 1596 | /account/transfer:
|
1561 | 1597 | x-linode-cli-command: account
|
1562 | 1598 | get:
|
@@ -3550,9 +3586,13 @@ paths:
|
3550 | 3586 | example: 234
|
3551 | 3587 | overwrite:
|
3552 | 3588 | type: boolean
|
3553 |
| - description: > |
| 3589 | + description: | |
3554 | 3590 | If True, deletes all Disks and Configs on the target Linode
|
3555 | 3591 | before restoring.
|
| 3592 | + |
| 3593 | + If False, and the Disk image size is larger than the available |
| 3594 | + space on the Linode, an error message indicating insufficient |
| 3595 | + space is returned. |
3556 | 3596 | example: true
|
3557 | 3597 | responses:
|
3558 | 3598 | '200':
|
@@ -9115,8 +9155,9 @@ paths:
|
9115 | 9155 | required: false
|
9116 | 9156 | description: >
|
9117 | 9157 | The "marker" for this request, which can be used to paginate through large buckets.
|
9118 |
| - This should be the name of the last object on the last page of results. Listing |
9119 |
| - bucket contents *does not* support arbitrary page access. |
| 9158 | + Its value should be the value of the `next_marker` property returned with the last page. |
| 9159 | + Listing bucket contents *does not* support arbitrary page access. See the `next_marker` |
| 9160 | + property in the responses section for more details. |
9120 | 9161 | schema:
|
9121 | 9162 | type: string
|
9122 | 9163 | - name: delimiter
|
@@ -11236,10 +11277,14 @@ paths:
|
11236 | 11277 | example: 'linode'
|
11237 | 11278 | data:
|
11238 | 11279 | oneOf:
|
11239 |
| - - $ref: '#/components/schemas/Linode' |
11240 |
| - - $ref: '#/components/schemas/Domain' |
11241 |
| - - $ref: '#/components/schemas/Volume' |
11242 |
| - - $ref: '#/components/schemas/NodeBalancer' |
| 11280 | + - x-linode-ref-name: "linode" |
| 11281 | + $ref: '#/components/schemas/Linode' |
| 11282 | + - x-linode-ref-name: "domain" |
| 11283 | + $ref: '#/components/schemas/Domain' |
| 11284 | + - x-linode-ref-name: "volume" |
| 11285 | + $ref: '#/components/schemas/Volume' |
| 11286 | + - x-linode-ref-name: "nodeBalancer" |
| 11287 | + $ref: '#/components/schemas/NodeBalancer' |
11243 | 11288 | discriminator:
|
11244 | 11289 | propertyName: type
|
11245 | 11290 | page:
|
@@ -13936,9 +13981,8 @@ components:
|
13936 | 13981 | x-linode-filterable: true
|
13937 | 13982 | readOnly: true
|
13938 | 13983 | description: >
|
13939 |
| - This is the location where the Linode was deployed. This cannot be |
13940 |
| - changed without |
13941 |
| - [opening a support ticket](/api/v4/support-tickets/#post). |
| 13984 | + This is the location where the Linode was deployed. A Linode's region can only be changed by |
| 13985 | + initiating a [cross data center migration](/api/v4/linode-instances-linode-id-migrate/#post). |
13942 | 13986 | x-linode-cli-display: 4
|
13943 | 13987 | image:
|
13944 | 13988 | x-linode-filterable: true
|
@@ -15881,6 +15925,17 @@ components:
|
15881 | 15925 | The size of this object, in bytes. `null` if this object represents
|
15882 | 15926 | a prefix.
|
15883 | 15927 | example: 123
|
| 15928 | + next_marker: |
| 15929 | + type: string |
| 15930 | + description: > |
| 15931 | + Returns the value you should pass to the `marker` query parameter to get the next page of objects. |
| 15932 | + If there is no next page, `null` will be returned. |
| 15933 | + example: bd021c21-e734-4823-97a4-58b41c2cd4c8.892602.184 |
| 15934 | + nullable: true |
| 15935 | + is_truncated: |
| 15936 | + type: boolean |
| 15937 | + description: Designates if there is another page of bucket objects. |
| 15938 | + example: true |
15884 | 15939 | ObjectStorageCluster:
|
15885 | 15940 | type: object
|
15886 | 15941 | description: An Object Storage Cluster
|
|
0 commit comments