Skip to content

Update GET /networking/ipv6/pools #158

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 2 commits into from
Nov 15, 2019
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
33 changes: 19 additions & 14 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7820,7 +7820,9 @@ paths:
- Networking
summary: List IPv6 Pools
description: >
Displays the IPv6 pools on your Account.
Displays the IPv6 pools on your Account. A pool of IPv6 addresses are routed to all of your
Linodes in a single [Region](https://developers.linode.com/api/v4/regions). Any Linode on your Account may bring up any address in this
pool at any time, with no external configuration required.
operationId: getIPv6Pools
x-linode-cli-action: v6-pools
security:
Expand Down Expand Up @@ -7865,7 +7867,9 @@ paths:
- Networking
summary: List IPv6 Ranges
description: >
Displays the IPv6 ranges on your Account.
Displays the IPv6 ranges on your Account. A range of IPv6 addresses is routed to a single
Linode in a given [Region](https://developers.linode.com/api/v4/regions). Your Linode is responsible for routing individual addresses in
the range, or handling traffic for all the addresses in the range.
operationId: getIPv6Ranges
x-linode-cli-action: v6-ranges
security:
Expand Down Expand Up @@ -13962,27 +13966,31 @@ components:
range:
type: string
description: >
The IPv6 pool
The IPv6 range of addresses in this pool.
example: '2600:3c01::02:5000::'
readOnly: true
x-linode-cli-display: 1
prefix:
type: integer
description: >
The prefix length of the address, denoting which addresses can be
assigned from this pool.
The prefix length of the address, denoting how many addresses can be
assigned from this pool calculated as 2 <sup>128-prefix</sup>.
example: 124
x-linode-cli-display: 2
region:
type: string
description: >
A pool of IPv6 addresses that are routed to all of
your Linodes in a single Region. Any Linode you own may bring up any
address in this pool at any time, with no external configuration
required.
The region for this pool of IPv6 addresses.
example: us-east
readOnly: true
x-linode-cli-display: 3
x-linode-filterable: true
route_target:
type: string
description: >
The last address in this block of IPv6 addresses.
example: '2600:3c01::02:5000::ca72'
nullable: true
IPv6Range:
type: object
description: >
Expand All @@ -13991,17 +13999,14 @@ components:
range:
type: string
description: >
The IPv6 range.
The IPv6 range of addresses in this pool.
example: '2600:3c01::02:5000::'
readOnly: true
x-linode-cli-display: 1
region:
type: string
description: >
A range of IPv6 addresses routed to a single Linode in the given
Region. Your Linode is responsible for routing individual addresses
in the range, or handling traffic for all of the addresses in the
range.
The region for this range of IPv6 addresses.
example: us-east
readOnly: true
x-linode-cli-display: 2
Expand Down