summaryrefslogtreecommitdiff
path: root/pkg/domain/entities/engine_container.go
blob: d08f37d445d52107b871500800463b877bd23cfa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package entities

import (
	"context"
)

type ContainerEngine interface {
	ContainerRuntime
	PodRuntime
	VolumeRuntime
}

type ContainerRuntime interface {
	ContainerDelete(ctx context.Context, opts ContainerDeleteOptions) (*ContainerDeleteReport, error)
	ContainerPrune(ctx context.Context) (*ContainerPruneReport, error)
}

type PodRuntime interface {
	PodDelete(ctx context.Context, opts PodPruneOptions) (*PodDeleteReport, error)
	PodPrune(ctx context.Context) (*PodPruneReport, error)
}

type VolumeRuntime interface {
	VolumeDelete(ctx context.Context, opts VolumeDeleteOptions) (*VolumeDeleteReport, error)
	VolumePrune(ctx context.Context) (*VolumePruneReport, error)
}