Skip to content

Commit

Permalink
fix description of terminate commands (#37850)
Browse files Browse the repository at this point in the history
* fix description of terminate commands

* adding rn
  • Loading branch information
maimorag authored Dec 30, 2024
1 parent 9535bb5 commit 69086ad
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Packs/Core/Integrations/CortexCoreIR/CortexCoreIR.py
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ def main(): # pragma: no cover
elif command == 'core-terminate-process':
if not is_demisto_version_ge(version=TERMINATE_SERVER_VERSION,
build_number=TERMINATE_BUILD_NUM):
raise DemistoException('This command is only available for XSIAM 2.4')
raise DemistoException('This command is only available for XSIAM 2.4 and above')
return_results(run_polling_command(client=client,
args=args,
cmd="core-terminate-process",
Expand All @@ -532,7 +532,7 @@ def main(): # pragma: no cover
elif command == 'core-terminate-causality':
if not is_demisto_version_ge(version=TERMINATE_SERVER_VERSION,
build_number=TERMINATE_BUILD_NUM):
raise DemistoException("This command is only available for XSIAM 2.4")
raise DemistoException("This command is only available for XSIAM 2.4 and above")
return_results(run_polling_command(client=client,
args=args,
cmd="core-terminate-causality",
Expand Down
4 changes: 2 additions & 2 deletions Packs/Core/Integrations/CortexCoreIR/CortexCoreIR.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3067,7 +3067,7 @@ script:
- description: Polling timeout in seconds.
name: timeout_in_seconds
name: core-terminate-process
description: Terminate a process by its instance ID. Available only for XSIAM 2.4.
description: Terminate a process by its instance ID. Available only for XSIAM 2.4 and above.
polling: true
outputs:
- contextPath: Core.TerminateProcess.action_id
Expand Down Expand Up @@ -3099,7 +3099,7 @@ script:
- description: Polling timeout in seconds.
name: timeout_in_seconds
name: core-terminate-causality
description: Terminate a process tree by its causality ID. Available only for XSIAM 2.4.
description: Terminate a process tree by its causality ID. Available only for XSIAM 2.4 and above.
polling: true
outputs:
- contextPath: Core.TerminateCausality.action_id
Expand Down
4 changes: 2 additions & 2 deletions Packs/Core/Integrations/CortexCoreIR/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2815,7 +2815,7 @@ Initiates a new endpoint script execution action using a script from the script
### core-terminate-process

***
Terminate a process by its instance ID.
Terminate a process by its instance ID. Available only for XSIAM 2.4 and above.

#### Base Command

Expand All @@ -2841,7 +2841,7 @@ Terminate a process by its instance ID.
### core-terminate-causality

***
Stops a process by its causality ID.
Stops a process by its causality ID. Available only for XSIAM 2.4 and above.

##### Command Example

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

#### Integrations

##### Investigation & Response

- Documentation and metadata improvements.
2 changes: 1 addition & 1 deletion Packs/Core/pack_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Core - Investigation and Response",
"description": "Automates incident response",
"support": "xsoar",
"currentVersion": "3.2.9",
"currentVersion": "3.2.10",
"author": "Cortex XSOAR",
"url": "https://www.paloaltonetworks.com/cortex",
"email": "",
Expand Down

0 comments on commit 69086ad

Please sign in to comment.