mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-18 00:47:48 +08:00

full diff: https://github.com/docker/docker/compare/v28.0.0-rc.1...v28.0.0-rc.2 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
38 lines
892 B
Go
38 lines
892 B
Go
package client // import "github.com/docker/docker/client"
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"encoding/json"
|
|
"io"
|
|
|
|
"github.com/docker/docker/api/types/swarm"
|
|
)
|
|
|
|
// SecretInspectWithRaw returns the secret information with raw data
|
|
func (cli *Client) SecretInspectWithRaw(ctx context.Context, id string) (swarm.Secret, []byte, error) {
|
|
id, err := trimID("secret", id)
|
|
if err != nil {
|
|
return swarm.Secret{}, nil, err
|
|
}
|
|
if err := cli.NewVersionError(ctx, "1.25", "secret inspect"); err != nil {
|
|
return swarm.Secret{}, nil, err
|
|
}
|
|
resp, err := cli.get(ctx, "/secrets/"+id, nil, nil)
|
|
defer ensureReaderClosed(resp)
|
|
if err != nil {
|
|
return swarm.Secret{}, nil, err
|
|
}
|
|
|
|
body, err := io.ReadAll(resp.Body)
|
|
if err != nil {
|
|
return swarm.Secret{}, nil, err
|
|
}
|
|
|
|
var secret swarm.Secret
|
|
rdr := bytes.NewReader(body)
|
|
err = json.NewDecoder(rdr).Decode(&secret)
|
|
|
|
return secret, body, err
|
|
}
|