diff --git a/CHANGELOG.md b/CHANGELOG.md index 69fb55655..8c6b07ba1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -60,6 +60,7 @@ Thankyou! --> 2. Added entries to `injection_type_id` enum (`Process Activity`) and `activity_id` enum (`Memory Activity`). #1060 3. Added a `Restart`, `Enable`, `Disable`, and `Update` `activity_id` to the `Application Lifecycle` class. #1064 4. Added `ja4_fingerprint_list` to base network event class. #834 + 5. Added new activities `Enroll`, `Activate`, `Deactivate`, `Suspend`, and `Resume` to the `Entity Management` class. #1095 * #### Profiles * #### Objects 1. Added `ext` to `File` object. #1046 diff --git a/events/iam/entity_management.json b/events/iam/entity_management.json index 529d479d4..6a770f733 100644 --- a/events/iam/entity_management.json +++ b/events/iam/entity_management.json @@ -8,16 +8,56 @@ "activity_id": { "enum": { "1": { - "caption": "Create" + "caption": "Create", + "description": "Create a new managed entity." }, "2": { - "caption": "Read" + "caption": "Read", + "description": "Read an existing managed entity." }, "3": { - "caption": "Update" + "caption": "Update", + "description": "Update an existing managed entity." }, "4": { - "caption": "Delete" + "caption": "Delete", + "description": "Delete a managed entity." + }, + "5": { + "caption": "Move", + "description": "Move or rename an existing managed entity." + }, + "6": { + "caption": "Enroll", + "description": "Enroll an existing managed entity." + }, + "7": { + "caption": "Unenroll", + "description": "Unenroll an existing managed entity." + }, + "8": { + "caption": "Enable", + "description": "Enable an existing managed entity. Note: This is typically regarded as a semi-permanent, editor visible, syncable change." + }, + "9": { + "caption": "Disable", + "description": "Disable an existing managed entity. Note: This is typically regarded as a semi-permanent, editor visible, syncable change." + }, + "10": { + "caption": "Activate", + "description": "Activate an existing managed entity. Note: This is a typically regarded as a transient change, a change of state of the engine." + }, + "11": { + "caption": "Deactivate", + "description": "Deactivate an existing managed entity. Note: This is a typically regarded as a transient change, a change of state of the engine." + }, + "12": { + "caption": "Suspend", + "description": "Suspend an existing managed entity." + }, + "13": { + "caption": "Resume", + "description": "Resume (unsuspend) an existing managed entity." } } },