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

    Type Alias PostVpcData

    type PostVpcData = {
        body: { subnets?: unknown } & {
            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;
        };
        path?: never;
        query?: never;
        url: "vpcs";
    }
    Index

    Properties

    Properties

    body: { subnets?: unknown } & {
        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;
    }

    VPC Create request object.

    Type Declaration

    • Optionalsubnets?: unknown
    • Optional Readonlycreated?: string

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

    • Optionaldescription?: string

      A written description to help distinguish the VPC.

    • Optional Readonlyid?: number

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

    • Optionallabel?: 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 (--).
    • Optionalregion?: string

      Filterable The Region for the VPC.

    • Optionalsubnets?: {
          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.

    • Optional Readonlyupdated?: string | null

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

    path?: never
    query?: never
    url: "vpcs"