Searched refs:get_all_snapshots (Results 1 – 7 of 7) sorted by relevance
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/ec2/ |
D | test_connection.py | 1028 'get_all_snapshots': self.ec2.get_all_snapshots, 1034 self.ec2.get_all_snapshots = MagicMock(return_value=snaps) 1041 self.assertEqual(True, self.ec2.get_all_snapshots.called) 1045 self.ec2.get_all_snapshots = orig['get_all_snapshots'] 1056 'get_all_snapshots': self.ec2.get_all_snapshots, 1062 self.ec2.get_all_snapshots = MagicMock(return_value=snaps) 1069 self.assertEqual(True, self.ec2.get_all_snapshots.called) 1073 self.ec2.get_all_snapshots = orig['get_all_snapshots'] 1596 result = self.ec2.get_all_snapshots(snapshot_ids=['snap-1a2b3c4d', 'snap-5e6f7a8b'])
|
D | test_volume.py | 198 self.volume_one.connection.get_all_snapshots.return_value = [snapshot_one, snapshot_two] 204 self.volume_one.connection.get_all_snapshots.return_value = [] 206 self.volume_one.connection.get_all_snapshots.assert_called_with(
|
D | test_snapshot.py | 40 response = self.service_connection.get_all_snapshots(['snap-1a2b3c4d', 'snap-9f8e7d6c'],
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/ |
D | snapshot.py | 89 rs = self.connection.get_all_snapshots([self.id], dry_run=dry_run)
|
D | volume.py | 245 rs = self.connection.get_all_snapshots(
|
D | connection.py | 2408 def get_all_snapshots(self, snapshot_ids=None, member in EC2Connection 2636 all_snapshots = self.get_all_snapshots(owner = 'self')
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/manage/ |
D | volume.py | 188 rs = ec2.get_all_snapshots()
|