mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
81bb9978ab
And fix remove calls to return a notFound error Signed-off-by: Daniel Nephin <dnephin@docker.com>
46 lines
1.4 KiB
Go
46 lines
1.4 KiB
Go
package client
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"io/ioutil"
|
|
"net/url"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// NetworkInspect returns the information for a specific network configured in the docker host.
|
|
func (cli *Client) NetworkInspect(ctx context.Context, networkID string, options types.NetworkInspectOptions) (types.NetworkResource, error) {
|
|
networkResource, _, err := cli.NetworkInspectWithRaw(ctx, networkID, options)
|
|
return networkResource, err
|
|
}
|
|
|
|
// NetworkInspectWithRaw returns the information for a specific network configured in the docker host and its raw representation.
|
|
func (cli *Client) NetworkInspectWithRaw(ctx context.Context, networkID string, options types.NetworkInspectOptions) (types.NetworkResource, []byte, error) {
|
|
var (
|
|
networkResource types.NetworkResource
|
|
resp serverResponse
|
|
err error
|
|
)
|
|
query := url.Values{}
|
|
if options.Verbose {
|
|
query.Set("verbose", "true")
|
|
}
|
|
if options.Scope != "" {
|
|
query.Set("scope", options.Scope)
|
|
}
|
|
resp, err = cli.get(ctx, "/networks/"+networkID, query, nil)
|
|
if err != nil {
|
|
return networkResource, nil, wrapResponseError(err, resp, "network", networkID)
|
|
}
|
|
defer ensureReaderClosed(resp)
|
|
|
|
body, err := ioutil.ReadAll(resp.body)
|
|
if err != nil {
|
|
return networkResource, nil, err
|
|
}
|
|
rdr := bytes.NewReader(body)
|
|
err = json.NewDecoder(rdr).Decode(&networkResource)
|
|
return networkResource, body, err
|
|
}
|