Versions in this module Expand all Collapse all v0 v0.4.0 Jan 10, 2017 Changes in this version + type NopClient struct + func NewNopClient() *NopClient + func (client *NopClient) CheckpointCreate(ctx context.Context, container string, options types.CheckpointCreateOptions) error + func (client *NopClient) CheckpointDelete(ctx context.Context, container string, checkpointID string) error + func (client *NopClient) CheckpointList(ctx context.Context, container string) ([]types.Checkpoint, error) + func (client *NopClient) ClientVersion() string + func (client *NopClient) ContainerAttach(ctx context.Context, container string, options types.ContainerAttachOptions) (types.HijackedResponse, error) + func (client *NopClient) ContainerCommit(ctx context.Context, container string, options types.ContainerCommitOptions) (types.ContainerCommitResponse, error) + func (client *NopClient) ContainerCreate(ctx context.Context, config *container.Config, ...) (types.ContainerCreateResponse, error) + func (client *NopClient) ContainerDiff(ctx context.Context, container string) ([]types.ContainerChange, error) + func (client *NopClient) ContainerExecAttach(ctx context.Context, execID string, config types.ExecConfig) (types.HijackedResponse, error) + func (client *NopClient) ContainerExecCreate(ctx context.Context, container string, config types.ExecConfig) (types.ContainerExecCreateResponse, error) + func (client *NopClient) ContainerExecInspect(ctx context.Context, execID string) (types.ContainerExecInspect, error) + func (client *NopClient) ContainerExecResize(ctx context.Context, execID string, options types.ResizeOptions) error + func (client *NopClient) ContainerExecStart(ctx context.Context, execID string, config types.ExecStartCheck) error + func (client *NopClient) ContainerExport(ctx context.Context, container string) (io.ReadCloser, error) + func (client *NopClient) ContainerInspect(ctx context.Context, container string) (types.ContainerJSON, error) + func (client *NopClient) ContainerInspectWithRaw(ctx context.Context, container string, getSize bool) (types.ContainerJSON, []byte, error) + func (client *NopClient) ContainerKill(ctx context.Context, container string, signal string) error + func (client *NopClient) ContainerList(ctx context.Context, options types.ContainerListOptions) ([]types.Container, error) + func (client *NopClient) ContainerLogs(ctx context.Context, container string, options types.ContainerLogsOptions) (io.ReadCloser, error) + func (client *NopClient) ContainerPause(ctx context.Context, container string) error + func (client *NopClient) ContainerRemove(ctx context.Context, container string, options types.ContainerRemoveOptions) error + func (client *NopClient) ContainerRename(ctx context.Context, container, newContainerName string) error + func (client *NopClient) ContainerResize(ctx context.Context, container string, options types.ResizeOptions) error + func (client *NopClient) ContainerRestart(ctx context.Context, container string, timeout *time.Duration) error + func (client *NopClient) ContainerStart(ctx context.Context, container string, options types.ContainerStartOptions) error + func (client *NopClient) ContainerStatPath(ctx context.Context, container, path string) (types.ContainerPathStat, error) + func (client *NopClient) ContainerStats(ctx context.Context, container string, stream bool) (types.ContainerStats, error) + func (client *NopClient) ContainerStop(ctx context.Context, container string, timeout *time.Duration) error + func (client *NopClient) ContainerTop(ctx context.Context, container string, arguments []string) (types.ContainerProcessList, error) + func (client *NopClient) ContainerUnpause(ctx context.Context, container string) error + func (client *NopClient) ContainerUpdate(ctx context.Context, container string, updateConfig container.UpdateConfig) (types.ContainerUpdateResponse, error) + func (client *NopClient) ContainerWait(ctx context.Context, container string) (int, error) + func (client *NopClient) ContainersPrune(ctx context.Context, cfg types.ContainersPruneConfig) (types.ContainersPruneReport, error) + func (client *NopClient) CopyFromContainer(ctx context.Context, container, srcPath string) (io.ReadCloser, types.ContainerPathStat, error) + func (client *NopClient) CopyToContainer(ctx context.Context, container, path string, content io.Reader, ...) error + func (client *NopClient) DiskUsage(ctx context.Context) (types.DiskUsage, error) + func (client *NopClient) Events(ctx context.Context, options types.EventsOptions) (<-chan events.Message, <-chan error) + func (client *NopClient) ImageBuild(ctx context.Context, context io.Reader, options types.ImageBuildOptions) (types.ImageBuildResponse, error) + func (client *NopClient) ImageCreate(ctx context.Context, parentReference string, options types.ImageCreateOptions) (io.ReadCloser, error) + func (client *NopClient) ImageHistory(ctx context.Context, image string) ([]types.ImageHistory, error) + func (client *NopClient) ImageImport(ctx context.Context, source types.ImageImportSource, ref string, ...) (io.ReadCloser, error) + func (client *NopClient) ImageInspectWithRaw(ctx context.Context, image string) (types.ImageInspect, []byte, error) + func (client *NopClient) ImageList(ctx context.Context, options types.ImageListOptions) ([]types.Image, error) + func (client *NopClient) ImageLoad(ctx context.Context, input io.Reader, quiet bool) (types.ImageLoadResponse, error) + func (client *NopClient) ImagePull(ctx context.Context, ref string, options types.ImagePullOptions) (io.ReadCloser, error) + func (client *NopClient) ImagePush(ctx context.Context, ref string, options types.ImagePushOptions) (io.ReadCloser, error) + func (client *NopClient) ImageRemove(ctx context.Context, image string, options types.ImageRemoveOptions) ([]types.ImageDelete, error) + func (client *NopClient) ImageSave(ctx context.Context, images []string) (io.ReadCloser, error) + func (client *NopClient) ImageSearch(ctx context.Context, term string, options types.ImageSearchOptions) ([]registry.SearchResult, error) + func (client *NopClient) ImageTag(ctx context.Context, image, ref string) error + func (client *NopClient) ImagesPrune(ctx context.Context, cfg types.ImagesPruneConfig) (types.ImagesPruneReport, error) + func (client *NopClient) Info(ctx context.Context) (types.Info, error) + func (client *NopClient) NetworkConnect(ctx context.Context, networkID, container string, ...) error + func (client *NopClient) NetworkCreate(ctx context.Context, name string, options types.NetworkCreate) (types.NetworkCreateResponse, error) + func (client *NopClient) NetworkDisconnect(ctx context.Context, networkID, container string, force bool) error + func (client *NopClient) NetworkInspect(ctx context.Context, networkID string) (types.NetworkResource, error) + func (client *NopClient) NetworkInspectWithRaw(ctx context.Context, networkID string) (types.NetworkResource, []byte, error) + func (client *NopClient) NetworkList(ctx context.Context, options types.NetworkListOptions) ([]types.NetworkResource, error) + func (client *NopClient) NetworkRemove(ctx context.Context, networkID string) error + func (client *NopClient) RegistryLogin(ctx context.Context, auth types.AuthConfig) (types.AuthResponse, error) + func (client *NopClient) ServerVersion(ctx context.Context) (types.Version, error) + func (client *NopClient) UpdateClientVersion(v string) + func (client *NopClient) VolumeCreate(ctx context.Context, options types.VolumeCreateRequest) (types.Volume, error) + func (client *NopClient) VolumeInspect(ctx context.Context, volumeID string) (types.Volume, error) + func (client *NopClient) VolumeInspectWithRaw(ctx context.Context, volumeID string) (types.Volume, []byte, error) + func (client *NopClient) VolumeList(ctx context.Context, filter filters.Args) (types.VolumesListResponse, error) + func (client *NopClient) VolumeRemove(ctx context.Context, volumeID string, force bool) error + func (client *NopClient) VolumesPrune(ctx context.Context, cfg types.VolumesPruneConfig) (types.VolumesPruneReport, error)