Class: Fog::Compute::Linode::Disk
- Inherits:
-
Model
- Object
- Model
- 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 Fog::Core::DeprecatedConnectionAccessors
#connection, #connection=, #prepare_service_value
Methods included from Attributes::InstanceMethods
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one
Constructor Details
This class inherits a constructor from Fog::Model
Instance Method Details
- (Object) destroy
19 20 21 22 |
# File 'lib/fog/linode/models/compute/disk.rb', line 19 def destroy requires :identity, :server service.linode_disk_delete server.id, id end |
- (Object) save
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 persisted? @type, @image, @stack_script, @name, @password, @size = attributes.values_at :type, :image, :stack_script, :name, :password, :size create_disk end |
- (Object) server
24 25 26 |
# File 'lib/fog/linode/models/compute/disk.rb', line 24 def server @server end |