Sha256: f5580c735803157df682a861fc5acfbde0c3c805301cc94250e90b91883b4b50

Contents?: true

Size: 1.95 KB

Versions: 18

Compression:

Stored size: 1.95 KB

Contents

module Fog
  module AWS
    module EC2
      class Real

        # 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, description = nil)
          request(
            'Action'      => 'CreateSnapshot',
            'Description' => description,
            'VolumeId'    => volume_id,
            :parser       => Fog::Parsers::AWS::EC2::CreateSnapshot.new
          )
        end

      end

      class Mock

        def create_snapshot(volume_id, description = nil)
          response = Excon::Response.new
          if volume = @data[:volumes][volume_id]
            response.status = 200
            snapshot_id = Fog::AWS::Mock.snapshot_id
            data = {
              'description' => description,
              'ownerId'     => @owner_id,
              'progress'    => nil,
              'snapshotId'  => snapshot_id,
              'startTime'   => Time.now,
              'status'      => 'pending',
              'volumeId'    => volume_id,
              'volumeSize'  => volume['size']
            }
            @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

18 entries across 18 versions & 1 rubygems

Version Path
fog-0.1.8 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.1.7 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.1.6 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.1.5 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.1.4 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.1.3 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.1.2 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.1.1 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.1.0 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.0.100 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.0.99 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.0.98 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.0.97 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.0.96 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.0.95 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.0.94 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.0.93 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.0.92 lib/fog/aws/requests/ec2/create_snapshot.rb