@digitalocean/dots - v1.0.1
    Preparing search index...

    Interface MembersRequestBuilderGetQueryParameters

    To list all of the resources that are members of a VPC, send a GET request to/v2/vpcs/$VPC_ID/members.To only list resources of a specific type that are members of the VPC,included a resource_type query parameter. For example, to only list Dropletsin the VPC, send a GET request to /v2/vpcs/$VPC_ID/members?resource_type=droplet.Only resources that you are authorized to see will be returned (e.g. to see Droplets,you must have droplet:read).

    interface MembersRequestBuilderGetQueryParameters {
        page?: number;
        perPage?: number;
        resourceType?: string;
    }
    Index

    Properties

    page?: number

    Which 'page' of paginated results to return.

    perPage?: number

    Number of items returned per page

    resourceType?: string

    Used to filter VPC members by a resource type.