aws-sdk-kinesis 1.63.0 → 1.65.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
  SHA256:
3
- metadata.gz: 82d1d6dcf069cf2d62c91e7516ee154bea9dd1f3ff0ea97780105b6e28924bf1
4
- data.tar.gz: c2463f8976c894173b994bf50c3c139919a27e678f9a3e7edcb6729f9710f51e
3
+ metadata.gz: 9ab460b1847a884545a2c42dea8d77b1caf6e1ff04e00ae8c071039cd7f4337d
4
+ data.tar.gz: 8e9d7f751c8f5f0ddc4b581acdaaecb5813a33e6e342265020ae7dc8a1d84545
5
5
  SHA512:
6
- metadata.gz: a05c43da7b84f7f87f1717547891ed310225f4016ead4293434297443a6faa0b519a82383247bf940f0d03d31c15581775b9bfb3888019b025012268e8f7a71f
7
- data.tar.gz: a447cb977e0c8cc8ca4aaa2c881cea48560814a9401d557e51abd2a5598eb09ad388cf30b114208daa464bb3a7069a0c4991329a18b2e8936f5849b2ac71aab5
6
+ metadata.gz: f464ea9fe185a5ad48b5909429dd8ce29888db961a291cc18905669f08633ee51b79b819feaa1d1e7728c14a332aedecaa6bab627271f1b31a224367d4012a56
7
+ data.tar.gz: 5846f25165b476b2a90f2a08c0a0e85e9ba4bf47fdc95ecfc06209efd5ecca3f7018a8cc45aabf11eb9172b371495ee76cc709c5507e866c554a42484f5e809f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.65.0 (2024-09-10)
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-03)
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-08-02)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.63.0
1
+ 1.65.0
@@ -28,6 +28,7 @@ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
28
28
  require 'aws-sdk-core/plugins/request_compression.rb'
29
29
  require 'aws-sdk-core/plugins/defaults_mode.rb'
30
30
  require 'aws-sdk-core/plugins/recursion_detection.rb'
31
+ require 'aws-sdk-core/plugins/telemetry.rb'
31
32
  require 'aws-sdk-core/plugins/sign.rb'
32
33
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
33
34
  require 'aws-sdk-core/plugins/event_stream_configuration.rb'
@@ -61,6 +62,7 @@ module Aws::Kinesis
61
62
  add_plugin(Aws::Plugins::RequestCompression)
62
63
  add_plugin(Aws::Plugins::DefaultsMode)
63
64
  add_plugin(Aws::Plugins::RecursionDetection)
65
+ add_plugin(Aws::Plugins::Telemetry)
64
66
  add_plugin(Aws::Plugins::Sign)
65
67
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
66
68
  add_plugin(Aws::Plugins::EventStreamConfiguration)
@@ -275,6 +277,16 @@ module Aws::Kinesis
275
277
  # ** Please note ** When response stubbing is enabled, no HTTP
276
278
  # requests are made, and retries are disabled.
277
279
  #
280
+ # @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
281
+ # Allows you to provide a telemetry provider, which is used to
282
+ # emit telemetry data. By default, uses `NoOpTelemetryProvider` which
283
+ # will not record or emit any telemetry data. The SDK supports the
284
+ # following telemetry providers:
285
+ #
286
+ # * OpenTelemetry (OTel) - To use the OTel provider, install and require the
287
+ # `opentelemetry-sdk` gem and then, pass in an instance of a
288
+ # `Aws::Telemetry::OTelProvider` for telemetry provider.
289
+ #
278
290
  # @option options [Aws::TokenProvider] :token_provider
279
291
  # A Bearer Token Provider. This can be an instance of any one of the
280
292
  # following classes:
@@ -656,15 +668,20 @@ module Aws::Kinesis
656
668
  # @api private
657
669
  def build_request(operation_name, params = {})
658
670
  handlers = @handlers.for(operation_name)
671
+ tracer = config.telemetry_provider.tracer_provider.tracer(
672
+ Aws::Telemetry.module_to_tracer_name('Aws::Kinesis')
673
+ )
659
674
  context = Seahorse::Client::RequestContext.new(
660
675
  operation_name: operation_name,
661
676
  operation: config.api.operation(operation_name),
662
677
  client: self,
663
678
  params: params,
664
679
  http_response: Seahorse::Client::Http::AsyncResponse.new,
665
- config: config)
680
+ config: config,
681
+ tracer: tracer
682
+ )
666
683
  context[:gem_name] = 'aws-sdk-kinesis'
667
- context[:gem_version] = '1.63.0'
684
+ context[:gem_version] = '1.65.0'
668
685
  Seahorse::Client::Request.new(handlers, context)
669
686
  end
670
687
 
@@ -32,6 +32,7 @@ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
32
32
  require 'aws-sdk-core/plugins/request_compression.rb'
