mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com> Signed-off-by: Austin Vazquez <austin.vazquez@docker.com>
25 lines
617 B
Go
25 lines
617 B
Go
package client
|
|
|
|
import "github.com/moby/moby/api/types/image"
|
|
|
|
// ImageListOptions holds parameters to list images with.
|
|
type ImageListOptions struct {
|
|
// All controls whether all images in the graph are filtered, or just
|
|
// the heads.
|
|
All bool
|
|
|
|
// Filters is a JSON-encoded set of filter arguments.
|
|
Filters Filters
|
|
|
|
// SharedSize indicates whether the shared size of images should be computed.
|
|
SharedSize bool
|
|
|
|
// Manifests indicates whether the image manifests should be returned.
|
|
Manifests bool
|
|
}
|
|
|
|
// ImageListResult holds the result from ImageList.
|
|
type ImageListResult struct {
|
|
Items []image.Summary
|
|
}
|