aws-sdk-kafka 1.72.0 → 1.73.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: bb7d39a58df4bb5f8d6ff941352e420581a883af1417e1452342e9233d1c7e41
4
- data.tar.gz: 3c47400fbe66bca028b3b40e4ec4d8af62adc33abdf130de91e0dba512de66a0
3
+ metadata.gz: d734e10c23d6fe00912a3e34efdf530dbe4d04d7f80bb7be7713e6e60c1b62bf
4
+ data.tar.gz: cd803367f561bed0098e08ff82cb188598c9c4013a3f54776ee5141e92573f33
5
5
  SHA512:
6
- metadata.gz: 641620d90c4c0c41e2b92e6d2b73662c834f0e3d016d4b3dccc5d5316189cc674927225ecd8d7423c4882bcb053a905f163854fa9d52f7f1ae7d298a8982c808
7
- data.tar.gz: 9e5d11f02e9073ce6bf8900763e50588b30ae43693de2d7e2d91bc52782fe20a0a8ae99fff1ab7bb03ed93f92196ddb89d6e2698de508c40a72a10e2a28418a7
6
+ metadata.gz: 79112a1dda30008bbc0752ebcd5d93ca3c4f7f23fcff2745a86979df09cc58f0ac7dc2b4017a4f1df4b1657f0179835cb40337b952714e3aeb5dee2c44dc3970
7
+ data.tar.gz: 9a432b086ecfb3b3bd31ac10545a3cc5475fc16c1e5d931dcaa0dea488c38f54a7c876b2d77c42988ef4f479bf28309e21c315177436007d8b788fe1fd9fb9f0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.73.0 (2024-05-28)
5
+ ------------------
6
+
7
+ * Feature - Adds ControllerNodeInfo in ListNodes response to support Raft mode for MSK
8
+
4
9
  1.72.0 (2024-05-16)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.72.0
1
+ 1.73.0
@@ -2360,6 +2360,8 @@ module Aws::Kafka
2360
2360
  # resp.node_info_list[0].broker_node_info.current_broker_software_info.kafka_version #=> String
2361
2361
  # resp.node_info_list[0].broker_node_info.endpoints #=> Array
2362
2362
  # resp.node_info_list[0].broker_node_info.endpoints[0] #=> String
2363
+ # resp.node_info_list[0].controller_node_info.endpoints #=> Array
2364
+ # resp.node_info_list[0].controller_node_info.endpoints[0] #=> String
2363
2365
  # resp.node_info_list[0].instance_type #=> String
2364
2366
  # resp.node_info_list[0].node_arn #=> String
2365
2367
  # resp.node_info_list[0].node_type #=> String, one of "BROKER"
@@ -3349,7 +3351,7 @@ module Aws::Kafka
3349
3351
  params: params,
3350
3352
  config: config)
3351
3353
  context[:gem_name] = 'aws-sdk-kafka'
3352
- context[:gem_version] = '1.72.0'
3354
+ context[:gem_version] = '1.73.0'
3353
3355
  Seahorse::Client::Request.new(handlers, context)
3354
3356
  end
3355
3357
 
@@ -50,6 +50,7 @@ module Aws::Kafka
50
50
  ConnectivityInfo = Shapes::StructureShape.new(name: 'ConnectivityInfo')
51
51
  ConsumerGroupReplication = Shapes::StructureShape.new(name: 'ConsumerGroupReplication')
52
52
  ConsumerGroupReplicationUpdate = Shapes::StructureShape.new(name: 'ConsumerGroupReplicationUpdate')
53
+ ControllerNodeInfo = Shapes::StructureShape.new(name: 'ControllerNodeInfo')
53
54
  CreateClusterRequest = Shapes::StructureShape.new(name: 'CreateClusterRequest')
54
55
  CreateClusterResponse = Shapes::StructureShape.new(name: 'CreateClusterResponse')
55
56
  CreateClusterV2Request = Shapes::StructureShape.new(name: 'CreateClusterV2Request')
@@ -472,6 +473,9 @@ module Aws::Kafka
472
473
  ConsumerGroupReplicationUpdate.add_member(:synchronise_consumer_group_offsets, Shapes::ShapeRef.new(shape: __boolean, required: true, location_name: "synchroniseConsumerGroupOffsets"))
473
474
  ConsumerGroupReplicationUpdate.struct_class = Types::ConsumerGroupReplicationUpdate
474
475
 
476
+ ControllerNodeInfo.add_member(:endpoints, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "endpoints"))
477
+ ControllerNodeInfo.struct_class = Types::ControllerNodeInfo
478
+
475
479
  CreateClusterRequest.add_member(:broker_node_group_info, Shapes::ShapeRef.new(shape: BrokerNodeGroupInfo, required: true, location_name: "brokerNodeGroupInfo"))
