aws-sdk-dynamodb 1.97.0 → 1.99.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4958dc1520c2081d14363fbf390a527875fa5854ebbe9acb51ee785af5cb832c
4
- data.tar.gz: 753401e120dc0c644ed033fe6e31475c9e43da922ed226c2bfae498a2be09f89
3
+ metadata.gz: c967d2c65b02ae88b7ded0ebe2c52e28eb0790e4891916a6570cd03af7decedc
4
+ data.tar.gz: 60a81edee05ad4c851c1cab53087494e67f833f507a74431e88a9342a54f29f0
5
5
  SHA512:
6
- metadata.gz: 70eb3d2596a95eef07940cda8c0037c44716f550e44aa1d9640cafb6213721add350add429aad5b98d9b481ae79101d4f656bc230555b440c4b510293db9f5a4
7
- data.tar.gz: '02857dd46576c7923895541e0c6504d642322de2ca3f87f821f495daa567704a543e3fdb981f6e45b6d2910137f4f18614b5a90610f7072362ff11de5b0575a1'
6
+ metadata.gz: bfdd8d2ea4db98db8590cf6c6fbb6e903d91448f99b22e66e1af82068d51fb8bb38defab33b381129af7a637dd8d79c82359510fdb521948adc7036efbecded9
7
+ data.tar.gz: e5bb0c9689f58bdd7e93425cf4957bce7b8a1436d629308f4fcf92303ba7ed89601c4d33cc9a85e3eac3bc60b78cb6d9c99d72dd7c6aa3c7176ef292c920fd2a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.99.0 (2024-01-17)
5
+ ------------------
6
+
7
+ * Feature - Updating note for enabling streams for UpdateTable.
8
+
9
+ 1.98.0 (2023-11-28)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.97.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.97.0
1
+ 1.99.0
@@ -7332,9 +7332,9 @@ module Aws::DynamoDB
7332
7332
  # @option params [Types::StreamSpecification] :stream_specification
7333
7333
  # Represents the DynamoDB Streams configuration for the table.
7334
7334
  #
7335
- # <note markdown="1"> You receive a `ResourceInUseException` if you try to enable a stream
7336
- # on a table that already has a stream, or if you try to disable a
7337
- # stream on a table that doesn't have a stream.
7335
+ # <note markdown="1"> You receive a `ValidationException` if you try to enable a stream on a
7336
+ # table that already has a stream, or if you try to disable a stream on
7337
+ # a table that doesn't have a stream.
7338
7338
  #
7339
7339
  # </note>
7340
7340
  #
@@ -7861,7 +7861,7 @@ module Aws::DynamoDB
7861
7861
  params: params,
7862
7862
  config: config)
7863
7863
  context[:gem_name] = 'aws-sdk-dynamodb'
7864
- context[:gem_version] = '1.97.0'
7864
+ context[:gem_version] = '1.99.0'
7865
7865
  Seahorse::Client::Request.new(handlers, context)
7866
7866
  end
7867
7867
 
@@ -25,16 +25,17 @@ module Aws::DynamoDB
25
25
  # @api private
26
26
  class Handler < Seahorse::Client::Handler
27
27
  def call(context)
28
- # If endpoint was discovered, do not resolve or apply the endpoint.
29
28
  unless context[:discovered_endpoint]
30
29
  params = parameters_for_operation(context)
31
30
  endpoint = context.config.endpoint_provider.resolve_endpoint(params)
32
31
 
33
32
  context.http_request.endpoint = endpoint.url
34
33
  apply_endpoint_headers(context, endpoint.headers)
34
+
35
+ context[:endpoint_params] = params
36
+ context[:endpoint_properties] = endpoint.properties
35
37
  end
36
38
 
37
- context[:endpoint_params] = params
38
39
  context[:auth_scheme] =
39
40
  Aws::Endpoints.resolve_auth_scheme(context, endpoint)
40
41
 
@@ -1930,9 +1930,9 @@ module Aws::DynamoDB
1930
1930
  # @option options [Types::StreamSpecification] :stream_specification
1931
1931
  # Represents the DynamoDB Streams configuration for the table.
1932
1932
  #
1933
- # <note markdown="1"> You receive a `ResourceInUseException` if you try to enable a stream
1934
- # on a table that already has a stream, or if you try to disable a
1935
- # stream on a table that doesn't have a stream.
1933
+ # <note markdown="1"> You receive a `ValidationException` if you try to enable a stream on a
1934
+ # table that already has a stream, or if you try to disable a stream on
1935
+ # a table that doesn't have a stream.
1936
1936
  #
1937
1937
  # </note>
1938
1938
  # @option options [Types::SSESpecification] :sse_specification
@@ -9868,9 +9868,9 @@ module Aws::DynamoDB
9868
9868
  # @!attribute [rw] stream_specification
9869
9869
  # Represents the DynamoDB Streams configuration for the table.
9870
9870
  #
9871
- # <note markdown="1"> You receive a `ResourceInUseException` if you try to enable a stream
9872
- # on a table that already has a stream, or if you try to disable a
9873
- # stream on a table that doesn't have a stream.
9871
+ # <note markdown="1"> You receive a `ValidationException` if you try to enable a stream on
9872
+ # a table that already has a stream, or if you try to disable a stream
9873
+ # on a table that doesn't have a stream.
9874
9874
  #
9875
9875
  # </note>
9876
9876
  # @return [Types::StreamSpecification]
@@ -54,6 +54,6 @@ require_relative 'aws-sdk-dynamodb/customizations'
54
54
  # @!group service
55
55
  module Aws::DynamoDB
56
56
 
57
- GEM_VERSION = '1.97.0'
57
+ GEM_VERSION = '1.99.0'
58
58
 
59
59
  end
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.97.0
4
+ version: 1.99.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-22 00:00:00.000000000 Z
11
+ date: 2024-01-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -79,7 +79,7 @@ licenses:
79
79
  metadata:
80
80
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-dynamodb
81
81
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-dynamodb/CHANGELOG.md
82
- post_install_message:
82
+ post_install_message:
83
83
  rdoc_options: []
84
84
  require_paths:
85
85
  - lib
@@ -94,8 +94,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
94
94
  - !ruby/object:Gem::Version
95
95
  version: '0'
96
96
  requirements: []
97
- rubygems_version: 3.1.6
98
- signing_key:
97
+ rubygems_version: 3.4.10
98
+ signing_key:
99
99
  specification_version: 4
100
100
  summary: AWS SDK for Ruby - DynamoDB
101
101
  test_files: []