Skip to content

Commit 304d2b3

Browse files
Merge pull request #25 from hinashi/fixed/list_slb_v21
Fixed failed action of list slb on v2.1
2 parents 7d1b5d2 + 414d5d3 commit 304d2b3

File tree

4 files changed

+89
-0
lines changed

4 files changed

+89
-0
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## v1.2.0
44
* Add `specified_target` parameter to all actions.
55
* Added actions to operate IP address of NAT pool
6+
* Fixed failed action of list slb on v2.1
67

78
## v1.1.0
89

actions/list_slb_servers_v21.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
name: list_slb_servers_v21
3+
runner_type: python-script
4+
description: lists servers which are registered in SLB
5+
enabled: true
6+
entry_point: ax_action_runner.py
7+
parameters:
8+
action:
9+
type: string
10+
immutable: true
11+
default: all
12+
object_path:
13+
type: string
14+
immutable: true
15+
default: slb.server
16+
name:
17+
type: string
18+
immutable: true
19+
default: ''
20+
one_target:
21+
type: boolean
22+
immutable: true
23+
default: false
24+
appliance:
25+
type: string
26+
description: The appliance information to connect, which is specified at the 'appliance' parameter in the configuration.
27+
specified_target:
28+
type: object
29+
description: "Specify the target dynamically, (key: 'target', 'api_version', 'userid', 'passwd')"
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
name: list_slb_service_groups_v21
3+
runner_type: python-script
4+
description: lists ServiceGroup entries which are registered in SLB
5+
enabled: true
6+
entry_point: ax_action_runner.py
7+
parameters:
8+
action:
9+
type: string
10+
immutable: true
11+
default: all
12+
object_path:
13+
type: string
14+
immutable: true
15+
default: slb.service_group
16+
name:
17+
type: string
18+
immutable: true
19+
default: ''
20+
one_target:
21+
type: boolean
22+
immutable: true
23+
default: false
24+
appliance:
25+
type: string
26+
description: The appliance information to connect, which is specified at the 'appliance' parameter in the configuration.
27+
specified_target:
28+
type: object
29+
description: "Specify the target dynamically, (key: 'target', 'api_version', 'userid', 'passwd')"
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
name: list_slb_virtual_servers_v21
3+
pack: acos
4+
runner_type: python-script
5+
description: list VirtualServers which are registered in the SLB
6+
enabled: true
7+
entry_point: ax_action_runner.py
8+
parameters:
9+
action:
10+
type: string
11+
immutable: true
12+
default: all
13+
object_path:
14+
type: string
15+
immutable: true
16+
default: slb.virtual_server
17+
name:
18+
type: string
19+
immutable: true
20+
default: ''
21+
one_target:
22+
type: boolean
23+
immutable: true
24+
default: false
25+
appliance:
26+
type: string
27+
description: The appliance information to connect, which is specified at the 'appliance' parameter in the configuration.
28+
specified_target:
29+
type: object
30+
description: "Specify the target dynamically, (key: 'target', 'api_version', 'userid', 'passwd')"

0 commit comments

Comments
 (0)