This type defines the possible list of actions that can be taken in syncing data: Create, Update, CreateOrUpdate, Delete, or DeleteWithFilter DeleteWithFilter is where you specify a valid SQL expression that can be used in a where clause to get a list of records in a given entity to delete this can be used to ensure cleaning out data from a subset of a given table.

Enumeration Members

Create: "Create"
CreateOrUpdate: "CreateOrUpdate"
Delete: "Delete"
DeleteWithFilter: "DeleteWithFilter"
Update: "Update"