fog--fog/lib/fog/aws/requests/ec2/create_snapshot.rb

29 lines
870 B
Ruby
Raw Normal View History

module Fog
module AWS
class EC2
# Create a snapshot of an EBS volume and store it in S3
#
# ==== Parameters
# * volume_id<~String> - Id of EBS volume to snapshot
#
# ==== Returns
2009-07-21 02:47:48 +00:00
# * response<~Fog::AWS::Response>:
# * body<~Hash>:
# * :progress<~String> - The percentage progress of the snapshot
# * :request_id<~String> - id of request
# * :snapshot_id<~String> - id of snapshot
# * :start_time<~Time> - timestamp when snapshot was initiated
# * :status<~String> - state of snapshot
# * :volume_id<~String> - id of volume snapshot targets
def create_snapshot(volume_id)
request({
'Action' => 'CreateSnapshot',
2009-07-16 06:24:32 +00:00
'VolumeId' => volume_id
}, Fog::Parsers::AWS::EC2::CreateSnapshot.new)
end
end
end
end