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
+15-16Lines changed: 15 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -1228,22 +1228,15 @@ paths:
1228
1228
get:
1229
1229
x-linode-grant: read_only
1230
1230
servers:
1231
+
- url: https://api.linode.com/v4
1231
1232
- url: https://api.linode.com/v4beta
1232
1233
tags:
1233
1234
- Account
1234
1235
summary: Maintenance List
1235
-
description: >
1236
-
Returns a collection of Maintenance objects for any entity
1237
-
a user has permissions to view.
1238
-
1236
+
description: |
1237
+
Returns a collection of Maintenance objects for any entity a user has permissions to view. Cancelled Maintenance objects are not returned.
1239
1238
1240
1239
Currently, Linodes are the only entities available for viewing.
1241
-
1242
-
1243
-
**Beta**: This endpoint is in beta. Please make sure to prepend all requests with
1244
-
`/v4beta` instead of `/v4`, and be aware that this endpoint may receive breaking
1245
-
updates in the future. This notice will be removed when this endpoint is out of
1246
-
beta.
1247
1240
operationId: getMaintenance
1248
1241
x-linode-cli-action: maintenance-list
1249
1242
security:
@@ -1273,7 +1266,7 @@ paths:
1273
1266
- lang: Shell
1274
1267
source: >
1275
1268
curl -H "Authorization: Bearer $TOKEN" \
1276
-
https://api.linode.com/v4beta/account/maintenance
1269
+
https://api.linode.com/v4/account/maintenance
1277
1270
- lang: CLI
1278
1271
source: >
1279
1272
linode-cli account maintenance-list
@@ -18014,6 +18007,7 @@ paths:
18014
18007
Arbitrary JSON of your choosing. Overwrites any existing preferences for this user.
18015
18008
18016
18009
Total length cannot exceed 65,535 characters.
18010
+
maxLength: 65535
18017
18011
responses:
18018
18012
'200':
18019
18013
description: Returns an object of user preferences.
@@ -20809,10 +20803,12 @@ components:
20809
20803
example:
20810
20804
gh_username: linode
20811
20805
description: |
20812
-
This field is required only if the StackScript being deployed requires input
20813
-
data from the User for successful completion. See
20814
-
[User Defined Fields (UDFs)](/docs/products/tools/stackscripts/guides/write-a-custom-script/#declare-user-defined-fields-udfs)
20815
-
for more details. This field is required to be valid JSON.
20806
+
This field is required only if the StackScript being deployed requires input data from the User for successful completion. See [User Defined Fields (UDFs)](/docs/guides/writing-scripts-for-use-with-linode-stackscripts-a-tutorial/#user-defined-fields-udfs) for more details.
20807
+
20808
+
This field is required to be valid JSON.
20809
+
20810
+
Total length cannot exceed 65,535 characters.
20811
+
maxLength: 65535
20816
20812
Domain:
20817
20813
type: object
20818
20814
description: >
@@ -24036,10 +24032,13 @@ components:
24036
24032
x-linode-filterable: true
24037
24033
type: string
24038
24034
enum:
24035
+
- completed
24039
24036
- pending
24040
24037
- started
24041
-
description: >
24038
+
description: |
24042
24039
The maintenance status.
24040
+
24041
+
Maintenance progresses in the following sequence: pending, started, then completed.
0 commit comments