Details
| ID | CompareLists |
|---|---|
| Language | python |
| From Version | 5.0.0 |
| Docker Image | demisto/python3:3.12.13.10404775 |
README
Compare two lists and put the differences in context.
Script Data
| Name | Description |
|---|---|
| Script Type | python3 |
| Cortex XSOAR Version | 5.0.0 |
Used In
This script is used in the following playbooks and scripts.
- Allow IP - Okta Zone
- Checkpoint - Block IP - Append Group
- Checkpoint - Block IP - Custom Block Rule
- IP Whitelist - AWS Security Group
- IP Whitelist - GCP Firewall
Inputs
| Argument Name | Description |
|---|---|
| left | Left list |
| right | Right list |
Outputs
| Path | Description | Type |
|---|---|---|
| ListCompare.LeftOnly | Items only found within the list in the left argument | Unknown |
| ListCompare.RightOnly | Items only found within the list in the right argument | Unknown |
| ListCompare.Both | Common items that were found in both lists | Unknown |
commonfields: id: CompareLists version: -1 name: CompareLists comment: Compare two lists and put the differences in context. script: '' type: python tags: [] enabled: true args: - name: left required: true description: Left list. isArray: true - name: right required: true description: Right list. isArray: true outputs: - contextPath: ListCompare.LeftOnly description: Items only found within the list in the left argument. - contextPath: ListCompare.RightOnly description: Items only found within the list in the right argument. - contextPath: ListCompare.Both description: Common items that were found in both lists. scripttarget: 0 subtype: python3 dockerimage: demisto/python3:3.12.13.10404775 runas: DBotWeakRole fromversion: 5.0.0 tests: - No tests (auto formatted)