Skip to content

Release 4.155.0 #812

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jun 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 25 additions & 5 deletions openapi.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
openapi: 3.0.1
info:
version: 4.154.1
version: 4.155.0

title: Linode API
description: |
Expand Down Expand Up @@ -12147,15 +12147,31 @@ paths:
tags:
- Networking
summary: IP Addresses List
description: >
Returns a paginated list of IP Addresses on your Account, excluding
private addresses.
description: |
Returns a paginated list of IP Addresses on your Account, excluding private addresses.

We recommend utilizing the "skip_ipv6_rdns" option to improve performance if your application frequently accesses this command and does not require IPv6 RDNS data.
operationId: getIPs
x-linode-cli-action: ips-list
security:
- personalAccessToken: []
- oauth:
- ips:read_only
requestBody:
description: Options to request additional data.
required: true
content:
application/json:
schema:
type: object
properties:
skip_ipv6_rdns:
type: boolean
default: false
description: |
When `true`, the "rdns" property for any "ipv6" type addresses always returns `null` regardless of whether RDNS data exists for the address.

The default value is `false`.
responses:
'200':
description: A paginated list of IP Addresses.
Expand All @@ -12180,10 +12196,14 @@ paths:
- lang: Shell
source: >
curl -H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-X GET -d '{
"skip_ipv6_rdns": false
}' \
https://api.linode.com/v4/networking/ips
- lang: CLI
source: >
linode-cli networking ips-list
linode-cli networking ips-list --skip_ipv6_rdns false
post:
x-linode-grant: read_write
tags:
Expand Down