Class: Fog::Compute::Ecloud::Groups

Inherits:
Ecloud::Collection show all
Defined in:
lib/fog/compute/ecloud/models/groups.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
# File 'lib/fog/compute/ecloud/models/groups.rb', line 11

def all
  data = service.get_groups(href).body
  data = if data == ""
           ""
         else
           data[:Groups] ? data[:Groups][:Group] : data
         end
  if data == "" || !data.is_a?(Array) && data[:type] == "application/vnd.tmrk.cloud.layoutRow"
    nil
  else
    load(data)
  end
end

#get(uri) ⇒ Object



25
26
27
28
29
30
31
32
33
34
# File 'lib/fog/compute/ecloud/models/groups.rb', line 25

def get(uri)
  data = service.get_group(uri).body
  if data == ""
    nil
  else
    new(data)
  end
rescue Excon::Errors::NotFound
  nil
end