summaryrefslogtreecommitdiff
path: root/pkg/domain/entities/engine_image.go
blob: 0294c7129f66f328e98dee89aac78b0b6fd8f21c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package entities

import (
	"context"
)

type ImageEngine interface {
	Delete(ctx context.Context, nameOrId string, opts ImageDeleteOptions) (*ImageDeleteReport, error)
	Exists(ctx context.Context, nameOrId string) (*BoolReport, error)
	History(ctx context.Context, nameOrId string, opts ImageHistoryOptions) (*ImageHistoryReport, error)
	List(ctx context.Context, opts ImageListOptions) ([]*ImageSummary, error)
	Prune(ctx context.Context, opts ImagePruneOptions) (*ImagePruneReport, error)
}