2018-02-05 21:05:59 +00:00
|
|
|
package client // import "github.com/docker/docker/client"
|
2016-09-06 18:46:37 +00:00
|
|
|
|
|
|
|
import (
|
2018-04-19 22:30:59 +00:00
|
|
|
"context"
|
2016-09-06 18:46:37 +00:00
|
|
|
"encoding/json"
|
|
|
|
|
|
|
|
"github.com/docker/docker/api/types/swarm"
|
|
|
|
)
|
|
|
|
|
2016-12-20 11:14:41 +00:00
|
|
|
// SwarmInspect inspects the swarm.
|
2016-09-06 18:46:37 +00:00
|
|
|
func (cli *Client) SwarmInspect(ctx context.Context) (swarm.Swarm, error) {
|
|
|
|
serverResp, err := cli.get(ctx, "/swarm", nil, nil)
|
2019-02-11 12:26:12 +00:00
|
|
|
defer ensureReaderClosed(serverResp)
|
2016-09-06 18:46:37 +00:00
|
|
|
if err != nil {
|
|
|
|
return swarm.Swarm{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var response swarm.Swarm
|
|
|
|
err = json.NewDecoder(serverResp.body).Decode(&response)
|
|
|
|
return response, err
|
|
|
|
}
|