Skip to content

fix: get mapping fields function does not except any arguments #39261

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

Merged
merged 1 commit into from
Mar 24, 2025
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
3 changes: 2 additions & 1 deletion Packs/SentinelOne/CONTRIBUTORS.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[
"nikstuckenbrock"
"nikstuckenbrock",
"Bryan van der Net"
]
Original file line number Diff line number Diff line change
Expand Up @@ -4104,7 +4104,6 @@ def main():
"sentinelone-get-installed-applications": get_installed_applications,
"sentinelone-initiate-endpoint-scan": initiate_endpoint_scan,
"get-modified-remote-data": get_modified_remote_data_command,
"get-mapping-fields": get_mapping_fields_command,
"update-remote-system": update_remote_system_command,
},
"2.0": {
Expand Down Expand Up @@ -4150,6 +4149,10 @@ def main():
"commands_with_params": {
"get-remote-data": get_remote_data_command,
},
"commands_without_params": {
"get-mapping-fields": get_mapping_fields_command,
},

}

""" COMMANDS MANAGER / SWITCH PANEL """
Expand Down Expand Up @@ -4192,6 +4195,8 @@ def main():
return_results(commands[api_version][command](client, demisto.args()))
elif command in commands["commands_with_params"]:
return_results(commands["commands_with_params"][command](client, demisto.args(), params))
elif command in commands["commands_without_params"]:
return_results(commands["commands_without_params"][command]())
else:
raise NotImplementedError(f"The {command} command is not supported for API version {api_version}")

Expand Down
7 changes: 7 additions & 0 deletions Packs/SentinelOne/ReleaseNotes/3_2_40.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@

#### Integrations

##### SentinelOne v2

- Fixed an error in ***get-mapping-fields*** command.

2 changes: 1 addition & 1 deletion Packs/SentinelOne/pack_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "SentinelOne",
"description": "Endpoint protection",
"support": "partner",
"currentVersion": "3.2.39",
"currentVersion": "3.2.40",
"author": "SentinelOne",
"url": "https://www.sentinelone.com/support/",
"email": "[email protected]",
Expand Down
Loading