aws-sdk-kafka 1.78.0 → 1.79.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0e2e839c6d9daf6294adc2bef97e6a720e6476c34362ae8353ee97febaa480c3
4
- data.tar.gz: b861397d113d74e77e6f0a6cec321361cbec17f6c272936ccbb3b5e629b86b25
3
+ metadata.gz: 715ec35ebf89302d7f40823d55722401f0ac8d0fc96f9ffa11895c47469e73f0
4
+ data.tar.gz: ef9d6177c65dbc4476ec701c5ec2d661cd7bc931fd51e1fbc2fbdb7659cf0d4d
5
5
  SHA512:
6
- metadata.gz: 6e791d4d769bc8a5bc1d7f9be9527d2621c8ccf04fc34c25b2cb182b4d24e77992194215080ad6f3fee2eab2decb91d1f4350a6f609bff6d91c2249dfff2daf6
7
- data.tar.gz: 4fac90052ed933bfbf58ee686bcadb5ef4c573730f38e118a45ffff4bbac19f9d93b419559a4bf256f51bb462dedc8e2dbc68d81eb9e8552923a99a3e1b25447
6
+ metadata.gz: d80a5ded79f5f6bedd89b6a9157dc08d2c301b6cfc5d5f3709710d8a4c1fcdf79fd949b60787577fbd6235334d46d9eee50f081cec7d4342ea27ff90e1be2bc7
7
+ data.tar.gz: 376a4377c61dc5120c4591609bf6f0ecf124e54fce547e02c8b222fa9085b85fec59f574dd21c3f7f1c5b411a861155f2b803d3c25b42fc7b5e8613934c25d36
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.79.0 (2024-09-09)
5
+ ------------------
6
+
7
+ * 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.
8
+
4
9
  1.78.0 (2024-09-03)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.78.0
1
+ 1.79.0
@@ -914,6 +914,9 @@ module Aws::Kafka
914
914
  # starting_position: {
915
915
  # type: "LATEST", # accepts LATEST, EARLIEST
916
916
  # },
917
+ # topic_name_configuration: {
918
+ # type: "PREFIXED_WITH_SOURCE_CLUSTER_ALIAS", # accepts PREFIXED_WITH_SOURCE_CLUSTER_ALIAS, IDENTICAL
919
+ # },
917
920
  # topics_to_exclude: ["__stringMax249"],
918
921
  # topics_to_replicate: ["__stringMax249"], # required
919
922
  # },
@@ -1673,6 +1676,7 @@ module Aws::Kafka
1673
1676
  # resp.replication_info_list[0].topic_replication.copy_topic_configurations #=> Boolean
1674
1677
  # resp.replication_info_list[0].topic_replication.detect_and_copy_new_topics #=> Boolean
1675
1678
  # resp.replication_info_list[0].topic_replication.starting_position.type #=> String, one of "LATEST", "EARLIEST"
1679
+ # resp.replication_info_list[0].topic_replication.topic_name_configuration.type #=> String, one of "PREFIXED_WITH_SOURCE_CLUSTER_ALIAS", "IDENTICAL"
1676
1680
  # resp.replication_info_list[0].topic_replication.topics_to_exclude #=> Array
1677
1681
  # resp.replication_info_list[0].topic_replication.topics_to_exclude[0] #=> String
1678
1682
  # resp.replication_info_list[0].topic_replication.topics_to_replicate #=> Array
@@ -1779,7 +1783,13 @@ module Aws::Kafka
1779
1783
  req.send_request(options)
1780
1784
  end
1781
1785
 
1782
- # A list of brokers that a client application can use to bootstrap.
1786
+ # A list of brokers that a client application can use to bootstrap. This
1787
+ # list doesn't necessarily include all of the brokers in the cluster.
1788
+ # The following Python 3.6 example shows how you can use the Amazon
1789
+ # Resource Name (ARN) of a cluster to get its bootstrap brokers. If you
1790
+ # don't know the ARN of your cluster, you can use the `ListClusters`
1791
+ # operation to get the ARNs of all the clusters in this account and
1792
+ # Region.
1783
1793
  #
1784
1794
  # @option params [required, String] :cluster_arn
1785
1795
  #
@@ -3380,7 +3390,7 @@ module Aws::Kafka
3380
3390
  tracer: tracer
3381
3391
  )
3382
3392
  context[:gem_name] = 'aws-sdk-kafka'
3383
- context[:gem_version] = '1.78.0'
3393
+ context[:gem_version] = '1.79.0'
3384
3394
  Seahorse::Client::Request.new(handlers, context)
3385
3395
  end
3386
3396
 
@@ -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",
@@ -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
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-kafka/customizations'
52
52
  # @!group service
53
53
  module Aws::Kafka
54
54
 
55
- GEM_VERSION = '1.78.0'
55
+ GEM_VERSION = '1.79.0'
56
56
 
57
57
  end
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.78.0
4
+ version: 1.79.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-03 00:00:00.000000000 Z
11
+ date: 2024-09-09 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.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.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: