summaryrefslogtreecommitdiff
path: root/pkg/bindings/system/types.go
blob: 16960b8170ab34d4491fc863f8d85ab24ce1e60c (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
27
28
29
30
31
32
33
34
package system

//go:generate go run ../generator/generator.go EventsOptions
// EventsOptions are optional options for monitoring events
type EventsOptions struct {
	Filters map[string][]string
	Since   *string
	Stream  *bool
	Until   *string
}

//go:generate go run ../generator/generator.go PruneOptions
// PruneOptions are optional options for pruning
type PruneOptions struct {
	All     *bool
	Filters map[string][]string
	Volumes *bool
}

//go:generate go run ../generator/generator.go VersionOptions
// VersionOptions are optional options for getting version info
type VersionOptions struct {
}

//go:generate go run ../generator/generator.go DiskOptions
// DiskOptions are optional options for getting storage consumption
type DiskOptions struct {
}

//go:generate go run ../generator/generator.go InfoOptions
// InfoOptions are optional options for getting info
// about libpod
type InfoOptions struct {
}