Class: PodmanImageFilter
- Inherits:
-
Object
- Object
- PodmanImageFilter
- Defined in:
- lib/inspec-podman-resources/resources/podman.rb
Overview
class for podman.images plural resource
Instance Attribute Summary collapse
-
#images ⇒ Object
readonly
Returns the value of attribute images.
Instance Method Summary collapse
-
#initialize(images) ⇒ PodmanImageFilter
constructor
A new instance of PodmanImageFilter.
- #resource_id ⇒ Object
- #to_s ⇒ Object
Constructor Details
#initialize(images) ⇒ PodmanImageFilter
Returns a new instance of PodmanImageFilter.
251 252 253 |
# File 'lib/inspec-podman-resources/resources/podman.rb', line 251 def initialize(images) @images = images end |
Instance Attribute Details
#images ⇒ Object (readonly)
Returns the value of attribute images.
250 251 252 |
# File 'lib/inspec-podman-resources/resources/podman.rb', line 250 def images @images end |
Instance Method Details
#resource_id ⇒ Object
259 260 261 |
# File 'lib/inspec-podman-resources/resources/podman.rb', line 259 def resource_id "Podman Images" end |
#to_s ⇒ Object
255 256 257 |
# File 'lib/inspec-podman-resources/resources/podman.rb', line 255 def to_s "Podman Images" end |