Sha256: d0d07d2ed35e8a36753245f51676db5ea0d41211f99da03eaa44777ec3cf6fe5

Contents?: true

Size: 1.04 KB

Versions: 71

Compression:

Stored size: 1.04 KB

Contents

require 'fog/core/model'
require 'fog/openstack/models/compute/metadata'

module Fog
  module Compute
    class OpenStack

      class Snapshot < Fog::Model

        identity :id

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


        def initialize(attributes)
          # Old 'connection' is renamed as service and should be used instead
          prepare_service_value(attributes)
          super
        end

        def save(force=false)
          requires :volume_id, :name, :description
          data = service.create_volume_snapshot(volume_id, name, description, force)
          merge_attributes(data.body['snapshot'])
          true
        end

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

      end

    end
  end

end

Version data entries

71 entries across 71 versions & 7 rubygems

Version Path
fog-1.22.0 lib/fog/openstack/models/compute/snapshot.rb
fog-1.21.0 lib/fog/openstack/models/compute/snapshot.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/openstack/models/compute/snapshot.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/openstack/models/compute/snapshot.rb
cifrado-0.2.1 vendor/fog/lib/fog/openstack/models/compute/snapshot.rb
cifrado-0.2.0 vendor/fog/lib/fog/openstack/models/compute/snapshot.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/openstack/models/compute/snapshot.rb
fog-1.20.0 lib/fog/openstack/models/compute/snapshot.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/openstack/models/compute/snapshot.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/openstack/models/compute/snapshot.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/openstack/models/compute/snapshot.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/openstack/models/compute/snapshot.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/openstack/models/compute/snapshot.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/openstack/models/compute/snapshot.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/openstack/models/compute/snapshot.rb
fog-1.19.0 lib/fog/openstack/models/compute/snapshot.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/openstack/models/compute/snapshot.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/openstack/models/compute/snapshot.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/openstack/models/compute/snapshot.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/openstack/models/compute/snapshot.rb