2016-09-06 18:46:37 +00:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/docker/docker/api/types"
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
)
|
|
|
|
|
2016-10-06 14:09:54 +00:00
|
|
|
type apiClientExperimental interface {
|
2016-09-06 18:46:37 +00:00
|
|
|
CheckpointAPIClient
|
|
|
|
}
|
|
|
|
|
|
|
|
// CheckpointAPIClient defines API client methods for the checkpoints
|
|
|
|
type CheckpointAPIClient interface {
|
|
|
|
CheckpointCreate(ctx context.Context, container string, options types.CheckpointCreateOptions) error
|
2016-09-19 16:01:16 +00:00
|
|
|
CheckpointDelete(ctx context.Context, container string, options types.CheckpointDeleteOptions) error
|
|
|
|
CheckpointList(ctx context.Context, container string, options types.CheckpointListOptions) ([]types.Checkpoint, error)
|
2016-09-06 18:46:37 +00:00
|
|
|
}
|