Sha256: 72c969c7c9b32986475f9e4c84b625b7876e78afa33a8c3b93287962e50f03e2

Contents?: true

Size: 942 Bytes

Versions: 23

Compression:

Stored size: 942 Bytes

Contents

module Fog
  module Compute
    class Joyent
      class Snapshot < Fog::Model
        identity :name

        attribute :name
        attribute :state
        attribute :machine_id
        attribute :created, :type => :time
        attribute :updated, :type => :time

        def reload
          requires :name
          requires :machine_id

          self.connection.snapshots.get(self.machine_id, self.name)
        end

        def start
          requires :name
          requires :machine_id

          self.connection.start_machine_from_snapshot(self.machine_id, self.name)
          true
        end

        def destroy
          requires :name
          requires :machine_id

          self.connection.delete_machine_snapshot(self.machine_id, self.name)
          true
        end

        def machine
          requires :machine_id

          self.connection.servers.get(self.machine_id)
        end

      end
    end
  end
end

Version data entries

23 entries across 23 versions & 12 rubygems

Version Path
fog-nirvanix-1.8.2 lib/fog/joyent/models/compute/snapshot.rb
fog-nirvanix-1.8.1 lib/fog/joyent/models/compute/snapshot.rb
fog-parser-fix-1.6.1 lib/fog/joyent/models/compute/snapshot.rb
fog-test-again-1.6.0 lib/fog/joyent/models/compute/snapshot.rb
fog-parser-fix-1.6.0 lib/fog/joyent/models/compute/snapshot.rb
ey-vendored-backup-3.0.27 vendor/gems/fog/lib/fog/joyent/models/compute/snapshot.rb
fog-sgonyea-1.8.1 lib/fog/joyent/models/compute/snapshot.rb
fog-1.8.0 lib/fog/joyent/models/compute/snapshot.rb
fog-maestrodev-1.7.0.20121114190951 lib/fog/joyent/models/compute/snapshot.rb
fog-1.7.0 lib/fog/joyent/models/compute/snapshot.rb
fog-1.6.0 lib/fog/joyent/models/compute/snapshot.rb
fog-1.5.0 lib/fog/joyent/models/compute/snapshot.rb
rackspace-fog-1.4.2 lib/rackspace-fog/joyent/models/compute/snapshot.rb
fog-1.4.0 lib/fog/joyent/models/compute/snapshot.rb
brightbox-cli-0.18.1 lib/brightbox-cli/vendor/fog/lib/fog/joyent/models/compute/snapshot.rb
michiels-fog-1.3.1 lib/fog/joyent/models/compute/snapshot.rb
ftl-0.2.0 vendor/bundle/gems/fog-1.3.1/lib/fog/joyent/models/compute/snapshot.rb
brightbox-cli-0.18.0 lib/brightbox-cli/vendor/fog/lib/fog/joyent/models/compute/snapshot.rb
fog-1.3.1 lib/fog/joyent/models/compute/snapshot.rb
fog-1.3.0 lib/fog/joyent/models/compute/snapshot.rb