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

    Type Alias PutVpcSubnetData

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

    Properties

    Properties

    body: { label?: string }

    A VPC Subnet Update request object.

    Type Declaration

    • Optionallabel?: 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; vpcSubnetId: number }

    Type Declaration

    • vpcId: number

      The id of the VPC.

    • vpcSubnetId: number

      The id of the VPC Subnet.

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