aws-sdk-kinesis 1.81.0 → 1.82.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: c395dde6d0cf73e36d5682741ab62b7ecc6fbd6256b68f67234603d13a518358
4
- data.tar.gz: 6dfe2fd074ff736692aadc60b2e331ec994c9ffc00e200258de7a31748c4c851
3
+ metadata.gz: 2ae8a5fe9edd56c1d296e6bf247b9b7c2075db38b3e9c40331c63d7a8cbffce6
4
+ data.tar.gz: fe0814f8494314508d84e9a7106630fa6a2bb5d3dc37fe91b38a3e06dcb3b7f7
5
5
  SHA512:
6
- metadata.gz: d510069c3dda4a6fdd0101cb4008ea7d52244e5ec13bad0209b57509e9819b829efbf66f617a8a9ef297065d0dcf2f73e1be1ebdfb32feaa0ce37a81b8e7ede7
7
- data.tar.gz: a687b4d46843a2c71a6e5d4f9ca8185bcb2e9b7f114f4f587a43bdceeff10d5534b5794329d13ebe1fc6c9e2904d231b23b9edc570c07db5b1d5eeeac3cfe396
6
+ metadata.gz: 8ece4b4690d894e42d27d1be3512031ca40e9febd6142bef66242fb761b9574903fe61fc35616c1c37c8d0ac6723666d644a7249400b8572792a9f3156b2aaa5
7
+ data.tar.gz: 3084fd905c7f5a69ca4fc03cb72da10a1e5d44c91096b0fbe9d772cd8816fc2a28b0b965719f8656f6c92344b44485c420d716c5605072ae3cf8e1bac561d33b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.82.0 (2025-07-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.81.0 (2025-06-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.81.0
1
+ 1.82.0
@@ -88,7 +88,7 @@ module Aws::Kinesis
88
88
  # class name or an instance of a plugin class.
89
89
  #
90
90
  # @option options [required, Aws::CredentialProvider] :credentials
91
- # Your AWS credentials. This can be an instance of any one of the
91
+ # Your AWS credentials used for authentication. This can be an instance of any one of the
92
92
  # following classes:
93
93
  #
94
94
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
@@ -121,18 +121,23 @@ module Aws::Kinesis
121
121
  # locations will be searched for credentials:
122
122
  #
123
123
  # * `Aws.config[:credentials]`
124
+ #
124
125
  # * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
125
126
  # `:account_id` options.
126
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
127
- # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
127
+ #
128
+ # * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
129
+ # `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
130
+ #
128
131
  # * `~/.aws/credentials`
132
+ #
129
133
  # * `~/.aws/config`
134
+ #
130
135
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
131
136
  # are very aggressive. Construct and pass an instance of
132
137
  # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
133
138
  # enable retries and extended timeouts. Instance profile credential
134
- # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
135
- # to true.
139
+ # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
140
+ # to `true`.
136
141
  #
137
142
  # @option options [required, String] :region
138
143
  # The AWS region to connect to. The configured `:region` is
@@ -156,6 +161,11 @@ module Aws::Kinesis
156
161
  # When false, the request will raise a `RetryCapacityNotAvailableError` and will
157
162
  # not retry instead of sleeping.
158
163
  #
164
+ # @option options [Array<String>] :auth_scheme_preference
165
+ # A list of preferred authentication schemes to use when making a request. Supported values are:
166
+ # `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
167
+ # shared config as `auth_scheme_preference`, the value should be a comma-separated list.
168
+ #
159
169
  # @option options [Boolean] :convert_params (true)
160
170
  # When `true`, an attempt is made to coerce request parameters into
161
171
  # the required types.
@@ -213,8 +223,8 @@ module Aws::Kinesis
213
223
  # When an EventStream or Proc object is provided, it will be used as callback for each chunk of event stream response received along the way.
214
224
  #
215
225
  # @option options [String] :profile ("default")
216
- # Used when loading credentials from the shared credentials file
217
- # at HOME/.aws/credentials. When not specified, 'default' is used.
226
+ # Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
227
+ # When not specified, 'default' is used.
218
228
  #
219
229
  # @option options [String] :request_checksum_calculation ("when_supported")
220
230
  # Determines when a checksum will be calculated for request payloads. Values are:
@@ -334,7 +344,7 @@ module Aws::Kinesis
334
344
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
335
345
  #
336
346
  # @option options [Aws::TokenProvider] :token_provider
337
- # A Bearer Token Provider. This can be an instance of any one of the
347
+ # Your Bearer token used for authentication. This can be an instance of any one of the
338
348
  # following classes:
339
349
  #
340
350
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
@@ -738,7 +748,7 @@ module Aws::Kinesis
738
748
  tracer: tracer
739
749
  )
740
750
  context[:gem_name] = 'aws-sdk-kinesis'
741
- context[:gem_version] = '1.81.0'
751
+ context[:gem_version] = '1.82.0'
742
752
  Seahorse::Client::Request.new(handlers, context)
743
753
  end
744
754
 
@@ -97,7 +97,7 @@ module Aws::Kinesis
97
97
  # class name or an instance of a plugin class.
98
98
  #
99
99
  # @option options [required, Aws::CredentialProvider] :credentials
100
- # Your AWS credentials. This can be an instance of any one of the
100
+ # Your AWS credentials used for authentication. This can be an instance of any one of the
101
101
  # following classes:
102
102
  #
103
103
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
@@ -130,18 +130,23 @@ module Aws::Kinesis
130
130
  # locations will be searched for credentials:
131
131
  #
132
132
  # * `Aws.config[:credentials]`
133
+ #
133
134
  # * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
134
135
  # `:account_id` options.
135
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
136
- # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
136
+ #
137
+ # * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
138
+ # `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
139
+ #
137
140
  # * `~/.aws/credentials`
141
+ #
138
142
  # * `~/.aws/config`
143
+ #
139
144
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
140
145
  # are very aggressive. Construct and pass an instance of
141
146
  # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
142
147
  # enable retries and extended timeouts. Instance profile credential
143
- # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
144
- # to true.
148
+ # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
149
+ # to `true`.
145
150
  #
146
151
  # @option options [required, String] :region
147
152
  # The AWS region to connect to. The configured `:region` is
@@ -169,6 +174,11 @@ module Aws::Kinesis
169
174
  # When false, the request will raise a `RetryCapacityNotAvailableError` and will
170
175
  # not retry instead of sleeping.
171
176
  #
177
+ # @option options [Array<String>] :auth_scheme_preference
178
+ # A list of preferred authentication schemes to use when making a request. Supported values are:
179
+ # `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
180
+ # shared config as `auth_scheme_preference`, the value should be a comma-separated list.
181
+ #
172
182
  # @option options [Boolean] :client_side_monitoring (false)
173
183
  # When `true`, client-side metrics will be collected for all API requests from
174
184
  # this client.
@@ -264,8 +274,8 @@ module Aws::Kinesis
264
274
  # When an EventStream or Proc object is provided, it will be used as callback for each chunk of event stream response received along the way.
265
275
  #
266
276
  # @option options [String] :profile ("default")
267
- # Used when loading credentials from the shared credentials file
268
- # at HOME/.aws/credentials. When not specified, 'default' is used.
277
+ # Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
278
+ # When not specified, 'default' is used.
269
279
  #
270
280
  # @option options [String] :request_checksum_calculation ("when_supported")
271
281
  # Determines when a checksum will be calculated for request payloads. Values are:
@@ -385,7 +395,7 @@ module Aws::Kinesis
385
395
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
386
396
  #
387
397
  # @option options [Aws::TokenProvider] :token_provider
388
- # A Bearer Token Provider. This can be an instance of any one of the
398
+ # Your Bearer token used for authentication. This can be an instance of any one of the
389
399
  # following classes:
390
400
  #
391
401
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
@@ -3004,7 +3014,7 @@ module Aws::Kinesis
3004
3014
  tracer: tracer
3005
3015
  )
