import * as $dara from '@darabonba/typescript'; export declare class UntagResourcesRequest extends $dara.Model { /** * @remarks * Specifies whether to remove all tags. This parameter is valid only if the TagKey.n parameter is not set. Valid values: true and false. * * @example * true */ all?: boolean; /** * @remarks * The IDs of resources. * * This parameter is required. */ resourceId?: string[]; /** * @remarks * The type of the resource. Specify the savings plan instance as the type of the resource. * * This parameter is required. * * @example * instance */ resourceType?: string; /** * @remarks * The tag keys. */ tagKey?: string[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }