import * as $dara from '@darabonba/typescript'; import { Tag } from "./Tag"; export declare class ListTagResourcesRequest 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"] */ resourceIds?: 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\\"}] */ tags?: Tag[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }