action linode_get_ipv6_pools { label: "IPv6 Pools List" description: "Displays the IPv6 pools on your Account. A pool of IPv6 addresses are routed to all of your Linodes in a single [Region](/docs/api/regions/#regions-list). Any Linode on your Account may bring up any address in this pool at any time, with no external configuration required.\n" provider: linode method: GET path: "/networking/ipv6/pools" encoding: json output: { type: "object" properties: { data: { type: "array" items: { type: "object" description: "An object representing an IPv6 pool.\n" properties: { prefix: { type: "integer" description: "The prefix length of the address, denoting how many addresses can be assigned from this pool calculated as 2 128-prefix.\n" } range: { type: "string" description: "The IPv6 range of addresses in this pool.\n" } region: { type: "string" description: "The region for this pool of IPv6 addresses.\n" } route_target: { type: "string" description: "The last address in this block of IPv6 addresses.\n" } } } } page: { type: "integer" description: "The current [page](/docs/api/#pagination)." } pages: { type: "integer" description: "The total number of [pages](/docs/api/#pagination)." } results: { type: "integer" description: "The total number of results." } } } }