Class: Fog::Compute::OpenStack::Images
- Inherits:
-
OpenStack::Collection
- Object
- Fog::Collection
- OpenStack::Collection
- Fog::Compute::OpenStack::Images
- Defined in:
- lib/fog/compute/openstack/models/images.rb
Instance Attribute Summary
Attributes inherited from OpenStack::Collection
Instance Method Summary collapse
- #all(filters_arg = filters) ⇒ Object
- #get(image_id) ⇒ Object
-
#initialize(attributes) ⇒ Images
constructor
A new instance of Images.
Methods inherited from OpenStack::Collection
#destroy, #find_by_id, #load_response, #summary
Constructor Details
#initialize(attributes) ⇒ Images
Returns a new instance of Images.
14 15 16 17 |
# File 'lib/fog/compute/openstack/models/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/compute/openstack/models/images.rb', line 19 def all(filters_arg = filters) filters = filters_arg data = service.list_images_detail(filters) images = load_response(data, 'images') if server replace(select { |image| image.server_id == server.id }) end images end |