aws-sdk-kafka 1.112.0 → 1.114.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: a322420721b6f2a20f593dd363141dc21b29217df79b462e9d0169ced1f0ac67
4
- data.tar.gz: c112f21f666a73243f4feb510ff4bcb0d8220c4cd18724963fac05f894411694
3
+ metadata.gz: f5334c81e6b1302de289098280129d4240dfd071234468b101dcea90d4d20792
4
+ data.tar.gz: 15454f10104a1ea1fe372523cb8939e416476ac095fd9de621685865166a14c3
5
5
  SHA512:
6
- metadata.gz: 90b4fe813cdb8424e0a88ffca4fa4c1639434ca0d8b48b03d2e5da16741075acb64affccf3eb116e3f767aa2d3b8239122b605df1f614965483964e078d2c22c
7
- data.tar.gz: 23745ebfe6ef448d5934650849f8987f35b4a152b73f051de287c3a2dbf54aed3ab400bb1f27ed6576354d08407cfc7a634034001ad3cf9c116b9af5649f6f35
6
+ metadata.gz: 953c77a3089cbfc0a6f989880f95737c8f84409f6d6057ec24e796e63ee789c91a1a979299345108fbc34edef2e63e81a62756658391a4de55b6b3591c4db20e
7
+ data.tar.gz: 29ca132ffd924a86cad4dad921ad3fa484e144e476e80fad7bcc2e9b3feb3c98f8af9e825bffa8665ae3a6f171fea0f3e66bf0f334d4891502c5545257f65135
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.114.0 (2026-06-22)
5
+ ------------------
6
+
7
+ * Feature - Amazon MSK Replicator now supports mTLS authentication when connecting to external Apache Kafka clusters, enabling customers to replicate data from clusters that require mutual TLS for client authentication. This capability is supported when replicating to Amazon MSK Express brokers.
8
+
9
+ 1.113.0 (2026-05-21)
10
+ ------------------
11
+
12
+ * Feature - Adding new BDD representation of endpoint ruleset
13
+
4
14
  1.112.0 (2026-05-19)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.112.0
1
+ 1.114.0
@@ -199,7 +199,7 @@ module Aws::Kafka
199
199
  # the required types.
200
200
  #
201
201
  # @option options [Boolean] :correct_clock_skew (true)
202
- # Used only in `standard` and adaptive retry modes. Specifies whether to apply
202
+ # Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
203
203
  # a clock skew correction and retry requests with skewed client clocks.
204
204
  #
205
205
  # @option options [String] :defaults_mode ("legacy")
@@ -323,17 +323,15 @@ module Aws::Kafka
323
323
  # @option options [String] :retry_mode ("legacy")
324
324
  # Specifies which retry algorithm to use. Values are:
325
325
  #
326
- # * `legacy` - The pre-existing retry behavior. This is default value if
327
- # no retry mode is provided.
326
+ # * `legacy` - The pre-existing retry behavior. This is the default
327
+ # value if no retry mode is provided.
328
328
  #
329
329
  # * `standard` - A standardized set of retry rules across the AWS SDKs.
330
330
  # This includes support for retry quotas, which limit the number of
331
331
  # unsuccessful retries a client can make.
332
332
  #
333
- # * `adaptive` - An experimental retry mode that includes all the
334
- # functionality of `standard` mode along with automatic client side
335
- # throttling. This is a provisional mode that may change behavior
336
- # in the future.
333
+ # * `adaptive` - A retry mode that includes all the functionality of
334
+ # `standard` mode along with automatic client side throttling.
337
335
  #
338
336
  # @option options [String] :sdk_ua_app_id
339
337
  # A unique and opaque application ID that is appended to the
@@ -954,10 +952,13 @@ module Aws::Kafka
954
952
  # subnet_ids: ["__string"], # required
955
953
  # },
956
954
  # client_authentication: {
957
- # sasl_scram: { # required
955
+ # sasl_scram: {
958
956
  # mechanism: "SHA256", # required, accepts SHA256, SHA512
959
957
  # secret_arn: "__string", # required
960
958
  # },
959
+ # mtls: {
960
+ # secret_arn: "__string", # required
961
+ # },
961
962
  # },
962
963
  # encryption_in_transit: {
963
964
  # encryption_type: "TLS", # required, accepts TLS
@@ -1852,6 +1853,7 @@ module Aws::Kafka
1852
1853
  # resp.kafka_clusters[0].vpc_config.subnet_ids[0] #=> String
1853
1854
  # resp.kafka_clusters[0].client_authentication.sasl_scram.mechanism #=> String, one of "SHA256", "SHA512"
1854
1855
  # resp.kafka_clusters[0].client_authentication.sasl_scram.secret_arn #=> String
1856
+ # resp.kafka_clusters[0].client_authentication.mtls.secret_arn #=> String
1855
1857
  # resp.kafka_clusters[0].encryption_in_transit.encryption_type #=> String, one of "TLS"
1856
1858
  # resp.kafka_clusters[0].encryption_in_transit.root_ca_certificate #=> String
1857
1859
  # resp.log_delivery.replicator_log_delivery.cloud_watch_logs.enabled #=> Boolean
@@ -3859,7 +3861,7 @@ module Aws::Kafka
3859
3861
  tracer: tracer
3860
3862
  )
3861
3863
  context[:gem_name] = 'aws-sdk-kafka'
3862
- context[:gem_version] = '1.112.0'
3864
+ context[:gem_version] = '1.114.0'
3863
3865
  Seahorse::Client::Request.new(handlers, context)
3864
3866
  end
3865
3867
 
@@ -127,6 +127,7 @@ module Aws::Kafka
127
127
  KafkaClusterDescription = Shapes::StructureShape.new(name: 'KafkaClusterDescription')
128
128
  KafkaClusterEncryptionInTransit = Shapes::StructureShape.new(name: 'KafkaClusterEncryptionInTransit')
129
129
  KafkaClusterEncryptionInTransitType = Shapes::StringShape.new(name: 'KafkaClusterEncryptionInTransitType')
130
+ KafkaClusterMTLSAuthentication = Shapes::StructureShape.new(name: 'KafkaClusterMTLSAuthentication')
130
131
  KafkaClusterSaslScramAuthentication = Shapes::StructureShape.new(name: 'KafkaClusterSaslScramAuthentication')
131
132
  KafkaClusterSaslScramMechanism = Shapes::StringShape.new(name: 'KafkaClusterSaslScramMechanism')
132
133
  KafkaClusterSummary = Shapes::StructureShape.new(name: 'KafkaClusterSummary')
@@ -865,7 +866,8 @@ module Aws::Kafka
865
866
  KafkaCluster.add_member(:encryption_in_transit, Shapes::ShapeRef.new(shape: KafkaClusterEncryptionInTransit, location_name: "encryptionInTransit"))
866
867
  KafkaCluster.struct_class = Types::KafkaCluster
867
868
 
868
- KafkaClusterClientAuthentication.add_member(:sasl_scram, Shapes::ShapeRef.new(shape: KafkaClusterSaslScramAuthentication, required: true, location_name: "saslScram"))
869
+ KafkaClusterClientAuthentication.add_member(:sasl_scram, Shapes::ShapeRef.new(shape: KafkaClusterSaslScramAuthentication, location_name: "saslScram"))
870
+ KafkaClusterClientAuthentication.add_member(:mtls, Shapes::ShapeRef.new(shape: KafkaClusterMTLSAuthentication, location_name: "mTLS"))
869
871
  KafkaClusterClientAuthentication.struct_class = Types::KafkaClusterClientAuthentication
870
872
 
871
873
  KafkaClusterClientVpcConfig.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroupIds"))
@@ -884,6 +886,9 @@ module Aws::Kafka
884
886
  KafkaClusterEncryptionInTransit.add_member(:root_ca_certificate, Shapes::ShapeRef.new(shape: __string, location_name: "rootCaCertificate"))
885
887
  KafkaClusterEncryptionInTransit.struct_class = Types::KafkaClusterEncryptionInTransit
886
888
 
889
+ KafkaClusterMTLSAuthentication.add_member(:secret_arn, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "secretArn"))
890
+ KafkaClusterMTLSAuthentication.struct_class = Types::KafkaClusterMTLSAuthentication
891
+
887
892
  KafkaClusterSaslScramAuthentication.add_member(:mechanism, Shapes::ShapeRef.new(shape: KafkaClusterSaslScramMechanism, required: true, location_name: "mechanism"))
888
893
  KafkaClusterSaslScramAuthentication.add_member(:secret_arn, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "secretArn"))
889
894
  KafkaClusterSaslScramAuthentication.struct_class = Types::KafkaClusterSaslScramAuthentication
@@ -2463,10 +2463,15 @@ module Aws::Kafka
2463
2463
  # Details for SASL/SCRAM client authentication.
2464
2464
  # @return [Types::KafkaClusterSaslScramAuthentication]
2465
2465
  #
2466
+ # @!attribute [rw] mtls
2467
+ # Details for mTLS client authentication.
2468
+ # @return [Types::KafkaClusterMTLSAuthentication]
2469
+ #
2466
2470
  # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/KafkaClusterClientAuthentication AWS API Documentation
2467
2471
  #
2468
2472
  class KafkaClusterClientAuthentication < Struct.new(
2469
- :sasl_scram)
2473
+ :sasl_scram,
2474
+ :mtls)
2470
2475
  SENSITIVE = []
2471
2476
  include Aws::Structure
2472
2477
  end
@@ -2490,6 +2495,20 @@ module Aws::Kafka
2490
2495
  include Aws::Structure
2491
2496
  end
2492
2497
 
2498
+ # Details for mTLS client authentication.
2499
+ #
2500
+ # @!attribute [rw] secret_arn
2501
+ # The Amazon Resource Name (ARN) of the Secrets Manager secret.
2502
+ # @return [String]
2503
+ #
2504
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/KafkaClusterMTLSAuthentication AWS API Documentation
2505
+ #
2506
+ class KafkaClusterMTLSAuthentication < Struct.new(
2507
+ :secret_arn)
2508
+ SENSITIVE = []
2509
+ include Aws::Structure
2510
+ end
2511
+
2493
2512
  # Details of encryption in transit to the Apache Kafka cluster.
2494
2513
  #
2495
2514
  # @!attribute [rw] encryption_type
data/lib/aws-sdk-kafka.rb CHANGED
@@ -54,7 +54,7 @@ module Aws::Kafka
54
54
  autoload :EndpointProvider, 'aws-sdk-kafka/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-kafka/endpoints'
56
56
 
57
- GEM_VERSION = '1.112.0'
57
+ GEM_VERSION = '1.114.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -209,7 +209,10 @@ module Aws
209
209
  sasl_scram: {
210
210
  mechanism: ("SHA256" | "SHA512"),
211
211
  secret_arn: ::String
212
- }
212
+ }?,
213
+ mtls: {
214
+ secret_arn: ::String
215
+ }?
213
216
  }?,
214
217
  encryption_in_transit: {
215
218
  encryption_type: ("TLS"),
data/sig/types.rbs CHANGED
@@ -685,6 +685,7 @@ module Aws::Kafka
685
685
 
686
686
  class KafkaClusterClientAuthentication
687
687
  attr_accessor sasl_scram: Types::KafkaClusterSaslScramAuthentication
688
+ attr_accessor mtls: Types::KafkaClusterMTLSAuthentication
688
689
  SENSITIVE: []
689
690
  end
690
691
 
@@ -694,6 +695,11 @@ module Aws::Kafka
694
695
  SENSITIVE: []
695
696
  end
696
697
 
698
+ class KafkaClusterMTLSAuthentication
699
+ attr_accessor secret_arn: ::String
700
+ SENSITIVE: []
701
+ end
702
+
697
703
  class KafkaClusterEncryptionInTransit
698
704
  attr_accessor encryption_type: ("TLS")
699
705
  attr_accessor root_ca_certificate: ::String
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-kafka
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.112.0
4
+ version: 1.114.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.247.0
21
+ version: 3.248.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.247.0
31
+ version: 3.248.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement