Class: Fog::Compute::Linode::Disk
- Defined in:
- lib/fog/linode/models/compute/disk.rb
Instance Attribute Summary
Attributes inherited from Model
Instance Method Summary collapse
Methods inherited from Model
#initialize, #inspect, #reload, #symbolize_keys, #to_json, #wait_for
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::Model
Instance Method Details
#destroy ⇒ Object
19 20 21 22 |
# File 'lib/fog/linode/models/compute/disk.rb', line 19 def destroy requires :identity, :server connection.linode_disk_delete server.id, id end |
#save ⇒ Object
11 12 13 14 15 16 17 |
# File 'lib/fog/linode/models/compute/disk.rb', line 11 def save requires :server raise Fog::Errors::Error.new('Resaving an existing object may create a duplicate') if identity @type, @image, @stack_script, @name, @password, @size = attributes.values_at :type, :image, :stack_script, :name, :password, :size create_disk end |
#server ⇒ Object
24 25 26 |
# File 'lib/fog/linode/models/compute/disk.rb', line 24 def server @server end |