Skip to content
Merged
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
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v1.10.0
* Added action to get interface.
* Added action to get vrrpa.

## v1.9.0
* Added an action (list_slb_http_templates) to show SLB http-template.

Expand Down
25 changes: 25 additions & 0 deletions actions/get_interface.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: get_interface
runner_type: python-script
description: get configuration of IP address of Interface
enabled: true
entry_point: ax_action_runner.py
parameters:
action:
type: string
immutable: true
default: get_list
object_path:
type: string
immutable: true
default: interface
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_interface_ve_v21.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: get_interface_ve_v21
runner_type: python-script
description: get configuration of IP address of Interface
enabled: true
entry_point: ax_action_runner.py
parameters:
action:
type: string
immutable: true
default: get
object_path:
type: string
immutable: true
default: interface.virtual_ethernet
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_vrrpa.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: get_vrrpa
runner_type: python-script
description: get configuration of VRRPA
enabled: true
entry_point: ax_action_runner.py
parameters:
action:
type: string
immutable: true
default: get_list
object_path:
type: string
immutable: true
default: vrrpa
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_vrrpa_v21.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: get_vrrpa_v21
runner_type: python-script
description: get configuration of VRRPA
enabled: true
entry_point: ax_action_runner.py
parameters:
action:
type: string
immutable: true
default: get
object_path:
type: string
immutable: true
default: vrrpa.vrrpa_global
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.9.0
version: 1.10.0
author: Hiroyasu OHYAMA
email: user.localhost2000@gmail.com
python_versions:
Expand Down
Loading