2018-02-05 16:05:59 -05:00
|
|
|
package client // import "github.com/docker/docker/client"
|
2016-09-06 14:46:37 -04:00
|
|
|
|
|
|
|
import (
|
2018-04-19 18:30:59 -04:00
|
|
|
"context"
|
|
|
|
|
2016-09-06 14:46:37 -04:00
|
|
|
"github.com/docker/docker/api/types"
|
|
|
|
)
|
|
|
|
|
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
|
|
|
}
|