Sha256: d08b70979adb763995d9882504a046ebfdffbe43d291102e69954b7a91ef98cb

Contents?: true

Size: 881 Bytes

Versions: 36

Compression:

Stored size: 881 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.service.create_machine_snapshot(machine_id, snapshot_name).body
          data['machine_id'] = machine_id
          new(data)
        end

        def all(machine_id)
          data = service.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 = service.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

36 entries across 34 versions & 6 rubygems

Version Path
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-joyent-0.0.1/lib/fog/joyent/models/compute/snapshots.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-joyent-0.0.1/lib/fog/joyent/models/compute/snapshots.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-joyent-0.0.1/lib/fog/joyent/models/compute/snapshots.rb
fog-joyent-0.0.1 lib/fog/joyent/models/compute/snapshots.rb
fog-1.40.0 lib/fog/joyent/models/compute/snapshots.rb
fog-1.39.0 lib/fog/joyent/models/compute/snapshots.rb
fog-1.38.0 lib/fog/joyent/models/compute/snapshots.rb
fog-1.37.0 lib/fog/joyent/models/compute/snapshots.rb
fog-1.36.0 lib/fog/joyent/models/compute/snapshots.rb
fog-1.35.0 lib/fog/joyent/models/compute/snapshots.rb
fog-2.0.0.pre.0 lib/fog/joyent/models/compute/snapshots.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/joyent/models/compute/snapshots.rb
fog-1.34.0 lib/fog/joyent/models/compute/snapshots.rb
fog-1.33.0 lib/fog/joyent/models/compute/snapshots.rb
fog-1.32.0 lib/fog/joyent/models/compute/snapshots.rb
fog-1.31.0 lib/fog/joyent/models/compute/snapshots.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/joyent/models/compute/snapshots.rb
fog-1.30.0 lib/fog/joyent/models/compute/snapshots.rb
fog-1.29.0 lib/fog/joyent/models/compute/snapshots.rb
fog-1.28.0 lib/fog/joyent/models/compute/snapshots.rb