2016-09-06 14:46:37 -04:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/docker/docker/api/types"
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
)
|
|
|
|
|
2016-10-06 10:09:54 -04:00
|
|
|
type apiClientExperimental interface {
|
2016-09-06 14:46:37 -04:00
|
|
|
CheckpointAPIClient
|
|
|
|
PluginAPIClient
|
|
|
|
}
|
|
|
|
|
|
|
|
// CheckpointAPIClient defines API client methods for the checkpoints
|
|
|
|
type CheckpointAPIClient interface {
|
|
|
|
CheckpointCreate(ctx context.Context, container string, options types.CheckpointCreateOptions) error
|
|
|
|
CheckpointDelete(ctx context.Context, container string, checkpointID string) error
|
|
|
|
CheckpointList(ctx context.Context, container string) ([]types.Checkpoint, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
// PluginAPIClient defines API client methods for the plugins
|
|
|
|
type PluginAPIClient interface {
|
|
|
|
PluginList(ctx context.Context) (types.PluginsListResponse, error)
|
|
|
|
PluginRemove(ctx context.Context, name string, options types.PluginRemoveOptions) error
|
|
|
|
PluginEnable(ctx context.Context, name string) error
|
|
|
|
PluginDisable(ctx context.Context, name string) error
|
|
|
|
PluginInstall(ctx context.Context, name string, options types.PluginInstallOptions) error
|
|
|
|
PluginPush(ctx context.Context, name string, registryAuth string) error
|
|
|
|
PluginSet(ctx context.Context, name string, args []string) error
|
|
|
|
PluginInspectWithRaw(ctx context.Context, name string) (*types.Plugin, []byte, error)
|
|
|
|
}
|