aws-sdk-kafka 1.78.0 → 1.80.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-kafka/client.rb +18 -2
- data/lib/aws-sdk-kafka/client_api.rb +7 -0
- data/lib/aws-sdk-kafka/types.rb +22 -0
- data/lib/aws-sdk-kafka.rb +1 -1
- data/sig/client.rbs +3 -0
- data/sig/types.rbs +6 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 85da2ea1d0dd504c9de1ac79a21703ec7525355cf222f5eca7299db5eecf229f
|
4
|
+
data.tar.gz: 79c3fb1260e6d757a789a93817b1a20cbad5626631e44de4968ab84ada620650
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 634f58c8ee47e619cdf3b5c8cc7bc70974a0aa2bd1df176a96f1296e19d4571050948dcca403180ce0dee918271b54e6ba5d2f60f33f84dc11a4d6b77e5722c8
|
7
|
+
data.tar.gz: d78752483f948dd325ee64a5ed6f3d6ee58f2768f3fdaeafd9e80c4a14b00e2f6adbe93bee76225cbd47f596f6cfde512f83b5522c2047754bb161339b03e42e
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.80.0 (2024-09-10)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.79.0 (2024-09-09)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Amazon MSK Replicator can now replicate data to identically named topics between MSK clusters within the same AWS Region or across different AWS Regions.
|
13
|
+
|
4
14
|
1.78.0 (2024-09-03)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.80.0
|
data/lib/aws-sdk-kafka/client.rb
CHANGED
@@ -425,6 +425,12 @@ module Aws::Kafka
|
|
425
425
|
# @option options [String] :ssl_ca_store
|
426
426
|
# Sets the X509::Store to verify peer certificate.
|
427
427
|
#
|
428
|
+
# @option options [OpenSSL::X509::Certificate] :ssl_cert
|
429
|
+
# Sets a client certificate when creating http connections.
|
430
|
+
#
|
431
|
+
# @option options [OpenSSL::PKey] :ssl_key
|
432
|
+
# Sets a client key when creating http connections.
|
433
|
+
#
|
428
434
|
# @option options [Float] :ssl_timeout
|
429
435
|
# Sets the SSL timeout in seconds
|
430
436
|
#
|
@@ -914,6 +920,9 @@ module Aws::Kafka
|
|
914
920
|
# starting_position: {
|
915
921
|
# type: "LATEST", # accepts LATEST, EARLIEST
|
916
922
|
# },
|
923
|
+
# topic_name_configuration: {
|
924
|
+
# type: "PREFIXED_WITH_SOURCE_CLUSTER_ALIAS", # accepts PREFIXED_WITH_SOURCE_CLUSTER_ALIAS, IDENTICAL
|
925
|
+
# },
|
917
926
|
# topics_to_exclude: ["__stringMax249"],
|
918
927
|
# topics_to_replicate: ["__stringMax249"], # required
|
919
928
|
# },
|
@@ -1673,6 +1682,7 @@ module Aws::Kafka
|
|
1673
1682
|
# resp.replication_info_list[0].topic_replication.copy_topic_configurations #=> Boolean
|
1674
1683
|
# resp.replication_info_list[0].topic_replication.detect_and_copy_new_topics #=> Boolean
|
1675
1684
|
# resp.replication_info_list[0].topic_replication.starting_position.type #=> String, one of "LATEST", "EARLIEST"
|
1685
|
+
# resp.replication_info_list[0].topic_replication.topic_name_configuration.type #=> String, one of "PREFIXED_WITH_SOURCE_CLUSTER_ALIAS", "IDENTICAL"
|
1676
1686
|
# resp.replication_info_list[0].topic_replication.topics_to_exclude #=> Array
|
1677
1687
|
# resp.replication_info_list[0].topic_replication.topics_to_exclude[0] #=> String
|
1678
1688
|
# resp.replication_info_list[0].topic_replication.topics_to_replicate #=> Array
|
@@ -1779,7 +1789,13 @@ module Aws::Kafka
|
|
1779
1789
|
req.send_request(options)
|
1780
1790
|
end
|
1781
1791
|
|
1782
|
-
# A list of brokers that a client application can use to bootstrap.
|
1792
|
+
# A list of brokers that a client application can use to bootstrap. This
|
1793
|
+
# list doesn't necessarily include all of the brokers in the cluster.
|
1794
|
+
# The following Python 3.6 example shows how you can use the Amazon
|
1795
|
+
# Resource Name (ARN) of a cluster to get its bootstrap brokers. If you
|
1796
|
+
# don't know the ARN of your cluster, you can use the `ListClusters`
|
1797
|
+
# operation to get the ARNs of all the clusters in this account and
|
1798
|
+
# Region.
|
1783
1799
|
#
|
1784
1800
|
# @option params [required, String] :cluster_arn
|
1785
1801
|
#
|
@@ -3380,7 +3396,7 @@ module Aws::Kafka
|
|
3380
3396
|
tracer: tracer
|
3381
3397
|
)
|
3382
3398
|
context[:gem_name] = 'aws-sdk-kafka'
|
3383
|
-
context[:gem_version] = '1.
|
3399
|
+
context[:gem_version] = '1.80.0'
|
3384
3400
|
Seahorse::Client::Request.new(handlers, context)
|
3385
3401
|
end
|
3386
3402
|
|
@@ -167,6 +167,8 @@ module Aws::Kafka
|
|
167
167
|
ReplicationStartingPosition = Shapes::StructureShape.new(name: 'ReplicationStartingPosition')
|
168
168
|
ReplicationStartingPositionType = Shapes::StringShape.new(name: 'ReplicationStartingPositionType')
|
169
169
|
ReplicationStateInfo = Shapes::StructureShape.new(name: 'ReplicationStateInfo')
|
170
|
+
ReplicationTopicNameConfiguration = Shapes::StructureShape.new(name: 'ReplicationTopicNameConfiguration')
|
171
|
+
ReplicationTopicNameConfigurationType = Shapes::StringShape.new(name: 'ReplicationTopicNameConfigurationType')
|
170
172
|
ReplicatorState = Shapes::StringShape.new(name: 'ReplicatorState')
|
171
173
|
ReplicatorSummary = Shapes::StructureShape.new(name: 'ReplicatorSummary')
|
172
174
|
S3 = Shapes::StructureShape.new(name: 'S3')
|
@@ -1001,6 +1003,9 @@ module Aws::Kafka
|
|
1001
1003
|
ReplicationStateInfo.add_member(:message, Shapes::ShapeRef.new(shape: __string, location_name: "message"))
|
1002
1004
|
ReplicationStateInfo.struct_class = Types::ReplicationStateInfo
|
1003
1005
|
|
1006
|
+
ReplicationTopicNameConfiguration.add_member(:type, Shapes::ShapeRef.new(shape: ReplicationTopicNameConfigurationType, location_name: "type"))
|
1007
|
+
ReplicationTopicNameConfiguration.struct_class = Types::ReplicationTopicNameConfiguration
|
1008
|
+
|
1004
1009
|
ReplicatorSummary.add_member(:creation_time, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "creationTime"))
|
1005
1010
|
ReplicatorSummary.add_member(:current_version, Shapes::ShapeRef.new(shape: __string, location_name: "currentVersion"))
|
1006
1011
|
ReplicatorSummary.add_member(:is_replicator_reference, Shapes::ShapeRef.new(shape: __boolean, location_name: "isReplicatorReference"))
|
@@ -1065,6 +1070,7 @@ module Aws::Kafka
|
|
1065
1070
|
TopicReplication.add_member(:copy_topic_configurations, Shapes::ShapeRef.new(shape: __boolean, location_name: "copyTopicConfigurations"))
|
1066
1071
|
TopicReplication.add_member(:detect_and_copy_new_topics, Shapes::ShapeRef.new(shape: __boolean, location_name: "detectAndCopyNewTopics"))
|
1067
1072
|
TopicReplication.add_member(:starting_position, Shapes::ShapeRef.new(shape: ReplicationStartingPosition, location_name: "startingPosition"))
|
1073
|
+
TopicReplication.add_member(:topic_name_configuration, Shapes::ShapeRef.new(shape: ReplicationTopicNameConfiguration, location_name: "topicNameConfiguration"))
|
1068
1074
|
TopicReplication.add_member(:topics_to_exclude, Shapes::ShapeRef.new(shape: __listOf__stringMax249, location_name: "topicsToExclude"))
|
1069
1075
|
TopicReplication.add_member(:topics_to_replicate, Shapes::ShapeRef.new(shape: __listOf__stringMax249, required: true, location_name: "topicsToReplicate"))
|
1070
1076
|
TopicReplication.struct_class = Types::TopicReplication
|
@@ -1318,6 +1324,7 @@ module Aws::Kafka
|
|
1318
1324
|
|
1319
1325
|
api.metadata = {
|
1320
1326
|
"apiVersion" => "2018-11-14",
|
1327
|
+
"auth" => ["aws.auth#sigv4"],
|
1321
1328
|
"endpointPrefix" => "kafka",
|
1322
1329
|
"jsonVersion" => "1.1",
|
1323
1330
|
"protocol" => "rest-json",
|
data/lib/aws-sdk-kafka/types.rb
CHANGED
@@ -3483,6 +3483,22 @@ module Aws::Kafka
|
|
3483
3483
|
include Aws::Structure
|
3484
3484
|
end
|
3485
3485
|
|
3486
|
+
# Configuration for specifying replicated topic names should be the same
|
3487
|
+
# as their corresponding upstream topics or prefixed with source cluster
|
3488
|
+
# alias.
|
3489
|
+
#
|
3490
|
+
# @!attribute [rw] type
|
3491
|
+
# The type of replicated topic name.
|
3492
|
+
# @return [String]
|
3493
|
+
#
|
3494
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ReplicationTopicNameConfiguration AWS API Documentation
|
3495
|
+
#
|
3496
|
+
class ReplicationTopicNameConfiguration < Struct.new(
|
3497
|
+
:type)
|
3498
|
+
SENSITIVE = []
|
3499
|
+
include Aws::Structure
|
3500
|
+
end
|
3501
|
+
|
3486
3502
|
# Details about the state of a replicator
|
3487
3503
|
#
|
3488
3504
|
# @!attribute [rw] code
|
@@ -3727,6 +3743,11 @@ module Aws::Kafka
|
|
3727
3743
|
# replicating from.
|
3728
3744
|
# @return [Types::ReplicationStartingPosition]
|
3729
3745
|
#
|
3746
|
+
# @!attribute [rw] topic_name_configuration
|
3747
|
+
# Configuration for specifying replicated topic names same as their
|
3748
|
+
# corresponding upstream topics or prefixed with source cluster alias.
|
3749
|
+
# @return [Types::ReplicationTopicNameConfiguration]
|
3750
|
+
#
|
3730
3751
|
# @!attribute [rw] topics_to_exclude
|
3731
3752
|
# List of regular expression patterns indicating the topics that
|
3732
3753
|
# should not be replicated.
|
@@ -3743,6 +3764,7 @@ module Aws::Kafka
|
|
3743
3764
|
:copy_topic_configurations,
|
3744
3765
|
:detect_and_copy_new_topics,
|
3745
3766
|
:starting_position,
|
3767
|
+
:topic_name_configuration,
|
3746
3768
|
:topics_to_exclude,
|
3747
3769
|
:topics_to_replicate)
|
3748
3770
|
SENSITIVE = []
|
data/lib/aws-sdk-kafka.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -379,6 +379,9 @@ module Aws
|
|
379
379
|
starting_position: {
|
380
380
|
type: ("LATEST" | "EARLIEST")?
|
381
381
|
}?,
|
382
|
+
topic_name_configuration: {
|
383
|
+
type: ("PREFIXED_WITH_SOURCE_CLUSTER_ALIAS" | "IDENTICAL")?
|
384
|
+
}?,
|
382
385
|
topics_to_exclude: Array[::String]?,
|
383
386
|
topics_to_replicate: Array[::String]
|
384
387
|
}
|
data/sig/types.rbs
CHANGED
@@ -985,6 +985,11 @@ module Aws::Kafka
|
|
985
985
|
SENSITIVE: []
|
986
986
|
end
|
987
987
|
|
988
|
+
class ReplicationTopicNameConfiguration
|
989
|
+
attr_accessor type: ("PREFIXED_WITH_SOURCE_CLUSTER_ALIAS" | "IDENTICAL")
|
990
|
+
SENSITIVE: []
|
991
|
+
end
|
992
|
+
|
988
993
|
class ReplicationStateInfo
|
989
994
|
attr_accessor code: ::String
|
990
995
|
attr_accessor message: ::String
|
@@ -1064,6 +1069,7 @@ module Aws::Kafka
|
|
1064
1069
|
attr_accessor copy_topic_configurations: bool
|
1065
1070
|
attr_accessor detect_and_copy_new_topics: bool
|
1066
1071
|
attr_accessor starting_position: Types::ReplicationStartingPosition
|
1072
|
+
attr_accessor topic_name_configuration: Types::ReplicationTopicNameConfiguration
|
1067
1073
|
attr_accessor topics_to_exclude: ::Array[::String]
|
1068
1074
|
attr_accessor topics_to_replicate: ::Array[::String]
|
1069
1075
|
SENSITIVE: []
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-kafka
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.80.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-09-
|
11
|
+
date: 2024-09-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -36,14 +36,14 @@ dependencies:
|
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: '1.
|
39
|
+
version: '1.5'
|
40
40
|
type: :runtime
|
41
41
|
prerelease: false
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '1.
|
46
|
+
version: '1.5'
|
47
47
|
description: Official AWS Ruby gem for Managed Streaming for Kafka (Kafka). This gem
|
48
48
|
is part of the AWS SDK for Ruby.
|
49
49
|
email:
|