Class: Fog::AWS::Compute::Volume

Inherits:
Model
  • Object
show all
Extended by:
Deprecation
Defined in:
lib/fog/aws/models/compute/volume.rb

Instance Attribute Summary

Attributes inherited from Model

#connection

Instance Method Summary collapse

Methods included from Deprecation

deprecate

Methods inherited from Model

#collection, #inspect, #reload, #to_json, #wait_for

Methods included from Fog::Attributes::ClassMethods

#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes

Methods included from Fog::Attributes::InstanceMethods

#_dump, #attributes, #identity, #identity=, #merge_attributes, #new_record?, #requires

Constructor Details

#initialize(attributes = {}) ⇒ Volume

Returns a new instance of Volume.



23
24
25
26
27
# File 'lib/fog/aws/models/compute/volume.rb', line 23

def initialize(attributes = {})
  # assign server first to prevent race condition with new_record?
  self.server = attributes.delete(:server)
  super
end

Instance Method Details

#destroyObject



29
30
31
32
33
34
# File 'lib/fog/aws/models/compute/volume.rb', line 29

def destroy
  requires :id

  connection.delete_volume(@id)
  true
end

#ready?Boolean

Returns:

  • (Boolean)


36
37
38
# File 'lib/fog/aws/models/compute/volume.rb', line 36

def ready?
  state == 'available'
end

#saveObject

Raises:



40
41
42
43
44
45
46
47
48
49
50
51
# File 'lib/fog/aws/models/compute/volume.rb', line 40

def save
  raise Fog::Errors::Error.new('Resaving an existing object may create a duplicate') if identity
  requires :availability_zone, :size

  data = connection.create_volume(@availability_zone, @size, @snapshot_id).body
  new_attributes = data.reject {|key,value| key == 'requestId'}
  merge_attributes(new_attributes)
  if @server
    self.server = @server
  end
  true
end

#server=(new_server) ⇒ Object



53
54
55
56
57
58
59
# File 'lib/fog/aws/models/compute/volume.rb', line 53

def server=(new_server)
  if new_server
    attach(new_server)
  else
    detach
  end
end

#snapshotsObject



61
62
63
64
# File 'lib/fog/aws/models/compute/volume.rb', line 61

def snapshots
  requires :id
  connection.snapshots(:volume => self)
end