Class: DockerEngineAPI::Models::ImageListParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- DockerEngineAPI::Models::ImageListParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/docker_engine_api/models/image_list_params.rb
Overview
Instance Attribute Summary collapse
-
#all ⇒ Boolean?
Show all images.
-
#digests ⇒ Boolean?
Show digest information as a
RepoDigestsfield on each image. -
#filters ⇒ String?
A JSON encoded value of the filters (a
map[string][]string) to process on the images list. -
#manifests ⇒ Boolean?
Include
Manifestsin the image summary. -
#shared_size ⇒ Boolean?
Compute and show shared size as a
SharedSizefield on each image.
Attributes included from Internal::Type::RequestParameters
Instance Method Summary collapse
-
#initialize(all: nil, digests: nil, filters: nil, manifests: nil, shared_size: nil, request_options: {}) ⇒ Object
constructor
Some parameter documentations has been truncated, see ImageListParams for more details.
Methods included from Internal::Type::RequestParameters::Converter
Methods included from Internal::Type::RequestParameters
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, inspect, #inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(all: nil, digests: nil, filters: nil, manifests: nil, shared_size: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see DockerEngineAPI::Models::ImageListParams for more details.
|
|
# File 'lib/docker_engine_api/models/image_list_params.rb', line 51
|
Instance Attribute Details
#all ⇒ Boolean?
Show all images. Only images from a final layer (no children) are shown by default.
15 |
# File 'lib/docker_engine_api/models/image_list_params.rb', line 15 optional :all, DockerEngineAPI::Internal::Type::Boolean |
#digests ⇒ Boolean?
Show digest information as a RepoDigests field on each image.
21 |
# File 'lib/docker_engine_api/models/image_list_params.rb', line 21 optional :digests, DockerEngineAPI::Internal::Type::Boolean |
#filters ⇒ String?
A JSON encoded value of the filters (a map[string][]string) to process on the images list.
Available filters:
-
before=(‘<image-name>‘, `<image id>` or `<image@digest>`) -
‘dangling=true`
-
‘label=key` or `label=“key=value”` of an image label
-
reference=(‘<image-name>‘) -
since=(‘<image-name>‘, `<image id>` or `<image@digest>`) -
‘until=<timestamp>`
37 |
# File 'lib/docker_engine_api/models/image_list_params.rb', line 37 optional :filters, String |
#manifests ⇒ Boolean?
Include Manifests in the image summary.
43 |
# File 'lib/docker_engine_api/models/image_list_params.rb', line 43 optional :manifests, DockerEngineAPI::Internal::Type::Boolean |
#shared_size ⇒ Boolean?
Compute and show shared size as a SharedSize field on each image.
49 |
# File 'lib/docker_engine_api/models/image_list_params.rb', line 49 optional :shared_size, DockerEngineAPI::Internal::Type::Boolean |