mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
7781a1bf0f
Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
30 lines
1.2 KiB
Go
30 lines
1.2 KiB
Go
package client
|
|
|
|
import (
|
|
"github.com/docker/docker/api/types"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
type apiClientExperimental interface {
|
|
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)
|
|
}
|