1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/aws/requests/ec2/create_snapshot.rb

59 lines
1.7 KiB
Ruby
Raw Normal View History

2010-03-16 18:46:21 -04:00
module Fog
module AWS
module EC2
class Real
2009-08-20 22:26:14 -04:00
# Create a snapshot of an EBS volume and store it in S3
#
# ==== Parameters
# * volume_id<~String> - Id of EBS volume to snapshot
#
# ==== Returns
# * response<~Excon::Response>:
2009-08-20 22:26:14 -04:00
# * body<~Hash>:
# * 'progress'<~String> - The percentage progress of the snapshot
# * 'requestId'<~String> - id of request
# * 'snapshotId'<~String> - id of snapshot
# * 'startTime'<~Time> - timestamp when snapshot was initiated
# * 'status'<~String> - state of snapshot
# * 'volumeId'<~String> - id of volume snapshot targets
def create_snapshot(volume_id)
request(
'Action' => 'CreateSnapshot',
'VolumeId' => volume_id,
:parser => Fog::Parsers::AWS::EC2::CreateSnapshot.new
)
2009-08-20 22:26:14 -04:00
end
end
2010-03-16 18:46:21 -04:00
class Mock
2009-08-20 22:26:14 -04:00
def create_snapshot(volume_id)
2009-11-20 14:08:08 -05:00
response = Excon::Response.new
2010-03-16 18:46:21 -04:00
if @data[:volumes][volume_id]
2009-08-20 22:26:14 -04:00
response.status = 200
snapshot_id = Fog::AWS::Mock.snapshot_id
data = {
'progress' => '',
'snapshotId' => snapshot_id,
'startTime' => Time.now,
'status' => 'pending',
'volumeId' => volume_id
}
2010-03-16 18:46:21 -04:00
@data[:snapshots][snapshot_id] = data
2009-08-20 22:26:14 -04:00
response.body = {
'requestId' => Fog::AWS::Mock.request_id
}.merge!(data)
else
response.status = 400
2009-11-20 14:08:08 -05:00
raise(Excon::Errors.status_error({:expects => 200}, response))
2009-08-20 22:26:14 -04:00
end
response
end
end
end
end
end