Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.54 KB

File metadata and controls

39 lines (30 loc) · 1.54 KB

DagRunAssetReference

DagRun serializer for asset responses.

Properties

Name Type Description Notes
dag_id str
data_interval_end datetime [optional]
data_interval_start datetime [optional]
end_date datetime [optional]
logical_date datetime [optional]
partition_key str [optional]
run_id str
start_date datetime
state str
triggering bool Whether this asset event triggered the referenced dag run. Only a run's most recent consumed asset event triggers it; earlier consumed events are included in the run but did not trigger it.

Example

from airflow_client.client.models.dag_run_asset_reference import DagRunAssetReference

# TODO update the JSON string below
json = "{}"
# create an instance of DagRunAssetReference from a JSON string
dag_run_asset_reference_instance = DagRunAssetReference.from_json(json)
# print the JSON string representation of the object
print(DagRunAssetReference.to_json())

# convert the object into a dict
dag_run_asset_reference_dict = dag_run_asset_reference_instance.to_dict()
# create an instance of DagRunAssetReference from a dict
dag_run_asset_reference_from_dict = DagRunAssetReference.from_dict(dag_run_asset_reference_dict)

[Back to Model list] [Back to API list] [Back to README]