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

    Type Alias GetNodeBalancerConfigNodesResponses

    type GetNodeBalancerConfigNodesResponses = {
        "200": {
            data: (
                | {
                    address?: string;
                    config_id?: number;
                    id?: number;
                    label?: string;
                    mode?: "accept"
                    | "reject"
                    | "drain"
                    | "backup";
                    nodebalancer_id?: number;
                    status?: "Unknown" | "UP" | "DOWN";
                    vpc_config_id?: number | null;
                    weight?: number;
                }
                | {
                    address?: string;
                    config_id?: number;
                    id?: number;
                    label?: string;
                    mode?: "none";
                    nodebalancer_id?: number;
                    status?: "Unknown"
                    | "UP"
                    | "DOWN";
                    vpc_config_id?: number | null;
                    weight?: number;
                }
            )[];
            page: number;
            pages: number;
            results: number;
        };
    }
    Index

    Properties

    Properties

    "200": {
        data: (
            | {
                address?: string;
                config_id?: number;
                id?: number;
                label?: string;
                mode?: "accept"
                | "reject"
                | "drain"
                | "backup";
                nodebalancer_id?: number;
                status?: "Unknown" | "UP" | "DOWN";
                vpc_config_id?: number | null;
                weight?: number;
            }
            | {
                address?: string;
                config_id?: number;
                id?: number;
                label?: string;
                mode?: "none";
                nodebalancer_id?: number;
                status?: "Unknown"
                | "UP"
                | "DOWN";
                vpc_config_id?: number | null;
                weight?: number;
            }
        )[];
        page: number;
        pages: number;
        results: number;
    }

    A paginated list of NodeBalancer nodes.

    Type Declaration

    • data: (
          | {
              address?: string;
              config_id?: number;
              id?: number;
              label?: string;
              mode?: "accept"
              | "reject"
              | "drain"
              | "backup";
              nodebalancer_id?: number;
              status?: "Unknown" | "UP" | "DOWN";
              vpc_config_id?: number | null;
              weight?: number;
          }
          | {
              address?: string;
              config_id?: number;
              id?: number;
              label?: string;
              mode?: "none";
              nodebalancer_id?: number;
              status?: "Unknown"
              | "UP"
              | "DOWN";
              vpc_config_id?: number | null;
              weight?: number;
          }
      )[]

      A NodeBalancer node represents a single backend serving requests for a single port on a NodeBalancer. Nodes are tied to NodeBalancer configurations, and serve traffic over their private IPv4 address, IPv6 address, or VPC IPv4 address. If the same Linode is serving traffic for more than one port on the same NodeBalancer, one NodeBalancer node is required for each config (port) it should serve requests on. For example, if you have four backends, and each should respond to both HTTP and HTTPS requests, you will need two NodeBalancer configs (port 80 and port 443) and four backends each, one for each of the Linodes serving requests for that port.

    • Readonlypage: number

      Read-only The current page.

    • Readonlypages: number

      Read-only The total number of pages.

    • Readonlyresults: number

      Read-only The total number of results.