Class: Fog::Compute::OpenStack::Images
- Inherits:
-
Fog::Collection
- Object
- Fog::Collection
- Fog::Compute::OpenStack::Images
- Defined in:
- lib/fog/openstack/models/compute/images.rb
Instance Method Summary collapse
- #all(filters_arg = filters) ⇒ Object
- #get(image_id) ⇒ Object
-
#initialize(attributes) ⇒ Images
constructor
A new instance of Images.
Constructor Details
#initialize(attributes) ⇒ Images
Returns a new instance of Images.
14 15 16 17 |
# File 'lib/fog/openstack/models/compute/images.rb', line 14 def initialize(attributes) self.filters ||= {} super end |
Instance Method Details
#all(filters_arg = filters) ⇒ Object
19 20 21 22 23 24 25 26 27 |
# File 'lib/fog/openstack/models/compute/images.rb', line 19 def all(filters_arg = filters) filters = filters_arg data = service.list_images_detail(filters).body['images'] images = load(data) if server self.replace(self.select {|image| image.server_id == server.id}) end images end |