@akamai/openapi-ts
    Preparing search index...

    Type Alias PostIpv6RangeData

    type PostIpv6RangeData = {
        body: {
            linode_id?: number;
            prefix_length: 56 | 64;
            route_target?: string;
        };
        path?: never;
        query?: never;
        url: "networking/ipv6/ranges";
    }
    Index

    Properties

    Properties

    body: { linode_id?: number; prefix_length: 56 | 64; route_target?: string }

    Information about the IPv6 range to create.

    Type Declaration

    • Optionallinode_id?: number

      The ID of the Linode to assign this range to. The SLAAC address for the provided Linode is used as the range's route_target.

      • Required if route_target is omitted from the request.

      • Mutually exclusive with route_target. Submitting values for both properties in a request results in an error.

    • prefix_length: 56 | 64

      The prefix length of the IPv6 range.

    • Optionalroute_target?: string

      The IPv6 SLAAC address to assign this range to.

      • Required if linode_id is omitted from the request.

      • Mutually exclusive with linode_id. Submitting values for both properties in a request results in an error.

      📘

      You need to omit the /128 prefix length of the SLAAC address when using this property.

    path?: never
    query?: never
    url: "networking/ipv6/ranges"