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

Move 'Network File Activity' to 'Application -> File Hosting Activity' #917

Merged
merged 3 commits into from
Jan 5, 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
105 changes: 105 additions & 0 deletions events/application/file_hosting.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
{
"caption": "File Hosting Activity",
"description": "File Hosting Activity events report the actions taken by file management applications, including file sharing servers like Sharepoint and services such as Box, MS OneDrive, or Google Drive.",
"category": "application",
"extends": "application",
"name": "file_hosting",
"uid": 6,
"attributes": {
"activity_id": {
"enum": {
"1": {
"caption": "Upload",
"description": "Upload a file."
},
"2": {
"caption": "Download",
"description": "Download a file."
},
"3": {
"caption": "Update",
"description": "Update a file."
},
"4": {
"caption": "Delete",
"description": "Delete a file."
},
"5": {
"caption": "Rename",
"description": "Rename a file."
},
"6": {
"caption": "Copy",
"description": "Copy a file."
},
"7": {
"caption": "Move",
"description": "Move a file."
},
"8": {
"caption": "Restore",
"description": "Restore a file."
},
"9": {
"caption": "Preview",
"description": "Preview a file."
},
"10": {
"caption": "Lock",
"description": "Lock a file."
},
"11": {
"caption": "Unlock",
"description": "Unlock a file."
},
"12": {
"caption": "Share",
"description": "Share a file."
},
"13": {
"caption": "Unshare",
"description": "Unshare a file."
},
"14": {
"caption": "Open",
"description": "Open a file."
},
"15": {
"caption": "Sync",
"description": "Mark a file or folder to sync with a computer."
},
"16": {
"caption": "Unsync",
"description": "Mark a file or folder to not sync with a computer."
}
}
},
"actor": {
"description": "The actor that performed the activity on the target file.",
"group": "primary",
"requirement": "required"
},
"connection_info": {
"requirement": "optional"
},
"dst_endpoint": {
"description": "The endpoint that received the activity on the target file.",
"requirement": "recommended"
},
"expiration_time": {
"description": "The share expiration time.",
"group": "context",
"requirement": "optional"
},
"file": {
"description": "The file that is the target of the activity.",
"group": "primary",
"requirement": "required"
},
"src_endpoint": {
"description": "The endpoint that performed the activity on the target file.",
"group": "primary",
"requirement": "required"
}
}
}
4 changes: 4 additions & 0 deletions events/network/file_activity.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
{
"@deprecated": {
"message": "Use the new class: <code>'File Hosting Activity' in the 'Application' category.</code>",
"since": "1.1.0"
},
"caption": "Network File Activity",
"description": "Network File Activity events report file activities traversing the network, including file storage services such as Box, MS OneDrive, or Google Drive.",
"category": "network",
Expand Down
Loading