import * as $dara from '@darabonba/typescript'; export declare class TagResourcesRequestTag extends $dara.Model { /** * @remarks * The key of the tag. The tag key can be up to 128 characters in length. * * @example * k1 */ key?: string; /** * @remarks * The value of the tag. The tag value can be up to 256 characters in length. * * @example * v1 */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class TagResourcesRequest extends $dara.Model { /** * @remarks * The names of the resources. You can specify up to 50 resource names. */ resourceNames?: 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. */ tag?: TagResourcesRequestTag[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }