Class: Fog::Compute::Ecloud::IpAddresses
- Inherits:
-
Ecloud::Collection
- Object
- Fog::Collection
- Ecloud::Collection
- Fog::Compute::Ecloud::IpAddresses
- Defined in:
- lib/fog/compute/ecloud/models/ip_addresses.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/compute/ecloud/models/ip_addresses.rb', line 11 def all data = service.get_network(href).body data = if data[:IpAddresses] data[:IpAddresses][:IpAddress] else data end data = data.nil? ? [] : data load(data) end |
#get(uri) ⇒ Object
22 23 24 25 26 27 28 29 |
# File 'lib/fog/compute/ecloud/models/ip_addresses.rb', line 22 def get(uri) if data = service.get_ip_address(uri) new(data.body) end rescue ServiceError => e raise e unless e.status_code == 404 nil end |