Skip to content

Commit

Permalink
[Qualysv2] MyPy In Docker (#38009)
Browse files Browse the repository at this point in the history
* fix

* RN

* autopep8
  • Loading branch information
shmuel44 authored Jan 8, 2025
1 parent 5b8052b commit 1d1798b
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 20 deletions.
2 changes: 1 addition & 1 deletion Packs/qualys/Integrations/Qualysv2/Qualysv2.py
Original file line number Diff line number Diff line change
Expand Up @@ -2931,7 +2931,7 @@ def get_host_list_detections_events(client, since_datetime, next_page='', limit=
Host list detections assets
"""
demisto.debug('Pulling host list detections')
assets = []
assets: list = []
host_list_detections, set_new_limit = client.get_host_list_detection(since_datetime=since_datetime,
next_page=next_page,
limit=limit)
Expand Down
36 changes: 18 additions & 18 deletions Packs/qualys/Integrations/Qualysv2/Qualysv2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ configuration:
advanced: true
type: 0
hidden:
- xsoar
- xpanse
- xsoar
- xpanse
- defaultvalue: 10000
section: Collect
display: Event Fetch Limit
Expand All @@ -50,8 +50,8 @@ configuration:
required: false
type: 0
hidden:
- xsoar
- xpanse
- xsoar
- xpanse
- defaultvalue: 1
display: Events Fetch Interval
name: eventFetchInterval
Expand All @@ -60,8 +60,8 @@ configuration:
advanced: true
required: false
hidden:
- xsoar
- xpanse
- xsoar
- xpanse
- additionalinfo: The fetch interval. It is recommended to set it to 24 hours, and the minimum interval is 1 hour.
defaultvalue: 1440
display: Assets and Vulnerabilities Fetch Interval
Expand All @@ -71,8 +71,8 @@ configuration:
advanced: true
required: false
hidden:
- xsoar
- xpanse
- xsoar
- xpanse
description: Qualys Vulnerability Management lets you create, run, manage reports and to fetch Activity Logs, Assets and Vulnerabilities, launch and manage vulnerability and compliance scans, and manage the host assets you want to scan for vulnerabilities and compliance.
display: Qualys VMDR
name: QualysV2
Expand Down Expand Up @@ -2774,7 +2774,7 @@ script:
arguments:
- name: ids
required: true
description: A comma-separated list of record IDs to update. Specify record IDs and/or ID ranges.
description: A comma-separated list of record IDs to update. Specify record IDs and/or ID ranges.
- name: add_ips
required: true
description: A comma-separated list of IPs and/or ranges to add to the IPs list for this record.
Expand Down Expand Up @@ -2830,17 +2830,17 @@ script:
description: Gets activity logs from Qualys.
name: qualys-get-events
- arguments:
- auto: PREDEFINED
defaultValue: 'false'
description: If true, the command will create assets, otherwise it will only display the amount of available assets.
name: should_push_assets
predefined:
- 'true'
- 'false'
required: true
- auto: PREDEFINED
defaultValue: 'false'
description: If true, the command will create assets, otherwise it will only display the amount of available assets.
name: should_push_assets
predefined:
- 'true'
- 'false'
required: true
description: Gets assets from Qualys.
name: qualys-get-assets
dockerimage: demisto/python3:3.11.10.116949
dockerimage: demisto/python3:3.11.11.1940698
isfetchevents: true
isfetchassets: true
runonce: false
Expand Down
6 changes: 6 additions & 0 deletions Packs/qualys/ReleaseNotes/3_1_4.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

#### Integrations

##### Qualys VMDR

Updated the Docker image to: *demisto/python3:3.11.11.1940698*.
2 changes: 1 addition & 1 deletion Packs/qualys/pack_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Qualys",
"description": "Qualys Vulnerability Management let's you create, run, fetch and manage reports, launch and manage vulnerability and compliance scans, and manage the host assets you want to scan for vulnerabilities and compliance",
"support": "xsoar",
"currentVersion": "3.1.3",
"currentVersion": "3.1.4",
"author": "Cortex XSOAR",
"url": "https://www.paloaltonetworks.com/cortex",
"email": "",
Expand Down

0 comments on commit 1d1798b

Please sign in to comment.