open-nomad/vendor/github.com/hashicorp/consul/api
2017-05-30 15:11:32 -07:00
..
acl.go Update consul/api and fix tls handling 2017-05-30 15:11:32 -07:00
agent.go Update consul/api to support unix socket addrs 2017-05-08 11:57:04 -07:00
api.go Update consul/api and comment to custom http.Client 2017-05-30 15:11:32 -07:00
catalog.go Update consul/api and fix tls handling 2017-05-30 15:11:32 -07:00
coordinate.go Update consul/api to support unix socket addrs 2017-05-08 11:57:04 -07:00
event.go Using godeps to build 2016-02-12 10:02:16 -08:00
health.go Update consul/api and fix tls handling 2017-05-30 15:11:32 -07:00
kv.go Update consul/api and fix tls handling 2017-05-30 15:11:32 -07:00
lock.go Update consul/api and fix tls handling 2017-05-30 15:11:32 -07:00
operator.go Update consul/api to support unix socket addrs 2017-05-08 11:57:04 -07:00
operator_area.go Update consul/api to support unix socket addrs 2017-05-08 11:57:04 -07:00
operator_autopilot.go Update consul/api to support unix socket addrs 2017-05-08 11:57:04 -07:00
operator_keyring.go Update consul/api to support unix socket addrs 2017-05-08 11:57:04 -07:00
operator_raft.go Update consul/api to support unix socket addrs 2017-05-08 11:57:04 -07:00
prepared_query.go Vendor consul 2017-03-28 12:00:27 -07:00
raw.go Using godeps to build 2016-02-12 10:02:16 -08:00
README.md Using godeps to build 2016-02-12 10:02:16 -08:00
semaphore.go Update consul/api and fix tls handling 2017-05-30 15:11:32 -07:00
session.go Using godeps to build 2016-02-12 10:02:16 -08:00
snapshot.go vendor 2017-01-23 11:00:12 -08:00
status.go Using godeps to build 2016-02-12 10:02:16 -08:00

Consul API client

This package provides the api package which attempts to provide programmatic access to the full Consul API.

Currently, all of the Consul APIs included in version 0.6.0 are supported.

Documentation

The full documentation is available on Godoc

Usage

Below is an example of using the Consul client:

// Get a new client
client, err := api.NewClient(api.DefaultConfig())
if err != nil {
    panic(err)
}

// Get a handle to the KV API
kv := client.KV()

// PUT a new KV pair
p := &api.KVPair{Key: "foo", Value: []byte("test")}
_, err = kv.Put(p, nil)
if err != nil {
    panic(err)
}

// Lookup the pair
pair, _, err := kv.Get("foo", nil)
if err != nil {
    panic(err)
}
fmt.Printf("KV: %v", pair)