/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/dynamodb2/ |
test_layer1.py | 24 Tests for Layer1 of DynamoDB v2 32 dynamodb = True variable in class:DynamoDBv2Layer1UnitTest 35 dynamodb = DynamoDBConnection( 38 self.assertEqual(dynamodb.region.name, 'us-east-1') 39 dynamodb = DynamoDBConnection( 41 endpoint='dynamodb.us-west-2.amazonaws.com'), 45 self.assertEqual(dynamodb.region.name, 'us-west-2') 48 dynamodb = DynamoDBConnection( 52 self.assertEqual(dynamodb.host, 'localhost') 53 self.assertEqual(dynamodb.port, 8000 [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/dynamodb/ |
test_cert_verification.py | 31 import boto.dynamodb namespace 35 dynamodb = True variable in class:DynamoDBCertVerificationTest 36 regions = boto.dynamodb.regions()
|
test_table.py | 25 from boto.dynamodb.layer2 import Layer2 26 from boto.dynamodb.table import Table 27 from boto.dynamodb.schema import Schema 31 dynamodb = True variable in class:TestDynamoDBTable 34 self.dynamodb = Layer2() 39 result = self.dynamodb.create_table(table_name, schema, read_units, write_units) 40 self.addCleanup(self.dynamodb.delete_table, result) 49 created_table = self.dynamodb.create_table( 53 retrieved_table = self.dynamodb.get_table(self.table_name) 55 constructed_table = self.dynamodb.table_from_schema(self.table_name [all...] |
test_layer1.py | 24 Tests for Layer1 of DynamoDB 30 from boto.dynamodb.exceptions import DynamoDBKeyNotFoundError 31 from boto.dynamodb.exceptions import DynamoDBConditionalCheckFailedError 32 from boto.dynamodb.exceptions import DynamoDBValidationError 33 from boto.dynamodb.layer1 import Layer1 37 dynamodb = True variable in class:DynamoDBLayer1Test 40 self.dynamodb = Layer1() 59 result = self.dynamodb.create_table(table_name, schema, provisioned_throughput) 60 self.addCleanup(self.dynamodb.delete_table, table_name) 64 print('--- running DynamoDB Layer1 tests ---' [all...] |
test_layer2.py | 24 Tests for Layer2 of Amazon DynamoDB 31 from boto.dynamodb.exceptions import DynamoDBKeyNotFoundError 32 from boto.dynamodb.exceptions import DynamoDBConditionalCheckFailedError 33 from boto.dynamodb.layer2 import Layer2 34 from boto.dynamodb.types import get_dynamodb_type, Binary 35 from boto.dynamodb.condition import BEGINS_WITH, CONTAINS, GT 40 dynamodb = True variable in class:DynamoDBLayer2Test 43 self.dynamodb = Layer2() 51 schema = self.dynamodb.create_schema( 60 result = self.dynamodb.create_table(table_name, schema, read_units, write_units [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/dynamodb/ |
__init__.py | 29 Get all available regions for the Amazon DynamoDB service. 34 import boto.dynamodb.layer2 namespace 35 return get_regions('dynamodb', connection_cls=boto.dynamodb.layer2.Layer2)
|
table.py | 24 from boto.dynamodb.batch import BatchList 25 from boto.dynamodb.schema import Schema 26 from boto.dynamodb.item import Item 27 from boto.dynamodb import exceptions as dynamodb_exceptions 84 An Amazon DynamoDB table. 90 :ivar schema: A :class:`boto.dynamodb.schema.Schema` object representing 96 Amazon DynamoDB updates this value approximately every six hours. 108 :type layer2: :class:`boto.dynamodb.layer2.Layer2` 113 `boto.dynamodb.layer1.Layer1.describe_table`. 136 :type layer2: :class:`boto.dynamodb.layer2.Layer2 [all...] |
layer2.py | 23 from boto.dynamodb.layer1 import Layer1 24 from boto.dynamodb.table import Table 25 from boto.dynamodb.schema import Schema 26 from boto.dynamodb.item import Item 27 from boto.dynamodb.batch import BatchList, BatchWriteList 28 from boto.dynamodb.types import get_dynamodb_type, Dynamizer, \ 74 DynamoDB, without regard to any filters. 90 The current response to the call from DynamoDB. 162 ('N', 'NS') received from DynamoDB. Using the ``Decimal`` 248 in Amazon DynamoDB. This method takes the supplied hash_ke [all...] |
condition.py | 24 from boto.dynamodb.types import dynamize_value
|
item.py | 24 from boto.dynamodb.exceptions import DynamoDBItemError 29 An item in Amazon DynamoDB. 77 Queue the addition of an attribute to an item in DynamoDB. 91 Queue the deletion of an attribute from an item in DynamoDB. 107 Queue the putting of an attribute to an item in DynamoDB. 121 Commits pending updates to Amazon DynamoDB. 145 Delete the item from DynamoDB. 167 in Amazon DynamoDB.
|
layer1.py | 30 from boto.dynamodb import exceptions as dynamodb_exceptions 36 This is the lowest-level interface to DynamoDB. Methods at this 39 of the JSON input as defined in the DynamoDB Developer's Guide. 45 responses this connection has received from Amazon DynamoDB. 49 """The default region name for DynamoDB API.""" 51 ServiceName = 'DynamoDB' 55 """DynamoDB API version.""" 79 region_name = boto.config.get('DynamoDB', 'region', 81 for reg in boto.dynamodb.regions(): 96 'DynamoDB', 'validate_checksums', validate_checksums [all...] |
types.py | 24 Some utility functions to deal with mapping Amazon DynamoDB types to 31 from boto.dynamodb.exceptions import DynamoDBNumberError 105 the corresponding Amazon DynamoDB type. If the value passed in is 140 of the Amazon DynamoDB type specification and the value that 141 needs to be sent to Amazon DynamoDB. If the type of the value 211 This hook will transform Amazon DynamoDB JSON responses to something 235 format that is expected by the DynamoDB API, as well as 236 taking DynamoDB types and constructing the appropriate 252 {'S': 'foo'} (Encoding sent to/received from DynamoDB) 270 by DynamoDB [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/dynamodb2/ |
test_layer1.py | 24 Tests for Layer1 of DynamoDB v2 34 dynamodb = True variable in class:DynamoDBv2Layer1Test 37 self.dynamodb = DynamoDBConnection() 91 result = self.dynamodb.create_table( 98 self.addCleanup(self.dynamodb.delete_table, table_name) 101 description = self.dynamodb.describe_table(table_name) 122 description = self.dynamodb.describe_table(self.table_name) 134 r1_result = self.dynamodb.put_item(self.table_name, record_1_data) 137 record_1 = self.dynamodb.get_item(self.table_name, key={ 148 self.dynamodb.batch_write_item( [all...] |
test_highlevel.py | 24 Tests for DynamoDB v2 high-level abstractions. 45 dynamodb = True variable in class:DynamoDBv2Test 721 # Create a table using gsi to test the DynamoDB online indexing support 743 # Fetch fresh table desc from DynamoDB 762 # Fetch fresh table desc from DynamoDB 782 # Fetch fresh table desc from DynamoDB 796 # Fetch fresh table desc from DynamoDB 815 # Fetch fresh table desc from DynamoDB
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/dynamodb2/ |
types.py | 1 # Shadow the DynamoDB v1 bits. 4 from boto.dynamodb.types import NonBooleanDynamizer, Dynamizer
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/dynamodb/ |
test_batch.py | 25 from boto.dynamodb.batch import Batch 26 from boto.dynamodb.table import Table 27 from boto.dynamodb.layer2 import Layer2 28 from boto.dynamodb.batch import BatchList
|
test_layer2.py | 27 from boto.dynamodb.layer2 import Layer2 28 from boto.dynamodb.table import Table, Schema
|
test_types.py | 27 from boto.dynamodb import types 28 from boto.dynamodb.exceptions import DynamoDBNumberError
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/ |
dynamodb_load | 8 from boto.dynamodb.schema import Schema 11 DESCRIPTION = """Load data into one or more DynamoDB tables.
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ |
__init__.py | 623 :rtype: :class:`boto.dynamodb.layer2.Layer2` 624 :return: A connection to the Layer2 interface for DynamoDB. 626 from boto.dynamodb.layer2 import Layer2 [all...] |