Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
from airflow.api_fastapi.core_api.base import BaseModel, StrictBaseModel
from airflow.api_fastapi.core_api.datamodels.dag_tags import DagTagResponse
from airflow.api_fastapi.core_api.datamodels.dag_versions import DagVersionResponse
from airflow.api_fastapi.core_api.datamodels.deadline import DeadlineAlertResponse
from airflow.configuration import conf
from airflow.models.dag_version import DagVersion

Expand Down Expand Up @@ -68,7 +67,6 @@ class DAGResponse(BaseModel):
relative_fileloc: str | None
fileloc: str
description: str | None
deadline: list[DeadlineAlertResponse] | None
timetable_summary: str | None
timetable_description: str | None
tags: list[DagTagResponse]
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -1352,13 +1352,6 @@ components:
- type: string
- type: 'null'
title: Description
deadline:
anyOf:
- items:
$ref: '#/components/schemas/DeadlineAlertResponse'
type: array
- type: 'null'
title: Deadline
timetable_summary:
anyOf:
- type: string
Expand Down Expand Up @@ -1449,7 +1442,6 @@ components:
- relative_fileloc
- fileloc
- description
- deadline
- timetable_summary
- timetable_description
- tags
Expand Down Expand Up @@ -1589,31 +1581,6 @@ components:
- queued_dag_count
title: DashboardDagStatsResponse
description: Dashboard DAG Stats serializer for responses.
DeadlineAlertResponse:
properties:
reference:
type: string
title: Reference
interval:
type: string
format: duration
title: Interval
callback:
type: string
title: Callback
callback_kwargs:
anyOf:
- additionalProperties: true
type: object
- type: 'null'
title: Callback Kwargs
type: object
required:
- reference
- interval
- callback
title: DeadlineAlertResponse
description: Deadline alert serializer for responses.
EdgeResponse:
properties:
source_id:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8670,13 +8670,6 @@ components:
- type: string
- type: 'null'
title: Description
deadline:
anyOf:
- items:
$ref: '#/components/schemas/DeadlineAlertResponse'
type: array
- type: 'null'
title: Deadline
timetable_summary:
anyOf:
- type: string
Expand Down Expand Up @@ -8844,7 +8837,6 @@ components:
- relative_fileloc
- fileloc
- description
- deadline
- timetable_summary
- timetable_description
- tags
Expand Down Expand Up @@ -8936,13 +8928,6 @@ components:
- type: string
- type: 'null'
title: Description
deadline:
anyOf:
- items:
$ref: '#/components/schemas/DeadlineAlertResponse'
type: array
- type: 'null'
title: Deadline
timetable_summary:
anyOf:
- type: string
Expand Down Expand Up @@ -9022,7 +9007,6 @@ components:
- relative_fileloc
- fileloc
- description
- deadline
- timetable_summary
- timetable_description
- tags
Expand Down Expand Up @@ -9641,31 +9625,6 @@ components:
This is the set of allowable values for the ``warning_type`` field

in the DagWarning model.'
DeadlineAlertResponse:
properties:
reference:
type: string
title: Reference
interval:
type: string
format: duration
title: Interval
callback:
type: string
title: Callback
callback_kwargs:
anyOf:
- additionalProperties: true
type: object
- type: 'null'
title: Callback Kwargs
type: object
required:
- reference
- interval
- callback
title: DeadlineAlertResponse
description: Deadline alert serializer for responses.
DryRunBackfillCollectionResponse:
properties:
backfills:
Expand Down
1 change: 0 additions & 1 deletion airflow-core/src/airflow/cli/commands/dag_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,6 @@ def _get_dagbag_dag_details(dag: DAG) -> dict:
"next_dagrun_data_interval_end": None,
"next_dagrun_logical_date": None,
"next_dagrun_run_after": None,
"deadline": None,
}


Expand Down
Loading
Loading