Class: Fog::Compute::Linode::Disks
- Inherits:
 - 
      Fog::Collection
      
        
- Object
 - Array
 - Fog::Collection
 - Fog::Compute::Linode::Disks
 
 
- Defined in:
 - lib/rackspace-fog/linode/models/compute/disks.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/rackspace-fog/linode/models/compute/disks.rb', line 11 def all requires :server load disks(server.id) end  | 
  
#get(id) ⇒ Object
      16 17 18 19 20 21  | 
    
      # File 'lib/rackspace-fog/linode/models/compute/disks.rb', line 16 def get(id) requires :server new disks(server.id, id).first rescue Fog::Linode::Compute::NotFound nil end  | 
  
#new(attributes = {}) ⇒ Object
      23 24 25 26  | 
    
      # File 'lib/rackspace-fog/linode/models/compute/disks.rb', line 23 def new(attributes = {}) requires :server super({ :server => server }.merge!(attributes)) end  |