import * as $dara from '@darabonba/typescript'; export declare class DescribeTaskAttributeResponseBodyOperationProgressSetOperationProgressRelatedItemSetRelatedItem extends $dara.Model { name?: string; value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeTaskAttributeResponseBodyOperationProgressSetOperationProgressRelatedItemSet extends $dara.Model { relatedItem?: DescribeTaskAttributeResponseBodyOperationProgressSetOperationProgressRelatedItemSetRelatedItem[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeTaskAttributeResponseBodyOperationProgressSetOperationProgress extends $dara.Model { errorCode?: string; errorMsg?: string; operationStatus?: string; relatedItemSet?: DescribeTaskAttributeResponseBodyOperationProgressSetOperationProgressRelatedItemSet; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeTaskAttributeResponseBodyOperationProgressSet extends $dara.Model { operationProgress?: DescribeTaskAttributeResponseBodyOperationProgressSetOperationProgress[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeTaskAttributeResponseBody extends $dara.Model { /** * @remarks * The time when the task was created. * * @example * 2015-11-23T02:13Z */ creationTime?: string; /** * @remarks * The number of failed tasks. * * @example * 0 */ failedCount?: number; /** * @remarks * The time when the task was completed. * * @example * 2015-11-23T02:19Z */ finishedTime?: string; operationProgressSet?: DescribeTaskAttributeResponseBodyOperationProgressSet; /** * @remarks * The region ID of the task. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * The request ID. * * @example * 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E */ requestId?: string; /** * @remarks * The number of completed tasks. * * @example * 1 */ successCount?: number; /** * @remarks * Indicates whether the task can be canceled by calling the [CancelTask](https://help.aliyun.com/document_detail/25624.html) operation. Valid values: * * * true * * false * * @example * true */ supportCancel?: string; /** * @remarks * The name of the operation that generated the task. * * @example * ExportImage */ taskAction?: string; /** * @remarks * The ID of the task. * * @example * t-ce946ntx4wr**** */ taskId?: string; /** * @remarks * The progress of the task. * * @example * 100% */ taskProcess?: string; /** * @remarks * The status of the task. * * @example * Finished */ taskStatus?: string; /** * @remarks * The total number of tasks. * * @example * 1 */ totalCount?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }