BulkBodyPoolBodyActionsInner
Properties
| Name | Type | Description | Notes |
|---|
| action | str | The action to be performed on the entities. | |
| action_on_existence | BulkActionOnExistence | | [optional] |
| entities | List[str] | A list of entity id/key to be deleted. | |
| action_on_non_existence | BulkActionNotOnExistence | | [optional] |
Example
from airflow_client.client.models.bulk_body_pool_body_actions_inner import BulkBodyPoolBodyActionsInner
# TODO update the JSON string below
json = "{}"
# create an instance of BulkBodyPoolBodyActionsInner from a JSON string
bulk_body_pool_body_actions_inner_instance = BulkBodyPoolBodyActionsInner.from_json(json)
# print the JSON string representation of the object
print(BulkBodyPoolBodyActionsInner.to_json())
# convert the object into a dict
bulk_body_pool_body_actions_inner_dict = bulk_body_pool_body_actions_inner_instance.to_dict()
# create an instance of BulkBodyPoolBodyActionsInner from a dict
bulk_body_pool_body_actions_inner_from_dict = BulkBodyPoolBodyActionsInner.from_dict(bulk_body_pool_body_actions_inner_dict)
[Back to Model list] [Back to API list] [Back to README]