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
+24-4Lines changed: 24 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -12147,15 +12147,31 @@ paths:
12147
12147
tags:
12148
12148
- Networking
12149
12149
summary: IP Addresses List
12150
-
description: >
12151
-
Returns a paginated list of IP Addresses on your Account, excluding
12152
-
private addresses.
12150
+
description: |
12151
+
Returns a paginated list of IP Addresses on your Account, excluding private addresses.
12152
+
12153
+
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.
12153
12154
operationId: getIPs
12154
12155
x-linode-cli-action: ips-list
12155
12156
security:
12156
12157
- personalAccessToken: []
12157
12158
- oauth:
12158
12159
- ips:read_only
12160
+
requestBody:
12161
+
description: Options to request additional data.
12162
+
required: true
12163
+
content:
12164
+
application/json:
12165
+
schema:
12166
+
type: object
12167
+
properties:
12168
+
skip_ipv6_rdns:
12169
+
type: boolean
12170
+
default: false
12171
+
description: |
12172
+
When `true`, the "rdns" property for any "ipv6" type addresses always returns `null` regardless of whether RDNS data exists for the address.
0 commit comments