# File lib/fog/joyent/models/compute/snapshots.rb, line 16
        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