2018-02-05 21:05:59 +00:00
|
|
|
package client // import "github.com/docker/docker/client"
|
2017-03-15 22:04:32 +00:00
|
|
|
|
|
|
|
import (
|
2018-04-19 22:30:59 +00:00
|
|
|
"context"
|
2017-03-15 22:04:32 +00:00
|
|
|
"encoding/json"
|
|
|
|
"net/url"
|
|
|
|
|
|
|
|
"github.com/docker/docker/api/types"
|
|
|
|
"github.com/docker/docker/api/types/filters"
|
|
|
|
"github.com/docker/docker/api/types/swarm"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ConfigList returns the list of configs.
|
|
|
|
func (cli *Client) ConfigList(ctx context.Context, options types.ConfigListOptions) ([]swarm.Config, error) {
|
2023-09-12 12:08:54 +00:00
|
|
|
if err := cli.NewVersionError(ctx, "1.30", "config list"); err != nil {
|
2017-06-07 16:09:07 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2017-03-15 22:04:32 +00:00
|
|
|
query := url.Values{}
|
|
|
|
|
|
|
|
if options.Filters.Len() > 0 {
|
2017-09-26 11:59:45 +00:00
|
|
|
filterJSON, err := filters.ToJSON(options.Filters)
|
2017-03-15 22:04:32 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
query.Set("filters", filterJSON)
|
|
|
|
}
|
|
|
|
|
|
|
|
resp, err := cli.get(ctx, "/configs", query, nil)
|
2019-02-11 12:26:12 +00:00
|
|
|
defer ensureReaderClosed(resp)
|
2017-03-15 22:04:32 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var configs []swarm.Config
|
|
|
|
err = json.NewDecoder(resp.body).Decode(&configs)
|
|
|
|
return configs, err
|
|
|
|
}
|