3006
3016
  context[:gem_name] = 'aws-sdk-kinesis'
3007
- context[:gem_version] = '1.81.0'
3017
+ context[:gem_version] = '1.82.0'
3008
3018
  Seahorse::Client::Request.new(handlers, context)
3009
3019
  end
3010
3020
 
@@ -57,7 +57,7 @@ module Aws::Kinesis
57
57
  autoload :AsyncClient, 'aws-sdk-kinesis/async_client'
58
58
  autoload :EventStreams, 'aws-sdk-kinesis/event_streams'
59
59
 
60
- GEM_VERSION = '1.81.0'
60
+ GEM_VERSION = '1.82.0'
61
61
 
62
62
  end
63
63
 
data/sig/async_client.rbs CHANGED
@@ -17,6 +17,7 @@ module Aws
17
17
  ?access_key_id: String,
18
18
  ?account_id: String,
19
19
  ?adaptive_retry_wait_to_fill: bool,
20
+ ?auth_scheme_preference: Array[String],
20
21
  ?convert_params: bool,
21
22
  ?correct_clock_skew: bool,
22
23
  ?defaults_mode: String,
data/sig/client.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
data/sig/resource.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-kinesis
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.81.0
4
+ version: 1.82.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.225.0
21
+ version: 3.227.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.225.0
31
+ version: 3.227.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement