1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/cloudstack/models/compute/volume.rb
2012-05-22 16:54:30 -07:00

119 lines
4 KiB
Ruby

module Fog
module Compute
class Cloudstack
class Volume < Fog::Model
identity :id, :aliases => 'id'
attribute :name, :aliases => 'name'
attribute :zone_id, :aliases => 'zoneid'
attribute :zone_name, :aliases => 'zonename'
attribute :type, :aliases => 'type'
attribute :size, :aliases => 'size'
attribute :created, :aliases => 'created'
attribute :state, :aliases => 'state'
attribute :account, :aliases => 'account'
attribute :domain_id, :aliases => 'domainid'
attribute :domain, :aliases => 'domain'
attribute :storage_type, :aliases => 'storagetype'
attribute :hypervisor, :aliases => 'hypervisor'
attribute :disk_offering_id, :aliases => 'diskofferingid'
attribute :disk_offering_name, :aliases => 'diskofferingname'
attribute :disk_offering_display_text, :aliases => 'diskofferingdisplaytext'
attribute :storage, :aliases => 'storage'
attribute :destroyed, :aliases => 'destroyed'
attribute :is_extractable, :aliases => 'isextractable', :type => :boolean
attribute :server_id, :aliases => 'virtualmachineid'
attribute :server_name, :aliases => 'vmname'
attribute :server_display_name, :aliases => 'vmdisplayname'
attr_accessor :snapshot_id, :project_id
def save
requires :name, :disk_offering_id, :zone_id
options = {
'size' => size,
'name' => name,
'diskofferingid' => disk_offering_id,
'zoneid' => zone_id,
'snapshotid' => snapshot_id,
'projectid' => project_id
}
data = connection.create_volume(options)
merge_attributes(data['createvolumeresponse'])
end
def ready?
state == 'Allocated' || state == 'Ready'
end
def flavor
connection.disk_offerings.get(self.disk_offering_id)
end
alias disk_offering flavor
def server
if server_id
connection.servers.get(server_id)
end
end
def reload
requires :identity
return unless data = begin
collection.get(identity)
rescue Excon::Errors::SocketError
nil
end
new_attributes = {
'virtualmachineid' => nil,
'vmname' => nil,
'vmdisplayname' => nil
}.merge(data.attributes)
merge_attributes(new_attributes)
self
end
def attach(instance_or_id, mountpoint=nil)
requires :id
instance_id = instance_or_id.is_a?(Server) ? instance_or_id.id : instance_or_id
unless instance_id
raise ArgumentError, "Missing required argument: instance_or_id"
end
options = {
'id' => id,
'virtualmachineid' => instance_id,
}
options.merge!('deviceid' => mountpoint) if mountpoint
data = connection.attach_volume(options)
Job.new(data["attachvolumeresponse"]).tap do |job|
job.connection= self.connection
end
end
def detach
requires :id
data = connection.detach_volume('id' => id)
Job.new(data["detachvolumeresponse"]).tap do |job|
job.connection= self.connection
end
end
def destroy
requires :id
connection.delete_volume('id' => id)
true
end
end # Volume
end # Cloudstack
end # Compute
end # Fog