Skip to content

Commit 0b061a8

Browse files
authored
Merge pull request #664 from bbiggerr/release-4.132.0
Release 4.132.0
2 parents 41b5219 + 70b3807 commit 0b061a8

File tree

1 file changed

+50
-22
lines changed

1 file changed

+50
-22
lines changed

openapi.yaml

Lines changed: 50 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
openapi: 3.0.1
22
info:
3-
version: 4.130.0
3+
version: 4.132.0
44

55
title: Linode API
66
description: |
@@ -5548,20 +5548,26 @@ paths:
55485548
description: Returns a paginated list of all Managed Database types.
55495549
content:
55505550
application/json:
5551-
x-linode-cli-nested-list: cluster_size
5551+
x-linode-cli-nested-list: engines.mysql, engines.postgresql, engines.mongodb
55525552
x-linode-cli-use-schema:
55535553
type: object
55545554
properties:
55555555
id:
55565556
x-linode-cli-display: 1
55575557
label:
55585558
x-linode-cli-display: 2
5559-
cluster_size.quantity:
5560-
x-linode-cli-display: 3
5561-
cluster_size.price.hourly:
5562-
x-linode-cli-display: 4
5563-
cluster_size.price.monthly:
5564-
x-linode-cli-display: 5
5559+
_split:
5560+
x-linode-cli-display: 2.5
5561+
engines:
5562+
properties:
5563+
quantity:
5564+
x-linode-cli-display: 3
5565+
price:
5566+
properties:
5567+
hourly:
5568+
x-linode-cli-display: 4
5569+
monthly:
5570+
x-linode-cli-display: 5
55655571
schema:
55665572
allOf:
55675573
- $ref: '#/components/schemas/PaginationEnvelope'
@@ -5608,20 +5614,26 @@ paths:
56085614
description: Returns a single Managed Database type.
56095615
content:
56105616
application/json:
5611-
x-linode-cli-nested-list: cluster_size
5617+
x-linode-cli-nested-list: engines.mysql, engines.postgresql, engines.mongodb
56125618
x-linode-cli-use-schema:
56135619
type: object
56145620
properties:
56155621
id:
56165622
x-linode-cli-display: 1
56175623
label:
56185624
x-linode-cli-display: 2
5619-
cluster_size.quantity:
5620-
x-linode-cli-display: 3
5621-
cluster_size.price.hourly:
5622-
x-linode-cli-display: 4
5623-
cluster_size.price.monthly:
5624-
x-linode-cli-display: 5
5625+
_split:
5626+
x-linode-cli-display: 2.5
5627+
engines:
5628+
properties:
5629+
quantity:
5630+
x-linode-cli-display: 3
5631+
price:
5632+
properties:
5633+
hourly:
5634+
x-linode-cli-display: 4
5635+
monthly:
5636+
x-linode-cli-display: 5
56255637
schema:
56265638
$ref: '#/components/schemas/DatabaseType'
56275639
default:
@@ -12882,6 +12894,8 @@ paths:
1288212894
* Linodes may have no more than one assigned private IPv4 address.
1288312895
* Linodes may have no more than one assigned IPv6 range.
1288412896
* [Open a Support Ticket](/docs/api/support/#support-ticket-open) to request additional IPv4 addresses or IPv6 ranges.
12897+
12898+
**Note**: Removing an IP address that has been set as a Managed Linode's `ssh.ip` causes the Managed Linode's SSH access settings to reset to their default values. To view and configure Managed Linode SSH settings, use the **Linode's Managed Settings View** ([GET /managed/linode-settings/{linodeId}](/docs/api/managed/#linodes-managed-settings-view)) and **Linode's Managed Settings Update** ([PUT /managed/linode-settings/{linodeId}](/docs/api/managed/#linodes-managed-settings-update)) commands.
1288512899
operationId: assignIPs
1288612900
x-linode-cli-action: ip-assign
1288712901
security:
@@ -17698,7 +17712,7 @@ paths:
1769817712
properties:
1769917713
otp_code:
1770017714
type: string
17701-
description: The one-time, six-digit code received via SMS message after accessing the **Phone Verification Code Send** ([POST /profile/phone-number](/docs/api/profile/#phone-number-verification-code-send)) command.
17715+
description: The one-time code received via SMS message after accessing the **Phone Verification Code Send** ([POST /profile/phone-number](/docs/api/profile/#phone-number-verification-code-send)) command.
1770217716
example: "US"
1770317717
responses:
1770417718
'200':
@@ -23946,29 +23960,41 @@ components:
2394623960
If true, Linode special forces may access this Linode over
2394723961
ssh to respond to Issues.
2394823962
example: true
23963+
default: true
2394923964
user:
2395023965
type: string
2395123966
minLength: 0
2395223967
maxLength: 32
23953-
description: >
23954-
The user Linode's special forces should use when accessing this
23968+
description: |
23969+
The specific user, if any, Linode's special forces should use when accessing this
2395523970
Linode to respond to an issue.
23971+
23972+
The default `null` value corresponds to the root user.
2395623973
example: linode
23974+
default: null
23975+
nullable: true
2395723976
ip:
2395823977
type: string
2395923978
format: ip
23960-
description: >
23979+
description: |
2396123980
The IP Linode special forces should use to access this Linode
2396223981
when responding to an Issue.
23963-
example: 12.34.56.78
23982+
23983+
By default, any of a Linode's IP addresses can be used for incident response access.
23984+
example: "12.34.56.78"
23985+
default: any
2396423986
port:
2396523987
type: integer
2396623988
minimum: 1
2396723989
maximum: 65535
23968-
description: >
23990+
description: |
2396923991
The port Linode special forces should use to access this Linode
2397023992
over ssh to respond to an Issue.
23993+
23994+
The default `null` value corresponds to port 22.
2397123995
example: 22
23996+
nullable: true
23997+
default: null
2397223998
ManagedService:
2397323999
type: object
2397424000
description: >
@@ -25653,9 +25679,11 @@ components:
2565325679
This StackScript installs and configures MySQL
2565425680
images:
2565525681
type: array
25656-
description: >
25682+
description: |
2565725683
An array of Image IDs. These are the images that can be deployed
2565825684
with this Stackscript.
25685+
25686+
`any/all` indicates that all available image distributions are accepted.
2565925687
items:
2566025688
type: string
2566125689
example:

0 commit comments

Comments
 (0)