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

    Type Alias GetVpcResponses

    type GetVpcResponses = {
        "200": {
            created: string;
            description: string;
            id: number;
            label: string;
            region: string;
            subnets: {
                created: string;
                id: number;
                ipv4: string;
                label: string;
                linodes: {
                    id: number;
                    interfaces: { active: boolean; config_id: number | null; id: number }[];
                }[];
                updated: string
                | null;
            }[];
            updated: string
            | null;
        };
    }
    Index

    Properties

    Properties

    "200": {
        created: string;
        description: string;
        id: number;
        label: string;
        region: string;
        subnets: {
            created: string;
            id: number;
            ipv4: string;
            label: string;
            linodes: {
                id: number;
                interfaces: { active: boolean; config_id: number | null; id: number }[];
            }[];
            updated: string
            | null;
        }[];
        updated: string
        | null;
    }

    An object describing a VPC belonging to the Account.

    Type Declaration

    • Readonlycreated: string

      Filterable, Read-only The date-time of VPC creation.

    • description: string

      A written description to help distinguish the VPC.

    • Readonlyid: number

      Filterable, Read-only The unique ID of the VPC.

    • label: string

      Filterable The VPC's label, for display purposes only.

      • Needs to be unique among the Account's VPCs.
      • Can only contain ASCII letters, numbers, and hyphens (-). You can't use two consecutive hyphens (--).
    • region: string

      Filterable The Region for the VPC.

    • subnets: {
          created: string;
          id: number;
          ipv4: string;
          label: string;
          linodes: {
              id: number;
              interfaces: { active: boolean; config_id: number | null; id: number }[];
          }[];
          updated: string
          | null;
      }[]

      A list of subnets associated with the VPC.

    • Readonlyupdated: string | null

      Filterable, Read-only The date-time of the most recent VPC update.