File tree Expand file tree Collapse file tree 1 file changed +22
-1
lines changed Expand file tree Collapse file tree 1 file changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -12156,6 +12156,23 @@ paths:
12156
12156
- personalAccessToken: []
12157
12157
- oauth:
12158
12158
- ips:read_only
12159
+ requestBody:
12160
+ description: Options to request additional data.
12161
+ required: true
12162
+ content:
12163
+ application/json:
12164
+ schema:
12165
+ type: object
12166
+ properties:
12167
+ skip_ipv6_rdns:
12168
+ type: boolean
12169
+ default: false
12170
+ description: |
12171
+ This option provides the ability to exclude IPv6 RDNS data from the response.
12172
+
12173
+ The default value is `false`.
12174
+
12175
+ When `true`, the "rdns" property for any "ipv6" type addresses always returns `null` regardless of whether RDNS data exists for the address.
12159
12176
responses:
12160
12177
'200':
12161
12178
description: A paginated list of IP Addresses.
@@ -12180,10 +12197,14 @@ paths:
12180
12197
- lang: Shell
12181
12198
source: >
12182
12199
curl -H "Authorization: Bearer $TOKEN" \
12200
+ -H "Content-Type: application/json" \
12201
+ -X GET -d '{
12202
+ "skip_ipv6_rdns": false
12203
+ }' \
12183
12204
https://api.linode.com/v4/networking/ips
12184
12205
- lang: CLI
12185
12206
source: >
12186
- linode-cli networking ips-list
12207
+ linode-cli networking ips-list --skip_ipv6_rdns false
12187
12208
post:
12188
12209
x-linode-grant: read_write
12189
12210
tags:
You can’t perform that action at this time.
0 commit comments