Class: Fog::Compute::Linode::Ips
- Inherits:
-
Fog::Collection
- Object
- Array
- Fog::Collection
- Fog::Compute::Linode::Ips
- Defined in:
- lib/fog/linode/models/compute/ips.rb
Instance Attribute Summary
Attributes inherited from Fog::Collection
Instance Method Summary collapse
Methods inherited from Fog::Collection
#clear, #create, #destroy, #initialize, #inspect, #load, model, #model, #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
#all ⇒ Object
11 12 13 14 |
# File 'lib/fog/linode/models/compute/ips.rb', line 11 def all requires :server load ips(server.id) end |
#get(id) ⇒ Object
16 17 18 19 20 21 |
# File 'lib/fog/linode/models/compute/ips.rb', line 16 def get(id) requires :server new ips(server.id, id).first rescue Fog::Compute::Linode::NotFound nil end |
#new(attributes = {}) ⇒ Object
23 24 25 26 |
# File 'lib/fog/linode/models/compute/ips.rb', line 23 def new(attributes = {}) requires :server super({ :server => server }.merge!(attributes)) end |