33
33
  require 'aws-sdk-core/plugins/defaults_mode.rb'
34
34
  require 'aws-sdk-core/plugins/recursion_detection.rb'
35
+ require 'aws-sdk-core/plugins/telemetry.rb'
35
36
  require 'aws-sdk-core/plugins/sign.rb'
36
37
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
37
38
  require 'aws-sdk-core/plugins/event_stream_configuration.rb'
@@ -84,6 +85,7 @@ module Aws::Kinesis
84
85
  add_plugin(Aws::Plugins::RequestCompression)
85
86
  add_plugin(Aws::Plugins::DefaultsMode)
86
87
  add_plugin(Aws::Plugins::RecursionDetection)
88
+ add_plugin(Aws::Plugins::Telemetry)
87
89
  add_plugin(Aws::Plugins::Sign)
88
90
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
89
91
  add_plugin(Aws::Plugins::EventStreamConfiguration)
@@ -348,6 +350,16 @@ module Aws::Kinesis
348
350
  # ** Please note ** When response stubbing is enabled, no HTTP
349
351
  # requests are made, and retries are disabled.
350
352
  #
353
+ # @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
354
+ # Allows you to provide a telemetry provider, which is used to
355
+ # emit telemetry data. By default, uses `NoOpTelemetryProvider` which
356
+ # will not record or emit any telemetry data. The SDK supports the
357
+ # following telemetry providers:
358
+ #
359
+ # * OpenTelemetry (OTel) - To use the OTel provider, install and require the
360
+ # `opentelemetry-sdk` gem and then, pass in an instance of a
361
+ # `Aws::Telemetry::OTelProvider` for telemetry provider.
362
+ #
351
363
  # @option options [Aws::TokenProvider] :token_provider
352
364
  # A Bearer Token Provider. This can be an instance of any one of the
353
365
  # following classes:
@@ -431,6 +443,12 @@ module Aws::Kinesis
431
443
  # @option options [String] :ssl_ca_store
432
444
  # Sets the X509::Store to verify peer certificate.
433
445
  #
446
+ # @option options [OpenSSL::X509::Certificate] :ssl_cert
447
+ # Sets a client certificate when creating http connections.
448
+ #
449
+ # @option options [OpenSSL::PKey] :ssl_key
450
+ # Sets a client key when creating http connections.
451
+ #
434
452
  # @option options [Float] :ssl_timeout
435
453
  # Sets the SSL timeout in seconds
436
454
  #
@@ -2804,14 +2822,19 @@ module Aws::Kinesis
2804
2822
  # @api private
2805
2823
  def build_request(operation_name, params = {})
2806
2824
  handlers = @handlers.for(operation_name)
2825
+ tracer = config.telemetry_provider.tracer_provider.tracer(
2826
+ Aws::Telemetry.module_to_tracer_name('Aws::Kinesis')
2827
+ )
2807
2828
  context = Seahorse::Client::RequestContext.new(
2808
2829
  operation_name: operation_name,
2809
2830
  operation: config.api.operation(operation_name),
2810
2831
  client: self,
2811
2832
  params: params,
2812
- config: config)
2833
+ config: config,
2834
+ tracer: tracer
2835
+ )
2813
2836
  context[:gem_name] = 'aws-sdk-kinesis'
2814
- context[:gem_version] = '1.63.0'
2837
+ context[:gem_version] = '1.65.0'
2815
2838
  Seahorse::Client::Request.new(handlers, context)
2816
2839
  end
2817
2840
 
@@ -55,6 +55,6 @@ require_relative 'aws-sdk-kinesis/event_streams'
55
55
  # @!group service
56
56
  module Aws::Kinesis
57
57
 
58
- GEM_VERSION = '1.63.0'
58
+ GEM_VERSION = '1.65.0'
59
59
 
60
60
  end
data/sig/client.rbs CHANGED
@@ -54,6 +54,7 @@ module Aws
54
54
  ?sigv4a_signing_region_set: Array[String],
55
55
  ?simple_json: bool,
56
56
  ?stub_responses: untyped,
57
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
57
58
  ?token_provider: untyped,
58
59
  ?use_dualstack_endpoint: bool,
59
60
  ?use_fips_endpoint: bool,
data/sig/resource.rbs CHANGED
@@ -54,6 +54,7 @@ module Aws
54
54
  ?sigv4a_signing_region_set: Array[String],
55
55
  ?simple_json: bool,
56
56
  ?stub_responses: untyped,
57
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
57
58
  ?token_provider: untyped,
58
59
  ?use_dualstack_endpoint: bool,
59
60
  ?use_fips_endpoint: bool,
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-kinesis
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-08-02 00:00:00.000000000 Z
11
+ date: 2024-09-10 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.201.0
22
+ version: 3.203.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.201.0
32
+ version: 3.203.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement