import * as $dara from '@darabonba/typescript'; export declare class TagResourcesRequestTag extends $dara.Model { /** * @remarks * The key of tag N. * * This parameter is required. * * @example * env */ key?: string; /** * @remarks * The value of tag N. * * This parameter is required. * * @example * \\" \\" */ 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 ID of the resource. * * This parameter is required. * * @example * 285bb759342649a1b70c2093a772e087 */ resourceId?: string[]; /** * @remarks * The type of the resource. Tags are bound to API groups, plug-ins, and applications. You can use tags to manage cloud resources by group. Valid values: * * * **apiGroup** * * **plugin** * * **app** * * This parameter is required. * * @example * apiGroup */ resourceType?: string; securityToken?: string; /** * @remarks * The tag of objects that match the lifecycle rule. You can specify multiple tags. * * This parameter is required. * * @example * 2021022811 */ tag?: TagResourcesRequestTag[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }