2018-02-05 16:05:59 -05:00
|
|
|
package client // import "github.com/docker/docker/client"
|
2017-03-15 18:04:32 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2018-04-19 18:30:59 -04:00
|
|
|
"context"
|
2017-03-15 18:04:32 -04:00
|
|
|
"encoding/json"
|
|
|
|
"io/ioutil"
|
|
|
|
|
|
|
|
"github.com/docker/docker/api/types/swarm"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ConfigInspectWithRaw returns the config information with raw data
|
|
|
|
func (cli *Client) ConfigInspectWithRaw(ctx context.Context, id string) (swarm.Config, []byte, error) {
|
2018-01-30 07:35:22 -05:00
|
|
|
if id == "" {
|
|
|
|
return swarm.Config{}, nil, objectNotFoundError{object: "config", id: id}
|
|
|
|
}
|
2017-06-07 12:09:07 -04:00
|
|
|
if err := cli.NewVersionError("1.30", "config inspect"); err != nil {
|
|
|
|
return swarm.Config{}, nil, err
|
|
|
|
}
|
2017-03-15 18:04:32 -04:00
|
|
|
resp, err := cli.get(ctx, "/configs/"+id, nil, nil)
|
2019-02-11 07:26:12 -05:00
|
|
|
defer ensureReaderClosed(resp)
|
2017-03-15 18:04:32 -04:00
|
|
|
if err != nil {
|
2017-09-08 12:04:34 -04:00
|
|
|
return swarm.Config{}, nil, wrapResponseError(err, resp, "config", id)
|
2017-03-15 18:04:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
body, err := ioutil.ReadAll(resp.body)
|
|
|
|
if err != nil {
|
|
|
|
return swarm.Config{}, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var config swarm.Config
|
|
|
|
rdr := bytes.NewReader(body)
|
|
|
|
err = json.NewDecoder(rdr).Decode(&config)
|
|
|
|
|
|
|
|
return config, body, err
|
|
|
|
}
|