Class: Fog::Compute::OpenStack::Images
- Inherits:
-
Fog::Collection
- Object
- Array
- Fog::Collection
- Fog::Compute::OpenStack::Images
- Defined in:
- lib/fog/openstack/models/compute/images.rb
Instance Attribute Summary
Attributes inherited from Fog::Collection
Instance Method Summary collapse
- #all(filters = filters) ⇒ Object
- #get(image_id) ⇒ Object
-
#initialize(attributes) ⇒ Images
constructor
A new instance of Images.
Methods inherited from Fog::Collection
#clear, #create, #destroy, #inspect, #load, model, #model, #new, #reload, #table, #to_json
Methods included from Attributes::ClassMethods
#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes
Methods included from Fog::Core::DeprecatedConnectionAccessors
#connection, #connection=, #prepare_service_value
Methods included from Attributes::InstanceMethods
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one
Constructor Details
#initialize(attributes) ⇒ Images
Returns a new instance of Images.
16 17 18 19 |
# File 'lib/fog/openstack/models/compute/images.rb', line 16 def initialize(attributes) self.filters ||= {} super end |
Instance Method Details
#all(filters = filters) ⇒ Object
21 22 23 24 25 26 27 28 29 |
# File 'lib/fog/openstack/models/compute/images.rb', line 21 def all(filters = filters) self.filters = filters 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 |