ActionsInner4

Properties

NameTypeDescriptionNotes
actionstrThe action to be performed on the entities.
action_on_existenceBulkActionOnExistence[optional]
entitiesList[EntitiesInner4]A list of entity id/key or entity objects to be deleted.
action_on_non_existenceBulkActionNotOnExistence[optional]
update_maskList[str][optional]

Example

from airflow_client.client.models.actions_inner4 import ActionsInner4

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

# convert the object into a dict
actions_inner4_dict = actions_inner4_instance.to_dict()
# create an instance of ActionsInner4 from a dict
actions_inner4_from_dict = ActionsInner4.from_dict(actions_inner4_dict)

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