Skip to content

fix: Make RDNS nullable and required on IP address update #689

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 1 commit into from
Oct 14, 2022
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
14 changes: 13 additions & 1 deletion openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12884,7 +12884,19 @@ paths:
content:
application/json:
schema:
$ref: '#/components/schemas/IPAddress'
required:
- rdns
type: object
properties:
rdns:
type: string
description: >
The reverse DNS assigned to this address. For public IPv4 addresses,
this will be set to a default value provided by Linode if not
explicitly set.
x-linode-cli-display: 4
nullable: true
example: test.example.org
responses:
'200':
description: RDNS set successfully
Expand Down