blob: 80350d0f35df60a87f64bd6dd95542a0dd49b2dc [file] [log] [blame] [view]
# BulkCreateActionPoolBody
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**action** | [**BulkAction**](BulkAction.md) | The action to be performed on the entities. |
**action_on_existence** | [**BulkActionOnExistence**](BulkActionOnExistence.md) | | [optional]
**entities** | [**List[PoolBody]**](PoolBody.md) | A list of entities to be created. |
## Example
```python
from airflow_client.client.models.bulk_create_action_pool_body import BulkCreateActionPoolBody
# TODO update the JSON string below
json = "{}"
# create an instance of BulkCreateActionPoolBody from a JSON string
bulk_create_action_pool_body_instance = BulkCreateActionPoolBody.from_json(json)
# print the JSON string representation of the object
print(BulkCreateActionPoolBody.to_json())
# convert the object into a dict
bulk_create_action_pool_body_dict = bulk_create_action_pool_body_instance.to_dict()
# create an instance of BulkCreateActionPoolBody from a dict
bulk_create_action_pool_body_from_dict = BulkCreateActionPoolBody.from_dict(bulk_create_action_pool_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)