aws-sdk-keyspacesstreams 1.11.0 → 1.13.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-keyspacesstreams/client.rb +20 -13
- data/lib/aws-sdk-keyspacesstreams/client_api.rb +2 -0
- data/lib/aws-sdk-keyspacesstreams/types.rb +23 -11
- data/lib/aws-sdk-keyspacesstreams.rb +1 -1
- data/sig/types.rbs +3 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0d1d264aa1705516a3ca0cbfd004e62114d3f90b6877c9152878ed2c93bbd381
|
|
4
|
+
data.tar.gz: f0a857054dbe309d6eb8e77a260f6a8a25bf665e72d1a6bed2a405d8b24ff8bc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: edf6b9b2f7470c2bfc6453fa6c8d936eceebc3995058c34c69c33c6b879f4b5c286507a603026a5746d866f9fd48ca3feadc84e9f526cfa34a7d1b4a588fc6cf
|
|
7
|
+
data.tar.gz: 8a52e9cfe0213f7f298e586933d39c241016e8c2b574af656d9ffcc7287087f842b7c52d267a9e6a8cbee74d1bcaf1450747631366b37c9a7264198b70c48c28
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.13.0 (2026-02-27)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Added support for Change Data Capture (CDC) streams with Duration DataType.
|
|
8
|
+
|
|
9
|
+
1.12.0 (2026-01-16)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
4
14
|
1.11.0 (2026-01-08)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.13.0
|
|
@@ -494,15 +494,15 @@ module Aws::KeyspacesStreams
|
|
|
494
494
|
# The unique identifier of the shard iterator. A shard iterator
|
|
495
495
|
# specifies the position in the shard from which you want to start
|
|
496
496
|
# reading data records sequentially. You obtain this value by calling
|
|
497
|
-
# the `GetShardIterator` operation. Each shard iterator is valid for 15
|
|
497
|
+
# the `GetShardIterator ` operation. Each shard iterator is valid for 15
|
|
498
498
|
# minutes after creation.
|
|
499
499
|
#
|
|
500
500
|
# @option params [Integer] :max_results
|
|
501
501
|
# The maximum number of records to return in a single `GetRecords`
|
|
502
|
-
# request.
|
|
503
|
-
# 1000, but the actual number returned might be less than the
|
|
504
|
-
# maximum if the size of the data for the returned records
|
|
505
|
-
# internal size limit.
|
|
502
|
+
# request. The default value is 100. You can specify a limit between 1
|
|
503
|
+
# and 1000, but the actual number returned might be less than the
|
|
504
|
+
# specified maximum if the size of the data for the returned records
|
|
505
|
+
# exceeds the internal size limit.
|
|
506
506
|
#
|
|
507
507
|
# @return [Types::GetRecordsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
508
508
|
#
|
|
@@ -531,6 +531,7 @@ module Aws::KeyspacesStreams
|
|
|
531
531
|
# resp.change_records[0].partition_keys["String"].date_t #=> String
|
|
532
532
|
# resp.change_records[0].partition_keys["String"].decimal_t #=> String
|
|
533
533
|
# resp.change_records[0].partition_keys["String"].double_t #=> String
|
|
534
|
+
# resp.change_records[0].partition_keys["String"].duration_t #=> String
|
|
534
535
|
# resp.change_records[0].partition_keys["String"].float_t #=> String
|
|
535
536
|
# resp.change_records[0].partition_keys["String"].inet_t #=> String
|
|
536
537
|
# resp.change_records[0].partition_keys["String"].int_t #=> String
|
|
@@ -573,6 +574,7 @@ module Aws::KeyspacesStreams
|
|
|
573
574
|
# resp.change_records[0].clustering_keys["String"].date_t #=> String
|
|
574
575
|
# resp.change_records[0].clustering_keys["String"].decimal_t #=> String
|
|
575
576
|
# resp.change_records[0].clustering_keys["String"].double_t #=> String
|
|
577
|
+
# resp.change_records[0].clustering_keys["String"].duration_t #=> String
|
|
576
578
|
# resp.change_records[0].clustering_keys["String"].float_t #=> String
|
|
577
579
|
# resp.change_records[0].clustering_keys["String"].inet_t #=> String
|
|
578
580
|
# resp.change_records[0].clustering_keys["String"].int_t #=> String
|
|
@@ -615,6 +617,7 @@ module Aws::KeyspacesStreams
|
|
|
615
617
|
# resp.change_records[0].new_image.value_cells["String"].value.date_t #=> String
|
|
616
618
|
# resp.change_records[0].new_image.value_cells["String"].value.decimal_t #=> String
|
|
617
619
|
# resp.change_records[0].new_image.value_cells["String"].value.double_t #=> String
|
|
620
|
+
# resp.change_records[0].new_image.value_cells["String"].value.duration_t #=> String
|
|
618
621
|
# resp.change_records[0].new_image.value_cells["String"].value.float_t #=> String
|
|
619
622
|
# resp.change_records[0].new_image.value_cells["String"].value.inet_t #=> String
|
|
620
623
|
# resp.change_records[0].new_image.value_cells["String"].value.int_t #=> String
|
|
@@ -651,6 +654,7 @@ module Aws::KeyspacesStreams
|
|
|
651
654
|
# resp.change_records[0].new_image.static_cells["String"].value.date_t #=> String
|
|
652
655
|
# resp.change_records[0].new_image.static_cells["String"].value.decimal_t #=> String
|
|
653
656
|
# resp.change_records[0].new_image.static_cells["String"].value.double_t #=> String
|
|
657
|
+
# resp.change_records[0].new_image.static_cells["String"].value.duration_t #=> String
|
|
654
658
|
# resp.change_records[0].new_image.static_cells["String"].value.float_t #=> String
|
|
655
659
|
# resp.change_records[0].new_image.static_cells["String"].value.inet_t #=> String
|
|
656
660
|
# resp.change_records[0].new_image.static_cells["String"].value.int_t #=> String
|
|
@@ -689,6 +693,7 @@ module Aws::KeyspacesStreams
|
|
|
689
693
|
# resp.change_records[0].old_image.value_cells["String"].value.date_t #=> String
|
|
690
694
|
# resp.change_records[0].old_image.value_cells["String"].value.decimal_t #=> String
|
|
691
695
|
# resp.change_records[0].old_image.value_cells["String"].value.double_t #=> String
|
|
696
|
+
# resp.change_records[0].old_image.value_cells["String"].value.duration_t #=> String
|
|
692
697
|
# resp.change_records[0].old_image.value_cells["String"].value.float_t #=> String
|
|
693
698
|
# resp.change_records[0].old_image.value_cells["String"].value.inet_t #=> String
|
|
694
699
|
# resp.change_records[0].old_image.value_cells["String"].value.int_t #=> String
|
|
@@ -725,6 +730,7 @@ module Aws::KeyspacesStreams
|
|
|
725
730
|
# resp.change_records[0].old_image.static_cells["String"].value.date_t #=> String
|
|
726
731
|
# resp.change_records[0].old_image.static_cells["String"].value.decimal_t #=> String
|
|
727
732
|
# resp.change_records[0].old_image.static_cells["String"].value.double_t #=> String
|
|
733
|
+
# resp.change_records[0].old_image.static_cells["String"].value.duration_t #=> String
|
|
728
734
|
# resp.change_records[0].old_image.static_cells["String"].value.float_t #=> String
|
|
729
735
|
# resp.change_records[0].old_image.static_cells["String"].value.inet_t #=> String
|
|
730
736
|
# resp.change_records[0].old_image.static_cells["String"].value.int_t #=> String
|
|
@@ -845,18 +851,19 @@ module Aws::KeyspacesStreams
|
|
|
845
851
|
#
|
|
846
852
|
# @option params [Integer] :max_results
|
|
847
853
|
# The maximum number of shard objects to return in a single `GetStream`
|
|
848
|
-
# request.
|
|
849
|
-
# value is 100.
|
|
854
|
+
# request. The default value is 100. The minimum value is 1 and the
|
|
855
|
+
# maximum value is 100.
|
|
850
856
|
#
|
|
851
857
|
# @option params [Types::ShardFilter] :shard_filter
|
|
852
858
|
# Optional filter criteria to apply when retrieving shards. You can
|
|
853
|
-
# filter shards based on their
|
|
854
|
-
# the results returned by the `GetStream`
|
|
859
|
+
# filter shards based on their parent `shardID` to get a list of
|
|
860
|
+
# children shards to narrow down the results returned by the `GetStream`
|
|
861
|
+
# operation.
|
|
855
862
|
#
|
|
856
863
|
# @option params [String] :next_token
|
|
857
864
|
# An optional pagination token provided by a previous `GetStream`
|
|
858
865
|
# operation. If this parameter is specified, the response includes only
|
|
859
|
-
# records beyond the token, up to the value specified by `
|
|
866
|
+
# records beyond the token, up to the value specified by `MaxResults`.
|
|
860
867
|
#
|
|
861
868
|
# @return [Types::GetStreamOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
862
869
|
#
|
|
@@ -928,8 +935,8 @@ module Aws::KeyspacesStreams
|
|
|
928
935
|
#
|
|
929
936
|
# @option params [Integer] :max_results
|
|
930
937
|
# The maximum number of streams to return in a single `ListStreams`
|
|
931
|
-
# request.
|
|
932
|
-
# value is 100.
|
|
938
|
+
# request. The default value is 100. The minimum value is 1 and the
|
|
939
|
+
# maximum value is 100.
|
|
933
940
|
#
|
|
934
941
|
# @option params [String] :next_token
|
|
935
942
|
# An optional pagination token provided by a previous `ListStreams`
|
|
@@ -988,7 +995,7 @@ module Aws::KeyspacesStreams
|
|
|
988
995
|
tracer: tracer
|
|
989
996
|
)
|
|
990
997
|
context[:gem_name] = 'aws-sdk-keyspacesstreams'
|
|
991
|
-
context[:gem_version] = '1.
|
|
998
|
+
context[:gem_version] = '1.13.0'
|
|
992
999
|
Seahorse::Client::Request.new(handlers, context)
|
|
993
1000
|
end
|
|
994
1001
|
|
|
@@ -129,6 +129,7 @@ module Aws::KeyspacesStreams
|
|
|
129
129
|
KeyspacesCellValue.add_member(:date_t, Shapes::ShapeRef.new(shape: String, location_name: "dateT"))
|
|
130
130
|
KeyspacesCellValue.add_member(:decimal_t, Shapes::ShapeRef.new(shape: String, location_name: "decimalT"))
|
|
131
131
|
KeyspacesCellValue.add_member(:double_t, Shapes::ShapeRef.new(shape: String, location_name: "doubleT"))
|
|
132
|
+
KeyspacesCellValue.add_member(:duration_t, Shapes::ShapeRef.new(shape: String, location_name: "durationT"))
|
|
132
133
|
KeyspacesCellValue.add_member(:float_t, Shapes::ShapeRef.new(shape: String, location_name: "floatT"))
|
|
133
134
|
KeyspacesCellValue.add_member(:inet_t, Shapes::ShapeRef.new(shape: String, location_name: "inetT"))
|
|
134
135
|
KeyspacesCellValue.add_member(:int_t, Shapes::ShapeRef.new(shape: String, location_name: "intT"))
|
|
@@ -155,6 +156,7 @@ module Aws::KeyspacesStreams
|
|
|
155
156
|
KeyspacesCellValue.add_member_subclass(:date_t, Types::KeyspacesCellValue::DateT)
|
|
156
157
|
KeyspacesCellValue.add_member_subclass(:decimal_t, Types::KeyspacesCellValue::DecimalT)
|
|
157
158
|
KeyspacesCellValue.add_member_subclass(:double_t, Types::KeyspacesCellValue::DoubleT)
|
|
159
|
+
KeyspacesCellValue.add_member_subclass(:duration_t, Types::KeyspacesCellValue::DurationT)
|
|
158
160
|
KeyspacesCellValue.add_member_subclass(:float_t, Types::KeyspacesCellValue::FloatT)
|
|
159
161
|
KeyspacesCellValue.add_member_subclass(:inet_t, Types::KeyspacesCellValue::InetT)
|
|
160
162
|
KeyspacesCellValue.add_member_subclass(:int_t, Types::KeyspacesCellValue::IntT)
|
|
@@ -34,13 +34,13 @@ 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
|
|
37
|
+
# the `GetShardIterator ` operation. Each shard iterator is valid for
|
|
38
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
|
-
# request.
|
|
43
|
+
# request. The default value is 100. You can specify a limit between 1
|
|
44
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.
|
|
@@ -66,7 +66,7 @@ module Aws::KeyspacesStreams
|
|
|
66
66
|
# @!attribute [rw] next_shard_iterator
|
|
67
67
|
# The next position in the shard from which to start sequentially
|
|
68
68
|
# reading data records. If null, the shard has been closed and the
|
|
69
|
-
# requested iterator
|
|
69
|
+
# requested iterator will not return any more data.
|
|
70
70
|
# @return [String]
|
|
71
71
|
#
|
|
72
72
|
# @see http://docs.aws.amazon.com/goto/WebAPI/keyspacesstreams-2024-09-09/GetRecordsOutput AWS API Documentation
|
|
@@ -148,21 +148,22 @@ module Aws::KeyspacesStreams
|
|
|
148
148
|
#
|
|
149
149
|
# @!attribute [rw] max_results
|
|
150
150
|
# The maximum number of shard objects to return in a single
|
|
151
|
-
# `GetStream` request.
|
|
152
|
-
# and the maximum value is 100.
|
|
151
|
+
# `GetStream` request. The default value is 100. The minimum value is
|
|
152
|
+
# 1 and the maximum value is 100.
|
|
153
153
|
# @return [Integer]
|
|
154
154
|
#
|
|
155
155
|
# @!attribute [rw] shard_filter
|
|
156
156
|
# Optional filter criteria to apply when retrieving shards. You can
|
|
157
|
-
# filter shards based on their
|
|
158
|
-
# down the results returned by the
|
|
157
|
+
# filter shards based on their parent `shardID` to get a list of
|
|
158
|
+
# children shards to narrow down the results returned by the
|
|
159
|
+
# `GetStream` operation.
|
|
159
160
|
# @return [Types::ShardFilter]
|
|
160
161
|
#
|
|
161
162
|
# @!attribute [rw] next_token
|
|
162
163
|
# An optional pagination token provided by a previous `GetStream`
|
|
163
164
|
# operation. If this parameter is specified, the response includes
|
|
164
165
|
# only records beyond the token, up to the value specified by
|
|
165
|
-
# `
|
|
166
|
+
# `MaxResults`.
|
|
166
167
|
# @return [String]
|
|
167
168
|
#
|
|
168
169
|
# @see http://docs.aws.amazon.com/goto/WebAPI/keyspacesstreams-2024-09-09/GetStreamInput AWS API Documentation
|
|
@@ -361,6 +362,11 @@ module Aws::KeyspacesStreams
|
|
|
361
362
|
# A 64-bit double-precision floating point value.
|
|
362
363
|
# @return [String]
|
|
363
364
|
#
|
|
365
|
+
# @!attribute [rw] duration_t
|
|
366
|
+
# A duration value with nanosecond precision, representing a period of
|
|
367
|
+
# time encoded as 32-bit months, 32-bit days, and 64-bit nanoseconds.
|
|
368
|
+
# @return [String]
|
|
369
|
+
#
|
|
364
370
|
# @!attribute [rw] float_t
|
|
365
371
|
# A 32-bit single-precision floating point value.
|
|
366
372
|
# @return [String]
|
|
@@ -425,7 +431,7 @@ module Aws::KeyspacesStreams
|
|
|
425
431
|
# @return [String]
|
|
426
432
|
#
|
|
427
433
|
# @!attribute [rw] varint_t
|
|
428
|
-
#
|
|
434
|
+
# An integer value within the +/-10^38 range.
|
|
429
435
|
# @return [String]
|
|
430
436
|
#
|
|
431
437
|
# @!attribute [rw] udt_t
|
|
@@ -444,6 +450,7 @@ module Aws::KeyspacesStreams
|
|
|
444
450
|
:date_t,
|
|
445
451
|
:decimal_t,
|
|
446
452
|
:double_t,
|
|
453
|
+
:duration_t,
|
|
447
454
|
:float_t,
|
|
448
455
|
:inet_t,
|
|
449
456
|
:int_t,
|
|
@@ -474,6 +481,7 @@ module Aws::KeyspacesStreams
|
|
|
474
481
|
class DateT < KeyspacesCellValue; end
|
|
475
482
|
class DecimalT < KeyspacesCellValue; end
|
|
476
483
|
class DoubleT < KeyspacesCellValue; end
|
|
484
|
+
class DurationT < KeyspacesCellValue; end
|
|
477
485
|
class FloatT < KeyspacesCellValue; end
|
|
478
486
|
class InetT < KeyspacesCellValue; end
|
|
479
487
|
class IntT < KeyspacesCellValue; end
|
|
@@ -559,7 +567,7 @@ module Aws::KeyspacesStreams
|
|
|
559
567
|
#
|
|
560
568
|
# @!attribute [rw] max_results
|
|
561
569
|
# The maximum number of streams to return in a single `ListStreams`
|
|
562
|
-
# request.
|
|
570
|
+
# request. The default value is 100. The minimum value is 1 and the
|
|
563
571
|
# maximum value is 100.
|
|
564
572
|
# @return [Integer]
|
|
565
573
|
#
|
|
@@ -592,7 +600,7 @@ module Aws::KeyspacesStreams
|
|
|
592
600
|
# A pagination token that can be used in a subsequent `ListStreams`
|
|
593
601
|
# request. This token is returned if the response contains more
|
|
594
602
|
# streams than can be returned in a single response based on the
|
|
595
|
-
# `
|
|
603
|
+
# `maxResults` parameter.
|
|
596
604
|
# @return [String]
|
|
597
605
|
#
|
|
598
606
|
# @see http://docs.aws.amazon.com/goto/WebAPI/keyspacesstreams-2024-09-09/ListStreamsOutput AWS API Documentation
|
|
@@ -789,6 +797,10 @@ module Aws::KeyspacesStreams
|
|
|
789
797
|
# distributing requests more evenly can help avoid throughput
|
|
790
798
|
# exceptions.
|
|
791
799
|
#
|
|
800
|
+
# This exception can also occur when more than two processes are reading
|
|
801
|
+
# from the same stream shard at the same time. Ensure that only one
|
|
802
|
+
# process reads from a stream shard at the same time.
|
|
803
|
+
#
|
|
792
804
|
# @!attribute [rw] message
|
|
793
805
|
# The request was denied due to request throttling. Reduce the
|
|
794
806
|
# frequency of requests and try again.
|
data/sig/types.rbs
CHANGED
|
@@ -86,6 +86,7 @@ module Aws::KeyspacesStreams
|
|
|
86
86
|
attr_accessor date_t: ::String
|
|
87
87
|
attr_accessor decimal_t: ::String
|
|
88
88
|
attr_accessor double_t: ::String
|
|
89
|
+
attr_accessor duration_t: ::String
|
|
89
90
|
attr_accessor float_t: ::String
|
|
90
91
|
attr_accessor inet_t: ::String
|
|
91
92
|
attr_accessor int_t: ::String
|
|
@@ -122,6 +123,8 @@ module Aws::KeyspacesStreams
|
|
|
122
123
|
end
|
|
123
124
|
class DoubleT < KeyspacesCellValue
|
|
124
125
|
end
|
|
126
|
+
class DurationT < KeyspacesCellValue
|
|
127
|
+
end
|
|
125
128
|
class FloatT < KeyspacesCellValue
|
|
126
129
|
end
|
|
127
130
|
class InetT < KeyspacesCellValue
|
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.
|
|
4
|
+
version: 1.13.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.241.
|
|
21
|
+
version: 3.241.4
|
|
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.241.
|
|
31
|
+
version: 3.241.4
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|