2012-05-14 14:38:27 +08:00
|
|
|
require 'fog/core/model'
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module Volume
|
|
|
|
class OpenStack
|
|
|
|
|
|
|
|
class Volume < Fog::Model
|
|
|
|
|
|
|
|
identity :id
|
|
|
|
|
|
|
|
attribute :display_name, :aliases => 'displayName'
|
|
|
|
attribute :display_description, :aliases => 'displayDescription'
|
|
|
|
attribute :status
|
|
|
|
attribute :size
|
2013-07-18 17:32:20 +02:00
|
|
|
attribute :volume_type, :aliases => ['volumeType', 'type']
|
2012-05-14 14:38:27 +08:00
|
|
|
attribute :snapshot_id, :aliases => 'snapshotId'
|
2013-06-25 15:33:52 +02:00
|
|
|
attribute :imageRef, :aliases => 'image_id'
|
2012-05-14 14:38:27 +08:00
|
|
|
attribute :availability_zone, :aliases => 'availabilityZone'
|
|
|
|
attribute :created_at, :aliases => 'createdAt'
|
|
|
|
attribute :attachments
|
2013-07-10 09:48:46 +02:00
|
|
|
attribute :source_volid
|
2012-05-14 14:38:27 +08:00
|
|
|
|
|
|
|
|
|
|
|
def initialize(attributes)
|
2012-12-19 22:28:04 +00:00
|
|
|
# Old 'connection' is renamed as service and should be used instead
|
|
|
|
prepare_service_value(attributes)
|
2012-05-14 14:38:27 +08:00
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
def save
|
|
|
|
requires :display_name, :size
|
2012-12-22 23:24:36 +00:00
|
|
|
data = service.create_volume(display_name, display_description, size, attributes)
|
2012-05-14 14:38:27 +08:00
|
|
|
merge_attributes(data.body['volume'])
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
|
|
|
requires :id
|
2012-12-22 23:24:36 +00:00
|
|
|
service.delete_volume(id)
|
2012-05-14 14:38:27 +08:00
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|