Class: Fog::Compute::Ecloud::Networks
- Inherits:
-
Ecloud::Collection
- Object
- Fog::Collection
- Ecloud::Collection
- Fog::Compute::Ecloud::Networks
- Defined in:
- lib/fog/ecloud/models/compute/networks.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 |
# File 'lib/fog/ecloud/models/compute/networks.rb', line 11 def all body = service.get_networks(self.href).body body = body[:Networks] ? body[:Networks][:Network] : body[:Network] data = case body when NilClass then [] when Array then body when Hash then [body] end load(data) end |