Skip to content

Commit eee29f0

Browse files
Merge pull request #34 from hinashi/feature/get_interface
Added action to get interface, vrrpa
2 parents 9e751d6 + e0651db commit eee29f0

File tree

6 files changed

+105
-1
lines changed

6 files changed

+105
-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.10.0
4+
* Added action to get interface.
5+
* Added action to get vrrpa.
6+
37
## v1.9.0
48
* Added an action (list_slb_http_templates) to show SLB http-template.
59

actions/get_interface.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
name: get_interface
3+
runner_type: python-script
4+
description: get configuration of IP address of Interface
5+
enabled: true
6+
entry_point: ax_action_runner.py
7+
parameters:
8+
action:
9+
type: string
10+
immutable: true
11+
default: get_list
12+
object_path:
13+
type: string
14+
immutable: true
15+
default: interface
16+
one_target:
17+
type: boolean
18+
immutable: true
19+
default: false
20+
appliance:
21+
type: string
22+
description: The appliance information to connect, which is specified at the 'appliance' parameter in the configuration.
23+
specified_target:
24+
type: object
25+
description: "Specify the target dynamically, (key: 'target', 'api_version', 'userid', 'passwd')"

actions/get_interface_ve_v21.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
name: get_interface_ve_v21
3+
runner_type: python-script
4+
description: get configuration of IP address of Interface
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: interface.virtual_ethernet
16+
one_target:
17+
type: boolean
18+
immutable: true
19+
default: false
20+
appliance:
21+
type: string
22+
description: The appliance information to connect, which is specified at the 'appliance' parameter in the configuration.
23+
specified_target:
24+
type: object
25+
description: "Specify the target dynamically, (key: 'target', 'api_version', 'userid', 'passwd')"

actions/get_vrrpa.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
name: get_vrrpa
3+
runner_type: python-script
4+
description: get configuration of VRRPA
5+
enabled: true
6+
entry_point: ax_action_runner.py
7+
parameters:
8+
action:
9+
type: string
10+
immutable: true
11+
default: get_list
12+
object_path:
13+
type: string
14+
immutable: true
15+
default: vrrpa
16+
one_target:
17+
type: boolean
18+
immutable: true
19+
default: false
20+
appliance:
21+
type: string
22+
description: The appliance information to connect, which is specified at the 'appliance' parameter in the configuration.
23+
specified_target:
24+
type: object
25+
description: "Specify the target dynamically, (key: 'target', 'api_version', 'userid', 'passwd')"

actions/get_vrrpa_v21.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
name: get_vrrpa_v21
3+
runner_type: python-script
4+
description: get configuration of VRRPA
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: vrrpa.vrrpa_global
16+
one_target:
17+
type: boolean
18+
immutable: true
19+
default: false
20+
appliance:
21+
type: string
22+
description: The appliance information to connect, which is specified at the 'appliance' parameter in the configuration.
23+
specified_target:
24+
type: object
25+
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.9.0
10+
version: 1.10.0
1111
author: Hiroyasu OHYAMA
1212
1313
python_versions:

0 commit comments

Comments
 (0)