mirror of
				https://github.com/moby/moby.git
				synced 2022-11-09 12:21:53 -05:00 
			
		
		
		
	This moves the engine-api client package to `/docker/docker/client`. Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			469 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			469 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package client
 | 
						|
 | 
						|
import (
 | 
						|
	"net/url"
 | 
						|
	"strconv"
 | 
						|
 | 
						|
	"github.com/docker/docker/api/types/swarm"
 | 
						|
	"golang.org/x/net/context"
 | 
						|
)
 | 
						|
 | 
						|
// NodeUpdate updates a Node.
 | 
						|
func (cli *Client) NodeUpdate(ctx context.Context, nodeID string, version swarm.Version, node swarm.NodeSpec) error {
 | 
						|
	query := url.Values{}
 | 
						|
	query.Set("version", strconv.FormatUint(version.Index, 10))
 | 
						|
	resp, err := cli.post(ctx, "/nodes/"+nodeID+"/update", query, node, nil)
 | 
						|
	ensureReaderClosed(resp)
 | 
						|
	return err
 | 
						|
}
 |