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
|
|
|
|
}
|
|
|
|
|
|
|
|
// CheckpointAPIClient defines API client methods for the checkpoints
|
|
|
|
type CheckpointAPIClient interface {
|
|
|
|
CheckpointCreate(ctx context.Context, container string, options types.CheckpointCreateOptions) error
|
2016-09-19 12:01:16 -04: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 14:46:37 -04:00
|
|
|
}
|