Skip to content

Commit b1b4b78

Browse files
committed
Added skip_ipv6_rdns to IP Addresses List
1 parent e288610 commit b1b4b78

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

openapi.yaml

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12156,6 +12156,23 @@ paths:
1215612156
- personalAccessToken: []
1215712157
- oauth:
1215812158
- 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.
1215912176
responses:
1216012177
'200':
1216112178
description: A paginated list of IP Addresses.
@@ -12180,10 +12197,14 @@ paths:
1218012197
- lang: Shell
1218112198
source: >
1218212199
curl -H "Authorization: Bearer $TOKEN" \
12200+
-H "Content-Type: application/json" \
12201+
-X GET -d '{
12202+
"skip_ipv6_rdns": false
12203+
}' \
1218312204
https://api.linode.com/v4/networking/ips
1218412205
- lang: CLI
1218512206
source: >
12186-
linode-cli networking ips-list
12207+
linode-cli networking ips-list --skip_ipv6_rdns false
1218712208
post:
1218812209
x-linode-grant: read_write
1218912210
tags:

0 commit comments

Comments
 (0)