client/config_update.go
10273810
 package client
 
 import (
 	"net/url"
 	"strconv"
 
 	"github.com/docker/docker/api/types/swarm"
 	"golang.org/x/net/context"
 )
 
4a98f9ef
 // ConfigUpdate attempts to update a Config
10273810
 func (cli *Client) ConfigUpdate(ctx context.Context, id string, version swarm.Version, config swarm.ConfigSpec) error {
1401342f
 	if err := cli.NewVersionError("1.30", "config update"); err != nil {
 		return err
 	}
10273810
 	query := url.Values{}
 	query.Set("version", strconv.FormatUint(version.Index, 10))
 	resp, err := cli.post(ctx, "/configs/"+id+"/update", query, config, nil)
 	ensureReaderClosed(resp)
 	return err
 }