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

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

Instance Method Summary collapse

Methods inherited from Ecloud::Collection

#check_href!, #load

Instance Method Details

#allObject



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

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



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

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