mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
c3278a1cc9
This makes the changes consistent with how it previously worked.
49 lines
1.2 KiB
Ruby
49 lines
1.2 KiB
Ruby
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
|
|
attribute :volume_type, :aliases => ['volumeType', 'type']
|
|
attribute :snapshot_id, :aliases => 'snapshotId'
|
|
attribute :imageRef, :aliases => 'image_id'
|
|
attribute :availability_zone, :aliases => 'availabilityZone'
|
|
attribute :created_at, :aliases => 'createdAt'
|
|
attribute :attachments
|
|
attribute :source_volid
|
|
|
|
|
|
def initialize(attributes)
|
|
# Old 'connection' is renamed as service and should be used instead
|
|
prepare_service_value(attributes)
|
|
super
|
|
end
|
|
|
|
def save
|
|
requires :display_name, :size
|
|
data = service.create_volume(display_name, display_description, size, attributes)
|
|
merge_attributes(data.body['volume'])
|
|
true
|
|
end
|
|
|
|
def destroy
|
|
requires :id
|
|
service.delete_volume(id)
|
|
true
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
|
|
end
|
|
|