/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/dynamodb/ |
D | batch.py | 51 def __init__(self, table, keys, attributes_to_get=None, argument 55 self.attributes_to_get = attributes_to_get 74 if self.attributes_to_get: 75 batch_dict['AttributesToGet'] = self.attributes_to_get 141 def add_batch(self, table, keys, attributes_to_get=None, argument 165 self.append(Batch(table, keys, attributes_to_get, consistent_read)) 192 attributes_to_get = None 194 attributes_to_get = table_req['AttributesToGet'] 196 self.add_batch(table, keys, attributes_to_get=attributes_to_get)
|
D | table.py | 41 def __init__(self, table, keys, attributes_to_get=None, argument 46 self.attributes_to_get = attributes_to_get 67 self.attributes_to_get) 255 attributes_to_get=None, consistent_read=False, argument 286 attributes_to_get, consistent_read, 321 attributes_to_get=[hash_key], 520 def batch_get_item(self, keys, attributes_to_get=None): argument 546 return TableBatchGenerator(self, keys, attributes_to_get)
|
D | layer1.py | 278 def get_item(self, table_name, key, attributes_to_get=None, argument 303 if attributes_to_get: 304 data['AttributesToGet'] = attributes_to_get 465 attributes_to_get=None, limit=None, consistent_read=False, argument 514 if attributes_to_get: 515 data['AttributesToGet'] = attributes_to_get 533 attributes_to_get=None, limit=None, argument 568 if attributes_to_get: 569 data['AttributesToGet'] = attributes_to_get
|
D | layer2.py | 453 attributes_to_get=None, consistent_read=False, argument 488 attributes_to_get, consistent_read, 628 attributes_to_get=None, request_limit=None, argument 714 'attributes_to_get': attributes_to_get, 725 attributes_to_get=None, request_limit=None, max_results=None, argument 800 'attributes_to_get': attributes_to_get,
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/dynamodb2/ |
D | layer1.py | 980 def get_item(self, table_name, key, attributes_to_get=None, argument 1088 if attributes_to_get is not None: 1089 params['AttributesToGet'] = attributes_to_get 1513 attributes_to_get=None, limit=None, consistent_read=None, argument 1918 if attributes_to_get is not None: 1919 params['AttributesToGet'] = attributes_to_get 1945 def scan(self, table_name, attributes_to_get=None, limit=None, argument 2219 if attributes_to_get is not None: 2220 params['AttributesToGet'] = attributes_to_get
|
D | table.py | 704 attributes_to_get=attributes, 1311 exclusive_start_key=None, select=None, attributes_to_get=None, argument 1322 'attributes_to_get': attributes_to_get,
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/dynamodb/ |
D | test_batch.py | 69 b = Batch(self.table, ['k1', 'k2'], attributes_to_get=['foo'],
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/dynamodb2/ |
D | test_table.py | 1764 }, consistent_read=False, attributes_to_get=None) 1777 }, consistent_read=False, attributes_to_get=['username', 'first_name']) 2386 attributes_to_get=None, 2434 attributes_to_get=None, 2506 attributes_to_get=None, 2550 attributes_to_get=None,
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/dynamodb/ |
D | test_layer1.py | 149 attributes_to_get=attributes)
|
D | test_layer2.py | 172 attributes_to_get=attributes,
|