aws-sdk-kinesis 1.77.0 → 1.79.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-kinesis/async_client.rb +1 -1
- data/lib/aws-sdk-kinesis/client.rb +7 -7
- data/lib/aws-sdk-kinesis/client_api.rb +35 -35
- data/lib/aws-sdk-kinesis.rb +1 -1
- data/sig/client.rbs +4 -4
- metadata +3 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7920e2d33e21fcfc83109c6991b57ed3b24fa45a037455b8deb907eae4186ee6
|
4
|
+
data.tar.gz: d48593af68ae5085c987e23505e2531ce4624402c296d0b3b24fce20d3fef155
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 07a342d671b5238bff744f04f43abc6bbdec270d6a58aa01969b6e50b0023828beddbb1222f5104bad53c0487b750e282fa93f6615d7ba7e68025fa3f0c222f6
|
7
|
+
data.tar.gz: 99e3d65d9f51244fbaf996240319855a698bc30eca44d143b078beda423f486baeacda6586ea72e500ff752a0e5032a53906c61999e77dc4f4077b663e680f0b
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.79.0 (2025-05-02)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Marking ResourceARN as required for Amazon Kinesis Data Streams APIs TagResource, UntagResource, and ListTagsForResource.
|
8
|
+
|
9
|
+
1.78.0 (2025-05-01)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.77.0 (2025-04-29)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.79.0
|
@@ -1907,7 +1907,7 @@ module Aws::Kinesis
|
|
1907
1907
|
#
|
1908
1908
|
# [1]: https://docs.aws.amazon.com/streams/latest/dev/tagging.html
|
1909
1909
|
#
|
1910
|
-
# @option params [String] :resource_arn
|
1910
|
+
# @option params [required, String] :resource_arn
|
1911
1911
|
# The Amazon Resource Name (ARN) of the Kinesis resource for which to
|
1912
1912
|
# list tags.
|
1913
1913
|
#
|
@@ -1918,7 +1918,7 @@ module Aws::Kinesis
|
|
1918
1918
|
# @example Request syntax with placeholder values
|
1919
1919
|
#
|
1920
1920
|
# resp = client.list_tags_for_resource({
|
1921
|
-
# resource_arn: "ResourceARN",
|
1921
|
+
# resource_arn: "ResourceARN", # required
|
1922
1922
|
# })
|
1923
1923
|
#
|
1924
1924
|
# @example Response structure
|
@@ -2783,7 +2783,7 @@ module Aws::Kinesis
|
|
2783
2783
|
# Tags may only contain Unicode letters, digits, white space, or these
|
2784
2784
|
# symbols: \_ . : / = + - @.
|
2785
2785
|
#
|
2786
|
-
# @option params [String] :resource_arn
|
2786
|
+
# @option params [required, String] :resource_arn
|
2787
2787
|
# The Amazon Resource Name (ARN) of the Kinesis resource to which to add
|
2788
2788
|
# tags.
|
2789
2789
|
#
|
@@ -2795,7 +2795,7 @@ module Aws::Kinesis
|
|
2795
2795
|
# tags: { # required
|
2796
2796
|
# "TagKey" => "TagValue",
|
2797
2797
|
# },
|
2798
|
-
# resource_arn: "ResourceARN",
|
2798
|
+
# resource_arn: "ResourceARN", # required
|
2799
2799
|
# })
|
2800
2800
|
#
|
2801
2801
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesis-2013-12-02/TagResource AWS API Documentation
|
@@ -2816,7 +2816,7 @@ module Aws::Kinesis
|
|
2816
2816
|
# keys are members of this list will be removed from the Kinesis
|
2817
2817
|
# resource.
|
2818
2818
|
#
|
2819
|
-
# @option params [String] :resource_arn
|
2819
|
+
# @option params [required, String] :resource_arn
|
2820
2820
|
# The Amazon Resource Name (ARN) of the Kinesis resource from which to
|
2821
2821
|
# remove tags.
|
2822
2822
|
#
|
@@ -2826,7 +2826,7 @@ module Aws::Kinesis
|
|
2826
2826
|
#
|
2827
2827
|
# resp = client.untag_resource({
|
2828
2828
|
# tag_keys: ["TagKey"], # required
|
2829
|
-
# resource_arn: "ResourceARN",
|
2829
|
+
# resource_arn: "ResourceARN", # required
|
2830
2830
|
# })
|
2831
2831
|
#
|
2832
2832
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesis-2013-12-02/UntagResource AWS API Documentation
|
@@ -3005,7 +3005,7 @@ module Aws::Kinesis
|
|
3005
3005
|
tracer: tracer
|
3006
3006
|
)
|
3007
3007
|
context[:gem_name] = 'aws-sdk-kinesis'
|
3008
|
-
context[:gem_version] = '1.
|
3008
|
+
context[:gem_version] = '1.79.0'
|
3009
3009
|
Seahorse::Client::Request.new(handlers, context)
|
3010
3010
|
end
|
3011
3011
|
|
@@ -163,7 +163,7 @@ module Aws::Kinesis
|
|
163
163
|
|
164
164
|
AddTagsToStreamInput.add_member(:stream_name, Shapes::ShapeRef.new(shape: StreamName, location_name: "StreamName"))
|
165
165
|
AddTagsToStreamInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, required: true, location_name: "Tags"))
|
166
|
-
AddTagsToStreamInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam"=>{"name"=>"StreamARN"}}))
|
166
|
+
AddTagsToStreamInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam" => {"name" => "StreamARN"}}))
|
167
167
|
AddTagsToStreamInput.struct_class = Types::AddTagsToStreamInput
|
168
168
|
|
169
169
|
ChildShard.add_member(:shard_id, Shapes::ShapeRef.new(shape: ShardId, required: true, location_name: "ShardId"))
|
@@ -196,20 +196,20 @@ module Aws::Kinesis
|
|
196
196
|
|
197
197
|
DecreaseStreamRetentionPeriodInput.add_member(:stream_name, Shapes::ShapeRef.new(shape: StreamName, location_name: "StreamName"))
|
198
198
|
DecreaseStreamRetentionPeriodInput.add_member(:retention_period_hours, Shapes::ShapeRef.new(shape: RetentionPeriodHours, required: true, location_name: "RetentionPeriodHours"))
|
199
|
-
DecreaseStreamRetentionPeriodInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam"=>{"name"=>"StreamARN"}}))
|
199
|
+
DecreaseStreamRetentionPeriodInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam" => {"name" => "StreamARN"}}))
|
200
200
|
DecreaseStreamRetentionPeriodInput.struct_class = Types::DecreaseStreamRetentionPeriodInput
|
201
201
|
|
202
|
-
DeleteResourcePolicyInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceARN, required: true, location_name: "ResourceARN", metadata: {"contextParam"=>{"name"=>"ResourceARN"}}))
|
202
|
+
DeleteResourcePolicyInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceARN, required: true, location_name: "ResourceARN", metadata: {"contextParam" => {"name" => "ResourceARN"}}))
|
203
203
|
DeleteResourcePolicyInput.struct_class = Types::DeleteResourcePolicyInput
|
204
204
|
|
205
205
|
DeleteStreamInput.add_member(:stream_name, Shapes::ShapeRef.new(shape: StreamName, location_name: "StreamName"))
|
206
206
|
DeleteStreamInput.add_member(:enforce_consumer_deletion, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "EnforceConsumerDeletion"))
|
207
|
-
DeleteStreamInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam"=>{"name"=>"StreamARN"}}))
|
207
|
+
DeleteStreamInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam" => {"name" => "StreamARN"}}))
|
208
208
|
DeleteStreamInput.struct_class = Types::DeleteStreamInput
|
209
209
|
|
210
|
-
DeregisterStreamConsumerInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam"=>{"name"=>"StreamARN"}}))
|
210
|
+
DeregisterStreamConsumerInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam" => {"name" => "StreamARN"}}))
|
211
211
|
DeregisterStreamConsumerInput.add_member(:consumer_name, Shapes::ShapeRef.new(shape: ConsumerName, location_name: "ConsumerName"))
|
212
|
-
DeregisterStreamConsumerInput.add_member(:consumer_arn, Shapes::ShapeRef.new(shape: ConsumerARN, location_name: "ConsumerARN", metadata: {"contextParam"=>{"name"=>"ConsumerARN"}}))
|
212
|
+
DeregisterStreamConsumerInput.add_member(:consumer_arn, Shapes::ShapeRef.new(shape: ConsumerARN, location_name: "ConsumerARN", metadata: {"contextParam" => {"name" => "ConsumerARN"}}))
|
213
213
|
DeregisterStreamConsumerInput.struct_class = Types::DeregisterStreamConsumerInput
|
214
214
|
|
215
215
|
DescribeLimitsInput.struct_class = Types::DescribeLimitsInput
|
@@ -220,9 +220,9 @@ module Aws::Kinesis
|
|
220
220
|
DescribeLimitsOutput.add_member(:on_demand_stream_count_limit, Shapes::ShapeRef.new(shape: OnDemandStreamCountLimitObject, required: true, location_name: "OnDemandStreamCountLimit"))
|
221
221
|
DescribeLimitsOutput.struct_class = Types::DescribeLimitsOutput
|
222
222
|
|
223
|
-
DescribeStreamConsumerInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam"=>{"name"=>"StreamARN"}}))
|
223
|
+
DescribeStreamConsumerInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam" => {"name" => "StreamARN"}}))
|
224
224
|
DescribeStreamConsumerInput.add_member(:consumer_name, Shapes::ShapeRef.new(shape: ConsumerName, location_name: "ConsumerName"))
|
225
|
-
DescribeStreamConsumerInput.add_member(:consumer_arn, Shapes::ShapeRef.new(shape: ConsumerARN, location_name: "ConsumerARN", metadata: {"contextParam"=>{"name"=>"ConsumerARN"}}))
|
225
|
+
DescribeStreamConsumerInput.add_member(:consumer_arn, Shapes::ShapeRef.new(shape: ConsumerARN, location_name: "ConsumerARN", metadata: {"contextParam" => {"name" => "ConsumerARN"}}))
|
226
226
|
DescribeStreamConsumerInput.struct_class = Types::DescribeStreamConsumerInput
|
227
227
|
|
228
228
|
DescribeStreamConsumerOutput.add_member(:consumer_description, Shapes::ShapeRef.new(shape: ConsumerDescription, required: true, location_name: "ConsumerDescription"))
|
@@ -231,14 +231,14 @@ module Aws::Kinesis
|
|
231
231
|
DescribeStreamInput.add_member(:stream_name, Shapes::ShapeRef.new(shape: StreamName, location_name: "StreamName"))
|
232
232
|
DescribeStreamInput.add_member(:limit, Shapes::ShapeRef.new(shape: DescribeStreamInputLimit, location_name: "Limit"))
|
233
233
|
DescribeStreamInput.add_member(:exclusive_start_shard_id, Shapes::ShapeRef.new(shape: ShardId, location_name: "ExclusiveStartShardId"))
|
234
|
-
DescribeStreamInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam"=>{"name"=>"StreamARN"}}))
|
234
|
+
DescribeStreamInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam" => {"name" => "StreamARN"}}))
|
235
235
|
DescribeStreamInput.struct_class = Types::DescribeStreamInput
|
236
236
|
|
237
237
|
DescribeStreamOutput.add_member(:stream_description, Shapes::ShapeRef.new(shape: StreamDescription, required: true, location_name: "StreamDescription"))
|
238
238
|
DescribeStreamOutput.struct_class = Types::DescribeStreamOutput
|
239
239
|
|
240
240
|
DescribeStreamSummaryInput.add_member(:stream_name, Shapes::ShapeRef.new(shape: StreamName, location_name: "StreamName"))
|
241
|
-
DescribeStreamSummaryInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam"=>{"name"=>"StreamARN"}}))
|
241
|
+
DescribeStreamSummaryInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam" => {"name" => "StreamARN"}}))
|
242
242
|
DescribeStreamSummaryInput.struct_class = Types::DescribeStreamSummaryInput
|
243
243
|
|
244
244
|
DescribeStreamSummaryOutput.add_member(:stream_description_summary, Shapes::ShapeRef.new(shape: StreamDescriptionSummary, required: true, location_name: "StreamDescriptionSummary"))
|
@@ -246,12 +246,12 @@ module Aws::Kinesis
|
|
246
246
|
|
247
247
|
DisableEnhancedMonitoringInput.add_member(:stream_name, Shapes::ShapeRef.new(shape: StreamName, location_name: "StreamName"))
|
248
248
|
DisableEnhancedMonitoringInput.add_member(:shard_level_metrics, Shapes::ShapeRef.new(shape: MetricsNameList, required: true, location_name: "ShardLevelMetrics"))
|
249
|
-
DisableEnhancedMonitoringInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam"=>{"name"=>"StreamARN"}}))
|
249
|
+
DisableEnhancedMonitoringInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam" => {"name" => "StreamARN"}}))
|
250
250
|
DisableEnhancedMonitoringInput.struct_class = Types::DisableEnhancedMonitoringInput
|
251
251
|
|
252
252
|
EnableEnhancedMonitoringInput.add_member(:stream_name, Shapes::ShapeRef.new(shape: StreamName, location_name: "StreamName"))
|
253
253
|
EnableEnhancedMonitoringInput.add_member(:shard_level_metrics, Shapes::ShapeRef.new(shape: MetricsNameList, required: true, location_name: "ShardLevelMetrics"))
|
254
|
-
EnableEnhancedMonitoringInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam"=>{"name"=>"StreamARN"}}))
|
254
|
+
EnableEnhancedMonitoringInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam" => {"name" => "StreamARN"}}))
|
255
255
|
EnableEnhancedMonitoringInput.struct_class = Types::EnableEnhancedMonitoringInput
|
256
256
|
|
257
257
|
EnhancedMetrics.add_member(:shard_level_metrics, Shapes::ShapeRef.new(shape: MetricsNameList, location_name: "ShardLevelMetrics"))
|
@@ -273,7 +273,7 @@ module Aws::Kinesis
|
|
273
273
|
|
274
274
|
GetRecordsInput.add_member(:shard_iterator, Shapes::ShapeRef.new(shape: ShardIterator, required: true, location_name: "ShardIterator"))
|
275
275
|
GetRecordsInput.add_member(:limit, Shapes::ShapeRef.new(shape: GetRecordsInputLimit, location_name: "Limit"))
|
276
|
-
GetRecordsInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam"=>{"name"=>"StreamARN"}}))
|
276
|
+
GetRecordsInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam" => {"name" => "StreamARN"}}))
|
277
277
|
GetRecordsInput.struct_class = Types::GetRecordsInput
|
278
278
|
|
279
279
|
GetRecordsOutput.add_member(:records, Shapes::ShapeRef.new(shape: RecordList, required: true, location_name: "Records"))
|
@@ -282,7 +282,7 @@ module Aws::Kinesis
|
|
282
282
|
GetRecordsOutput.add_member(:child_shards, Shapes::ShapeRef.new(shape: ChildShardList, location_name: "ChildShards"))
|
283
283
|
GetRecordsOutput.struct_class = Types::GetRecordsOutput
|
284
284
|
|
285
|
-
GetResourcePolicyInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceARN, required: true, location_name: "ResourceARN", metadata: {"contextParam"=>{"name"=>"ResourceARN"}}))
|
285
|
+
GetResourcePolicyInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceARN, required: true, location_name: "ResourceARN", metadata: {"contextParam" => {"name" => "ResourceARN"}}))
|
286
286
|
GetResourcePolicyInput.struct_class = Types::GetResourcePolicyInput
|
287
287
|
|
288
288
|
GetResourcePolicyOutput.add_member(:policy, Shapes::ShapeRef.new(shape: Policy, required: true, location_name: "Policy"))
|
@@ -293,7 +293,7 @@ module Aws::Kinesis
|
|
293
293
|
GetShardIteratorInput.add_member(:shard_iterator_type, Shapes::ShapeRef.new(shape: ShardIteratorType, required: true, location_name: "ShardIteratorType"))
|
294
294
|
GetShardIteratorInput.add_member(:starting_sequence_number, Shapes::ShapeRef.new(shape: SequenceNumber, location_name: "StartingSequenceNumber"))
|
295
295
|
GetShardIteratorInput.add_member(:timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "Timestamp"))
|
296
|
-
GetShardIteratorInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam"=>{"name"=>"StreamARN"}}))
|
296
|
+
GetShardIteratorInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam" => {"name" => "StreamARN"}}))
|
297
297
|
GetShardIteratorInput.struct_class = Types::GetShardIteratorInput
|
298
298
|
|
299
299
|
GetShardIteratorOutput.add_member(:shard_iterator, Shapes::ShapeRef.new(shape: ShardIterator, location_name: "ShardIterator"))
|
@@ -305,7 +305,7 @@ module Aws::Kinesis
|
|
305
305
|
|
306
306
|
IncreaseStreamRetentionPeriodInput.add_member(:stream_name, Shapes::ShapeRef.new(shape: StreamName, location_name: "StreamName"))
|
307
307
|
IncreaseStreamRetentionPeriodInput.add_member(:retention_period_hours, Shapes::ShapeRef.new(shape: RetentionPeriodHours, required: true, location_name: "RetentionPeriodHours"))
|
308
|
-
IncreaseStreamRetentionPeriodInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam"=>{"name"=>"StreamARN"}}))
|
308
|
+
IncreaseStreamRetentionPeriodInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam" => {"name" => "StreamARN"}}))
|
309
309
|
IncreaseStreamRetentionPeriodInput.struct_class = Types::IncreaseStreamRetentionPeriodInput
|
310
310
|
|
311
311
|
InternalFailureException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
@@ -341,14 +341,14 @@ module Aws::Kinesis
|
|
341
341
|
ListShardsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: ListShardsInputLimit, location_name: "MaxResults"))
|
342
342
|
ListShardsInput.add_member(:stream_creation_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "StreamCreationTimestamp"))
|
343
343
|
ListShardsInput.add_member(:shard_filter, Shapes::ShapeRef.new(shape: ShardFilter, location_name: "ShardFilter"))
|
344
|
-
ListShardsInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam"=>{"name"=>"StreamARN"}}))
|
344
|
+
ListShardsInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam" => {"name" => "StreamARN"}}))
|
345
345
|
ListShardsInput.struct_class = Types::ListShardsInput
|
346
346
|
|
347
347
|
ListShardsOutput.add_member(:shards, Shapes::ShapeRef.new(shape: ShardList, location_name: "Shards"))
|
348
348
|
ListShardsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
349
349
|
ListShardsOutput.struct_class = Types::ListShardsOutput
|
350
350
|
|
351
|
-
ListStreamConsumersInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, required: true, location_name: "StreamARN", metadata: {"contextParam"=>{"name"=>"StreamARN"}}))
|
351
|
+
ListStreamConsumersInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, required: true, location_name: "StreamARN", metadata: {"contextParam" => {"name" => "StreamARN"}}))
|
352
352
|
ListStreamConsumersInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
353
353
|
ListStreamConsumersInput.add_member(:max_results, Shapes::ShapeRef.new(shape: ListStreamConsumersInputLimit, location_name: "MaxResults"))
|
354
354
|
ListStreamConsumersInput.add_member(:stream_creation_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "StreamCreationTimestamp"))
|
@@ -369,7 +369,7 @@ module Aws::Kinesis
|
|
369
369
|
ListStreamsOutput.add_member(:stream_summaries, Shapes::ShapeRef.new(shape: StreamSummaryList, location_name: "StreamSummaries"))
|
370
370
|
ListStreamsOutput.struct_class = Types::ListStreamsOutput
|
371
371
|
|
372
|
-
ListTagsForResourceInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceARN, location_name: "ResourceARN", metadata: {"contextParam"=>{"name"=>"ResourceARN"}}))
|
372
|
+
ListTagsForResourceInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceARN, required: true, location_name: "ResourceARN", metadata: {"contextParam" => {"name" => "ResourceARN"}}))
|
373
373
|
ListTagsForResourceInput.struct_class = Types::ListTagsForResourceInput
|
374
374
|
|
375
375
|
ListTagsForResourceOutput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
@@ -378,7 +378,7 @@ module Aws::Kinesis
|
|
378
378
|
ListTagsForStreamInput.add_member(:stream_name, Shapes::ShapeRef.new(shape: StreamName, location_name: "StreamName"))
|
379
379
|
ListTagsForStreamInput.add_member(:exclusive_start_tag_key, Shapes::ShapeRef.new(shape: TagKey, location_name: "ExclusiveStartTagKey"))
|
380
380
|
ListTagsForStreamInput.add_member(:limit, Shapes::ShapeRef.new(shape: ListTagsForStreamInputLimit, location_name: "Limit"))
|
381
|
-
ListTagsForStreamInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam"=>{"name"=>"StreamARN"}}))
|
381
|
+
ListTagsForStreamInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam" => {"name" => "StreamARN"}}))
|
382
382
|
ListTagsForStreamInput.struct_class = Types::ListTagsForStreamInput
|
383
383
|
|
384
384
|
ListTagsForStreamOutput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, required: true, location_name: "Tags"))
|
@@ -388,7 +388,7 @@ module Aws::Kinesis
|
|
388
388
|
MergeShardsInput.add_member(:stream_name, Shapes::ShapeRef.new(shape: StreamName, location_name: "StreamName"))
|
389
389
|
MergeShardsInput.add_member(:shard_to_merge, Shapes::ShapeRef.new(shape: ShardId, required: true, location_name: "ShardToMerge"))
|
390
390
|
MergeShardsInput.add_member(:adjacent_shard_to_merge, Shapes::ShapeRef.new(shape: ShardId, required: true, location_name: "AdjacentShardToMerge"))
|
391
|
-
MergeShardsInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam"=>{"name"=>"StreamARN"}}))
|
391
|
+
MergeShardsInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam" => {"name" => "StreamARN"}}))
|
392
392
|
MergeShardsInput.struct_class = Types::MergeShardsInput
|
393
393
|
|
394
394
|
MetricsNameList.member = Shapes::ShapeRef.new(shape: MetricsName)
|
@@ -401,7 +401,7 @@ module Aws::Kinesis
|
|
401
401
|
PutRecordInput.add_member(:partition_key, Shapes::ShapeRef.new(shape: PartitionKey, required: true, location_name: "PartitionKey"))
|
402
402
|
PutRecordInput.add_member(:explicit_hash_key, Shapes::ShapeRef.new(shape: HashKey, location_name: "ExplicitHashKey"))
|
403
403
|
PutRecordInput.add_member(:sequence_number_for_ordering, Shapes::ShapeRef.new(shape: SequenceNumber, location_name: "SequenceNumberForOrdering"))
|
404
|
-
PutRecordInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam"=>{"name"=>"StreamARN"}}))
|
404
|
+
PutRecordInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam" => {"name" => "StreamARN"}}))
|
405
405
|
PutRecordInput.struct_class = Types::PutRecordInput
|
406
406
|
|
407
407
|
PutRecordOutput.add_member(:shard_id, Shapes::ShapeRef.new(shape: ShardId, required: true, location_name: "ShardId"))
|
@@ -411,7 +411,7 @@ module Aws::Kinesis
|
|
411
411
|
|
412
412
|
PutRecordsInput.add_member(:records, Shapes::ShapeRef.new(shape: PutRecordsRequestEntryList, required: true, location_name: "Records"))
|
413
413
|
PutRecordsInput.add_member(:stream_name, Shapes::ShapeRef.new(shape: StreamName, location_name: "StreamName"))
|
414
|
-
PutRecordsInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam"=>{"name"=>"StreamARN"}}))
|
414
|
+
PutRecordsInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam" => {"name" => "StreamARN"}}))
|
415
415
|
PutRecordsInput.struct_class = Types::PutRecordsInput
|
416
416
|
|
417
417
|
PutRecordsOutput.add_member(:failed_record_count, Shapes::ShapeRef.new(shape: PositiveIntegerObject, location_name: "FailedRecordCount"))
|
@@ -434,7 +434,7 @@ module Aws::Kinesis
|
|
434
434
|
|
435
435
|
PutRecordsResultEntryList.member = Shapes::ShapeRef.new(shape: PutRecordsResultEntry)
|
436
436
|
|
437
|
-
PutResourcePolicyInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceARN, required: true, location_name: "ResourceARN", metadata: {"contextParam"=>{"name"=>"ResourceARN"}}))
|
437
|
+
PutResourcePolicyInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceARN, required: true, location_name: "ResourceARN", metadata: {"contextParam" => {"name" => "ResourceARN"}}))
|
438
438
|
PutResourcePolicyInput.add_member(:policy, Shapes::ShapeRef.new(shape: Policy, required: true, location_name: "Policy"))
|
439
439
|
PutResourcePolicyInput.struct_class = Types::PutResourcePolicyInput
|
440
440
|
|
@@ -447,7 +447,7 @@ module Aws::Kinesis
|
|
447
447
|
|
448
448
|
RecordList.member = Shapes::ShapeRef.new(shape: Record)
|
449
449
|
|
450
|
-
RegisterStreamConsumerInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, required: true, location_name: "StreamARN", metadata: {"contextParam"=>{"name"=>"StreamARN"}}))
|
450
|
+
RegisterStreamConsumerInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, required: true, location_name: "StreamARN", metadata: {"contextParam" => {"name" => "StreamARN"}}))
|
451
451
|
RegisterStreamConsumerInput.add_member(:consumer_name, Shapes::ShapeRef.new(shape: ConsumerName, required: true, location_name: "ConsumerName"))
|
452
452
|
RegisterStreamConsumerInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
453
453
|
RegisterStreamConsumerInput.struct_class = Types::RegisterStreamConsumerInput
|
@@ -457,7 +457,7 @@ module Aws::Kinesis
|
|
457
457
|
|
458
458
|
RemoveTagsFromStreamInput.add_member(:stream_name, Shapes::ShapeRef.new(shape: StreamName, location_name: "StreamName"))
|
459
459
|
RemoveTagsFromStreamInput.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location_name: "TagKeys"))
|
460
|
-
RemoveTagsFromStreamInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam"=>{"name"=>"StreamARN"}}))
|
460
|
+
RemoveTagsFromStreamInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam" => {"name" => "StreamARN"}}))
|
461
461
|
RemoveTagsFromStreamInput.struct_class = Types::RemoveTagsFromStreamInput
|
462
462
|
|
463
463
|
ResourceInUseException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
@@ -489,13 +489,13 @@ module Aws::Kinesis
|
|
489
489
|
SplitShardInput.add_member(:stream_name, Shapes::ShapeRef.new(shape: StreamName, location_name: "StreamName"))
|
490
490
|
SplitShardInput.add_member(:shard_to_split, Shapes::ShapeRef.new(shape: ShardId, required: true, location_name: "ShardToSplit"))
|
491
491
|
SplitShardInput.add_member(:new_starting_hash_key, Shapes::ShapeRef.new(shape: HashKey, required: true, location_name: "NewStartingHashKey"))
|
492
|
-
SplitShardInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam"=>{"name"=>"StreamARN"}}))
|
492
|
+
SplitShardInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam" => {"name" => "StreamARN"}}))
|
493
493
|
SplitShardInput.struct_class = Types::SplitShardInput
|
494
494
|
|
495
495
|
StartStreamEncryptionInput.add_member(:stream_name, Shapes::ShapeRef.new(shape: StreamName, location_name: "StreamName"))
|
496
496
|
StartStreamEncryptionInput.add_member(:encryption_type, Shapes::ShapeRef.new(shape: EncryptionType, required: true, location_name: "EncryptionType"))
|
497
497
|
StartStreamEncryptionInput.add_member(:key_id, Shapes::ShapeRef.new(shape: KeyId, required: true, location_name: "KeyId"))
|
498
|
-
StartStreamEncryptionInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam"=>{"name"=>"StreamARN"}}))
|
498
|
+
StartStreamEncryptionInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam" => {"name" => "StreamARN"}}))
|
499
499
|
StartStreamEncryptionInput.struct_class = Types::StartStreamEncryptionInput
|
500
500
|
|
501
501
|
StartingPosition.add_member(:type, Shapes::ShapeRef.new(shape: ShardIteratorType, required: true, location_name: "Type"))
|
@@ -506,7 +506,7 @@ module Aws::Kinesis
|
|
506
506
|
StopStreamEncryptionInput.add_member(:stream_name, Shapes::ShapeRef.new(shape: StreamName, location_name: "StreamName"))
|
507
507
|
StopStreamEncryptionInput.add_member(:encryption_type, Shapes::ShapeRef.new(shape: EncryptionType, required: true, location_name: "EncryptionType"))
|
508
508
|
StopStreamEncryptionInput.add_member(:key_id, Shapes::ShapeRef.new(shape: KeyId, required: true, location_name: "KeyId"))
|
509
|
-
StopStreamEncryptionInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam"=>{"name"=>"StreamARN"}}))
|
509
|
+
StopStreamEncryptionInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam" => {"name" => "StreamARN"}}))
|
510
510
|
StopStreamEncryptionInput.struct_class = Types::StopStreamEncryptionInput
|
511
511
|
|
512
512
|
StreamDescription.add_member(:stream_name, Shapes::ShapeRef.new(shape: StreamName, required: true, location_name: "StreamName"))
|
@@ -567,7 +567,7 @@ module Aws::Kinesis
|
|
567
567
|
SubscribeToShardEventStream.add_member(:internal_failure_exception, Shapes::ShapeRef.new(shape: InternalFailureException, event: true, location_name: "InternalFailureException"))
|
568
568
|
SubscribeToShardEventStream.struct_class = Types::SubscribeToShardEventStream
|
569
569
|
|
570
|
-
SubscribeToShardInput.add_member(:consumer_arn, Shapes::ShapeRef.new(shape: ConsumerARN, required: true, location_name: "ConsumerARN", metadata: {"contextParam"=>{"name"=>"ConsumerARN"}}))
|
570
|
+
SubscribeToShardInput.add_member(:consumer_arn, Shapes::ShapeRef.new(shape: ConsumerARN, required: true, location_name: "ConsumerARN", metadata: {"contextParam" => {"name" => "ConsumerARN"}}))
|
571
571
|
SubscribeToShardInput.add_member(:shard_id, Shapes::ShapeRef.new(shape: ShardId, required: true, location_name: "ShardId"))
|
572
572
|
SubscribeToShardInput.add_member(:starting_position, Shapes::ShapeRef.new(shape: StartingPosition, required: true, location_name: "StartingPosition"))
|
573
573
|
SubscribeToShardInput.struct_class = Types::SubscribeToShardInput
|
@@ -587,17 +587,17 @@ module Aws::Kinesis
|
|
587
587
|
TagMap.value = Shapes::ShapeRef.new(shape: TagValue)
|
588
588
|
|
589
589
|
TagResourceInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, required: true, location_name: "Tags"))
|
590
|
-
TagResourceInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceARN, location_name: "ResourceARN", metadata: {"contextParam"=>{"name"=>"ResourceARN"}}))
|
590
|
+
TagResourceInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceARN, required: true, location_name: "ResourceARN", metadata: {"contextParam" => {"name" => "ResourceARN"}}))
|
591
591
|
TagResourceInput.struct_class = Types::TagResourceInput
|
592
592
|
|
593
593
|
UntagResourceInput.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location_name: "TagKeys"))
|
594
|
-
UntagResourceInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceARN, location_name: "ResourceARN", metadata: {"contextParam"=>{"name"=>"ResourceARN"}}))
|
594
|
+
UntagResourceInput.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceARN, required: true, location_name: "ResourceARN", metadata: {"contextParam" => {"name" => "ResourceARN"}}))
|
595
595
|
UntagResourceInput.struct_class = Types::UntagResourceInput
|
596
596
|
|
597
597
|
UpdateShardCountInput.add_member(:stream_name, Shapes::ShapeRef.new(shape: StreamName, location_name: "StreamName"))
|
598
598
|
UpdateShardCountInput.add_member(:target_shard_count, Shapes::ShapeRef.new(shape: PositiveIntegerObject, required: true, location_name: "TargetShardCount"))
|
599
599
|
UpdateShardCountInput.add_member(:scaling_type, Shapes::ShapeRef.new(shape: ScalingType, required: true, location_name: "ScalingType"))
|
600
|
-
UpdateShardCountInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam"=>{"name"=>"StreamARN"}}))
|
600
|
+
UpdateShardCountInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN", metadata: {"contextParam" => {"name" => "StreamARN"}}))
|
601
601
|
UpdateShardCountInput.struct_class = Types::UpdateShardCountInput
|
602
602
|
|
603
603
|
UpdateShardCountOutput.add_member(:stream_name, Shapes::ShapeRef.new(shape: StreamName, location_name: "StreamName"))
|
@@ -606,7 +606,7 @@ module Aws::Kinesis
|
|
606
606
|
UpdateShardCountOutput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, location_name: "StreamARN"))
|
607
607
|
UpdateShardCountOutput.struct_class = Types::UpdateShardCountOutput
|
608
608
|
|
609
|
-
UpdateStreamModeInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, required: true, location_name: "StreamARN", metadata: {"contextParam"=>{"name"=>"StreamARN"}}))
|
609
|
+
UpdateStreamModeInput.add_member(:stream_arn, Shapes::ShapeRef.new(shape: StreamARN, required: true, location_name: "StreamARN", metadata: {"contextParam" => {"name" => "StreamARN"}}))
|
610
610
|
UpdateStreamModeInput.add_member(:stream_mode_details, Shapes::ShapeRef.new(shape: StreamModeDetails, required: true, location_name: "StreamModeDetails"))
|
611
611
|
UpdateStreamModeInput.struct_class = Types::UpdateStreamModeInput
|
612
612
|
|
@@ -625,7 +625,7 @@ module Aws::Kinesis
|
|
625
625
|
"endpointPrefix" => "kinesis",
|
626
626
|
"jsonVersion" => "1.1",
|
627
627
|
"protocol" => "json",
|
628
|
-
"protocolSettings" => {"h2"=>"eventstream"},
|
628
|
+
"protocolSettings" => {"h2" => "eventstream"},
|
629
629
|
"protocols" => ["json"],
|
630
630
|
"serviceAbbreviation" => "Kinesis",
|
631
631
|
"serviceFullName" => "Amazon Kinesis",
|
data/lib/aws-sdk-kinesis.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -312,9 +312,9 @@ module Aws
|
|
312
312
|
end
|
313
313
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kinesis/Client.html#list_tags_for_resource-instance_method
|
314
314
|
def list_tags_for_resource: (
|
315
|
-
|
315
|
+
resource_arn: ::String
|
316
316
|
) -> _ListTagsForResourceResponseSuccess
|
317
|
-
| (
|
317
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
318
318
|
|
319
319
|
interface _ListTagsForStreamResponseSuccess
|
320
320
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForStreamOutput]
|
@@ -433,14 +433,14 @@ module Aws
|
|
433
433
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kinesis/Client.html#tag_resource-instance_method
|
434
434
|
def tag_resource: (
|
435
435
|
tags: Hash[::String, ::String],
|
436
|
-
|
436
|
+
resource_arn: ::String
|
437
437
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
438
438
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
439
439
|
|
440
440
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kinesis/Client.html#untag_resource-instance_method
|
441
441
|
def untag_resource: (
|
442
442
|
tag_keys: Array[::String],
|
443
|
-
|
443
|
+
resource_arn: ::String
|
444
444
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
445
445
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
446
446
|
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-kinesis
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.79.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: aws-sdk-core
|
@@ -81,7 +80,6 @@ licenses:
|
|
81
80
|
metadata:
|
82
81
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-kinesis
|
83
82
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-kinesis/CHANGELOG.md
|
84
|
-
post_install_message:
|
85
83
|
rdoc_options: []
|
86
84
|
require_paths:
|
87
85
|
- lib
|
@@ -96,8 +94,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
96
94
|
- !ruby/object:Gem::Version
|
97
95
|
version: '0'
|
98
96
|
requirements: []
|
99
|
-
rubygems_version: 3.
|
100
|
-
signing_key:
|
97
|
+
rubygems_version: 3.6.7
|
101
98
|
specification_version: 4
|
102
99
|
summary: AWS SDK for Ruby - Kinesis
|
103
100
|
test_files: []
|