import * as $dara from '@darabonba/typescript'; export declare class UntagResourcesRequest extends $dara.Model { /** * @remarks * Specifies whether to delete all tags. This parameter is valid only when the **TagKey.N**parameter is not specified. Default value: false. Valid values: * * * **true** * * **false** * * @example * true */ all?: boolean; /** * @remarks * The resource IDs. * * 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 keys of the resource. * * @example * env */ tagKey?: string[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }