Skip to content

Commit b00a810

Browse files
authored
Remove ORM references from datamodels for assets (#44010)
1 parent 9a364ac commit b00a810

File tree

4 files changed

+12
-15
lines changed

4 files changed

+12
-15
lines changed

airflow/api_fastapi/core_api/datamodels/assets.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@
2323

2424

2525
class DagScheduleAssetReference(BaseModel):
26-
"""Serializable version of the DagScheduleAssetReference ORM SqlAlchemyModel."""
26+
"""DAG schedule reference serializer for assets."""
2727

2828
dag_id: str
2929
created_at: datetime
3030
updated_at: datetime
3131

3232

3333
class TaskOutletAssetReference(BaseModel):
34-
"""Serializable version of the TaskOutletAssetReference ORM SqlAlchemyModel."""
34+
"""Task outlet reference serializer for assets."""
3535

3636
dag_id: str
3737
task_id: str
@@ -40,7 +40,7 @@ class TaskOutletAssetReference(BaseModel):
4040

4141

4242
class AssetAliasSchema(BaseModel):
43-
"""Serializable version of the AssetAliasSchema ORM SqlAlchemyModel."""
43+
"""Asset alias serializer for assets."""
4444

4545
id: int
4646
name: str

airflow/api_fastapi/core_api/openapi/v1-generated.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3650,7 +3650,7 @@ components:
36503650
- id
36513651
- name
36523652
title: AssetAliasSchema
3653-
description: Serializable version of the AssetAliasSchema ORM SqlAlchemyModel.
3653+
description: Asset alias serializer for assets.
36543654
AssetCollectionResponse:
36553655
properties:
36563656
assets:
@@ -4900,7 +4900,7 @@ components:
49004900
- created_at
49014901
- updated_at
49024902
title: DagScheduleAssetReference
4903-
description: Serializable version of the DagScheduleAssetReference ORM SqlAlchemyModel.
4903+
description: DAG schedule reference serializer for assets.
49044904
DagStatsCollectionResponse:
49054905
properties:
49064906
dags:
@@ -5800,7 +5800,7 @@ components:
58005800
- created_at
58015801
- updated_at
58025802
title: TaskOutletAssetReference
5803-
description: Serializable version of the TaskOutletAssetReference ORM SqlAlchemyModel.
5803+
description: Task outlet reference serializer for assets.
58045804
TaskResponse:
58055805
properties:
58065806
task_id:

airflow/ui/openapi-gen/requests/schemas.gen.ts

+3-6
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,7 @@ export const $AssetAliasSchema = {
103103
type: "object",
104104
required: ["id", "name"],
105105
title: "AssetAliasSchema",
106-
description:
107-
"Serializable version of the AssetAliasSchema ORM SqlAlchemyModel.",
106+
description: "Asset alias serializer for assets.",
108107
} as const;
109108

110109
export const $AssetCollectionResponse = {
@@ -2012,8 +2011,7 @@ export const $DagScheduleAssetReference = {
20122011
type: "object",
20132012
required: ["dag_id", "created_at", "updated_at"],
20142013
title: "DagScheduleAssetReference",
2015-
description:
2016-
"Serializable version of the DagScheduleAssetReference ORM SqlAlchemyModel.",
2014+
description: "DAG schedule reference serializer for assets.",
20172015
} as const;
20182016

20192017
export const $DagStatsCollectionResponse = {
@@ -3327,8 +3325,7 @@ export const $TaskOutletAssetReference = {
33273325
type: "object",
33283326
required: ["dag_id", "task_id", "created_at", "updated_at"],
33293327
title: "TaskOutletAssetReference",
3330-
description:
3331-
"Serializable version of the TaskOutletAssetReference ORM SqlAlchemyModel.",
3328+
description: "Task outlet reference serializer for assets.",
33323329
} as const;
33333330

33343331
export const $TaskResponse = {

airflow/ui/openapi-gen/requests/types.gen.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export type AppBuilderViewResponse = {
2222
};
2323

2424
/**
25-
* Serializable version of the AssetAliasSchema ORM SqlAlchemyModel.
25+
* Asset alias serializer for assets.
2626
*/
2727
export type AssetAliasSchema = {
2828
id: number;
@@ -457,7 +457,7 @@ export type DagRunType =
457457
| "asset_triggered";
458458

459459
/**
460-
* Serializable version of the DagScheduleAssetReference ORM SqlAlchemyModel.
460+
* DAG schedule reference serializer for assets.
461461
*/
462462
export type DagScheduleAssetReference = {
463463
dag_id: string;
@@ -809,7 +809,7 @@ export type TaskInstanceStateCount = {
809809
};
810810

811811
/**
812-
* Serializable version of the TaskOutletAssetReference ORM SqlAlchemyModel.
812+
* Task outlet reference serializer for assets.
813813
*/
814814
export type TaskOutletAssetReference = {
815815
dag_id: string;

0 commit comments

Comments
 (0)