Class: Fog::Compute::Ecloud::Groups
- Inherits:
-
Ecloud::Collection
- Object
- Fog::Collection
- Ecloud::Collection
- Fog::Compute::Ecloud::Groups
- Defined in:
- lib/fog/ecloud/models/compute/groups.rb
Instance Method Summary collapse
Methods inherited from Ecloud::Collection
Instance Method Details
#all ⇒ Object
11 12 13 14 15 16 17 18 19 20 21 22 23 |
# File 'lib/fog/ecloud/models/compute/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/ecloud/models/compute/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 |