Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added action for show slb http-templates #32

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

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

## v1.7.0
* Added an action (update_slb_virtul_server) to update SLB virtual-server.

Expand Down
29 changes: 29 additions & 0 deletions actions/list_slb_http_templates_v21.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
name: list_slb_http_templates_v21
runner_type: python-script
description: lists HTTP Template entries which are registered in SLB
enabled: true
entry_point: ax_action_runner.py
parameters:
action:
type: string
immutable: true
default: all
object_path:
type: string
immutable: true
default: slb.template.http_templates
name:
type: string
immutable: true
default: ''
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.7.0
version: 1.9.0
author: Hiroyasu OHYAMA
email: user.localhost2000@gmail.com
python_versions:
Expand Down
Loading