mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
1401342f46
The Docker CLI already performs version-checks when running commands, but other clients consuming the API client may not do so. This patch adds a version check to various client functions. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
13 lines
339 B
Go
13 lines
339 B
Go
package client
|
|
|
|
import "golang.org/x/net/context"
|
|
|
|
// SecretRemove removes a Secret.
|
|
func (cli *Client) SecretRemove(ctx context.Context, id string) error {
|
|
if err := cli.NewVersionError("1.25", "secret remove"); err != nil {
|
|
return err
|
|
}
|
|
resp, err := cli.delete(ctx, "/secrets/"+id, nil, nil)
|
|
ensureReaderClosed(resp)
|
|
return err
|
|
}
|