blob: bcd843494e235fce05a3390099a4c00473ce1ef8 [file] [view]
# BulkCreateActionBulkDAGRunBody
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**action** | **str** | The action to be performed on the entities. |
**action_on_existence** | [**BulkActionOnExistence**](BulkActionOnExistence.md) | | [optional]
**entities** | [**List[BulkDAGRunBody]**](BulkDAGRunBody.md) | A list of entities to be created. |
## Example
```python
from airflow_client.client.models.bulk_create_action_bulk_dag_run_body import BulkCreateActionBulkDAGRunBody
# TODO update the JSON string below
json = "{}"
# create an instance of BulkCreateActionBulkDAGRunBody from a JSON string
bulk_create_action_bulk_dag_run_body_instance = BulkCreateActionBulkDAGRunBody.from_json(json)
# print the JSON string representation of the object
print(BulkCreateActionBulkDAGRunBody.to_json())
# convert the object into a dict
bulk_create_action_bulk_dag_run_body_dict = bulk_create_action_bulk_dag_run_body_instance.to_dict()
# create an instance of BulkCreateActionBulkDAGRunBody from a dict
bulk_create_action_bulk_dag_run_body_from_dict = BulkCreateActionBulkDAGRunBody.from_dict(bulk_create_action_bulk_dag_run_body_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)