import * as $dara from '@darabonba/typescript'; import { Tag } from "./Tag"; export declare class TagResourcesRequest extends $dara.Model { /** * @remarks * The region ID of the resource. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * The list of resource IDs. You can specify up to 50 resource IDs. * * This parameter is required. */ resourceIds?: string[]; /** * @remarks * The resource type. * * CLUSTER: cluster. * * This parameter is required. * * @example * CLUSTER */ resourceType?: string; /** * @remarks * The tag key-value pairs of the resource. You can specify up to 20 tag key-value pairs. Note: * * - If you specify this parameter, the value cannot be an empty string and can contain up to 128 characters. * - The value cannot start with `aliyun` or `acs:`. * - The value cannot contain `http://` or `https://`. * * This parameter is required. */ tags?: Tag[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }