aws-sdk-kafka 1.67.0 → 1.69.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 39749616cf9ec39cc86afbeed00e4f7697a2e165241b1b01fa51a55e19e61d72
4
- data.tar.gz: d754954e4ab7abc0784ee6c89e257618af852f14361413cbd3e30da2c934b9de
3
+ metadata.gz: 138865349682b1ec4092feec1b28c6c663c686eadb30b2a6120bc66e3ef3652f
4
+ data.tar.gz: 48b37c0b9956e8e9029f87fa78494177ee4dfff196e0813afce96dced396c405
5
5
  SHA512:
6
- metadata.gz: f183468fff26484a414d1a1b8807327525a293e89346b17b21df9539d8d7b09dd7c699fec32211bda658a0c862b637c15f5a9ac5ee793f2ddc7e7dcde8362cba
7
- data.tar.gz: 2d752fe41e313257a926e6aef7ede8094494937b48ca9771b02b7f0d36dce400ef2eb98d27a029c80c9db19ee3f4539f40dae471cee9a388d20a447adb57e575
6
+ metadata.gz: 8b9d0082127db269a00d11b8090fcdb5ea4a8a78de389d12ae1cc15d95daa8f03a234986ee9009a2568a7e7bae0c9b9cd63909cfa42633950d994887ead44c1a
7
+ data.tar.gz: 2758af097aed04602a66901bf48dfb811dc7a9e5173030806e915074cb0fd127a59c3050b35f4ea1fc1013a337587750f0d021c6d41dd3d2304f4ca8834241e6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.69.0 (2024-03-12)
5
+ ------------------
6
+
7
+ * Feature - Added support for specifying the starting position of topic replication in MSK-Replicator.
8
+
9
+ 1.68.0 (2024-01-26)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.67.0 (2023-11-28)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.67.0
1
+ 1.69.0
@@ -862,6 +862,9 @@ module Aws::Kafka
862
862
  # copy_access_control_lists_for_topics: false,
863
863
  # copy_topic_configurations: false,
864
864
  # detect_and_copy_new_topics: false,
865
+ # starting_position: {
866
+ # type: "LATEST", # accepts LATEST, EARLIEST
867
+ # },
865
868
  # topics_to_exclude: ["__stringMax249"],
866
869
  # topics_to_replicate: ["__stringMax249"], # required
867
870
  # },
@@ -1604,6 +1607,7 @@ module Aws::Kafka
1604
1607
  # resp.replication_info_list[0].topic_replication.copy_access_control_lists_for_topics #=> Boolean
1605
1608
  # resp.replication_info_list[0].topic_replication.copy_topic_configurations #=> Boolean
1606
1609
  # resp.replication_info_list[0].topic_replication.detect_and_copy_new_topics #=> Boolean
1610
+ # resp.replication_info_list[0].topic_replication.starting_position.type #=> String, one of "LATEST", "EARLIEST"
1607
1611
  # resp.replication_info_list[0].topic_replication.topics_to_exclude #=> Array
1608
1612
  # resp.replication_info_list[0].topic_replication.topics_to_exclude[0] #=> String
1609
1613
  # resp.replication_info_list[0].topic_replication.topics_to_replicate #=> Array
@@ -3296,7 +3300,7 @@ module Aws::Kafka
3296
3300
  params: params,
3297
3301
  config: config)
3298
3302
  context[:gem_name] = 'aws-sdk-kafka'
3299
- context[:gem_version] = '1.67.0'
3303
+ context[:gem_version] = '1.69.0'
3300
3304
  Seahorse::Client::Request.new(handlers, context)
3301
3305
  end
3302
3306
 
@@ -162,6 +162,8 @@ module Aws::Kafka
162
162
  ReplicationInfo = Shapes::StructureShape.new(name: 'ReplicationInfo')
163
163
  ReplicationInfoDescription = Shapes::StructureShape.new(name: 'ReplicationInfoDescription')
164
164
  ReplicationInfoSummary = Shapes::StructureShape.new(name: 'ReplicationInfoSummary')
165
+ ReplicationStartingPosition = Shapes::StructureShape.new(name: 'ReplicationStartingPosition')
166
+ ReplicationStartingPositionType = Shapes::StringShape.new(name: 'ReplicationStartingPositionType')
165
167
  ReplicationStateInfo = Shapes::StructureShape.new(name: 'ReplicationStateInfo')
166
168
  ReplicatorState = Shapes::StringShape.new(name: 'ReplicatorState')
167
169
  ReplicatorSummary = Shapes::StructureShape.new(name: 'ReplicatorSummary')
@@ -980,6 +982,9 @@ module Aws::Kafka
980
982
  ReplicationInfoSummary.add_member(:target_kafka_cluster_alias, Shapes::ShapeRef.new(shape: __string, location_name: "targetKafkaClusterAlias"))
981
983
  ReplicationInfoSummary.struct_class = Types::ReplicationInfoSummary
982
984
 
985
+ ReplicationStartingPosition.add_member(:type, Shapes::ShapeRef.new(shape: ReplicationStartingPositionType, location_name: "type"))
986
+ ReplicationStartingPosition.struct_class = Types::ReplicationStartingPosition
987
+
983
988
  ReplicationStateInfo.add_member(:code, Shapes::ShapeRef.new(shape: __string, location_name: "code"))
984
989
  ReplicationStateInfo.add_member(:message, Shapes::ShapeRef.new(shape: __string, location_name: "message"))
985
990
  ReplicationStateInfo.struct_class = Types::ReplicationStateInfo
@@ -1047,6 +1052,7 @@ module Aws::Kafka
1047
1052
  TopicReplication.add_member(:copy_access_control_lists_for_topics, Shapes::ShapeRef.new(shape: __boolean, location_name: "copyAccessControlListsForTopics"))
1048
1053
  TopicReplication.add_member(:copy_topic_configurations, Shapes::ShapeRef.new(shape: __boolean, location_name: "copyTopicConfigurations"))
1049
1054
  TopicReplication.add_member(:detect_and_copy_new_topics, Shapes::ShapeRef.new(shape: __boolean, location_name: "detectAndCopyNewTopics"))
1055
+ TopicReplication.add_member(:starting_position, Shapes::ShapeRef.new(shape: ReplicationStartingPosition, location_name: "startingPosition"))
1050
1056
  TopicReplication.add_member(:topics_to_exclude, Shapes::ShapeRef.new(shape: __listOf__stringMax249, location_name: "topicsToExclude"))
1051
1057
  TopicReplication.add_member(:topics_to_replicate, Shapes::ShapeRef.new(shape: __listOf__stringMax249, required: true, location_name: "topicsToReplicate"))
1052
1058
  TopicReplication.struct_class = Types::TopicReplication
@@ -14,6 +14,7 @@ module Aws::Kafka
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::Kafka::EndpointProvider',
17
+ rbs_type: 'untyped',
17
18
  docstring: 'The endpoint provider used to resolve endpoints. Any '\
18
19
  'object that responds to `#resolve_endpoint(parameters)` '\
19
20
  'where `parameters` is a Struct similar to '\
@@ -3439,6 +3439,21 @@ module Aws::Kafka
3439
3439
  include Aws::Structure
3440
3440
  end
3441
3441
 
3442
+ # Configuration for specifying the position in the topics to start
3443
+ # replicating from.
3444
+ #
3445
+ # @!attribute [rw] type
3446
+ # The type of replication starting position.
3447
+ # @return [String]
3448
+ #
3449
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ReplicationStartingPosition AWS API Documentation
3450
+ #
3451
+ class ReplicationStartingPosition < Struct.new(
3452
+ :type)
3453
+ SENSITIVE = []
3454
+ include Aws::Structure
3455
+ end
3456
+
3442
3457
  # Details about the state of a replicator
3443
3458
  #
3444
3459
  # @!attribute [rw] code
@@ -3678,6 +3693,11 @@ module Aws::Kafka
3678
3693
  # Whether to periodically check for new topics and partitions.
3679
3694
  # @return [Boolean]
3680
3695
  #
3696
+ # @!attribute [rw] starting_position
3697
+ # Configuration for specifying the position in the topics to start
3698
+ # replicating from.
3699
+ # @return [Types::ReplicationStartingPosition]
3700
+ #
3681
3701
  # @!attribute [rw] topics_to_exclude
3682
3702
  # List of regular expression patterns indicating the topics that
3683
3703
  # should not be replicated.
@@ -3693,6 +3713,7 @@ module Aws::Kafka
3693
3713
  :copy_access_control_lists_for_topics,
3694
3714
  :copy_topic_configurations,
3695
3715
  :detect_and_copy_new_topics,
3716
+ :starting_position,
3696
3717
  :topics_to_exclude,
3697
3718
  :topics_to_replicate)
3698
3719
  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.67.0'
55
+ GEM_VERSION = '1.69.0'
56
56
 
57
57
  end