Skip to content

Commit 9c8c436

Browse files
authored
Merge pull request #689 from LBGarber/fix/make-rdns-nullable
fix: Make RDNS nullable and required on IP address update
2 parents 0a52614 + c891fca commit 9c8c436

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

openapi.yaml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12884,7 +12884,19 @@ paths:
1288412884
content:
1288512885
application/json:
1288612886
schema:
12887-
$ref: '#/components/schemas/IPAddress'
12887+
required:
12888+
- rdns
12889+
type: object
12890+
properties:
12891+
rdns:
12892+
type: string
12893+
description: >
12894+
The reverse DNS assigned to this address. For public IPv4 addresses,
12895+
this will be set to a default value provided by Linode if not
12896+
explicitly set.
12897+
x-linode-cli-display: 4
12898+
nullable: true
12899+
example: test.example.org
1288812900
responses:
1288912901
'200':
1289012902
description: RDNS set successfully

0 commit comments

Comments
 (0)