Batch delete given a remote_list
(self, remote_list)
| 853 | return response |
| 854 | |
| 855 | def object_batch_delete(self, remote_list): |
| 856 | """ Batch delete given a remote_list """ |
| 857 | uris = [remote_list[item]['object_uri_str'] for item in remote_list] |
| 858 | return self.object_batch_delete_uri_strs(uris) |
| 859 | |
| 860 | def object_batch_delete_uri_strs(self, uris): |
| 861 | """ Batch delete given a list of object uris """ |
nothing calls this directly
no test coverage detected