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

    Type Alias GetVpcsResponses

    type GetVpcsResponses = {
        "200": { page: number; pages: number; results: number } & {
            data?: {
                created: string;
                description: string;
                id: number;
                label: string;
                region: string;
                subnets: {
                    created: string;
                    id: number;
                    ipv4: string;
                    label: string;
                    linodes: {
                        id: number;
                        interfaces: { active: ...; config_id: ...; id: ... }[];
                    }[];
                    updated: string
                    | null;
                }[];
                updated: string
                | null;
            }[];
        };
    }
    Index

    Properties

    Properties

    "200": { page: number; pages: number; results: number } & {
        data?: {
            created: string;
            description: string;
            id: number;
            label: string;
            region: string;
            subnets: {
                created: string;
                id: number;
                ipv4: string;
                label: string;
                linodes: {
                    id: number;
                    interfaces: { active: ...; config_id: ...; id: ... }[];
                }[];
                updated: string
                | null;
            }[];
            updated: string
            | null;
        }[];
    }

    A paginated list of VPC objects.

    Type Declaration

    • 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.

    • Optionaldata?: {
          created: string;
          description: string;
          id: number;
          label: string;
          region: string;
          subnets: {
              created: string;
              id: number;
              ipv4: string;
              label: string;
              linodes: {
                  id: number;
                  interfaces: { active: ...; config_id: ...; id: ... }[];
              }[];
              updated: string
              | null;
          }[];
          updated: string
          | null;
      }[]