import * as $dara from '@darabonba/typescript'; export declare class DescribePortRangeListAssociationsResponseBodyPortRangeListAssociations extends $dara.Model { /** * @remarks * The ID of the resource. * * @example * sg-2zefu72**** */ resourceId?: string; /** * @remarks * The type of the resource. Valid value: SecurityGroup. * * @example * SecurityGroup */ resourceType?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribePortRangeListAssociationsResponseBody extends $dara.Model { /** * @remarks * A pagination token. It can be used in the next request to retrieve a new page of results. If the return value is empty, no more data is returned. * * @example * caeba0bbb2be03f84eb48b699f0a4883 */ nextToken?: string; /** * @remarks * The resources that are associated with the port list. */ portRangeListAssociations?: DescribePortRangeListAssociationsResponseBodyPortRangeListAssociations[]; /** * @remarks * The request ID. * * @example * 473469C7-AA6F-4DC5-B3DB-A3DC0DE3**** */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }