vendor new client and api

Signed-off-by: Riyaz Faizullabhoy <riyaz.faizullabhoy@docker.com>
This commit is contained in:
Riyaz Faizullabhoy
2017-04-27 11:21:47 -07:00
parent 4694f5a7ec
commit fcdfe5c356
312 changed files with 16204 additions and 4839 deletions

12
vendor/github.com/docker/docker/client/plugin_set.go generated vendored Normal file
View File

@@ -0,0 +1,12 @@
package client
import (
"golang.org/x/net/context"
)
// PluginSet modifies settings for an existing plugin
func (cli *Client) PluginSet(ctx context.Context, name string, args []string) error {
resp, err := cli.post(ctx, "/plugins/"+name+"/set", nil, args, nil)
ensureReaderClosed(resp)
return err
}