import * as $dara from '@darabonba/typescript'; export declare class ListTagResourcesShrinkRequest extends $dara.Model { /** * @remarks * The pagination token that is used in the next request to retrieve a new page of results. * * @example * GY/oWREsOP1bPHGcHGrXfYX7UG1k9KqWFYThNDPx1UX26PbWOIu2CMqqiMr68H/K */ nextToken?: string; /** * @remarks * The number of entries per page. Valid values: 1 to 100. * * @example * 100 */ pageSize?: number; /** * @remarks * The names of the resources. You can specify up to 50 resource names. */ resourceNamesShrink?: string; /** * @remarks * The resource type. * * Enumerated values: * * * role: RAM roles. * * policy: policies. * * @example * role */ resourceType?: string; /** * @remarks * The tags. You can specify up to 20 tags. */ tagShrink?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }