mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-11-01 10:27:55 +00:00
Generated largely from the specified config; small parts taken from `docker image inspect`, such as the command line. Renamed some of the yaml keys to match the OCI spec rather than Docker Compose as we decided they are more readable, no more underscores. Add some extra functionality - tmpfs specification - fully general mount specification - no new privileges can be specified now For nostalgic reasons, using engine-api to talk to the docker cli as we only need an old API version, and it is nice and easy to vendor... Signed-off-by: Justin Cormack <justin.cormack@docker.com>
38 lines
1.3 KiB
Go
38 lines
1.3 KiB
Go
// +build experimental
|
|
|
|
package client
|
|
|
|
import (
|
|
"github.com/docker/engine-api/types"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// APIClient is an interface that clients that talk with a docker server must implement.
|
|
type APIClient interface {
|
|
CommonAPIClient
|
|
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) 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
|
|
PluginInspect(ctx context.Context, name string) (*types.Plugin, error)
|
|
}
|
|
|
|
// Ensure that Client always implements APIClient.
|
|
var _ APIClient = &Client{}
|