aws-sdk-kafka 1.28.0 → 1.29.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/lib/aws-sdk-kafka.rb +1 -1
- data/lib/aws-sdk-kafka/client.rb +3 -1
- data/lib/aws-sdk-kafka/client_api.rb +1 -0
- data/lib/aws-sdk-kafka/types.rb +7 -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: 7a5611814c943c4e6e5b92964deea7b3172351ec9711f9c375b74a7f658e03b9
|
4
|
+
data.tar.gz: 16e3f829485f7d16031c3f10530ec41b48eab9a779c431a2fa12b1fd4793f71e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8090c00dd81335e19b299a55f6872ff1591923278b5d24a67d3eb3a369c0a3ed2e0643206071d25bf4a665ff6bb09a70b5910c013adcad7b3826d49e17e54bdf
|
7
|
+
data.tar.gz: 51e0c6eb80594cc3ee16ceb0fd1927656433afe791fb8f4e1ca5cef873002b205049cc6d81d5e646fd94c84bb2c32518c594c2651dbd6d27a72fcf6a4d81b98f
|
data/lib/aws-sdk-kafka.rb
CHANGED
data/lib/aws-sdk-kafka/client.rb
CHANGED
@@ -661,6 +661,7 @@ module Aws::Kafka
|
|
661
661
|
# resp.cluster_info.tags #=> Hash
|
662
662
|
# resp.cluster_info.tags["__string"] #=> String
|
663
663
|
# resp.cluster_info.zookeeper_connect_string #=> String
|
664
|
+
# resp.cluster_info.zookeeper_connect_string_tls #=> String
|
664
665
|
#
|
665
666
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeCluster AWS API Documentation
|
666
667
|
#
|
@@ -1067,6 +1068,7 @@ module Aws::Kafka
|
|
1067
1068
|
# resp.cluster_info_list[0].tags #=> Hash
|
1068
1069
|
# resp.cluster_info_list[0].tags["__string"] #=> String
|
1069
1070
|
# resp.cluster_info_list[0].zookeeper_connect_string #=> String
|
1071
|
+
# resp.cluster_info_list[0].zookeeper_connect_string_tls #=> String
|
1070
1072
|
# resp.next_token #=> String
|
1071
1073
|
#
|
1072
1074
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListClusters AWS API Documentation
|
@@ -1709,7 +1711,7 @@ module Aws::Kafka
|
|
1709
1711
|
params: params,
|
1710
1712
|
config: config)
|
1711
1713
|
context[:gem_name] = 'aws-sdk-kafka'
|
1712
|
-
context[:gem_version] = '1.
|
1714
|
+
context[:gem_version] = '1.29.0'
|
1713
1715
|
Seahorse::Client::Request.new(handlers, context)
|
1714
1716
|
end
|
1715
1717
|
|
@@ -225,6 +225,7 @@ module Aws::Kafka
|
|
225
225
|
ClusterInfo.add_member(:state, Shapes::ShapeRef.new(shape: ClusterState, location_name: "state"))
|
226
226
|
ClusterInfo.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
|
227
227
|
ClusterInfo.add_member(:zookeeper_connect_string, Shapes::ShapeRef.new(shape: __string, location_name: "zookeeperConnectString"))
|
228
|
+
ClusterInfo.add_member(:zookeeper_connect_string_tls, Shapes::ShapeRef.new(shape: __string, location_name: "zookeeperConnectStringTls"))
|
228
229
|
ClusterInfo.struct_class = Types::ClusterInfo
|
229
230
|
|
230
231
|
ClusterOperationInfo.add_member(:client_request_id, Shapes::ShapeRef.new(shape: __string, location_name: "clientRequestId"))
|
data/lib/aws-sdk-kafka/types.rb
CHANGED
@@ -414,6 +414,11 @@ module Aws::Kafka
|
|
414
414
|
# cluster.
|
415
415
|
# @return [String]
|
416
416
|
#
|
417
|
+
# @!attribute [rw] zookeeper_connect_string_tls
|
418
|
+
# The connection string to use to connect to zookeeper cluster on Tls
|
419
|
+
# port.
|
420
|
+
# @return [String]
|
421
|
+
#
|
417
422
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ClusterInfo AWS API Documentation
|
418
423
|
#
|
419
424
|
class ClusterInfo < Struct.new(
|
@@ -432,7 +437,8 @@ module Aws::Kafka
|
|
432
437
|
:open_monitoring,
|
433
438
|
:state,
|
434
439
|
:tags,
|
435
|
-
:zookeeper_connect_string
|
440
|
+
:zookeeper_connect_string,
|
441
|
+
:zookeeper_connect_string_tls)
|
436
442
|
SENSITIVE = []
|
437
443
|
include Aws::Structure
|
438
444
|
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.
|
4
|
+
version: 1.29.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: 2020-
|
11
|
+
date: 2020-10-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|