blob: 284c94b4321afdfc063f521e35fc570753267f36 [file] [log] [blame] [view]
# BulkUpdateActionPoolBody
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**action** | **str** | The action to be performed on the entities. |
**action_on_non_existence** | [**BulkActionNotOnExistence**](BulkActionNotOnExistence.md) | | [optional]
**entities** | [**List[PoolBody]**](PoolBody.md) | A list of entities to be updated. |
## Example
```python
from airflow_client.client.models.bulk_update_action_pool_body import BulkUpdateActionPoolBody
# TODO update the JSON string below
json = "{}"
# create an instance of BulkUpdateActionPoolBody from a JSON string
bulk_update_action_pool_body_instance = BulkUpdateActionPoolBody.from_json(json)
# print the JSON string representation of the object
print(BulkUpdateActionPoolBody.to_json())
# convert the object into a dict
bulk_update_action_pool_body_dict = bulk_update_action_pool_body_instance.to_dict()
# create an instance of BulkUpdateActionPoolBody from a dict
bulk_update_action_pool_body_from_dict = BulkUpdateActionPoolBody.from_dict(bulk_update_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)