mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
This field was deprecated in [moby@cfcbfab] when this struct still lived
in the API. The field is no longer used, and we don't have to carry it
forward as part of the new client module.
[moby@cfcbfab]: cfcbfabb0f
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
20 lines
516 B
Go
20 lines
516 B
Go
package client
|
|
|
|
import "github.com/moby/moby/api/types/filters"
|
|
|
|
// 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.Args
|
|
|
|
// SharedSize indicates whether the shared size of images should be computed.
|
|
SharedSize bool
|
|
|
|
// Manifests indicates whether the image manifests should be returned.
|
|
Manifests bool
|
|
}
|