mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
1401342f46
The Docker CLI already performs version-checks when running commands, but other clients consuming the API client may not do so. This patch adds a version check to various client functions. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
25 lines
658 B
Go
25 lines
658 B
Go
package client
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
"github.com/docker/docker/api/types/swarm"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// ConfigCreate creates a new Config.
|
|
func (cli *Client) ConfigCreate(ctx context.Context, config swarm.ConfigSpec) (types.ConfigCreateResponse, error) {
|
|
var response types.ConfigCreateResponse
|
|
if err := cli.NewVersionError("1.30", "config create"); err != nil {
|
|
return response, err
|
|
}
|
|
resp, err := cli.post(ctx, "/configs/create", nil, config, nil)
|
|
if err != nil {
|
|
return response, err
|
|
}
|
|
|
|
err = json.NewDecoder(resp.body).Decode(&response)
|
|
ensureReaderClosed(resp)
|
|
return response, err
|
|
}
|