import { OperationStatusEnum } from './OperationStatusEnum';
/** A sub-operation is a child of an operation on your Project */
export interface SubOperation {
    /** The action of the sub-operation */
    action: string;
    /** The completed date of the sub-operation */
    completedAt?: string;
    /** Unique ID to describe the sub-operation */
    id: string;
    /** The progression in percentage of the sub-operation */
    progress: number;
    /** Affected regions of the sub-operation */
    regions?: string[];
    /** Affected resource of the sub-operation */
    resourceId?: string;
    /** The started date of the sub-operation */
    startedAt?: string;
    /** Sub-operation status */
    status: OperationStatusEnum;
}
//# sourceMappingURL=SubOperation.d.ts.map