open-vault/api/help.go

31 lines
663 B
Go
Raw Normal View History

2015-04-03 05:21:33 +00:00
package api
2015-04-03 05:26:34 +00:00
import (
"context"
2015-04-03 05:26:34 +00:00
"fmt"
)
2015-04-03 05:21:33 +00:00
// Help reads the help information for the given path.
2015-04-03 05:26:34 +00:00
func (c *Client) Help(path string) (*Help, error) {
2015-04-03 05:42:05 +00:00
r := c.NewRequest("GET", fmt.Sprintf("/v1/%s", path))
r.Params.Add("help", "1")
ctx, cancelFunc := context.WithCancel(context.Background())
defer cancelFunc()
resp, err := c.RawRequestWithContext(ctx, r)
2015-04-03 05:26:34 +00:00
if err != nil {
return nil, err
}
defer resp.Body.Close()
var result Help
err = resp.DecodeJSON(&result)
return &result, err
}
type Help struct {
Help string `json:"help"`
SeeAlso []string `json:"see_also"`
OpenAPI map[string]interface{} `json:"openapi"`
2015-04-03 05:21:33 +00:00
}