@@ -61,8 +61,10 @@ def base_transact_get_item_request(keys):
61
61
# Some parameters conflict with each other when sent to DynamoDB.
62
62
# These are only intended to test the conversion of the request from client to resource format.
63
63
64
+
64
65
def base_exhaustive_put_item_request (item ):
65
- """Base structure for exhaustive put_item requests.
66
+ """
67
+ Base structure for exhaustive put_item requests.
66
68
This is not intended to be able to be used as a real request.
67
69
Some parameters conflict with each other when sent to DynamoDB.
68
70
This is only intended to test the conversion of the request from client to resource format.
@@ -85,7 +87,8 @@ def base_exhaustive_put_item_request(item):
85
87
86
88
87
89
def base_exhaustive_get_item_request (item ):
88
- """Base structure for exhaustive get_item requests.
90
+ """
91
+ Base structure for exhaustive get_item requests.
89
92
This is not intended to be able to be used as a real request.
90
93
Some parameters conflict with each other when sent to DynamoDB.
91
94
This is only intended to test the conversion of the request from client to resource format.
@@ -106,7 +109,8 @@ def base_exhaustive_get_item_request(item):
106
109
107
110
108
111
def base_exhaustive_query_request (item ):
109
- """Base structure for exhaustive query requests.
112
+ """
113
+ Base structure for exhaustive query requests.
110
114
This is not intended to be able to be used as a real request.
111
115
Some parameters conflict with each other when sent to DynamoDB.
112
116
This is only intended to test the conversion of the request from client to resource format.
@@ -134,7 +138,8 @@ def base_exhaustive_query_request(item):
134
138
135
139
136
140
def base_exhaustive_scan_request (item ):
137
- """Base structure for exhaustive scan requests.
141
+ """
142
+ Base structure for exhaustive scan requests.
138
143
This is not intended to be able to be used as a real request.
139
144
Some parameters conflict with each other when sent to DynamoDB.
140
145
This is only intended to test the conversion of the request from client to resource format.
@@ -286,7 +291,8 @@ def basic_put_item_request_dict(item):
286
291
287
292
288
293
def exhaustive_put_item_request_dict (item ):
289
- """Get a put_item request in dict format for any item.
294
+ """
295
+ Get a put_item request in dict format for any item.
290
296
This is not intended to be able to be used as a real request.
291
297
Some parameters conflict with each other when sent to DynamoDB.
292
298
This is only intended to test the conversion of the request from client to resource format.
@@ -305,7 +311,8 @@ def basic_get_item_request_dict(item):
305
311
306
312
307
313
def exhaustive_get_item_request_dict (item ):
308
- """Get a get_item request in dict format for any item.
314
+ """
315
+ Get a get_item request in dict format for any item.
309
316
This is not intended to be able to be used as a real request.
310
317
Some parameters conflict with each other when sent to DynamoDB.
311
318
This is only intended to test the conversion of the request from client to resource format.
@@ -331,7 +338,8 @@ def basic_query_request_dict_condition_expression(item):
331
338
332
339
333
340
def exhaustive_query_request_dict (item ):
334
- """Get a query request in dict format for any item.
341
+ """
342
+ Get a query request in dict format for any item.
335
343
This is not intended to be able to be used as a real request.
336
344
Some parameters conflict with each other when sent to DynamoDB.
337
345
This is only intended to test the conversion of the request from client to resource format.
@@ -347,7 +355,8 @@ def basic_scan_request_dict(item):
347
355
348
356
349
357
def exhaustive_scan_request_dict (item ):
350
- """Get a scan request in dict format for any item.
358
+ """
359
+ Get a scan request in dict format for any item.
351
360
This is not intended to be able to be used as a real request.
352
361
Some parameters conflict with each other when sent to DynamoDB.
353
362
This is only intended to test the conversion of the request from client to resource format.
0 commit comments