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

    Type Alias PutLinodeIpData

    type PutLinodeIpData = {
        body?: { rdns: string | null };
        path: { address: string; linodeId: number };
        query?: never;
        url: "linode/instances/{linodeId}/ips/{address}";
    }
    Index

    Properties

    Properties

    body?: { rdns: string | null }

    The information to update for the IP address.

    Type Declaration

    • rdns: string | null

      The reverse DNS assigned to this address. For public IPv4 addresses, this will be set to a default value provided by Linode if not explicitly set.

    path: { address: string; linodeId: number }

    Type Declaration

    • address: string

      The IP address.

    • linodeId: number

      The ID of the Linode.

    query?: never
    url: "linode/instances/{linodeId}/ips/{address}"