mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
44 lines
1.4 KiB
Ruby
44 lines
1.4 KiB
Ruby
module Fog
|
|
module Compute
|
|
class Cloudstack
|
|
class Real
|
|
|
|
# Creates a snapshot for an account that already exists.
|
|
#
|
|
# {CloudStack API Reference}[http://download.cloud.com/releases/2.2.0/api_2.2.4/global_admin/createSnapshot.html]
|
|
def create_snapshot(options={})
|
|
options.merge!(
|
|
'command' => 'createSnapshot'
|
|
)
|
|
|
|
request(options)
|
|
end
|
|
|
|
end
|
|
|
|
class Mock
|
|
def create_snapshot(options={})
|
|
snapshot_id = Fog::Cloudstack.uuid
|
|
|
|
unless volume_id = options['volumeid']
|
|
raise Fog::Compute::Cloudstack::BadRequest.new('Unable to execute API command createsnapshot due to missing parameter volumeid')
|
|
end
|
|
|
|
snapshot = {
|
|
"id" => snapshot_id,
|
|
"name" => "ROOT-6",
|
|
"created" => "2013-05-22T14:52:55-0500",
|
|
"state" => "BackedUp",
|
|
"account" => "accountname",
|
|
"domainid" => "6023b6fe-5bef-4358-bc76-9f4e75afa52f",
|
|
"domain" => "ROOT",
|
|
"intervaltype" => "weekly"
|
|
}
|
|
|
|
self.data[:snapshots][snapshot_id]= snapshot
|
|
{'createsnapshotresponse' => snapshot}
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|