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-1.2.0 lib/fog/joyent/models/compute/snapshots.rb
ktheory-fog-1.1.2 lib/fog/joyent/models/compute/snapshots.rb