aws-sdk-kafka 1.40.0 → 1.41.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 01c8c1fc42f4eb462a8e5bb5eb247643ba19db7e382515425239f85f70a1d029
4
- data.tar.gz: e013716efd35898107c2ebe86d516d7990b1ee228c4c89d51a82adf5693019e0
3
+ metadata.gz: b9afc06ae2baf6eff1321f1172a80e1e92ab2ab48b988f4240a0f5d5e9c89b8d
4
+ data.tar.gz: 6799f8603d9ece1ca50535ff8cc602a131690419a01ae6981131f3717d2fb3df
5
5
  SHA512:
6
- metadata.gz: 39094b78886db122aa27dd50a19098726b57d88e39692231cd4c6ff2760f80992d77231835e2d035fe47fe2b5239f57f67cda1b99742c36392729812ebbb133d
7
- data.tar.gz: aee6c1e062dca2cfc220cfe40ea78aecf1e7802de3ee0bc66d6c177e8687828f82c105b5039cb5d5980551e86a902dbe6d94550a70571f64c9c92f47a16802b5
6
+ metadata.gz: 5ddf8c1f8b3754ce9f159b4f4c360c7093cedcaa51db1c56dba1cdd8c31f5cb4ea88157d0ba7125ddc39d5f4ad3441db51dd1290bd2e5c3dfcf0a18fc7a5a66f
7
+ data.tar.gz: 4bcc81046ad5081627ae5fd885e7bc5fd481a6e855140c93eecbc20c01f3fde4138d3828da9ddd79344e5513ac31a9e5b11a5b4256c7c63e4a66903c331da5e3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.41.0 (2021-09-21)
5
+ ------------------
6
+
7
+ * Feature - Added StateInfo to ClusterInfo
8
+
4
9
  1.40.0 (2021-09-08)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.40.0
1
+ 1.41.0
@@ -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.40.0'
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"))
@@ -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
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-kafka/customizations'
48
48
  # @!group service
49
49
  module Aws::Kafka
50
50
 
51
- GEM_VERSION = '1.40.0'
51
+ GEM_VERSION = '1.41.0'
52
52
 
53
53
  end
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.40.0
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-08 00:00:00.000000000 Z
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