FinalStageTask Objects

class FinalStageTask(WorkflowTask)
Represents tasks in a FinalStage, which are read-only and cannot be acted upon except for being moved programmatically. Attributes
  • data_hash (UUID): Unique ID for the data unit.
  • data_title (str): Name of the data unit.
Allowed actions
  • move: Moves the task to another stage in the workflow.

move

def move(*,
         destination_stage_uuid: UUID,
         bundle: Optional[Bundle] = None) -> None
Moves the final stage task from its current stage to another stage. Parameters
  • destination_stage_uuid (UUID): Unique identifier of the stage to move the task to.
  • bundle (Optional[Bundle]): Optional bundle of actions to execute with the move.
Returns None