import * as $dara from '@darabonba/typescript'; export declare class ListTagResourcesShrinkRequest extends $dara.Model { /** * @remarks * The token that determines the start point of the next query. * * @example * *** */ nextToken?: string; /** * @remarks * The region ID. * * This parameter is required. * * @example * cn-beijing */ regionId?: string; /** * @remarks * The list of resource IDs to query. * * This parameter is required. * * @example * ["xxxxx","xxxxxx"] */ resourceIdsShrink?: string; /** * @remarks * The resource type. * * CLUSTER: cluster. * * This parameter is required. * * @example * CLUSTER */ resourceType?: string; /** * @remarks * The list of tags to query. A maximum of 20 items can be specified. * * @example * [{\\"key\\":\\"env\\",\\"value\\",\\"dev\\"},{\\"key\\":\\"dev\\", \\"value\\":\\"IT\\"}] */ tagsShrink?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }