aws-sdk-kafka 1.68.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-kafka/client.rb +5 -1
- data/lib/aws-sdk-kafka/client_api.rb +6 -0
- data/lib/aws-sdk-kafka/types.rb +21 -0
- data/lib/aws-sdk-kafka.rb +1 -1
- data/sig/client.rbs +3 -0
- data/sig/types.rbs +6 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 138865349682b1ec4092feec1b28c6c663c686eadb30b2a6120bc66e3ef3652f
|
4
|
+
data.tar.gz: 48b37c0b9956e8e9029f87fa78494177ee4dfff196e0813afce96dced396c405
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8b9d0082127db269a00d11b8090fcdb5ea4a8a78de389d12ae1cc15d95daa8f03a234986ee9009a2568a7e7bae0c9b9cd63909cfa42633950d994887ead44c1a
|
7
|
+
data.tar.gz: 2758af097aed04602a66901bf48dfb811dc7a9e5173030806e915074cb0fd127a59c3050b35f4ea1fc1013a337587750f0d021c6d41dd3d2304f4ca8834241e6
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.69.0
|
data/lib/aws-sdk-kafka/client.rb
CHANGED
@@ -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.
|
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
|
data/lib/aws-sdk-kafka/types.rb
CHANGED
@@ -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
data/sig/client.rbs
CHANGED
@@ -374,6 +374,9 @@ module Aws
|
|
374
374
|
copy_access_control_lists_for_topics: bool?,
|
375
375
|
copy_topic_configurations: bool?,
|
376
376
|
detect_and_copy_new_topics: bool?,
|
377
|
+
starting_position: {
|
378
|
+
type: ("LATEST" | "EARLIEST")?
|
379
|
+
}?,
|
377
380
|
topics_to_exclude: Array[::String]?,
|
378
381
|
topics_to_replicate: Array[::String]
|
379
382
|
}
|
data/sig/types.rbs
CHANGED
@@ -972,6 +972,11 @@ module Aws::Kafka
|
|
972
972
|
SENSITIVE: []
|
973
973
|
end
|
974
974
|
|
975
|
+
class ReplicationStartingPosition
|
976
|
+
attr_accessor type: ("LATEST" | "EARLIEST")
|
977
|
+
SENSITIVE: []
|
978
|
+
end
|
979
|
+
|
975
980
|
class ReplicationStateInfo
|
976
981
|
attr_accessor code: ::String
|
977
982
|
attr_accessor message: ::String
|
@@ -1050,6 +1055,7 @@ module Aws::Kafka
|
|
1050
1055
|
attr_accessor copy_access_control_lists_for_topics: bool
|
1051
1056
|
attr_accessor copy_topic_configurations: bool
|
1052
1057
|
attr_accessor detect_and_copy_new_topics: bool
|
1058
|
+
attr_accessor starting_position: Types::ReplicationStartingPosition
|
1053
1059
|
attr_accessor topics_to_exclude: ::Array[::String]
|
1054
1060
|
attr_accessor topics_to_replicate: ::Array[::String]
|
1055
1061
|
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.69.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-
|
11
|
+
date: 2024-03-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|