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

[Prisma Cloud Compute] Commands Arguments Description Update #30220

Merged
merged 14 commits into from
Oct 26, 2023
Original file line number Diff line number Diff line change
Expand Up @@ -2564,22 +2564,6 @@ def main():
return_results(results=get_console_version(client=client))
elif requested_command == 'prisma-cloud-compute-custom-feeds-ip-list':
return_results(results=get_custom_feeds_ip_list(client=client))
elif requested_command == 'prisma-cloud-compute-profile-host-list':
return_results(results=get_profile_host_list(client=client, args=demisto.args()))
elif requested_command == 'prisma-cloud-compute-profile-container-list':
return_results(results=get_container_profile_list(client=client, args=demisto.args()))
elif requested_command == 'prisma-cloud-compute-profile-container-hosts-list':
return_results(results=get_container_hosts_list(client=client, args=demisto.args()))
elif requested_command == 'prisma-cloud-compute-profile-container-forensic-list':
return_results(results=get_profile_container_forensic_list(client=client, args=demisto.args()))
elif requested_command == 'prisma-cloud-compute-host-forensic-list':
return_results(results=get_profile_host_forensic_list(client=client, args=demisto.args()))
elif requested_command == 'prisma-cloud-compute-custom-feeds-ip-add':
return_results(results=add_custom_ip_feeds(client=client, args=demisto.args()))
elif requested_command == 'prisma-cloud-compute-console-version-info':
return_results(results=get_console_version(client=client))
elif requested_command == 'prisma-cloud-compute-custom-feeds-ip-list':
BEAdi marked this conversation as resolved.
Show resolved Hide resolved
return_results(results=get_custom_feeds_ip_list(client=client))
elif requested_command == 'prisma-cloud-compute-custom-feeds-malware-list':
return_results(results=get_custom_malware_feeds(client=client, args=demisto.args()))
elif requested_command == 'prisma-cloud-compute-custom-feeds-malware-add':
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ description: Use the Prisma Cloud Compute integration to fetch incidents from yo
display: Palo Alto Networks - Prisma Cloud Compute
name: PaloAltoNetworks_PrismaCloudCompute
script:
dockerimage: demisto/python3:3.10.13.75921
dockerimage: demisto/python3:3.10.13.78960
isfetch: true
runonce: false
script: "-"
Expand Down Expand Up @@ -524,7 +524,7 @@ script:
description: Get the hosts where a specific container is running.
arguments:
- name: id
description: Container profile ID. Can be retrieved from the prisma-cloud-compute-profile-container-list command.
description: Container profile ID. Can be retrieved from the "prisma-cloud-compute-profile-container-list" command.
required: true
defaultValue: ""
- name: limit
Expand All @@ -544,14 +544,14 @@ script:
description: Get runtime forensics data for a specific container on a specific. host.
arguments:
- name: id
description: The container ID. Can be retrieved from the prisma-cloud-compute-profile-container-list command.
description: The container ID. Can be retrieved from the "prisma-cloud-compute-profile-container-list" command.
required: true
defaultValue: ""
- name: collections
description: The collections scoping the query.
defaultValue: ""
- name: hostname
description: The hostname for which data should be fetched.
description: The hostname for which data should be fetched. Can be retrieved from the "prisma-cloud-compute-hosts-list" command.
required: true
defaultValue: ""
- name: incident_id
Expand Down Expand Up @@ -647,7 +647,7 @@ script:
description: Get forensics on a specific host.
arguments:
- name: id
description: The host ID. Can be retrieved from the prisma-cloud-compute-profile-host-list command.
description: The host ID. Can be retrieved from the "prisma-cloud-compute-hosts-list" command.
required: true
defaultValue: ""
- name: collections
Expand Down Expand Up @@ -836,7 +836,7 @@ script:
description: The cluster name by which to scope the query.
defaultValue: ""
- name: hostname
description: Name of a specific defender to retrieve. Can be retrieved from !prisma-cloud-compute-profile-host-list.
description: Name of a specific defender to retrieve.
defaultValue: ""
- name: type
description: Indicates the defender types to return (e.g., docker, dockerWindows, cri, etc.).
Expand Down Expand Up @@ -980,7 +980,7 @@ script:
isArray: true
defaultValue: ""
- name: collections
description: A comma-separated list of collections to filter the results by. Can be retrieved from !prisma-cloud-compute-collections-list.
description: A comma-separated list of collections to filter the results by. Can be retrieved from the "prisma-cloud-compute-collections-list" command.
isArray: true
defaultValue: ""
- name: limit
Expand Down Expand Up @@ -1008,7 +1008,7 @@ script:
isArray: true
defaultValue: ""
- name: hostname
description: A comma-separated list of hostnames to filter the results by. Can be retrieved from !prisma-cloud-compute-profile-host-list.
description: A comma-separated list of hostnames to filter the results by. Can be retrieved from the "prisma-cloud-compute-profile-host-list" command.
isArray: true
defaultValue: ""
- name: id
Expand Down Expand Up @@ -1245,7 +1245,7 @@ script:
isArray: true
defaultValue: ""
- name: hostname
description: A comma-separated list of hostnames to filter the results by. Can be retrieved from !prisma-cloud-compute-profile-host-list.
description: A comma-separated list of hostnames to filter the results by. Can be retrieved from the "prisma-cloud-compute-profile-host-list" command.
isArray: true
defaultValue: ""
- name: provider
Expand Down Expand Up @@ -1913,7 +1913,7 @@ script:
description: The defender listening port.
type: Number
- arguments:
- description: The Defender hostname.
- description: The Defender hostname. Can be retrieved from the "prisma-cloud-compute-defenders-list" command.
name: hostname
- description: The number of log lines to fetch.
name: lines
Expand All @@ -1934,7 +1934,7 @@ script:
description: The time of the log.
type: Date
- arguments:
- description: The Defender hostname.
- description: The Defender hostname. Can be retrieved from the "prisma-cloud-compute-defenders-list" command.
name: hostname
- description: The number of log lines to fetch.
name: lines
Expand Down
8 changes: 8 additions & 0 deletions Packs/PrismaCloudCompute/ReleaseNotes/1_4_18.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

#### Integrations

##### Palo Alto Networks - Prisma Cloud Compute

- Updated the ***prisma-cloud-compute-profile-container-forensic-list***, ***prisma-cloud-compute-logs-defender*** and ***prisma-cloud-compute-logs-defender-download*** commands arguments descriptions in order to clarify where **hostname** argument values should be taken from.
- Updated the ***prisma-cloud-compute-host-forensic-list*** command argument description in order to clarify where **id** argument values should be taken from.
- Updated the Docker image to: *demisto/python3:3.10.13.78960*.
2 changes: 1 addition & 1 deletion Packs/PrismaCloudCompute/pack_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Prisma Cloud Compute by Palo Alto Networks",
"description": "Use the Prisma Cloud Compute integration to fetch incidents from your Prisma Cloud Compute environment.",
"support": "xsoar",
"currentVersion": "1.4.17",
"currentVersion": "1.4.18",
"author": "Cortex XSOAR",
"url": "https://www.paloaltonetworks.com/cortex",
"email": "",
Expand Down
Loading