Class: Fog::Compute::OpenStack::Images

Inherits:
Fog::Collection show all
Defined in:
lib/fog/openstack/models/compute/images.rb

Instance Attribute Summary

Attributes inherited from Fog::Collection

#service

Instance Method Summary collapse

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

#get(image_id) ⇒ Object



31
32
33
34
35
36
# File 'lib/fog/openstack/models/compute/images.rb', line 31

def get(image_id)
  data = service.get_image_details(image_id).body['image']
  new(data)
rescue Fog::Compute::OpenStack::NotFound
  nil
end