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

    Type Alias GetVpcSubnetResponses

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

    Properties

    Properties

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

    An object describing a VPC Subnet.

    Type Declaration

    • Readonlycreated: string

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

    • Readonlyid: number

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

    • ipv4: string

      IPv4 range in CIDR canonical form.

      • The range must belong to a private address space as defined in RFC1918.
      • Allowed prefix lengths: 1-29.
      • The range must not overlap with 192.168.128.0/17.
      • The range must not overlap with other Subnets on the same VPC.
    • label: string

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

      • Must be unique among the VPC's Subnets.
      • Can only contain ASCII letters, numbers, and hyphens (-). You can't use two consecutive hyphens (--).
    • Readonlylinodes: {
          id: number;
          interfaces: { active: boolean; config_id: number | null; id: number }[];
      }[]

      Read-only An array of Linode IDs assigned to the VPC Subnet.

      A Linode is assigned to a VPC Subnet if it has a Configuration Profile with a vpc purpose interface with the subnet's subnet_id. Even if the Configuration Profile is not active, meaning the Linode does not have access to the Subnet, the Linode still appears in this array.

    • Readonlyupdated: string | null

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