Class: Fog::Compute::Ecloud::PublicIps
- Inherits:
-
Ecloud::Collection
- Object
- Fog::Collection
- Ecloud::Collection
- Fog::Compute::Ecloud::PublicIps
- Defined in:
- lib/fog/ecloud/models/compute/public_ips.rb
Instance Method Summary collapse
Methods inherited from Ecloud::Collection
Instance Method Details
#activate ⇒ Object
24 25 26 27 |
# File 'lib/fog/ecloud/models/compute/public_ips.rb', line 24 def activate data = service.public_ip_activate(href + "/action/activatePublicIp").body ip = Fog::Compute::Ecloud::PublicIps.new(:service => service, :href => data[:href])[0] end |
#all ⇒ Object
11 12 13 14 15 |
# File 'lib/fog/ecloud/models/compute/public_ips.rb', line 11 def all data = service.get_public_ips(href).body data = data[:PublicIp] ? data[:PublicIp] : data load(data) end |