Skip to content

Commit 97aa130

Browse files
Merge pull request #27 from hinashi/feature/list_template
Added actions to get slb template lists
2 parents 930d6ec + 2b37017 commit 97aa130

File tree

4 files changed

+63
-1
lines changed

4 files changed

+63
-1
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## v1.4.0
4+
5+
* Added actions to get slb template lists.
6+
37
## v1.3.0
48

59
* Add `specified_target` parameter to all actions.
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
name: list_slb_policy_templates_v21
3+
runner_type: python-script
4+
description: lists Policy Template 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.template.policy_templates
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')"

actions/list_slb_templates.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
name: list_slb_templates
3+
runner_type: python-script
4+
description: lists Template 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: get
12+
object_path:
13+
type: string
14+
immutable: true
15+
default: slb.template.templates
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')"

pack.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ keywords:
77
- load balancer
88
- ADC
99
- network
10-
version: 1.3.0
10+
version: 1.4.0
1111
author: Hiroyasu OHYAMA
1212
1313
python_versions:

0 commit comments

Comments
 (0)