Class: Fog::Compute::Ecloud::Templates

Inherits:
Ecloud::Collection show all
Defined in:
lib/fog/ecloud/models/compute/templates.rb

Instance Attribute Summary

Attributes inherited from Fog::Collection

#service

Instance Method Summary collapse

Methods inherited from Ecloud::Collection

#check_href!, #load

Methods inherited from Fog::Collection

#clear, #create, #destroy, #initialize, #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

This class inherits a constructor from Fog::Collection

Instance Method Details

#allObject



12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# File 'lib/fog/ecloud/models/compute/templates.rb', line 12

def all
  r_data = []
  data = service.get_templates(href).body[:Families]
  data[:Family].is_a?(Hash) ? data = [data[:Family]] : data = data[:Family]
  data.each do |d|
    cats = d[:Categories][:Category]
    cats = [cats] if cats.is_a?(Hash)
    cats.each do |cat|
      cat[:OperatingSystems][:OperatingSystem].is_a?(Hash) ? cat = [cat[:OperatingSystems][:OperatingSystem]] : cat = cat[:OperatingSystems][:OperatingSystem]
      cat.each do |os|
        os[:Templates][:Template].is_a?(Hash) ? os = [os[:Templates][:Template]] : os = os[:Templates][:Template]
        os.each do |template|
          r_data << template
        end
      end
    end
  end
  load(r_data)
end

#get(uri) ⇒ Object



32
33
34
35
36
37
38
# File 'lib/fog/ecloud/models/compute/templates.rb', line 32

def get(uri)
  if data = service.get_template(uri)
    new(data.body)
  end
rescue Fog::Errors::NotFound
  nil
end