aws-sdk-kinesis 1.78.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 +5 -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 +3 -3
- data/lib/aws-sdk-kinesis.rb +1 -1
- data/sig/client.rbs +4 -4
- metadata +1 -1
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,11 @@
|
|
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
|
+
|
4
9
|
1.78.0 (2025-05-01)
|
5
10
|
------------------
|
6
11
|
|
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
|
|
@@ -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"))
|
@@ -587,11 +587,11 @@ 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"))
|
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
|
|