action linode_get_ipv6_range { label: "IPv6 Range View" description: "View IPv6 range information.\n" provider: linode method: GET path: "/networking/ipv6/ranges/{range}" encoding: json output: { type: "object" description: "An object representing an IPv6 range.\n" properties: { is_bgp: { type: "boolean" description: "Whether this IPv6 range is shared.\n" } linodes: { type: "array" description: "A list of Linodes targeted by this IPv6 range. Includes Linodes with IP sharing.\n" items: { type: "integer" } } 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" } } } }