Skip to content

Commit 6ea399f

Browse files
committed
Review comment fixes
1 parent 4b24990 commit 6ea399f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Packs/SentinelOne/Integrations/SentinelOne-V2/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1985,7 +1985,7 @@ Returns all installed singularity marketplace applications that match the specif
19851985
| account_ids | A comma-separated list of account IDs. | Optional |
19861986
| application_catalog_id | Filter results by application catalog id. | Optional |
19871987
| creator_contains | Free-text filter by application creator. | Optional |
1988-
| id | A comma-separated list of applications IDs. | Optional |
1988+
| ids | A comma-separated list of applications IDs. | Optional |
19891989
| name_contains | Free-text filter by application name | Optional |
19901990
| site_ids | A comma-separated list of site IDs. | Optional |
19911991

Packs/SentinelOne/Integrations/SentinelOne-V2/SentinelOne-V2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3451,7 +3451,7 @@ def list_installed_singu_mark_apps_command(client: Client, args: dict) -> Comman
34513451
accountIds=argToList(args.get('account_ids')),
34523452
applicationCatalogId=args.get('application_catalog_id'),
34533453
creator__contains=args.get('creator_contains'),
3454-
id=argToList(args.get('id')),
3454+
id=argToList(args.get('ids')),
34553455
limit=1000,
34563456
name__contains=args.get('name_contains'),
34573457
siteIds=argToList(args.get('site_ids'))

Packs/SentinelOne/Integrations/SentinelOne-V2/SentinelOne-V2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2662,7 +2662,7 @@ script:
26622662
description: Filter results by application catalog id.
26632663
- name: creator_contains
26642664
description: Free-text filter by application creator.
2665-
- name: id
2665+
- name: ids
26662666
description: A comma-separated list of applications IDs.
26672667
isArray: true
26682668
- name: name_contains

0 commit comments

Comments
 (0)