mirror of
https://github.com/strongdm/comply
synced 2024-11-15 04:14:55 +00:00
20 lines
438 B
Go
20 lines
438 B
Go
package client
|
|
|
|
import (
|
|
"net/url"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// PluginDisable disables a plugin
|
|
func (cli *Client) PluginDisable(ctx context.Context, name string, options types.PluginDisableOptions) error {
|
|
query := url.Values{}
|
|
if options.Force {
|
|
query.Set("force", "1")
|
|
}
|
|
resp, err := cli.post(ctx, "/plugins/"+name+"/disable", query, nil, nil)
|
|
ensureReaderClosed(resp)
|
|
return err
|
|
}
|