Skip to content

Commit 15a3bbb

Browse files
moishce-zzroysagi
andauthored
CiscoASA argument fix (#10676)
* fixed argument * added release notes * Update 1_0_3.md Co-authored-by: roysagi <50295826+roysagi@users.noreply.github.com>
1 parent 5244c43 commit 15a3bbb

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

Packs/CiscoASA/Integrations/CiscoASA/CiscoASA.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ def create_rule_command(client: Client, args):
365365

366366
remarks = argToList(args.get('remarks'), ',')
367367
position = args.get('position')
368-
log_level = args.get('logging_level')
368+
log_level = args.get('log_level')
369369
active = args.get('active', 'True')
370370

371371
rule_body = {} # type: dict
@@ -440,7 +440,7 @@ def edit_rule_command(client: Client, args):
440440

441441
remarks = argToList(args.get('remarks'), ',')
442442
position = args.get('position')
443-
log_level = args.get('logging_level')
443+
log_level = args.get('log_level')
444444
active = args.get('active', 'True')
445445
source = args.get('source')
446446
dest = args.get('destination')

Packs/CiscoASA/Integrations/CiscoASA/CiscoASA.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ script:
518518
- contextPath: CiscoASA.Interface.Type
519519
description: The type of interface.
520520
type: String
521-
dockerimage: demisto/python3:3.8.3.9324
521+
dockerimage: demisto/python3:3.8.6.14516
522522
isfetch: false
523523
runonce: false
524524
script: '-'

Packs/CiscoASA/ReleaseNotes/1_0_3.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
2+
#### Integrations
3+
##### Cisco ASA
4+
- Fixed an issue where the *log_level* argument in the **cisco-asa-create-rule** and the **cisco-asa-edit-rule** commands was not used correctly.
5+
- Upgraded the Docker image to demisto/python3:3.8.6.14516.

Packs/CiscoASA/pack_metadata.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "Cisco ASA",
33
"description": "Cisco Adaptive Security Appliance Software is the core operating system for the Cisco ASA Family. It delivers enterprise-class firewall capabilities for ASA devices.",
44
"support": "xsoar",
5-
"currentVersion": "1.0.2",
5+
"currentVersion": "1.0.3",
66
"author": "Cortex XSOAR",
77
"url": "https://www.paloaltonetworks.com/cortex",
88
"email": "",
@@ -13,4 +13,4 @@
1313
"tags": [],
1414
"useCases": [],
1515
"keywords": []
16-
}
16+
}

0 commit comments

Comments
 (0)