import * as $dara from '@darabonba/typescript'; export declare class StopInvocationRequest extends $dara.Model { /** * @remarks * The ID of instance N on which you want to stop the process of the Cloud Assistant command. You can specify up to 50 instance IDs in each request. Valid values of N: 1 to 50. * * @example * i-bp67acfmxazb4p**** */ instanceId?: string[]; /** * @remarks * The ID of the command task. You can call the [DescribeInvocations](https://help.aliyun.com/document_detail/64840.html) operation to query all task IDs. * * This parameter is required. * * @example * t-7d2a745b412b4601b2d47f6a768d**** */ invokeId?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The ID of the command task. You can call the [DescribeInvocations](https://help.aliyun.com/document_detail/64840.html) operation to query the IDs of all command tasks. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }