2012-03-01 04:37:40 -05:00
|
|
|
require 'fog/core/model'
|
|
|
|
require 'fog/openstack/models/compute/metadata'
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module Compute
|
|
|
|
class OpenStack
|
|
|
|
|
|
|
|
class Snapshot < Fog::Model
|
|
|
|
|
|
|
|
identity :id
|
|
|
|
|
|
|
|
attribute :name, :aliases => 'displayName'
|
|
|
|
attribute :description, :aliases => 'displayDescription'
|
|
|
|
attribute :volume_id, :aliases => 'volumeId'
|
|
|
|
attribute :status
|
|
|
|
attribute :size
|
|
|
|
attribute :created_at, :aliases => 'createdAt'
|
|
|
|
|
|
|
|
|
|
|
|
def initialize(attributes)
|
|
|
|
@connection = attributes[:connection]
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
def save(force=false)
|
|
|
|
requires :volume_id, :name, :description
|
2012-06-24 11:33:15 -04:00
|
|
|
data = connection.create_volume_snapshot(volume_id, name, description, force)
|
2012-03-01 04:37:40 -05:00
|
|
|
merge_attributes(data.body['snapshot'])
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
|
|
|
requires :id
|
|
|
|
connection.delete_snapshot(id)
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|