2012-04-09 23:28:49 -04:00
|
|
|
module Fog
|
2012-04-09 23:45:14 -04:00
|
|
|
module Volume
|
2012-04-09 23:28:49 -04:00
|
|
|
class OpenStack
|
|
|
|
class Real
|
|
|
|
|
|
|
|
def create_volume_snapshot(volume_id, name, description, force=false)
|
|
|
|
data = {
|
|
|
|
'snapshot' => {
|
|
|
|
'volume_id' => volume_id,
|
|
|
|
'display_name' => name,
|
|
|
|
'display_description' => description,
|
|
|
|
'force' => force
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
request(
|
|
|
|
:body => MultiJson.encode(data),
|
|
|
|
:expects => [200, 202],
|
|
|
|
:method => 'POST',
|
|
|
|
:path => "snapshots"
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
class Mock
|
2012-08-15 23:27:35 -04:00
|
|
|
def create_volume_snapshot(volume_id, name, description, force=false)
|
|
|
|
response = Excon::Response.new
|
|
|
|
response.status = 202
|
|
|
|
response.body = {
|
|
|
|
"snapshot"=> {
|
|
|
|
"status"=>"creating",
|
|
|
|
"display_name"=>name,
|
|
|
|
"created_at"=>Time.now,
|
|
|
|
"display_description"=>description,
|
|
|
|
"volume_id"=>volume_id,
|
|
|
|
"id"=>"5",
|
|
|
|
"size"=>1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
response
|
|
|
|
end
|
2012-04-09 23:28:49 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|