Categorygithub.com/udhos/a10-go-rest-client
module
0.0.0-20181120072316-fb69549e2127
Repository: https://github.com/udhos/a10-go-rest-client.git
Documentation: pkg.go.dev

# README

license GoDoc Go Report Card

a10-go-rest-client

A10 golang rest client

Build

git clone https://github.com/udhos/a10-go-rest-client ;# clone outside of GOPATH
cd a10-go-rest-client
go test ./a10go
go install ./a10go
go install ./examples/...

Usage

import "github.com/udhos/a10-go-rest-client/a10go"

// (...)

options := a10go.Options{Debug: true} // client options
c := a10go.New(host, options) // create api client

errLogin := c.Login(user, pass) // open session
if errLogin != nil {
    fmt.Printf("login failure: %v", errLogin)
    return
}
vServers := c.VirtualServerList()

c.Logout() // close session

See GoDoc: http://godoc.org/github.com/udhos/a10-go-rest-client/a10go

See examples:

# Packages

No description provided by the author
No description provided by the author