Sha256: f68eb2234ceb1b3e10f360ce3b91a8d1d4921e870924d2058336d931b775e39e

Contents?: true

Size: 1.51 KB

Versions: 29

Compression:

Stored size: 1.51 KB

Contents

require 'fog/core/model'

module Fog
  module HP
    class BlockStorage
      class Snapshot < Fog::Model
        identity  :id

        attribute :name,                 :aliases => 'displayName'
        attribute :description,          :aliases => 'displayDescription'
        attribute :size
        attribute :status
        attribute :created_at,           :aliases => 'createdAt'
        attribute :volume_id,            :aliases => 'volumeId'
        #attribute :metadata

        def initialize(attributes = {})
          # assign these attributes first to prevent race condition with persisted?
          self.force = attributes.delete(:force)   # force snapshotting of attached volumes
          super
        end

        def destroy
          requires :id
          service.delete_snapshot(id)
          true
        end

        def force=(new_force)
          @force = new_force
        end

        def ready?
          self.status == 'available'
        end

        def save
          raise Fog::Errors::Error.new('Resaving an existing object may create a duplicate') if persisted?
          requires :name, :volume_id
          options = {
            #'metadata'        => metadata,      # TODO: Add metadata when snapshots support it
            'force'           => @force
          }
          options = options.reject {|key, value| value.nil?}
          data = service.create_snapshot(name, description, volume_id, options)
          merge_attributes(data.body['snapshot'])
          true
        end
      end
    end
  end
end

Version data entries

29 entries across 29 versions & 4 rubygems

Version Path
fog-1.37.0 lib/fog/hp/models/block_storage/snapshot.rb
fog-1.36.0 lib/fog/hp/models/block_storage/snapshot.rb
fog-1.35.0 lib/fog/hp/models/block_storage/snapshot.rb
fog-2.0.0.pre.0 lib/fog/hp/models/block_storage/snapshot.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/hp/models/block_storage/snapshot.rb
fog-1.34.0 lib/fog/hp/models/block_storage/snapshot.rb
fog-1.33.0 lib/fog/hp/models/block_storage/snapshot.rb
fog-1.32.0 lib/fog/hp/models/block_storage/snapshot.rb
fog-1.31.0 lib/fog/hp/models/block_storage/snapshot.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/hp/models/block_storage/snapshot.rb
fog-1.30.0 lib/fog/hp/models/block_storage/snapshot.rb
fog-1.29.0 lib/fog/hp/models/block_storage/snapshot.rb
fog-1.28.0 lib/fog/hp/models/block_storage/snapshot.rb
fog-1.27.0 lib/fog/hp/models/block_storage/snapshot.rb
fog-1.26.0 lib/fog/hp/models/block_storage/snapshot.rb
fog-1.25.0 lib/fog/hp/models/block_storage/snapshot.rb
nsidc-fog-1.24.1 lib/fog/hp/models/block_storage/snapshot.rb
fog-1.24.0 lib/fog/hp/models/block_storage/snapshot.rb
ns-fog-1.22.11 lib/fog/hp/models/block_storage/snapshot.rb
ns-fog-1.22.10 lib/fog/hp/models/block_storage/snapshot.rb