Sha256: c102b2a88e049b3f7ad05709f8c59f69a7704241033a7bbc950e970d1295df04

Contents?: true

Size: 1.89 KB

Versions: 7

Compression:

Stored size: 1.89 KB

Contents

module Fog
  module AWS
    class EC2

      class Volume < Fog::Model

        identity  :id,         'volumeId'

        attribute :attached_at,       'attachTime'
        attribute :availability_zone, 'availabilityZone'
        attribute :created_at,        'createTime'
        attribute :device
        attribute :server_id,         'instanceId'
        attribute :size
        attribute :snapshot_id,       'snapshotId'
        attribute :status
        
        def initialize(attributes = {})
          if attributes['attachmentSet']
            attributes.merge!(attributes.delete('attachmentSet').first || {})
          end
          super
        end

        def destroy
          requires :id

          connection.delete_volume(@id)
          true
        end

        def server=(new_server)
          if new_server
            attach(new_server)
          else
            detach
          end
        end

        def save
          requires :availability_zone, :size

          data = connection.create_volume(@availability_zone, @size, @snapshot_id).body
          new_attributes = data.reject {|key,value| key == 'requestId'}
          merge_attributes(new_attributes)
          if @server
            self.server = @server
          end
          true
        end

        def snapshots
          requires :id

          connection.snapshots(:volume => self)
        end

        private

        def attach(new_server)
          if new_record?
            @server = new_server
            @availability_zone = new_server.availability_zone
          elsif new_server
            @server = nil
            @server_id = new_server.id
            connection.attach_volume(@server_id, @id, @device)
          end
        end

        def detach
          @server = nil
          @server_id = nil
          unless new_record?
            connection.detach_volume(@id)
          end
        end

      end

    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
fog-0.0.46 lib/fog/aws/models/ec2/volume.rb
fog-0.0.45 lib/fog/aws/models/ec2/volume.rb
fog-0.0.44 lib/fog/aws/models/ec2/volume.rb
fog-0.0.43 lib/fog/aws/models/ec2/volume.rb
fog-0.0.42 lib/fog/aws/models/ec2/volume.rb
fog-0.0.41 lib/fog/aws/models/ec2/volume.rb
fog-0.0.40 lib/fog/aws/models/ec2/volume.rb