-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from userlocalhost/feature/action/update_slb_v…
…irtul_server Added an action (update_slb_virtul_server) to update SLB virtual-server
- Loading branch information
Showing
3 changed files
with
45 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
# Changelog | ||
|
||
## v1.7.0 | ||
* Added an action (update_slb_virtul_server) to update SLB virtual-server. | ||
|
||
## v1.6.0 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
name: update_slb_virtual_server | ||
pack: acos | ||
runner_type: python-script | ||
description: Update SLB virtual-server configuration | ||
enabled: true | ||
entry_point: ax_action_runner.py | ||
parameters: | ||
action: | ||
type: string | ||
immutable: true | ||
default: update | ||
object_path: | ||
type: string | ||
immutable: true | ||
default: slb.virtual_server | ||
one_target: | ||
type: boolean | ||
immutable: true | ||
default: true | ||
name: | ||
type: string | ||
description: the name of VirtualPort to be registered | ||
default: '' | ||
ip_address: | ||
type: string | ||
description: IP address to set target virtual-server | ||
vrid: | ||
type: integer | ||
description: VRID to set target virtual-server (1-31) | ||
port_list: | ||
type: array | ||
description: | | ||
Port information to set target virtual-server | ||
(c.f. https://acos.docs.a10networks.com/axapi/521/slb_virtual_server.html#port-list) | ||
appliance: | ||
type: string | ||
description: The appliance information to connect, which is specified at the 'appliance' parameter in the configuration. | ||
required: true | ||
specified_target: | ||
type: object | ||
description: "Specify the target dynamically, (key: 'target', 'api_version', 'userid', 'passwd')" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ keywords: | |
- load balancer | ||
- ADC | ||
- network | ||
version: 1.6.0 | ||
version: 1.7.0 | ||
author: Hiroyasu OHYAMA | ||
email: [email protected] | ||
python_versions: | ||
|