aws-sdk-dynamodb 1.18.1 → 1.19.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8a1e4c904c24041bce928d9352452b64bccfb49c
4
- data.tar.gz: 9f6a90fbd77b265cd72a933496c5ce51e4956db2
3
+ metadata.gz: e8c39ebf1ebe8978310c16e0bda1d72ca8dd6af2
4
+ data.tar.gz: 28c81871dc20105ebc17a03f51a1c4ec59187fc6
5
5
  SHA512:
6
- metadata.gz: 45c560d2f78d94042043c8393e99536882371c8fe40adcbd36ae2ea20ca5f8634c84f8f514da411cf2d9d8d5be6a673688f019a4a216f0003958cb8656730889
7
- data.tar.gz: f8d5e266778fd3a65e67a5a7a674d84d40dbe6f5f2a24f0fafa97cde12124560254765f5f68dd747ddae152ea537512b513ec52f4bd541d4d551228dca781bee
6
+ metadata.gz: 3337f17bb87db513c24e19a038e37a56bb6de26e1dc0dfdefc2dfeec40b18a5d8e9a866de6e74ddcf3c5d8b7e5ce86fbde0857254b073bdc5ab691296d371b3e
7
+ data.tar.gz: 665aee40c8bd9d46d2d16c20d5770cc4db0f49695b89c30d00b6ad4cb002847eca8ffbe3e6f8593ffd0bf84a6350c16053757b6d49ff9db989e4ac32bf86f38f
@@ -44,6 +44,6 @@ require_relative 'aws-sdk-dynamodb/customizations'
44
44
  # @service
45
45
  module Aws::DynamoDB
46
46
 
47
- GEM_VERSION = '1.18.1'
47
+ GEM_VERSION = '1.19.0'
48
48
 
49
49
  end
@@ -4706,7 +4706,7 @@ module Aws::DynamoDB
4706
4706
  # ],
4707
4707
  # return_consumed_capacity: "INDEXES", # accepts INDEXES, TOTAL, NONE
4708
4708
  # return_item_collection_metrics: "SIZE", # accepts SIZE, NONE
4709
- # client_request_token: "String",
4709
+ # client_request_token: "ClientRequestToken",
4710
4710
  # })
4711
4711
  #
4712
4712
  # @example Response structure
@@ -5837,7 +5837,7 @@ module Aws::DynamoDB
5837
5837
  params: params,
5838
5838
  config: config)
5839
5839
  context[:gem_name] = 'aws-sdk-dynamodb'
5840
- context[:gem_version] = '1.18.1'
5840
+ context[:gem_version] = '1.19.0'
5841
5841
  Seahorse::Client::Request.new(handlers, context)
5842
5842
  end
5843
5843
 
@@ -61,6 +61,7 @@ module Aws::DynamoDB
61
61
  CancellationReason = Shapes::StructureShape.new(name: 'CancellationReason')
62
62
  CancellationReasonList = Shapes::ListShape.new(name: 'CancellationReasonList')
63
63
  Capacity = Shapes::StructureShape.new(name: 'Capacity')
64
+ ClientRequestToken = Shapes::StringShape.new(name: 'ClientRequestToken')
64
65
  Code = Shapes::StringShape.new(name: 'Code')
65
66
  ComparisonOperator = Shapes::StringShape.new(name: 'ComparisonOperator')
66
67
  Condition = Shapes::StructureShape.new(name: 'Condition')
@@ -1118,7 +1119,7 @@ module Aws::DynamoDB
1118
1119
  TransactWriteItemsInput.add_member(:transact_items, Shapes::ShapeRef.new(shape: TransactWriteItemList, required: true, location_name: "TransactItems"))
1119
1120
  TransactWriteItemsInput.add_member(:return_consumed_capacity, Shapes::ShapeRef.new(shape: ReturnConsumedCapacity, location_name: "ReturnConsumedCapacity"))
1120
1121
  TransactWriteItemsInput.add_member(:return_item_collection_metrics, Shapes::ShapeRef.new(shape: ReturnItemCollectionMetrics, location_name: "ReturnItemCollectionMetrics"))
1121
- TransactWriteItemsInput.add_member(:client_request_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
1122
+ TransactWriteItemsInput.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
1122
1123
  TransactWriteItemsInput.struct_class = Types::TransactWriteItemsInput
1123
1124
 
1124
1125
  TransactWriteItemsOutput.add_member(:consumed_capacity, Shapes::ShapeRef.new(shape: ConsumedCapacityMultiple, location_name: "ConsumedCapacity"))
@@ -1625,6 +1626,7 @@ module Aws::DynamoDB
1625
1626
  o.output = Shapes::ShapeRef.new(shape: TransactGetItemsOutput)
1626
1627
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1627
1628
  o.errors << Shapes::ShapeRef.new(shape: TransactionCanceledException)
1629
+ o.errors << Shapes::ShapeRef.new(shape: ProvisionedThroughputExceededException)
1628
1630
  o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
1629
1631
  end)
1630
1632
 
@@ -1640,6 +1642,7 @@ module Aws::DynamoDB
1640
1642
  o.errors << Shapes::ShapeRef.new(shape: TransactionCanceledException)
1641
1643
  o.errors << Shapes::ShapeRef.new(shape: TransactionInProgressException)
1642
1644
  o.errors << Shapes::ShapeRef.new(shape: IdempotentParameterMismatchException)
1645
+ o.errors << Shapes::ShapeRef.new(shape: ProvisionedThroughputExceededException)
1643
1646
  o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
1644
1647
  end)
1645
1648
 
@@ -7128,7 +7128,7 @@ module Aws::DynamoDB
7128
7128
  # ],
7129
7129
  # return_consumed_capacity: "INDEXES", # accepts INDEXES, TOTAL, NONE
7130
7130
  # return_item_collection_metrics: "SIZE", # accepts SIZE, NONE
7131
- # client_request_token: "String",
7131
+ # client_request_token: "ClientRequestToken",
7132
7132
  # }
7133
7133
  #
7134
7134
  # @!attribute [rw] transact_items
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.18.1
4
+ version: 1.19.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-12-17 00:00:00.000000000 Z
11
+ date: 2018-12-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core