aws-sdk-kafka 1.40.0 → 1.41.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 +1 -0
- data/lib/aws-sdk-kafka/types.rb +5 -0
- data/lib/aws-sdk-kafka.rb +1 -1
- 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: b9afc06ae2baf6eff1321f1172a80e1e92ab2ab48b988f4240a0f5d5e9c89b8d
|
|
4
|
+
data.tar.gz: 6799f8603d9ece1ca50535ff8cc602a131690419a01ae6981131f3717d2fb3df
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5ddf8c1f8b3754ce9f159b4f4c360c7093cedcaa51db1c56dba1cdd8c31f5cb4ea88157d0ba7125ddc39d5f4ad3441db51dd1290bd2e5c3dfcf0a18fc7a5a66f
|
|
7
|
+
data.tar.gz: 4bcc81046ad5081627ae5fd885e7bc5fd481a6e855140c93eecbc20c01f3fde4138d3828da9ddd79344e5513ac31a9e5b11a5b4256c7c63e4a66903c331da5e3
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.41.0
|
data/lib/aws-sdk-kafka/client.rb
CHANGED
|
@@ -669,6 +669,8 @@ module Aws::Kafka
|
|
|
669
669
|
# resp.cluster_info.open_monitoring.prometheus.jmx_exporter.enabled_in_broker #=> Boolean
|
|
670
670
|
# resp.cluster_info.open_monitoring.prometheus.node_exporter.enabled_in_broker #=> Boolean
|
|
671
671
|
# resp.cluster_info.state #=> String, one of "ACTIVE", "CREATING", "DELETING", "FAILED", "HEALING", "MAINTENANCE", "REBOOTING_BROKER", "UPDATING"
|
|
672
|
+
# resp.cluster_info.state_info.code #=> String
|
|
673
|
+
# resp.cluster_info.state_info.message #=> String
|
|
672
674
|
# resp.cluster_info.tags #=> Hash
|
|
673
675
|
# resp.cluster_info.tags["__string"] #=> String
|
|
674
676
|
# resp.cluster_info.zookeeper_connect_string #=> String
|
|
@@ -1121,6 +1123,8 @@ module Aws::Kafka
|
|
|
1121
1123
|
# resp.cluster_info_list[0].open_monitoring.prometheus.jmx_exporter.enabled_in_broker #=> Boolean
|
|
1122
1124
|
# resp.cluster_info_list[0].open_monitoring.prometheus.node_exporter.enabled_in_broker #=> Boolean
|
|
1123
1125
|
# resp.cluster_info_list[0].state #=> String, one of "ACTIVE", "CREATING", "DELETING", "FAILED", "HEALING", "MAINTENANCE", "REBOOTING_BROKER", "UPDATING"
|
|
1126
|
+
# resp.cluster_info_list[0].state_info.code #=> String
|
|
1127
|
+
# resp.cluster_info_list[0].state_info.message #=> String
|
|
1124
1128
|
# resp.cluster_info_list[0].tags #=> Hash
|
|
1125
1129
|
# resp.cluster_info_list[0].tags["__string"] #=> String
|
|
1126
1130
|
# resp.cluster_info_list[0].zookeeper_connect_string #=> String
|
|
@@ -1873,7 +1877,7 @@ module Aws::Kafka
|
|
|
1873
1877
|
params: params,
|
|
1874
1878
|
config: config)
|
|
1875
1879
|
context[:gem_name] = 'aws-sdk-kafka'
|
|
1876
|
-
context[:gem_version] = '1.
|
|
1880
|
+
context[:gem_version] = '1.41.0'
|
|
1877
1881
|
Seahorse::Client::Request.new(handlers, context)
|
|
1878
1882
|
end
|
|
1879
1883
|
|
|
@@ -230,6 +230,7 @@ module Aws::Kafka
|
|
|
230
230
|
ClusterInfo.add_member(:number_of_broker_nodes, Shapes::ShapeRef.new(shape: __integer, location_name: "numberOfBrokerNodes"))
|
|
231
231
|
ClusterInfo.add_member(:open_monitoring, Shapes::ShapeRef.new(shape: OpenMonitoring, location_name: "openMonitoring"))
|
|
232
232
|
ClusterInfo.add_member(:state, Shapes::ShapeRef.new(shape: ClusterState, location_name: "state"))
|
|
233
|
+
ClusterInfo.add_member(:state_info, Shapes::ShapeRef.new(shape: StateInfo, location_name: "stateInfo"))
|
|
233
234
|
ClusterInfo.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
|
|
234
235
|
ClusterInfo.add_member(:zookeeper_connect_string, Shapes::ShapeRef.new(shape: __string, location_name: "zookeeperConnectString"))
|
|
235
236
|
ClusterInfo.add_member(:zookeeper_connect_string_tls, Shapes::ShapeRef.new(shape: __string, location_name: "zookeeperConnectStringTls"))
|
data/lib/aws-sdk-kafka/types.rb
CHANGED
|
@@ -416,6 +416,10 @@ module Aws::Kafka
|
|
|
416
416
|
# UPDATING.
|
|
417
417
|
# @return [String]
|
|
418
418
|
#
|
|
419
|
+
# @!attribute [rw] state_info
|
|
420
|
+
# Contains information about the state of the Amazon MSK cluster.
|
|
421
|
+
# @return [Types::StateInfo]
|
|
422
|
+
#
|
|
419
423
|
# @!attribute [rw] tags
|
|
420
424
|
# Tags attached to the cluster.
|
|
421
425
|
# @return [Hash<String,String>]
|
|
@@ -447,6 +451,7 @@ module Aws::Kafka
|
|
|
447
451
|
:number_of_broker_nodes,
|
|
448
452
|
:open_monitoring,
|
|
449
453
|
:state,
|
|
454
|
+
:state_info,
|
|
450
455
|
:tags,
|
|
451
456
|
:zookeeper_connect_string,
|
|
452
457
|
:zookeeper_connect_string_tls)
|
data/lib/aws-sdk-kafka.rb
CHANGED
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.41.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: 2021-09-
|
|
11
|
+
date: 2021-09-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|