aws-sdk-keyspacesstreams 1.0.0 → 1.2.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: ac8659886eb87ece7e91df61d0ee482005eb89eb7838a2429bede7073d2fb2b3
4
- data.tar.gz: 6ef6c4c4f24aaf7a44a4cf041ad7bb0de23eebfad852f48eb349b74cfaa174af
3
+ metadata.gz: 21ad56458129ebca5f0324955d4abd0de966834b118461230d3e3611939ed6b7
4
+ data.tar.gz: 8aca45e6ad201798e7a765be334ca3d6a4fedc4257bcd9ed79ea60430f3e808e
5
5
  SHA512:
6
- metadata.gz: 5290fba7bca4f24d0a27a2b82d98440e45c97b56f85108185309641997c8dc2a9ff3cf7b7be329db77612af71f79c9adffce5f087103a67d8712ce6bdadee5bd
7
- data.tar.gz: 579341a16f303f11ec94c36224519bed00bdb1ee3377ba1de86857e139e059d337a355df7f586dd8a5add99c8d7f2d1edd40b4be99da3a387cd5749987e33bb3
6
+ metadata.gz: bd4b74e309a70d94a01bcdd29d9600c220d72f381a1c5497efc81827eea2dcb060975b2050ba32ba1d2e54023c06e08c7cef3db3e813e0f0227010017a70ddb6
7
+ data.tar.gz: 7f410e3719616bc03b7b1e83418aaa950bb5e737bae8a4765df779de10067c99c52c0a127a030ac4f67871a6fa729353474fa1e9eca67b9e83943e08a2b35898
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.2.0 (2025-07-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.1.0 (2025-07-17)
10
+ ------------------
11
+
12
+ * Feature - Doc only update for the Amazon Keyspaces Streams API.
13
+
4
14
  1.0.0 (2025-06-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.2.0
@@ -95,7 +95,7 @@ module Aws::KeyspacesStreams
95
95
  # class name or an instance of a plugin class.
96
96
  #
97
97
  # @option options [required, Aws::CredentialProvider] :credentials
98
- # Your AWS credentials. This can be an instance of any one of the
98
+ # Your AWS credentials used for authentication. This can be an instance of any one of the
99
99
  # following classes:
100
100
  #
101
101
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
@@ -128,18 +128,23 @@ module Aws::KeyspacesStreams
128
128
  # locations will be searched for credentials:
129
129
  #
130
130
  # * `Aws.config[:credentials]`
131
+ #
131
132
  # * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
132
133
  # `:account_id` options.
133
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
134
- # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
134
+ #
135
+ # * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
136
+ # `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
137
+ #
135
138
  # * `~/.aws/credentials`
139
+ #
136
140
  # * `~/.aws/config`
141
+ #
137
142
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
138
143
  # are very aggressive. Construct and pass an instance of
139
144
  # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
140
145
  # enable retries and extended timeouts. Instance profile credential
141
- # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
142
- # to true.
146
+ # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
147
+ # to `true`.
143
148
  #
144
149
  # @option options [required, String] :region
145
150
  # The AWS region to connect to. The configured `:region` is
@@ -167,6 +172,11 @@ module Aws::KeyspacesStreams
167
172
  # When false, the request will raise a `RetryCapacityNotAvailableError` and will
168
173
  # not retry instead of sleeping.
169
174
  #
175
+ # @option options [Array<String>] :auth_scheme_preference
176
+ # A list of preferred authentication schemes to use when making a request. Supported values are:
177
+ # `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
178
+ # shared config as `auth_scheme_preference`, the value should be a comma-separated list.
179
+ #
170
180
  # @option options [Boolean] :client_side_monitoring (false)
171
181
  # When `true`, client-side metrics will be collected for all API requests from
172
182
  # this client.
@@ -253,8 +263,8 @@ module Aws::KeyspacesStreams
253
263
  # 4 times. Used in `standard` and `adaptive` retry modes.
254
264
  #
255
265
  # @option options [String] :profile ("default")
256
- # Used when loading credentials from the shared credentials file
257
- # at HOME/.aws/credentials. When not specified, 'default' is used.
266
+ # Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
267
+ # When not specified, 'default' is used.
258
268
  #
259
269
  # @option options [String] :request_checksum_calculation ("when_supported")
260
270
  # Determines when a checksum will be calculated for request payloads. Values are:
@@ -374,7 +384,7 @@ module Aws::KeyspacesStreams
374
384
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
375
385
  #
376
386
  # @option options [Aws::TokenProvider] :token_provider
377
- # A Bearer Token Provider. This can be an instance of any one of the
387
+ # Your Bearer token used for authentication. This can be an instance of any one of the
378
388
  # following classes:
379
389
  #
380
390
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
@@ -487,13 +497,13 @@ module Aws::KeyspacesStreams
487
497
  # The unique identifier of the shard iterator. A shard iterator
488
498
  # specifies the position in the shard from which you want to start
489
499
  # reading data records sequentially. You obtain this value by calling
490
- # the `GetShardIterator` operation. Each shard iterator is valid for 5
500
+ # the `GetShardIterator` operation. Each shard iterator is valid for 15
491
501
  # minutes after creation.
492
502
  #
493
503
  # @option params [Integer] :max_results
494
504
  # The maximum number of records to return in a single `GetRecords`
495
505
  # request. Default value is 1000. You can specify a limit between 1 and
496
- # 10000, but the actual number returned might be less than the specified
506
+ # 1000, but the actual number returned might be less than the specified
497
507
  # maximum if the size of the data for the returned records exceeds the
498
508
  # internal size limit.
499
509
  #
@@ -839,7 +849,7 @@ module Aws::KeyspacesStreams
839
849
  # @option params [Integer] :max_results
840
850
  # The maximum number of shard objects to return in a single `GetStream`
841
851
  # request. Default value is 100. The minimum value is 1 and the maximum
842
- # value is 1000.
852
+ # value is 100.
843
853
  #
844
854
  # @option params [Types::ShardFilter] :shard_filter
845
855
  # Optional filter criteria to apply when retrieving shards. You can
@@ -922,7 +932,7 @@ module Aws::KeyspacesStreams
922
932
  # @option params [Integer] :max_results
923
933
  # The maximum number of streams to return in a single `ListStreams`
924
934
  # request. Default value is 100. The minimum value is 1 and the maximum
925
- # value is 1000.
935
+ # value is 100.
926
936
  #
927
937
  # @option params [String] :next_token
928
938
  # An optional pagination token provided by a previous `ListStreams`
@@ -981,7 +991,7 @@ module Aws::KeyspacesStreams
981
991
  tracer: tracer
982
992
  )
983
993
  context[:gem_name] = 'aws-sdk-keyspacesstreams'
984
- context[:gem_version] = '1.0.0'
994
+ context[:gem_version] = '1.2.0'
985
995
  Seahorse::Client::Request.new(handlers, context)
986
996
  end
987
997
 
@@ -34,14 +34,14 @@ module Aws::KeyspacesStreams
34
34
  # The unique identifier of the shard iterator. A shard iterator
35
35
  # specifies the position in the shard from which you want to start
36
36
  # reading data records sequentially. You obtain this value by calling
37
- # the `GetShardIterator` operation. Each shard iterator is valid for 5
38
- # minutes after creation.
37
+ # the `GetShardIterator` operation. Each shard iterator is valid for
38
+ # 15 minutes after creation.
39
39
  # @return [String]
40
40
  #
41
41
  # @!attribute [rw] max_results
42
42
  # The maximum number of records to return in a single `GetRecords`
43
43
  # request. Default value is 1000. You can specify a limit between 1
44
- # and 10000, but the actual number returned might be less than the
44
+ # and 1000, but the actual number returned might be less than the
45
45
  # specified maximum if the size of the data for the returned records
46
46
  # exceeds the internal size limit.
47
47
  # @return [Integer]
@@ -128,7 +128,7 @@ module Aws::KeyspacesStreams
128
128
  # @!attribute [rw] shard_iterator
129
129
  # The unique identifier for the shard iterator. This value is used in
130
130
  # the `GetRecords` operation to retrieve data records from the
131
- # specified shard. Each shard iterator expires 5 minutes after it is
131
+ # specified shard. Each shard iterator expires 15 minutes after it is
132
132
  # returned to the requester.
133
133
  # @return [String]
134
134
  #
@@ -149,7 +149,7 @@ module Aws::KeyspacesStreams
149
149
  # @!attribute [rw] max_results
150
150
  # The maximum number of shard objects to return in a single
151
151
  # `GetStream` request. Default value is 100. The minimum value is 1
152
- # and the maximum value is 1000.
152
+ # and the maximum value is 100.
153
153
  # @return [Integer]
154
154
  #
155
155
  # @!attribute [rw] shard_filter
@@ -560,7 +560,7 @@ module Aws::KeyspacesStreams
560
560
  # @!attribute [rw] max_results
561
561
  # The maximum number of streams to return in a single `ListStreams`
562
562
  # request. Default value is 100. The minimum value is 1 and the
563
- # maximum value is 1000.
563
+ # maximum value is 100.
564
564
  # @return [Integer]
565
565
  #
566
566
  # @!attribute [rw] next_token
@@ -54,7 +54,7 @@ module Aws::KeyspacesStreams
54
54
  autoload :EndpointProvider, 'aws-sdk-keyspacesstreams/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-keyspacesstreams/endpoints'
56
56
 
57
- GEM_VERSION = '1.0.0'
57
+ GEM_VERSION = '1.2.0'
58
58
 
59
59
  end
60
60
 
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-keyspacesstreams
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.2.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