Class: Fog::Compute::Ecloud::PublicIps
- Inherits:
-
Ecloud::Collection
- Object
- Array
- Fog::Collection
- Ecloud::Collection
- Fog::Compute::Ecloud::PublicIps
- Defined in:
- lib/fog/ecloud/models/compute/public_ips.rb
Instance Attribute Summary
Attributes inherited from Fog::Collection
Instance Method Summary collapse
Methods inherited from Ecloud::Collection
Methods inherited from Fog::Collection
#clear, #create, #destroy, #initialize, #inspect, #load, model, #model, #new, #reload, #table, #to_json
Methods included from Attributes::ClassMethods
#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes
Methods included from Attributes::InstanceMethods
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #requires, #requires_one
Constructor Details
This class inherits a constructor from Fog::Collection
Instance Method Details
#activate ⇒ Object
26 27 28 29 |
# File 'lib/fog/ecloud/models/compute/public_ips.rb', line 26 def activate data = connection.public_ip_activate(href + "/action/activatePublicIp").body ip = Fog::Compute::Ecloud::PublicIps.new(:connection => connection, :href => data[:href])[0] end |
#all ⇒ Object
12 13 14 15 16 |
# File 'lib/fog/ecloud/models/compute/public_ips.rb', line 12 def all data = connection.get_public_ips(href).body data = data[:PublicIp] ? data[:PublicIp] : data load(data) end |