konsorten / zevenet-lb-go

Zevenet Loadbalancer API for Go

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Zevenet Loadbalancer for Go

This library provides access to the Zevenet loadbalancer using its ZAPI (REST API) of v3.1.

It is tested using the Zevenet REST API v3.1 (both Community Edition 5.0 and Enterprise Edition 5.2).

Click here to open the GoDoc documentation.

Usage

To use the API, simply create a new session:

import zevenet "github.com/konsorten/zevenet-lb-go"

func main() {
    session, _ := zevenet.Connect("myloadbalancer:444", "zapi-key", nil)

    version, _ := session.GetSystemVersion()
}

ZAPI Key

The API key for the Zevenet CE API can be retrieved using the web interface:

https://myloadbalancer:444/#/system/users/zapi

If the key is empty, click the Generate Random Key button and Apply.

Authors

The library is sponsored by the marvin + konsorten GmbH.

It is loosely based on the go-bigip package by Scott Ware (and others).

We thank all the authors who provided code to this library:

  • André Möller
  • Felix Kollmann

License

(The MIT License)

Copyright (c) 2018 marvin + konsorten GmbH (open-source@konsorten.de)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Zevenet Loadbalancer API for Go

License:MIT License


Languages

Language:Go 100.0%