Sha256: f50add48bc54b1a4743a3391d2d4ca127896e66b5ad1ea159a0c3c94a315747a
Contents?: true
Size: 1.78 KB
Versions: 16
Compression:
Stored size: 1.78 KB
Contents
module Fog module AWS module EC2 class Real require 'fog/aws/parsers/ec2/create_snapshot' # 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>: # * 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 ) end end class Mock def create_snapshot(volume_id) response = Excon::Response.new if @data[:volumes][volume_id] response.status = 200 snapshot_id = Fog::AWS::Mock.snapshot_id data = { 'progress' => '', 'snapshotId' => snapshot_id, 'startTime' => Time.now, 'status' => 'pending', 'volumeId' => volume_id } @data[:snapshots][snapshot_id] = data response.body = { 'requestId' => Fog::AWS::Mock.request_id }.merge!(data) else response.status = 400 raise(Excon::Errors.status_error({:expects => 200}, response)) end response end end end end end
Version data entries
16 entries across 16 versions & 1 rubygems