import * as $dara from '@darabonba/typescript'; export declare class UntagResourcesRequest extends $dara.Model { /** * @remarks * Specifies whether to remove all tags from the resource. This parameter takes effect only if you do not specify TagKey.N. Valid values: * * * true * * false * * Default value: false. * * @example * false */ all?: boolean; ownerAccount?: string; ownerId?: number; /** * @remarks * The region ID of the resource. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * The resource IDs. Valid values of N: 1 to 50. * * This parameter is required. * * @example * i-bp67acfmxazb4ph**** */ resourceId?: string[]; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * The type of the resource. Valid values: * * * instance: ECS instance * * disk: disk * * snapshot: snapshot * * image: image * * securitygroup: security group * * volume: storage volume * * eni: elastic network interface (ENI) * * ddh: dedicated host * * ddhcluster: dedicated host cluster * * keypair: SSH key pair * * launchtemplate: launch template * * reservedinstance: reserved instance * * snapshotpolicy: automatic snapshot policy * * elasticityassurance: elasticity assurance * * capacityreservation: capacity reservation * * command: Cloud Assistant command * * invocation: Cloud Assistant command execution result * * This parameter is required. * * @example * instance */ resourceType?: string; /** * @remarks * The tag keys. Valid values of N: 1 to 20. * * @example * TestKey */ tagKey?: string[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }