2018-02-05 21:05:59 +00:00
|
|
|
package client // import "github.com/docker/docker/client"
|
2017-03-15 22:04:32 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2018-04-19 22:30:59 +00:00
|
|
|
"context"
|
2017-03-15 22:04:32 +00:00
|
|
|
"encoding/json"
|
2021-08-24 10:10:50 +00:00
|
|
|
"io"
|
2017-03-15 22:04:32 +00:00
|
|
|
|
|
|
|
"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 12:35:22 +00:00
|
|
|
if id == "" {
|
|
|
|
return swarm.Config{}, nil, objectNotFoundError{object: "config", id: id}
|
|
|
|
}
|
2023-09-12 12:08:54 +00:00
|
|
|
if err := cli.NewVersionError(ctx, "1.30", "config inspect"); err != nil {
|
2017-06-07 16:09:07 +00:00
|
|
|
return swarm.Config{}, nil, err
|
|
|
|
}
|
2017-03-15 22:04:32 +00:00
|
|
|
resp, err := cli.get(ctx, "/configs/"+id, nil, nil)
|
2019-02-11 12:26:12 +00:00
|
|
|
defer ensureReaderClosed(resp)
|
2017-03-15 22:04:32 +00:00
|
|
|
if err != nil {
|
2022-03-20 15:55:42 +00:00
|
|
|
return swarm.Config{}, nil, err
|
2017-03-15 22:04:32 +00:00
|
|
|
}
|
|
|
|
|
2021-08-24 10:10:50 +00:00
|
|
|
body, err := io.ReadAll(resp.body)
|
2017-03-15 22:04:32 +00:00
|
|
|
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
|
|
|
|
}
|