aws-sdk-dynamodbstreams 1.63.0 → 1.65.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: 741f5109f45aa059a92f66859583cf8e15f9592bd782cc88be021ae63b7d8c9b
4
- data.tar.gz: ae39e44ec8b07c37d5f926f8efabe80cb801c4d37c948d74a1db7357d19ea269
3
+ metadata.gz: 6f90367e1c5477565fb77489be0f9f18cf3c9b98f78abfca14c99646c6a7dadf
4
+ data.tar.gz: 2e44c70822682f6086a329f361693285f80b35f8533726f57d2a449918e0bfe8
5
5
  SHA512:
6
- metadata.gz: 14d9e424eb5f46553d4daed1d1f325dbd64c175ef26832c0b72be52e4bab9ef2b3ea2ae455905bc9f7cbc1e8092c98382b8b096d6f8f58a04b07accbeb8dd9d2
7
- data.tar.gz: 64435455de2339b4fda4096dde228f2a804eda845456546becce2f449ca4e164f44b3af638a91d8ab840a50f95c0dc9a14a3db6554788d5f7b559301c8d43f00
6
+ metadata.gz: 24d7cd3a88bed9f0aa1945488b80f44452d374027a4ba09e609c1881ff44752431bf4fce2ca2ef5d787efef5275d204f457195418ea8cbc30220ec45b5b448f7
7
+ data.tar.gz: da31e947a34cddfe27d83f8e1806f58a3b77e83b90c970c9d3ea78b9d108b6f6ef58d307383d8e7cd300b4bc5c9a91bb8221769012f406bf3cc564a464e33a53
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.65.0 (2024-09-11)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.64.0 (2024-09-10)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.63.0 (2024-09-03)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.63.0
1
+ 1.65.0
@@ -438,6 +438,12 @@ module Aws::DynamoDBStreams
438
438
  # @option options [String] :ssl_ca_store
439
439
  # Sets the X509::Store to verify peer certificate.
440
440
  #
441
+ # @option options [OpenSSL::X509::Certificate] :ssl_cert
442
+ # Sets a client certificate when creating http connections.
443
+ #
444
+ # @option options [OpenSSL::PKey] :ssl_key
445
+ # Sets a client key when creating http connections.
446
+ #
441
447
  # @option options [Float] :ssl_timeout
442
448
  # Sets the SSL timeout in seconds
443
449
  #
@@ -905,7 +911,7 @@ module Aws::DynamoDBStreams
905
911
  tracer: tracer
906
912
  )
907
913
  context[:gem_name] = 'aws-sdk-dynamodbstreams'
908
- context[:gem_version] = '1.63.0'
914
+ context[:gem_version] = '1.65.0'
909
915
  Seahorse::Client::Request.new(handlers, context)
910
916
  end
911
917
 
@@ -14,56 +14,44 @@ module Aws::DynamoDBStreams
14
14
 
15
15
  class DescribeStream
16
16
  def self.build(context)
17
- unless context.config.regional_endpoint
18
- endpoint = context.config.endpoint.to_s
19
- end
20
17
  Aws::DynamoDBStreams::EndpointParameters.new(
21
18
  region: context.config.region,
22
19
  use_dual_stack: context.config.use_dualstack_endpoint,
23
20
  use_fips: context.config.use_fips_endpoint,
24
- endpoint: endpoint,
21
+ endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
25
22
  )
26
23
  end
27
24
  end
28
25
 
29
26
  class GetRecords
30
27
  def self.build(context)
31
- unless context.config.regional_endpoint
32
- endpoint = context.config.endpoint.to_s
33
- end
34
28
  Aws::DynamoDBStreams::EndpointParameters.new(
35
29
  region: context.config.region,
36
30
  use_dual_stack: context.config.use_dualstack_endpoint,
37
31
  use_fips: context.config.use_fips_endpoint,
38
- endpoint: endpoint,
32
+ endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
39
33
  )
40
34
  end
41
35
  end
42
36
 
43
37
  class GetShardIterator
44
38
  def self.build(context)
45
- unless context.config.regional_endpoint
46
- endpoint = context.config.endpoint.to_s
47
- end
48
39
  Aws::DynamoDBStreams::EndpointParameters.new(
49
40
  region: context.config.region,
50
41
  use_dual_stack: context.config.use_dualstack_endpoint,
51
42
  use_fips: context.config.use_fips_endpoint,
52
- endpoint: endpoint,
43
+ endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
53
44
  )
54
45
  end
55
46
  end
56
47
 
57
48
  class ListStreams
58
49
  def self.build(context)
59
- unless context.config.regional_endpoint
60
- endpoint = context.config.endpoint.to_s
61
- end
62
50
  Aws::DynamoDBStreams::EndpointParameters.new(
63
51
  region: context.config.region,
64
52
  use_dual_stack: context.config.use_dualstack_endpoint,
65
53
  use_fips: context.config.use_fips_endpoint,
66
- endpoint: endpoint,
54
+ endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
67
55
  )
68
56
  end
69
57
  end
@@ -40,11 +40,20 @@ module Aws::DynamoDBStreams
40
40
  context[:auth_scheme] =
41
41
  Aws::Endpoints.resolve_auth_scheme(context, endpoint)
42
42
 
43
- @handler.call(context)
43
+ with_metrics(context) { @handler.call(context) }
44
44
  end
45
45
 
46
46
  private
47
47
 
48
+ def with_metrics(context, &block)
49
+ metrics = []
50
+ metrics << 'ENDPOINT_OVERRIDE' unless context.config.regional_endpoint
51
+ if context[:auth_scheme] && context[:auth_scheme]['name'] == 'sigv4a'
52
+ metrics << 'SIGV4A_SIGNING'
53
+ end
54
+ Aws::Plugins::UserAgent.metric(*metrics, &block)
55
+ end
56
+
48
57
  def apply_endpoint_headers(context, headers)
49
58
  headers.each do |key, values|
50
59
  value = values
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-dynamodbstreams/customizations'
52
52
  # @!group service
53
53
  module Aws::DynamoDBStreams
54
54
 
55
- GEM_VERSION = '1.63.0'
55
+ GEM_VERSION = '1.65.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-dynamodbstreams
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.63.0
4
+ version: 1.65.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: 2024-09-03 00:00:00.000000000 Z
11
+ date: 2024-09-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.203.0
22
+ version: 3.205.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.203.0
32
+ version: 3.205.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement