action linode_get_ipv6_ranges { label: "IPv6 Ranges List" description: "Displays the IPv6 ranges on your Account.\n\n\n * An IPv6 range is a `/64` or `/54` block of IPv6 addresses routed to a single Linode in a given [Region](/docs/api/regions/#regions-list).\n\n * Your Linode is responsible for routing individual addresses in the range, or handling traffic for all the addresses in the range.\n\n * Access the IPv6 Range Create ([POST /networking/ipv6/ranges](/docs/api/networking/#ipv6-range-create)) endpoint to add a `/64` or `/56` block of IPv6 addresses to your account.\n" provider: linode method: GET path: "/networking/ipv6/ranges" encoding: json output: { type: "object" properties: { data: { type: "array" items: { type: "object" description: "An object representing an IPv6 range.\n" properties: { prefix: { type: "integer" description: "The prefix length of the address, denoting how many addresses can be assigned from this range 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 range 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." } } } }