476
480
  CreateClusterRequest.add_member(:client_authentication, Shapes::ShapeRef.new(shape: ClientAuthentication, location_name: "clientAuthentication"))
477
481
  CreateClusterRequest.add_member(:cluster_name, Shapes::ShapeRef.new(shape: __stringMin1Max64, required: true, location_name: "clusterName"))
@@ -892,6 +896,7 @@ module Aws::Kafka
892
896
 
893
897
  NodeInfo.add_member(:added_to_cluster_time, Shapes::ShapeRef.new(shape: __string, location_name: "addedToClusterTime"))
894
898
  NodeInfo.add_member(:broker_node_info, Shapes::ShapeRef.new(shape: BrokerNodeInfo, location_name: "brokerNodeInfo"))
899
+ NodeInfo.add_member(:controller_node_info, Shapes::ShapeRef.new(shape: ControllerNodeInfo, location_name: "controllerNodeInfo"))
895
900
  NodeInfo.add_member(:instance_type, Shapes::ShapeRef.new(shape: __string, location_name: "instanceType"))
896
901
  NodeInfo.add_member(:node_arn, Shapes::ShapeRef.new(shape: __string, location_name: "nodeARN"))
897
902
  NodeInfo.add_member(:node_type, Shapes::ShapeRef.new(shape: NodeType, location_name: "nodeType"))
@@ -3324,6 +3324,10 @@ module Aws::Kafka
3324
3324
  # The broker node info.
3325
3325
  # @return [Types::BrokerNodeInfo]
3326
3326
  #
3327
+ # @!attribute [rw] controller_node_info
3328
+ # The ControllerNodeInfo.
3329
+ # @return [Types::ControllerNodeInfo]
3330
+ #
3327
3331
  # @!attribute [rw] instance_type
3328
3332
  # The instance type.
3329
3333
  # @return [String]
@@ -3345,6 +3349,7 @@ module Aws::Kafka
3345
3349
  class NodeInfo < Struct.new(
3346
3350
  :added_to_cluster_time,
3347
3351
  :broker_node_info,
3352
+ :controller_node_info,
3348
3353
  :instance_type,
3349
3354
  :node_arn,
3350
3355
  :node_type,
@@ -4440,7 +4445,7 @@ module Aws::Kafka
4440
4445
  # Zookeeper node information.
4441
4446
  #
4442
4447
  # @!attribute [rw] attached_eni_id
4443
- # The attached elastic network interface of the broker.
4448
+ # The attached elastic network interface of the zookeeper.
4444
4449
  # @return [String]
4445
4450
  #
4446
4451
  # @!attribute [rw] client_vpc_ip_address
@@ -4471,6 +4476,20 @@ module Aws::Kafka
4471
4476
  include Aws::Structure
4472
4477
  end
4473
4478
 
4479
+ # Controller node information.
4480
+ #
4481
+ # @!attribute [rw] endpoints
4482
+ # Endpoints for accessing the Controller.
4483
+ # @return [Array<String>]
4484
+ #
4485
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ControllerNodeInfo AWS API Documentation
4486
+ #
4487
+ class ControllerNodeInfo < Struct.new(
4488
+ :endpoints)
4489
+ SENSITIVE = []
4490
+ include Aws::Structure
4491
+ end
4492
+
4474
4493
  # JMX and Node monitoring for the MSK cluster.
4475
4494
  #
4476
4495
  # @!attribute [rw] prometheus
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.72.0'
55
+ GEM_VERSION = '1.73.0'
56
56
 
57
57
  end
data/sig/types.rbs CHANGED
@@ -942,6 +942,7 @@ module Aws::Kafka
942
942
  class NodeInfo
943
943
  attr_accessor added_to_cluster_time: ::String
944
944
  attr_accessor broker_node_info: Types::BrokerNodeInfo
945
+ attr_accessor controller_node_info: Types::ControllerNodeInfo
945
946
  attr_accessor instance_type: ::String
946
947
  attr_accessor node_arn: ::String
947
948
  attr_accessor node_type: ("BROKER")
@@ -1285,6 +1286,11 @@ module Aws::Kafka
1285
1286
  SENSITIVE: []
1286
1287
  end
1287
1288
 
1289
+ class ControllerNodeInfo
1290
+ attr_accessor endpoints: ::Array[::String]
1291
+ SENSITIVE: []
1292
+ end
1293
+
1288
1294
  class OpenMonitoring
1289
1295
  attr_accessor prometheus: Types::Prometheus
1290
1296
  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.72.0
4
+ version: 1.73.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-05-16 00:00:00.000000000 Z
11
+ date: 2024-05-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core