Sha256: 13eb56accf2d1a5ee4a73f8a6ba1c7916a04d0444282062f3529ed9504206f1c

Contents?: true

Size: 902 Bytes

Versions: 22

Compression:

Stored size: 902 Bytes

Contents

require 'fog/joyent/models/compute/snapshot'

module Fog
  module Compute
    class Joyent
      class Snapshots < Fog::Collection

        model Fog::Compute::Joyent::Snapshot

        def create(machine_id, snapshot_name)
          data = self.connection.create_machine_snapshot(machine_id, snapshot_name).body
          data['machine_id'] = machine_id
          new(data)
        end

        def all(machine_id)
          data = self.connection.list_machine_snapshots(machine_id).body.map do |m|
            m["machine_id"] = machine_id
            m
          end
          load(data)
        end

        def get(machine_id, snapshot_name)
          data = self.connection.get_machine_snapshot(machine_id, snapshot_name).body
          if data
            data["machine_id"] = machine_id
            new(data)
          else
            nil
          end
        end

      end
    end
  end
end

Version data entries

22 entries across 22 versions & 11 rubygems

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