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

    Type Alias PostVpcSubnetData

    type PostVpcSubnetData = {
        body: { ipv4: string; label: string };
        path: { vpcId: number };
        query?: never;
        url: "vpcs/{vpcId}/subnets";
    }
    Index

    Properties

    Properties

    body: { ipv4: string; label: string }

    VPC Subnet Create request object.

    Type Declaration

    • 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 (--).
    path: { vpcId: number }

    Type Declaration

    • vpcId: number

      The id of the VPC.

    query?: never
    url: "vpcs/{vpcId}/subnets"