aws-sdk-kafka 1.19.0 → 1.20.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 +5 -5
- data/lib/aws-sdk-kafka.rb +1 -1
- data/lib/aws-sdk-kafka/client.rb +35 -20
- data/lib/aws-sdk-kafka/resource.rb +1 -7
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 1f17b94096da877f66b4a3021024f36d28c44cfdb0696b1d714af9124b67800e
|
4
|
+
data.tar.gz: c597c65ca6f404db8364fc6a86702e53d316d8ae34362313126da45e5d16ac9a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b04507b7e2a8c754938a062ebcfbc15b732cf3c3b8a9276c52f8b60e083c85da8ef70a38998b4e4f65b5038beacb9a9b608384546e582cc395d75376d5d45b84
|
7
|
+
data.tar.gz: c87947501d8a2c6ef62381ed792098ad188e1d1c642266ad0324a52270b210481b82e0edc6057c6f0d7b5fa27605b8d484cd50a3dbde2337045e3a68a41bfcd1
|
data/lib/aws-sdk-kafka.rb
CHANGED
data/lib/aws-sdk-kafka/client.rb
CHANGED
@@ -32,11 +32,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:kafka)
|
|
32
32
|
module Aws::Kafka
|
33
33
|
# An API client for Kafka. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
34
|
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
35
|
+
# client = Aws::Kafka::Client.new(
|
36
|
+
# region: region_name,
|
37
|
+
# credentials: credentials,
|
38
|
+
# # ...
|
39
|
+
# )
|
40
40
|
#
|
41
41
|
# For details on configuring region and credentials see
|
42
42
|
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
@@ -105,7 +105,7 @@ module Aws::Kafka
|
|
105
105
|
# @option options [required, String] :region
|
106
106
|
# The AWS region to connect to. The configured `:region` is
|
107
107
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
108
|
+
# a default `:region` is searched for in the following locations:
|
109
109
|
#
|
110
110
|
# * `Aws.config[:region]`
|
111
111
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +161,7 @@ module Aws::Kafka
|
|
161
161
|
# @option options [String] :endpoint
|
162
162
|
# The client endpoint is normally constructed from the `:region`
|
163
163
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
164
|
+
# to test endpoints. This should be a valid HTTP(S) URI.
|
165
165
|
#
|
166
166
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
167
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -229,15 +229,19 @@ module Aws::Kafka
|
|
229
229
|
#
|
230
230
|
# @option options [String] :retry_mode ("legacy")
|
231
231
|
# Specifies which retry algorithm to use. Values are:
|
232
|
-
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
232
|
+
#
|
233
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
234
|
+
# no retry mode is provided.
|
235
|
+
#
|
236
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
237
|
+
# This includes support for retry quotas, which limit the number of
|
238
|
+
# unsuccessful retries a client can make.
|
239
|
+
#
|
240
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
241
|
+
# functionality of `standard` mode along with automatic client side
|
242
|
+
# throttling. This is a provisional mode that may change behavior
|
243
|
+
# in the future.
|
244
|
+
#
|
241
245
|
#
|
242
246
|
# @option options [String] :secret_access_key
|
243
247
|
#
|
@@ -265,8 +269,7 @@ module Aws::Kafka
|
|
265
269
|
#
|
266
270
|
# @option options [Integer] :http_read_timeout (60) The default
|
267
271
|
# number of seconds to wait for response data. This value can
|
268
|
-
# safely be set
|
269
|
-
# per-request on the session yielded by {#session_for}.
|
272
|
+
# safely be set per-request on the session.
|
270
273
|
#
|
271
274
|
# @option options [Float] :http_idle_timeout (5) The number of
|
272
275
|
# seconds a connection is allowed to sit idle before it is
|
@@ -278,7 +281,7 @@ module Aws::Kafka
|
|
278
281
|
# request body. This option has no effect unless the request has
|
279
282
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
280
283
|
# disables this behaviour. This value can safely be set per
|
281
|
-
# request on the session
|
284
|
+
# request on the session.
|
282
285
|
#
|
283
286
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
284
287
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -762,6 +765,8 @@ module Aws::Kafka
|
|
762
765
|
# * {Types::ListClusterOperationsResponse#cluster_operation_info_list #cluster_operation_info_list} => Array<Types::ClusterOperationInfo>
|
763
766
|
# * {Types::ListClusterOperationsResponse#next_token #next_token} => String
|
764
767
|
#
|
768
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
769
|
+
#
|
765
770
|
# @example Request syntax with placeholder values
|
766
771
|
#
|
767
772
|
# resp = client.list_cluster_operations({
|
@@ -838,6 +843,8 @@ module Aws::Kafka
|
|
838
843
|
# * {Types::ListClustersResponse#cluster_info_list #cluster_info_list} => Array<Types::ClusterInfo>
|
839
844
|
# * {Types::ListClustersResponse#next_token #next_token} => String
|
840
845
|
#
|
846
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
847
|
+
#
|
841
848
|
# @example Request syntax with placeholder values
|
842
849
|
#
|
843
850
|
# resp = client.list_clusters({
|
@@ -908,6 +915,8 @@ module Aws::Kafka
|
|
908
915
|
# * {Types::ListConfigurationRevisionsResponse#next_token #next_token} => String
|
909
916
|
# * {Types::ListConfigurationRevisionsResponse#revisions #revisions} => Array<Types::ConfigurationRevision>
|
910
917
|
#
|
918
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
919
|
+
#
|
911
920
|
# @example Request syntax with placeholder values
|
912
921
|
#
|
913
922
|
# resp = client.list_configuration_revisions({
|
@@ -944,6 +953,8 @@ module Aws::Kafka
|
|
944
953
|
# * {Types::ListConfigurationsResponse#configurations #configurations} => Array<Types::Configuration>
|
945
954
|
# * {Types::ListConfigurationsResponse#next_token #next_token} => String
|
946
955
|
#
|
956
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
957
|
+
#
|
947
958
|
# @example Request syntax with placeholder values
|
948
959
|
#
|
949
960
|
# resp = client.list_configurations({
|
@@ -985,6 +996,8 @@ module Aws::Kafka
|
|
985
996
|
# * {Types::ListKafkaVersionsResponse#kafka_versions #kafka_versions} => Array<Types::KafkaVersion>
|
986
997
|
# * {Types::ListKafkaVersionsResponse#next_token #next_token} => String
|
987
998
|
#
|
999
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1000
|
+
#
|
988
1001
|
# @example Request syntax with placeholder values
|
989
1002
|
#
|
990
1003
|
# resp = client.list_kafka_versions({
|
@@ -1021,6 +1034,8 @@ module Aws::Kafka
|
|
1021
1034
|
# * {Types::ListNodesResponse#next_token #next_token} => String
|
1022
1035
|
# * {Types::ListNodesResponse#node_info_list #node_info_list} => Array<Types::NodeInfo>
|
1023
1036
|
#
|
1037
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1038
|
+
#
|
1024
1039
|
# @example Request syntax with placeholder values
|
1025
1040
|
#
|
1026
1041
|
# resp = client.list_nodes({
|
@@ -1361,7 +1376,7 @@ module Aws::Kafka
|
|
1361
1376
|
params: params,
|
1362
1377
|
config: config)
|
1363
1378
|
context[:gem_name] = 'aws-sdk-kafka'
|
1364
|
-
context[:gem_version] = '1.
|
1379
|
+
context[:gem_version] = '1.20.0'
|
1365
1380
|
Seahorse::Client::Request.new(handlers, context)
|
1366
1381
|
end
|
1367
1382
|
|
@@ -6,13 +6,7 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::Kafka
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::Kafka::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::Kafka::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::Kafka::Resource.new(client: client)
|
9
|
+
|
16
10
|
class Resource
|
17
11
|
|
18
12
|
# @param options ({})
|
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.20.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-05-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
83
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.
|
84
|
+
rubygems_version: 2.7.6.2
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
87
|
summary: AWS SDK for Ruby - Kafka
|