This moves the engine-api client package to `/docker/docker/client`.
Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
Upstream-commit: 3fff6acaa1
Component: cli
15 lines
302 B
Go
15 lines
302 B
Go
// +build experimental
|
|
|
|
package client
|
|
|
|
import (
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// PluginDisable disables a plugin
|
|
func (cli *Client) PluginDisable(ctx context.Context, name string) error {
|
|
resp, err := cli.post(ctx, "/plugins/"+name+"/disable", nil, nil, nil)
|
|
ensureReaderClosed(resp)
|
|
return err
|
|
}
|