Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add activities to Entity Management class #1095

Merged
merged 11 commits into from
May 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
48 changes: 44 additions & 4 deletions events/iam/entity_management.json
Original file line number Diff line number Diff line change
Expand Up @@ -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."
}
}
},
Expand Down
Loading