Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build_and_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ jobs:
with:
enable-common-libs: true
#apt-cache-version: v0
#py-cache-version: v0
py-cache-version: v1
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v1.11.0
* Added action to get nat inside.
* Added action to get accesslist.

## v1.10.0
* Added action to get interface.
* Added action to get vrrpa.
Expand Down
25 changes: 25 additions & 0 deletions actions/get_access_list.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: get_access_list
runner_type: python-script
description: get configuration of AccessList
enabled: true
entry_point: ax_action_runner.py
parameters:
action:
type: string
immutable: true
default: get
object_path:
type: string
immutable: true
default: access_list
one_target:
type: boolean
immutable: true
default: false
appliance:
type: string
description: The appliance information to connect, which is specified at the 'appliance' parameter in the configuration.
specified_target:
type: object
description: "Specify the target dynamically, (key: 'target', 'api_version', 'userid', 'passwd')"
25 changes: 25 additions & 0 deletions actions/get_nat_inside.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: get_nat_inside
runner_type: python-script
description: get configuration of Nat Inside
enabled: true
entry_point: ax_action_runner.py
parameters:
action:
type: string
immutable: true
default: get
object_path:
type: string
immutable: true
default: nat.inside
one_target:
type: boolean
immutable: true
default: false
appliance:
type: string
description: The appliance information to connect, which is specified at the 'appliance' parameter in the configuration.
specified_target:
type: object
description: "Specify the target dynamically, (key: 'target', 'api_version', 'userid', 'passwd')"
2 changes: 1 addition & 1 deletion pack.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords:
- load balancer
- ADC
- network
version: 1.10.0
version: 1.11.0
author: Hiroyasu OHYAMA
email: user.localhost2000@gmail.com
python_versions:
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
acos-client>=2.6.0,<3.0.0
acos-client>=2.10.0,<3.0.0
Loading