-
Notifications
You must be signed in to change notification settings - Fork 69
brk: param changes to POST /networking/ips and /linode/instances/:id/ips #86
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
Conversation
jamesottinger
commented
Mar 28, 2018
- POST /networking/ips - now accepts "type":"ipv4" and "public":bool
- POST /networking/ips - can do private ipv4 addresses
- POST /linode/instances/:id/ips - now accepts "type":"ipv4" and "public":bool
848f802
to
d234601
Compare
src/data/endpoints/linodes.yaml
Outdated
@@ -869,23 +869,27 @@ endpoints: | |||
money: true | |||
oauth: linodes:modify | |||
description: > | |||
Allocates a new IP Address for this Linode. | |||
Allocates a new IPv4 IP Address for this Linode. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IPv4 Address (remove "IP")
subtype: IPAddressType | ||
value: public | ||
description: The type of IP Address, either public or private. | ||
type: String |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This could probably still be an Enum of ipv4
, ipv6
, ipv6/range
, and ipv6/pool
, but I don't feel that strongly about it.
description: The type of IP Address, either public or private. | ||
type: String | ||
description: The type of IP Address. | ||
value: ipv4 | ||
enums: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This enum is now irrelevant - I'd change is as described above, but it could also be removed
d234601
to
78d8d78
Compare
src/data/endpoints/linodes.yaml
Outdated
public: | ||
type: Boolean | ||
description: > | ||
Whether this is a public of private IP address. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public or private
src/data/endpoints/networking.yaml
Outdated
public: | ||
type: Boolean | ||
description: > | ||
Whether this is a public of private IP address. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public or private
src/data/objects/ipaddress.yaml
Outdated
public: | ||
type: Boolean | ||
value: true | ||
description: Whether this is a public of private IP address. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public or private
region: | ||
type: String | ||
value: us-east | ||
description: The region this IP is in. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Region
public: | ||
type: Boolean | ||
value: false | ||
description: Whether this is a public of private IP address. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public or private
public: | ||
type: Boolean | ||
value: true | ||
description: Whether this is a public of private IP address. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public or private
- POST /networking/ips - now accepts "type":"ipv4" and "public":bool - POST /networking/ips - can do private ipv4 addresses - POST /linode/instances/:id/ips - now accepts "type":"ipv4" and "public":bool
78d8d78
to
086bc19
Compare
Made all document links absolute
Updating image to new dimensions
…0-72-0 Create Changelogs “cloud-manager-changelog-0-72-0”