mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
56 lines
1.5 KiB
Ruby
56 lines
1.5 KiB
Ruby
require 'fog/core/model'
|
|
|
|
module Fog
|
|
module HP
|
|
class BlockStorage
|
|
|
|
class Snapshot < Fog::Model
|
|
|
|
identity :id
|
|
|
|
attribute :name, :aliases => 'displayName'
|
|
attribute :description, :aliases => 'displayDescription'
|
|
attribute :size
|
|
attribute :status
|
|
attribute :created_at, :aliases => 'createdAt'
|
|
attribute :volume_id, :aliases => 'volumeId'
|
|
#attribute :metadata
|
|
|
|
def initialize(attributes = {})
|
|
# assign these attributes first to prevent race condition with persisted?
|
|
self.force = attributes.delete(:force) # force snapshotting of attached volumes
|
|
super
|
|
end
|
|
|
|
def destroy
|
|
requires :id
|
|
service.delete_snapshot(id)
|
|
true
|
|
end
|
|
|
|
def force=(new_force)
|
|
@force = new_force
|
|
end
|
|
|
|
def ready?
|
|
self.status == 'available'
|
|
end
|
|
|
|
def save
|
|
raise Fog::Errors::Error.new('Resaving an existing object may create a duplicate') if persisted?
|
|
requires :name, :volume_id
|
|
options = {
|
|
#'metadata' => metadata, # TODO: Add metadata when snapshots support it
|
|
'force' => @force
|
|
}
|
|
options = options.reject {|key, value| value.nil?}
|
|
data = service.create_snapshot(name, description, volume_id, options)
|
|
merge_attributes(data.body['snapshot'])
|
|
true
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|