import * as $dara from '@darabonba/typescript'; export declare class ListTagResourcesResponseBodyTagResourcesTagResource extends $dara.Model { /** * @remarks * The resource ID. * * @example * c2e39566adf23481fa1164ed510**** */ resourceId?: string; /** * @remarks * The resource type. * * @example * ALIYUN::CS::CLUSTER */ resourceType?: string; /** * @remarks * The tag key. * * @example * ack.aliyun.com */ tagKey?: string; /** * @remarks * The tag value. * * @example * c71cf3d796c374bf48644482cb0c3**** */ tagValue?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListTagResourcesResponseBodyTagResources extends $dara.Model { /** * @remarks * The tag resource. */ tagResource?: ListTagResourcesResponseBodyTagResourcesTagResource[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListTagResourcesResponseBody extends $dara.Model { /** * @remarks * The token that determines the start point of the next query. * * @example * c374bf4864448**** */ nextToken?: string; /** * @remarks * The request ID. * * @example * E368C761-F8F6-4A36-9B58-BD53D5****** */ requestId?: string; /** * @remarks * The collection of tag resources. */ tagResources?: ListTagResourcesResponseBodyTagResources; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }