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

    Type Alias PostAssignIpsData

    type PostAssignIpsData = {
        body: {
            assignments: { address: string; linode_id: number }[];
            region: string;
        };
        path?: never;
        query?: never;
        url: "networking/ips/assign";
    }
    Index

    Properties

    Properties

    body: { assignments: { address: string; linode_id: number }[]; region: string }

    Request object for IP Addresses Assign (POST /networking/ips/assign).

    Type Declaration

    • assignments: { address: string; linode_id: number }[]

      The list of assignments to make. You must have read_write access to all IPs being assigned and all Linodes being assigned to in order for the assignments to succeed.

    • region: string

      The ID of the Region in which these assignments are to take place. All IPs and Linodes must exist in this Region.

    path?: never
    query?: never
    url: "networking/ips/assign"