import * as $dara from '@darabonba/typescript'; export declare class ListTagResourcesResponseBodyTagResources extends $dara.Model { /** * @remarks * The name of the resource. * * @example * role1 */ resourceName?: string; /** * @remarks * The resource type. * * Enumerated values: * * * role: RAM roles. * * policy: policies. * * @example * role */ resourceType?: string; /** * @remarks * The key of the tag. * * @example * t1 */ tagKey?: string; /** * @remarks * The value of the tag. * * @example * v1 */ tagValue?: string; 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 * A pagination token. It can be used in the next request to retrieve a new page of results. * * @example * GY/oWREsOP1bPHGcHGrXfYX7UG1k9KqWFYThNDPx1UX26PbWOIu2CMqqiMr68H/K */ nextToken?: string; /** * @remarks * The request ID. * * @example * 5CCE804C-6450-49A7-B1DB-2460F7A97416 */ requestId?: string; /** * @remarks * The tags that are added to the cloud resources. */ tagResources?: ListTagResourcesResponseBodyTagResources[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }