aws-sdk-dynamodb 1.15.0 → 1.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-dynamodb.rb +1 -1
- data/lib/aws-sdk-dynamodb/client.rb +24 -3
- data/lib/aws-sdk-dynamodb/client_api.rb +68 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1f537f09e796ddf3a046ff35eecdcb42071ba330
|
4
|
+
data.tar.gz: 8fcf2afa41439ecca1180d0d7360aa633981d7da
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7a08e2cf885466eb967cca505f59c254dd2e61b8f6e352d8a25b6c9b8e238dcbf9f13c88df3669a4a668bc1422a5212b8390f9feba36463f8d4a4e5ecf50553d
|
7
|
+
data.tar.gz: e5e3be375d0856579a9a4c2e3f6972ba3bab4762ec86b28dc80e4adc446646c56baf8aa19212886469081864674297fc3e7461c1df948c408dc30b976f2ee6dd
|
data/lib/aws-sdk-dynamodb.rb
CHANGED
@@ -15,6 +15,7 @@ require 'aws-sdk-core/plugins/helpful_socket_errors.rb'
|
|
15
15
|
require 'aws-sdk-core/plugins/retry_errors.rb'
|
16
16
|
require 'aws-sdk-core/plugins/global_configuration.rb'
|
17
17
|
require 'aws-sdk-core/plugins/regional_endpoint.rb'
|
18
|
+
require 'aws-sdk-core/plugins/endpoint_discovery.rb'
|
18
19
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
19
20
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
20
21
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
@@ -48,6 +49,7 @@ module Aws::DynamoDB
|
|
48
49
|
add_plugin(Aws::Plugins::RetryErrors)
|
49
50
|
add_plugin(Aws::Plugins::GlobalConfiguration)
|
50
51
|
add_plugin(Aws::Plugins::RegionalEndpoint)
|
52
|
+
add_plugin(Aws::Plugins::EndpointDiscovery)
|
51
53
|
add_plugin(Aws::Plugins::ResponsePaging)
|
52
54
|
add_plugin(Aws::Plugins::StubResponses)
|
53
55
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
@@ -104,6 +106,10 @@ module Aws::DynamoDB
|
|
104
106
|
#
|
105
107
|
# @option options [String] :access_key_id
|
106
108
|
#
|
109
|
+
# @option options [Boolean] :active_endpoint_cache (false)
|
110
|
+
# When set to `true`, a thread polling for endpoints will be running in
|
111
|
+
# the background every 60 secs (default). Defaults to `false`.
|
112
|
+
#
|
107
113
|
# @option options [Boolean] :client_side_monitoring (false)
|
108
114
|
# When `true`, client-side metrics will be collected for all API requests from
|
109
115
|
# this client.
|
@@ -135,6 +141,21 @@ module Aws::DynamoDB
|
|
135
141
|
# option. You should only configure an `:endpoint` when connecting
|
136
142
|
# to test endpoints. This should be avalid HTTP(S) URI.
|
137
143
|
#
|
144
|
+
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
145
|
+
# Used for the maximum size limit of the LRU cache storing endpoints data
|
146
|
+
# for endpoint discovery enabled operations. Defaults to 1000.
|
147
|
+
#
|
148
|
+
# @option options [Integer] :endpoint_cache_max_threads (10)
|
149
|
+
# Used for the maximum threads in use for polling endpoints to be cached, defaults to 10.
|
150
|
+
#
|
151
|
+
# @option options [Integer] :endpoint_cache_poll_interval (60)
|
152
|
+
# When :endpoint_discovery and :active_endpoint_cache is enabled,
|
153
|
+
# Use this option to config the time interval in seconds for making
|
154
|
+
# requests fetching endpoints information. Defaults to 60 sec.
|
155
|
+
#
|
156
|
+
# @option options [Boolean] :endpoint_discovery (false)
|
157
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
|
158
|
+
#
|
138
159
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
139
160
|
# The log formatter.
|
140
161
|
#
|
@@ -157,14 +178,14 @@ module Aws::DynamoDB
|
|
157
178
|
#
|
158
179
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
159
180
|
#
|
160
|
-
# @option options [Integer] :retry_limit (
|
181
|
+
# @option options [Integer] :retry_limit (10)
|
161
182
|
# The maximum number of times to retry failed requests. Only
|
162
183
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
163
184
|
# are retried. Generally, these are throttling errors, data
|
164
185
|
# checksum errors, networking errors, timeout errors and auth
|
165
186
|
# errors from expired credentials.
|
166
187
|
#
|
167
|
-
# @option options [Integer] :retry_limit (
|
188
|
+
# @option options [Integer] :retry_limit (3)
|
168
189
|
# The maximum number of times to retry failed requests. Only
|
169
190
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
170
191
|
# are retried. Generally, these are throttling errors, data
|
@@ -5389,7 +5410,7 @@ module Aws::DynamoDB
|
|
5389
5410
|
params: params,
|
5390
5411
|
config: config)
|
5391
5412
|
context[:gem_name] = 'aws-sdk-dynamodb'
|
5392
|
-
context[:gem_version] = '1.
|
5413
|
+
context[:gem_version] = '1.16.0'
|
5393
5414
|
Seahorse::Client::Request.new(handlers, context)
|
5394
5415
|
end
|
5395
5416
|
|
@@ -1107,11 +1107,14 @@ module Aws::DynamoDB
|
|
1107
1107
|
"targetPrefix" => "DynamoDB_20120810",
|
1108
1108
|
"uid" => "dynamodb-2012-08-10",
|
1109
1109
|
}
|
1110
|
+
api.endpoint_operation = :describe_endpoints
|
1110
1111
|
|
1111
1112
|
api.add_operation(:batch_get_item, Seahorse::Model::Operation.new.tap do |o|
|
1112
1113
|
o.name = "BatchGetItem"
|
1113
1114
|
o.http_method = "POST"
|
1114
1115
|
o.http_request_uri = "/"
|
1116
|
+
o.endpoint_discovery = {
|
1117
|
+
}
|
1115
1118
|
o.input = Shapes::ShapeRef.new(shape: BatchGetItemInput)
|
1116
1119
|
o.output = Shapes::ShapeRef.new(shape: BatchGetItemOutput)
|
1117
1120
|
o.errors << Shapes::ShapeRef.new(shape: ProvisionedThroughputExceededException)
|
@@ -1128,6 +1131,8 @@ module Aws::DynamoDB
|
|
1128
1131
|
o.name = "BatchWriteItem"
|
1129
1132
|
o.http_method = "POST"
|
1130
1133
|
o.http_request_uri = "/"
|
1134
|
+
o.endpoint_discovery = {
|
1135
|
+
}
|
1131
1136
|
o.input = Shapes::ShapeRef.new(shape: BatchWriteItemInput)
|
1132
1137
|
o.output = Shapes::ShapeRef.new(shape: BatchWriteItemOutput)
|
1133
1138
|
o.errors << Shapes::ShapeRef.new(shape: ProvisionedThroughputExceededException)
|
@@ -1140,6 +1145,8 @@ module Aws::DynamoDB
|
|
1140
1145
|
o.name = "CreateBackup"
|
1141
1146
|
o.http_method = "POST"
|
1142
1147
|
o.http_request_uri = "/"
|
1148
|
+
o.endpoint_discovery = {
|
1149
|
+
}
|
1143
1150
|
o.input = Shapes::ShapeRef.new(shape: CreateBackupInput)
|
1144
1151
|
o.output = Shapes::ShapeRef.new(shape: CreateBackupOutput)
|
1145
1152
|
o.errors << Shapes::ShapeRef.new(shape: TableNotFoundException)
|
@@ -1154,6 +1161,8 @@ module Aws::DynamoDB
|
|
1154
1161
|
o.name = "CreateGlobalTable"
|
1155
1162
|
o.http_method = "POST"
|
1156
1163
|
o.http_request_uri = "/"
|
1164
|
+
o.endpoint_discovery = {
|
1165
|
+
}
|
1157
1166
|
o.input = Shapes::ShapeRef.new(shape: CreateGlobalTableInput)
|
1158
1167
|
o.output = Shapes::ShapeRef.new(shape: CreateGlobalTableOutput)
|
1159
1168
|
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
@@ -1166,6 +1175,8 @@ module Aws::DynamoDB
|
|
1166
1175
|
o.name = "CreateTable"
|
1167
1176
|
o.http_method = "POST"
|
1168
1177
|
o.http_request_uri = "/"
|
1178
|
+
o.endpoint_discovery = {
|
1179
|
+
}
|
1169
1180
|
o.input = Shapes::ShapeRef.new(shape: CreateTableInput)
|
1170
1181
|
o.output = Shapes::ShapeRef.new(shape: CreateTableOutput)
|
1171
1182
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
@@ -1177,6 +1188,8 @@ module Aws::DynamoDB
|
|
1177
1188
|
o.name = "DeleteBackup"
|
1178
1189
|
o.http_method = "POST"
|
1179
1190
|
o.http_request_uri = "/"
|
1191
|
+
o.endpoint_discovery = {
|
1192
|
+
}
|
1180
1193
|
o.input = Shapes::ShapeRef.new(shape: DeleteBackupInput)
|
1181
1194
|
o.output = Shapes::ShapeRef.new(shape: DeleteBackupOutput)
|
1182
1195
|
o.errors << Shapes::ShapeRef.new(shape: BackupNotFoundException)
|
@@ -1189,6 +1202,8 @@ module Aws::DynamoDB
|
|
1189
1202
|
o.name = "DeleteItem"
|
1190
1203
|
o.http_method = "POST"
|
1191
1204
|
o.http_request_uri = "/"
|
1205
|
+
o.endpoint_discovery = {
|
1206
|
+
}
|
1192
1207
|
o.input = Shapes::ShapeRef.new(shape: DeleteItemInput)
|
1193
1208
|
o.output = Shapes::ShapeRef.new(shape: DeleteItemOutput)
|
1194
1209
|
o.errors << Shapes::ShapeRef.new(shape: ConditionalCheckFailedException)
|
@@ -1202,6 +1217,8 @@ module Aws::DynamoDB
|
|
1202
1217
|
o.name = "DeleteTable"
|
1203
1218
|
o.http_method = "POST"
|
1204
1219
|
o.http_request_uri = "/"
|
1220
|
+
o.endpoint_discovery = {
|
1221
|
+
}
|
1205
1222
|
o.input = Shapes::ShapeRef.new(shape: DeleteTableInput)
|
1206
1223
|
o.output = Shapes::ShapeRef.new(shape: DeleteTableOutput)
|
1207
1224
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
@@ -1214,6 +1231,8 @@ module Aws::DynamoDB
|
|
1214
1231
|
o.name = "DescribeBackup"
|
1215
1232
|
o.http_method = "POST"
|
1216
1233
|
o.http_request_uri = "/"
|
1234
|
+
o.endpoint_discovery = {
|
1235
|
+
}
|
1217
1236
|
o.input = Shapes::ShapeRef.new(shape: DescribeBackupInput)
|
1218
1237
|
o.output = Shapes::ShapeRef.new(shape: DescribeBackupOutput)
|
1219
1238
|
o.errors << Shapes::ShapeRef.new(shape: BackupNotFoundException)
|
@@ -1224,6 +1243,8 @@ module Aws::DynamoDB
|
|
1224
1243
|
o.name = "DescribeContinuousBackups"
|
1225
1244
|
o.http_method = "POST"
|
1226
1245
|
o.http_request_uri = "/"
|
1246
|
+
o.endpoint_discovery = {
|
1247
|
+
}
|
1227
1248
|
o.input = Shapes::ShapeRef.new(shape: DescribeContinuousBackupsInput)
|
1228
1249
|
o.output = Shapes::ShapeRef.new(shape: DescribeContinuousBackupsOutput)
|
1229
1250
|
o.errors << Shapes::ShapeRef.new(shape: TableNotFoundException)
|
@@ -1234,6 +1255,7 @@ module Aws::DynamoDB
|
|
1234
1255
|
o.name = "DescribeEndpoints"
|
1235
1256
|
o.http_method = "POST"
|
1236
1257
|
o.http_request_uri = "/"
|
1258
|
+
o.endpoint_operation = true
|
1237
1259
|
o.input = Shapes::ShapeRef.new(shape: DescribeEndpointsRequest)
|
1238
1260
|
o.output = Shapes::ShapeRef.new(shape: DescribeEndpointsResponse)
|
1239
1261
|
end)
|
@@ -1242,6 +1264,8 @@ module Aws::DynamoDB
|
|
1242
1264
|
o.name = "DescribeGlobalTable"
|
1243
1265
|
o.http_method = "POST"
|
1244
1266
|
o.http_request_uri = "/"
|
1267
|
+
o.endpoint_discovery = {
|
1268
|
+
}
|
1245
1269
|
o.input = Shapes::ShapeRef.new(shape: DescribeGlobalTableInput)
|
1246
1270
|
o.output = Shapes::ShapeRef.new(shape: DescribeGlobalTableOutput)
|
1247
1271
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
@@ -1252,6 +1276,8 @@ module Aws::DynamoDB
|
|
1252
1276
|
o.name = "DescribeGlobalTableSettings"
|
1253
1277
|
o.http_method = "POST"
|
1254
1278
|
o.http_request_uri = "/"
|
1279
|
+
o.endpoint_discovery = {
|
1280
|
+
}
|
1255
1281
|
o.input = Shapes::ShapeRef.new(shape: DescribeGlobalTableSettingsInput)
|
1256
1282
|
o.output = Shapes::ShapeRef.new(shape: DescribeGlobalTableSettingsOutput)
|
1257
1283
|
o.errors << Shapes::ShapeRef.new(shape: GlobalTableNotFoundException)
|
@@ -1262,6 +1288,8 @@ module Aws::DynamoDB
|
|
1262
1288
|
o.name = "DescribeLimits"
|
1263
1289
|
o.http_method = "POST"
|
1264
1290
|
o.http_request_uri = "/"
|
1291
|
+
o.endpoint_discovery = {
|
1292
|
+
}
|
1265
1293
|
o.input = Shapes::ShapeRef.new(shape: DescribeLimitsInput)
|
1266
1294
|
o.output = Shapes::ShapeRef.new(shape: DescribeLimitsOutput)
|
1267
1295
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
@@ -1271,6 +1299,8 @@ module Aws::DynamoDB
|
|
1271
1299
|
o.name = "DescribeTable"
|
1272
1300
|
o.http_method = "POST"
|
1273
1301
|
o.http_request_uri = "/"
|
1302
|
+
o.endpoint_discovery = {
|
1303
|
+
}
|
1274
1304
|
o.input = Shapes::ShapeRef.new(shape: DescribeTableInput)
|
1275
1305
|
o.output = Shapes::ShapeRef.new(shape: DescribeTableOutput)
|
1276
1306
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
@@ -1281,6 +1311,8 @@ module Aws::DynamoDB
|
|
1281
1311
|
o.name = "DescribeTimeToLive"
|
1282
1312
|
o.http_method = "POST"
|
1283
1313
|
o.http_request_uri = "/"
|
1314
|
+
o.endpoint_discovery = {
|
1315
|
+
}
|
1284
1316
|
o.input = Shapes::ShapeRef.new(shape: DescribeTimeToLiveInput)
|
1285
1317
|
o.output = Shapes::ShapeRef.new(shape: DescribeTimeToLiveOutput)
|
1286
1318
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
@@ -1291,6 +1323,8 @@ module Aws::DynamoDB
|
|
1291
1323
|
o.name = "GetItem"
|
1292
1324
|
o.http_method = "POST"
|
1293
1325
|
o.http_request_uri = "/"
|
1326
|
+
o.endpoint_discovery = {
|
1327
|
+
}
|
1294
1328
|
o.input = Shapes::ShapeRef.new(shape: GetItemInput)
|
1295
1329
|
o.output = Shapes::ShapeRef.new(shape: GetItemOutput)
|
1296
1330
|
o.errors << Shapes::ShapeRef.new(shape: ProvisionedThroughputExceededException)
|
@@ -1302,6 +1336,8 @@ module Aws::DynamoDB
|
|
1302
1336
|
o.name = "ListBackups"
|
1303
1337
|
o.http_method = "POST"
|
1304
1338
|
o.http_request_uri = "/"
|
1339
|
+
o.endpoint_discovery = {
|
1340
|
+
}
|
1305
1341
|
o.input = Shapes::ShapeRef.new(shape: ListBackupsInput)
|
1306
1342
|
o.output = Shapes::ShapeRef.new(shape: ListBackupsOutput)
|
1307
1343
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
@@ -1311,6 +1347,8 @@ module Aws::DynamoDB
|
|
1311
1347
|
o.name = "ListGlobalTables"
|
1312
1348
|
o.http_method = "POST"
|
1313
1349
|
o.http_request_uri = "/"
|
1350
|
+
o.endpoint_discovery = {
|
1351
|
+
}
|
1314
1352
|
o.input = Shapes::ShapeRef.new(shape: ListGlobalTablesInput)
|
1315
1353
|
o.output = Shapes::ShapeRef.new(shape: ListGlobalTablesOutput)
|
1316
1354
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
@@ -1320,6 +1358,8 @@ module Aws::DynamoDB
|
|
1320
1358
|
o.name = "ListTables"
|
1321
1359
|
o.http_method = "POST"
|
1322
1360
|
o.http_request_uri = "/"
|
1361
|
+
o.endpoint_discovery = {
|
1362
|
+
}
|
1323
1363
|
o.input = Shapes::ShapeRef.new(shape: ListTablesInput)
|
1324
1364
|
o.output = Shapes::ShapeRef.new(shape: ListTablesOutput)
|
1325
1365
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
@@ -1335,6 +1375,8 @@ module Aws::DynamoDB
|
|
1335
1375
|
o.name = "ListTagsOfResource"
|
1336
1376
|
o.http_method = "POST"
|
1337
1377
|
o.http_request_uri = "/"
|
1378
|
+
o.endpoint_discovery = {
|
1379
|
+
}
|
1338
1380
|
o.input = Shapes::ShapeRef.new(shape: ListTagsOfResourceInput)
|
1339
1381
|
o.output = Shapes::ShapeRef.new(shape: ListTagsOfResourceOutput)
|
1340
1382
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
@@ -1345,6 +1387,8 @@ module Aws::DynamoDB
|
|
1345
1387
|
o.name = "PutItem"
|
1346
1388
|
o.http_method = "POST"
|
1347
1389
|
o.http_request_uri = "/"
|
1390
|
+
o.endpoint_discovery = {
|
1391
|
+
}
|
1348
1392
|
o.input = Shapes::ShapeRef.new(shape: PutItemInput)
|
1349
1393
|
o.output = Shapes::ShapeRef.new(shape: PutItemOutput)
|
1350
1394
|
o.errors << Shapes::ShapeRef.new(shape: ConditionalCheckFailedException)
|
@@ -1358,6 +1402,8 @@ module Aws::DynamoDB
|
|
1358
1402
|
o.name = "Query"
|
1359
1403
|
o.http_method = "POST"
|
1360
1404
|
o.http_request_uri = "/"
|
1405
|
+
o.endpoint_discovery = {
|
1406
|
+
}
|
1361
1407
|
o.input = Shapes::ShapeRef.new(shape: QueryInput)
|
1362
1408
|
o.output = Shapes::ShapeRef.new(shape: QueryOutput)
|
1363
1409
|
o.errors << Shapes::ShapeRef.new(shape: ProvisionedThroughputExceededException)
|
@@ -1375,6 +1421,8 @@ module Aws::DynamoDB
|
|
1375
1421
|
o.name = "RestoreTableFromBackup"
|
1376
1422
|
o.http_method = "POST"
|
1377
1423
|
o.http_request_uri = "/"
|
1424
|
+
o.endpoint_discovery = {
|
1425
|
+
}
|
1378
1426
|
o.input = Shapes::ShapeRef.new(shape: RestoreTableFromBackupInput)
|
1379
1427
|
o.output = Shapes::ShapeRef.new(shape: RestoreTableFromBackupOutput)
|
1380
1428
|
o.errors << Shapes::ShapeRef.new(shape: TableAlreadyExistsException)
|
@@ -1389,6 +1437,8 @@ module Aws::DynamoDB
|
|
1389
1437
|
o.name = "RestoreTableToPointInTime"
|
1390
1438
|
o.http_method = "POST"
|
1391
1439
|
o.http_request_uri = "/"
|
1440
|
+
o.endpoint_discovery = {
|
1441
|
+
}
|
1392
1442
|
o.input = Shapes::ShapeRef.new(shape: RestoreTableToPointInTimeInput)
|
1393
1443
|
o.output = Shapes::ShapeRef.new(shape: RestoreTableToPointInTimeOutput)
|
1394
1444
|
o.errors << Shapes::ShapeRef.new(shape: TableAlreadyExistsException)
|
@@ -1404,6 +1454,8 @@ module Aws::DynamoDB
|
|
1404
1454
|
o.name = "Scan"
|
1405
1455
|
o.http_method = "POST"
|
1406
1456
|
o.http_request_uri = "/"
|
1457
|
+
o.endpoint_discovery = {
|
1458
|
+
}
|
1407
1459
|
o.input = Shapes::ShapeRef.new(shape: ScanInput)
|
1408
1460
|
o.output = Shapes::ShapeRef.new(shape: ScanOutput)
|
1409
1461
|
o.errors << Shapes::ShapeRef.new(shape: ProvisionedThroughputExceededException)
|
@@ -1421,6 +1473,8 @@ module Aws::DynamoDB
|
|
1421
1473
|
o.name = "TagResource"
|
1422
1474
|
o.http_method = "POST"
|
1423
1475
|
o.http_request_uri = "/"
|
1476
|
+
o.endpoint_discovery = {
|
1477
|
+
}
|
1424
1478
|
o.input = Shapes::ShapeRef.new(shape: TagResourceInput)
|
1425
1479
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
1426
1480
|
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
@@ -1433,6 +1487,8 @@ module Aws::DynamoDB
|
|
1433
1487
|
o.name = "UntagResource"
|
1434
1488
|
o.http_method = "POST"
|
1435
1489
|
o.http_request_uri = "/"
|
1490
|
+
o.endpoint_discovery = {
|
1491
|
+
}
|
1436
1492
|
o.input = Shapes::ShapeRef.new(shape: UntagResourceInput)
|
1437
1493
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
1438
1494
|
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
@@ -1445,6 +1501,8 @@ module Aws::DynamoDB
|
|
1445
1501
|
o.name = "UpdateContinuousBackups"
|
1446
1502
|
o.http_method = "POST"
|
1447
1503
|
o.http_request_uri = "/"
|
1504
|
+
o.endpoint_discovery = {
|
1505
|
+
}
|
1448
1506
|
o.input = Shapes::ShapeRef.new(shape: UpdateContinuousBackupsInput)
|
1449
1507
|
o.output = Shapes::ShapeRef.new(shape: UpdateContinuousBackupsOutput)
|
1450
1508
|
o.errors << Shapes::ShapeRef.new(shape: TableNotFoundException)
|
@@ -1456,6 +1514,8 @@ module Aws::DynamoDB
|
|
1456
1514
|
o.name = "UpdateGlobalTable"
|
1457
1515
|
o.http_method = "POST"
|
1458
1516
|
o.http_request_uri = "/"
|
1517
|
+
o.endpoint_discovery = {
|
1518
|
+
}
|
1459
1519
|
o.input = Shapes::ShapeRef.new(shape: UpdateGlobalTableInput)
|
1460
1520
|
o.output = Shapes::ShapeRef.new(shape: UpdateGlobalTableOutput)
|
1461
1521
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
@@ -1469,6 +1529,8 @@ module Aws::DynamoDB
|
|
1469
1529
|
o.name = "UpdateGlobalTableSettings"
|
1470
1530
|
o.http_method = "POST"
|
1471
1531
|
o.http_request_uri = "/"
|
1532
|
+
o.endpoint_discovery = {
|
1533
|
+
}
|
1472
1534
|
o.input = Shapes::ShapeRef.new(shape: UpdateGlobalTableSettingsInput)
|
1473
1535
|
o.output = Shapes::ShapeRef.new(shape: UpdateGlobalTableSettingsOutput)
|
1474
1536
|
o.errors << Shapes::ShapeRef.new(shape: GlobalTableNotFoundException)
|
@@ -1483,6 +1545,8 @@ module Aws::DynamoDB
|
|
1483
1545
|
o.name = "UpdateItem"
|
1484
1546
|
o.http_method = "POST"
|
1485
1547
|
o.http_request_uri = "/"
|
1548
|
+
o.endpoint_discovery = {
|
1549
|
+
}
|
1486
1550
|
o.input = Shapes::ShapeRef.new(shape: UpdateItemInput)
|
1487
1551
|
o.output = Shapes::ShapeRef.new(shape: UpdateItemOutput)
|
1488
1552
|
o.errors << Shapes::ShapeRef.new(shape: ConditionalCheckFailedException)
|
@@ -1496,6 +1560,8 @@ module Aws::DynamoDB
|
|
1496
1560
|
o.name = "UpdateTable"
|
1497
1561
|
o.http_method = "POST"
|
1498
1562
|
o.http_request_uri = "/"
|
1563
|
+
o.endpoint_discovery = {
|
1564
|
+
}
|
1499
1565
|
o.input = Shapes::ShapeRef.new(shape: UpdateTableInput)
|
1500
1566
|
o.output = Shapes::ShapeRef.new(shape: UpdateTableOutput)
|
1501
1567
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
@@ -1508,6 +1574,8 @@ module Aws::DynamoDB
|
|
1508
1574
|
o.name = "UpdateTimeToLive"
|
1509
1575
|
o.http_method = "POST"
|
1510
1576
|
o.http_request_uri = "/"
|
1577
|
+
o.endpoint_discovery = {
|
1578
|
+
}
|
1511
1579
|
o.input = Shapes::ShapeRef.new(shape: UpdateTimeToLiveInput)
|
1512
1580
|
o.output = Shapes::ShapeRef.new(shape: UpdateTimeToLiveOutput)
|
1513
1581
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-dynamodb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.16.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-11-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|