Home
last modified time | relevance | path

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/
Dtest_connection.py1028 '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'])
Dtest_volume.py198 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(
Dtest_snapshot.py40 response = self.service_connection.get_all_snapshots(['snap-1a2b3c4d', 'snap-9f8e7d6c'],
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/
Dsnapshot.py89 rs = self.connection.get_all_snapshots([self.id], dry_run=dry_run)
Dvolume.py245 rs = self.connection.get_all_snapshots(
Dconnection.py2408 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/
Dvolume.py188 rs = ec2.get_all_snapshots()