amoghrajesh commented on code in PR #45924: URL: https://github.com/apache/airflow/pull/45924#discussion_r1925239518
########## airflow/api_fastapi/execution_api/datamodels/taskinstance.py: ########## @@ -54,12 +64,52 @@ class TIEnterRunningPayload(BaseModel): class TITerminalStatePayload(BaseModel): """Schema for updating TaskInstance to a terminal state (e.g., SUCCESS or FAILED).""" - state: TerminalTIState + state: Literal[ + TerminalTIState.FAILED, + TerminalTIState.SKIPPED, + TerminalTIState.REMOVED, + TerminalTIState.FAIL_WITHOUT_RETRY, + ] end_date: UtcDateTime """When the task completed executing""" +class TISuccessStatePayload(BaseModel): + """Schema for updating TaskInstance to success state.""" + + state: Annotated[ + Literal[TerminalTIState.SUCCESS], + # Specify a default in the schema, but not in code, so Pydantic marks it as required. + WithJsonSchema( + { + "type": "string", + "enum": [TerminalTIState.SUCCESS], + "default": TerminalTIState.SUCCESS, + } + ), + ] + + end_date: UtcDateTime + """When the task completed executing""" + + task_outlets: Annotated[list[AssetNameAndUri], Field(default_factory=list)] + outlet_events: Annotated[list[Any], Field(default_factory=list)] Review Comment: We make do with empty lists right now. Its not needed to send these fields. Example in the test cases: `test_ti_update_state_to_terminal` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org