Sha256: 3e2f604e7a7095cdd18fda1b53fa70f3ff25be862edbe4dcfc0fc98ac6752c5d

Contents?: true

Size: 1.78 KB

Versions: 25

Compression:

Stored size: 1.78 KB

Contents

unless Fog.mocking?

  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
        # * 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
          }, Fog::Parsers::AWS::EC2::CreateSnapshot.new)
        end

      end
    end
  end

else

  module Fog
    module AWS
      class EC2

        def create_snapshot(volume_id)
          response = Excon::Response.new
          if Fog::AWS::EC2.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
            }
            Fog::AWS::EC2.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

25 entries across 25 versions & 1 rubygems

Version Path
fog-0.0.56 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.0.55 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.0.54 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.0.53 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.0.52 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.0.51 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.0.50 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.0.49 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.0.48 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.0.47 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.0.46 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.0.45 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.0.44 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.0.43 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.0.42 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.0.41 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.0.40 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.0.39 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.0.38 lib/fog/aws/requests/ec2/create_snapshot.rb
fog-0.0.37 lib/fog/aws/requests/ec2/create_snapshot.rb