aws-sdk-kafka 1.111.0 → 1.113.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-kafka/client.rb +6 -8
- data/lib/aws-sdk-kafka.rb +1 -1
- data/sig/client.rbs +21 -292
- data/sig/params.rbs +144 -0
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f15511b2c9c84ee1e5d14019922635eb559e62e2dfbb6d44a18a7cb8cb340bd5
|
|
4
|
+
data.tar.gz: 06dfcf2c0a07fde930da3d8136cec5de8b53a038204529efcf6629f6337bde6d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 86a592003dbf76832109b0d6fd56d54d02987e566f7eed81a5b8f4c66ccf7ebe7a1e3531a9ae8f50f1b205395e18506720982837dc1aaea8813ff327022687bb
|
|
7
|
+
data.tar.gz: 163c2332d39f316cac785fa5b163f98238bf0f2f4136c9b3b21795994f88e6a7684c3ecde2440e278646ce41702670ec26348069bb9165acc4b6262541c98595
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.113.0 (2026-05-21)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adding new BDD representation of endpoint ruleset
|
|
8
|
+
|
|
9
|
+
1.112.0 (2026-05-19)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
4
14
|
1.111.0 (2026-05-13)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.113.0
|
data/lib/aws-sdk-kafka/client.rb
CHANGED
|
@@ -199,7 +199,7 @@ module Aws::Kafka
|
|
|
199
199
|
# the required types.
|
|
200
200
|
#
|
|
201
201
|
# @option options [Boolean] :correct_clock_skew (true)
|
|
202
|
-
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
|
202
|
+
# Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
|
|
203
203
|
# a clock skew correction and retry requests with skewed client clocks.
|
|
204
204
|
#
|
|
205
205
|
# @option options [String] :defaults_mode ("legacy")
|
|
@@ -323,17 +323,15 @@ module Aws::Kafka
|
|
|
323
323
|
# @option options [String] :retry_mode ("legacy")
|
|
324
324
|
# Specifies which retry algorithm to use. Values are:
|
|
325
325
|
#
|
|
326
|
-
# * `legacy` - The pre-existing retry behavior.
|
|
327
|
-
# no retry mode is provided.
|
|
326
|
+
# * `legacy` - The pre-existing retry behavior. This is the default
|
|
327
|
+
# value if no retry mode is provided.
|
|
328
328
|
#
|
|
329
329
|
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
|
330
330
|
# This includes support for retry quotas, which limit the number of
|
|
331
331
|
# unsuccessful retries a client can make.
|
|
332
332
|
#
|
|
333
|
-
# * `adaptive` -
|
|
334
|
-
#
|
|
335
|
-
# throttling. This is a provisional mode that may change behavior
|
|
336
|
-
# in the future.
|
|
333
|
+
# * `adaptive` - A retry mode that includes all the functionality of
|
|
334
|
+
# `standard` mode along with automatic client side throttling.
|
|
337
335
|
#
|
|
338
336
|
# @option options [String] :sdk_ua_app_id
|
|
339
337
|
# A unique and opaque application ID that is appended to the
|
|
@@ -3859,7 +3857,7 @@ module Aws::Kafka
|
|
|
3859
3857
|
tracer: tracer
|
|
3860
3858
|
)
|
|
3861
3859
|
context[:gem_name] = 'aws-sdk-kafka'
|
|
3862
|
-
context[:gem_version] = '1.
|
|
3860
|
+
context[:gem_version] = '1.113.0'
|
|
3863
3861
|
Seahorse::Client::Request.new(handlers, context)
|
|
3864
3862
|
end
|
|
3865
3863
|
|
data/lib/aws-sdk-kafka.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -98,104 +98,19 @@ module Aws
|
|
|
98
98
|
end
|
|
99
99
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#create_cluster-instance_method
|
|
100
100
|
def create_cluster: (
|
|
101
|
-
broker_node_group_info:
|
|
102
|
-
|
|
103
|
-
client_subnets: Array[::String],
|
|
104
|
-
instance_type: ::String,
|
|
105
|
-
security_groups: Array[::String]?,
|
|
106
|
-
storage_info: {
|
|
107
|
-
ebs_storage_info: {
|
|
108
|
-
provisioned_throughput: {
|
|
109
|
-
enabled: bool?,
|
|
110
|
-
volume_throughput: ::Integer?
|
|
111
|
-
}?,
|
|
112
|
-
volume_size: ::Integer?
|
|
113
|
-
}?
|
|
114
|
-
}?,
|
|
115
|
-
connectivity_info: {
|
|
116
|
-
public_access: {
|
|
117
|
-
type: ::String?
|
|
118
|
-
}?,
|
|
119
|
-
vpc_connectivity: {
|
|
120
|
-
client_authentication: {
|
|
121
|
-
sasl: {
|
|
122
|
-
scram: {
|
|
123
|
-
enabled: bool?
|
|
124
|
-
}?,
|
|
125
|
-
iam: {
|
|
126
|
-
enabled: bool?
|
|
127
|
-
}?
|
|
128
|
-
}?,
|
|
129
|
-
tls: {
|
|
130
|
-
enabled: bool?
|
|
131
|
-
}?
|
|
132
|
-
}?
|
|
133
|
-
}?,
|
|
134
|
-
network_type: ("IPV4" | "DUAL")?
|
|
135
|
-
}?,
|
|
136
|
-
zone_ids: Array[::String]?
|
|
137
|
-
},
|
|
138
|
-
?client_authentication: {
|
|
139
|
-
sasl: {
|
|
140
|
-
scram: {
|
|
141
|
-
enabled: bool?
|
|
142
|
-
}?,
|
|
143
|
-
iam: {
|
|
144
|
-
enabled: bool?
|
|
145
|
-
}?
|
|
146
|
-
}?,
|
|
147
|
-
tls: {
|
|
148
|
-
certificate_authority_arn_list: Array[::String]?,
|
|
149
|
-
enabled: bool?
|
|
150
|
-
}?,
|
|
151
|
-
unauthenticated: {
|
|
152
|
-
enabled: bool?
|
|
153
|
-
}?
|
|
154
|
-
},
|
|
101
|
+
broker_node_group_info: Params::broker_node_group_info,
|
|
102
|
+
?client_authentication: Params::client_authentication,
|
|
155
103
|
cluster_name: ::String,
|
|
156
104
|
?configuration_info: {
|
|
157
105
|
arn: ::String,
|
|
158
106
|
revision: ::Integer
|
|
159
107
|
},
|
|
160
|
-
?encryption_info:
|
|
161
|
-
encryption_at_rest: {
|
|
162
|
-
data_volume_kms_key_id: ::String
|
|
163
|
-
}?,
|
|
164
|
-
encryption_in_transit: {
|
|
165
|
-
client_broker: ("TLS" | "TLS_PLAINTEXT" | "PLAINTEXT")?,
|
|
166
|
-
in_cluster: bool?
|
|
167
|
-
}?
|
|
168
|
-
},
|
|
108
|
+
?encryption_info: Params::encryption_info,
|
|
169
109
|
?enhanced_monitoring: ("DEFAULT" | "PER_BROKER" | "PER_TOPIC_PER_BROKER" | "PER_TOPIC_PER_PARTITION"),
|
|
170
110
|
kafka_version: ::String,
|
|
171
|
-
?logging_info:
|
|
172
|
-
broker_logs: {
|
|
173
|
-
cloud_watch_logs: {
|
|
174
|
-
enabled: bool,
|
|
175
|
-
log_group: ::String?
|
|
176
|
-
}?,
|
|
177
|
-
firehose: {
|
|
178
|
-
delivery_stream: ::String?,
|
|
179
|
-
enabled: bool
|
|
180
|
-
}?,
|
|
181
|
-
s3: {
|
|
182
|
-
bucket: ::String?,
|
|
183
|
-
enabled: bool,
|
|
184
|
-
prefix: ::String?
|
|
185
|
-
}?
|
|
186
|
-
}
|
|
187
|
-
},
|
|
111
|
+
?logging_info: Params::logging_info,
|
|
188
112
|
number_of_broker_nodes: ::Integer,
|
|
189
|
-
?open_monitoring:
|
|
190
|
-
prometheus: {
|
|
191
|
-
jmx_exporter: {
|
|
192
|
-
enabled_in_broker: bool
|
|
193
|
-
}?,
|
|
194
|
-
node_exporter: {
|
|
195
|
-
enabled_in_broker: bool
|
|
196
|
-
}?
|
|
197
|
-
}
|
|
198
|
-
},
|
|
113
|
+
?open_monitoring: Params::open_monitoring_info,
|
|
199
114
|
?tags: Hash[::String, ::String],
|
|
200
115
|
?rebalancing: {
|
|
201
116
|
status: ("PAUSED" | "ACTIVE")
|
|
@@ -216,102 +131,17 @@ module Aws
|
|
|
216
131
|
cluster_name: ::String,
|
|
217
132
|
?tags: Hash[::String, ::String],
|
|
218
133
|
?provisioned: {
|
|
219
|
-
broker_node_group_info:
|
|
220
|
-
|
|
221
|
-
client_subnets: Array[::String],
|
|
222
|
-
instance_type: ::String,
|
|
223
|
-
security_groups: Array[::String]?,
|
|
224
|
-
storage_info: {
|
|
225
|
-
ebs_storage_info: {
|
|
226
|
-
provisioned_throughput: {
|
|
227
|
-
enabled: bool?,
|
|
228
|
-
volume_throughput: ::Integer?
|
|
229
|
-
}?,
|
|
230
|
-
volume_size: ::Integer?
|
|
231
|
-
}?
|
|
232
|
-
}?,
|
|
233
|
-
connectivity_info: {
|
|
234
|
-
public_access: {
|
|
235
|
-
type: ::String?
|
|
236
|
-
}?,
|
|
237
|
-
vpc_connectivity: {
|
|
238
|
-
client_authentication: {
|
|
239
|
-
sasl: {
|
|
240
|
-
scram: {
|
|
241
|
-
enabled: bool?
|
|
242
|
-
}?,
|
|
243
|
-
iam: {
|
|
244
|
-
enabled: bool?
|
|
245
|
-
}?
|
|
246
|
-
}?,
|
|
247
|
-
tls: {
|
|
248
|
-
enabled: bool?
|
|
249
|
-
}?
|
|
250
|
-
}?
|
|
251
|
-
}?,
|
|
252
|
-
network_type: ("IPV4" | "DUAL")?
|
|
253
|
-
}?,
|
|
254
|
-
zone_ids: Array[::String]?
|
|
255
|
-
},
|
|
256
|
-
client_authentication: {
|
|
257
|
-
sasl: {
|
|
258
|
-
scram: {
|
|
259
|
-
enabled: bool?
|
|
260
|
-
}?,
|
|
261
|
-
iam: {
|
|
262
|
-
enabled: bool?
|
|
263
|
-
}?
|
|
264
|
-
}?,
|
|
265
|
-
tls: {
|
|
266
|
-
certificate_authority_arn_list: Array[::String]?,
|
|
267
|
-
enabled: bool?
|
|
268
|
-
}?,
|
|
269
|
-
unauthenticated: {
|
|
270
|
-
enabled: bool?
|
|
271
|
-
}?
|
|
272
|
-
}?,
|
|
134
|
+
broker_node_group_info: Params::broker_node_group_info,
|
|
135
|
+
client_authentication: Params::client_authentication?,
|
|
273
136
|
configuration_info: {
|
|
274
137
|
arn: ::String,
|
|
275
138
|
revision: ::Integer
|
|
276
139
|
}?,
|
|
277
|
-
encryption_info:
|
|
278
|
-
encryption_at_rest: {
|
|
279
|
-
data_volume_kms_key_id: ::String
|
|
280
|
-
}?,
|
|
281
|
-
encryption_in_transit: {
|
|
282
|
-
client_broker: ("TLS" | "TLS_PLAINTEXT" | "PLAINTEXT")?,
|
|
283
|
-
in_cluster: bool?
|
|
284
|
-
}?
|
|
285
|
-
}?,
|
|
140
|
+
encryption_info: Params::encryption_info?,
|
|
286
141
|
enhanced_monitoring: ("DEFAULT" | "PER_BROKER" | "PER_TOPIC_PER_BROKER" | "PER_TOPIC_PER_PARTITION")?,
|
|
287
|
-
open_monitoring:
|
|
288
|
-
prometheus: {
|
|
289
|
-
jmx_exporter: {
|
|
290
|
-
enabled_in_broker: bool
|
|
291
|
-
}?,
|
|
292
|
-
node_exporter: {
|
|
293
|
-
enabled_in_broker: bool
|
|
294
|
-
}?
|
|
295
|
-
}
|
|
296
|
-
}?,
|
|
142
|
+
open_monitoring: Params::open_monitoring_info?,
|
|
297
143
|
kafka_version: ::String,
|
|
298
|
-
logging_info:
|
|
299
|
-
broker_logs: {
|
|
300
|
-
cloud_watch_logs: {
|
|
301
|
-
enabled: bool,
|
|
302
|
-
log_group: ::String?
|
|
303
|
-
}?,
|
|
304
|
-
firehose: {
|
|
305
|
-
delivery_stream: ::String?,
|
|
306
|
-
enabled: bool
|
|
307
|
-
}?,
|
|
308
|
-
s3: {
|
|
309
|
-
bucket: ::String?,
|
|
310
|
-
enabled: bool,
|
|
311
|
-
prefix: ::String?
|
|
312
|
-
}?
|
|
313
|
-
}
|
|
314
|
-
}?,
|
|
144
|
+
logging_info: Params::logging_info?,
|
|
315
145
|
number_of_broker_nodes: ::Integer,
|
|
316
146
|
storage_mode: ("LOCAL" | "TIERED")?,
|
|
317
147
|
rebalancing: {
|
|
@@ -323,7 +153,7 @@ module Aws
|
|
|
323
153
|
{
|
|
324
154
|
subnet_ids: Array[::String],
|
|
325
155
|
security_group_ids: Array[::String]?
|
|
326
|
-
}
|
|
156
|
+
}
|
|
327
157
|
],
|
|
328
158
|
client_authentication: {
|
|
329
159
|
sasl: {
|
|
@@ -385,25 +215,9 @@ module Aws
|
|
|
385
215
|
encryption_type: ("TLS"),
|
|
386
216
|
root_ca_certificate: ::String?
|
|
387
217
|
}?
|
|
388
|
-
}
|
|
218
|
+
}
|
|
389
219
|
],
|
|
390
|
-
?log_delivery:
|
|
391
|
-
replicator_log_delivery: {
|
|
392
|
-
cloud_watch_logs: {
|
|
393
|
-
enabled: bool,
|
|
394
|
-
log_group: ::String?
|
|
395
|
-
}?,
|
|
396
|
-
firehose: {
|
|
397
|
-
delivery_stream: ::String?,
|
|
398
|
-
enabled: bool
|
|
399
|
-
}?,
|
|
400
|
-
s3: {
|
|
401
|
-
bucket: ::String?,
|
|
402
|
-
enabled: bool,
|
|
403
|
-
prefix: ::String?
|
|
404
|
-
}?
|
|
405
|
-
}?
|
|
406
|
-
},
|
|
220
|
+
?log_delivery: Params::log_delivery,
|
|
407
221
|
replication_info_list: Array[
|
|
408
222
|
{
|
|
409
223
|
consumer_group_replication: {
|
|
@@ -431,7 +245,7 @@ module Aws
|
|
|
431
245
|
topics_to_exclude: Array[::String]?,
|
|
432
246
|
topics_to_replicate: Array[::String]
|
|
433
247
|
}
|
|
434
|
-
}
|
|
248
|
+
}
|
|
435
249
|
],
|
|
436
250
|
replicator_name: ::String,
|
|
437
251
|
service_execution_role_arn: ::String,
|
|
@@ -1012,7 +826,7 @@ module Aws
|
|
|
1012
826
|
volume_throughput: ::Integer?
|
|
1013
827
|
}?,
|
|
1014
828
|
volume_size_gb: ::Integer?
|
|
1015
|
-
}
|
|
829
|
+
}
|
|
1016
830
|
]
|
|
1017
831
|
) -> _UpdateBrokerStorageResponseSuccess
|
|
1018
832
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateBrokerStorageResponseSuccess
|
|
@@ -1071,27 +885,7 @@ module Aws
|
|
|
1071
885
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#update_connectivity-instance_method
|
|
1072
886
|
def update_connectivity: (
|
|
1073
887
|
cluster_arn: ::String,
|
|
1074
|
-
?connectivity_info:
|
|
1075
|
-
public_access: {
|
|
1076
|
-
type: ::String?
|
|
1077
|
-
}?,
|
|
1078
|
-
vpc_connectivity: {
|
|
1079
|
-
client_authentication: {
|
|
1080
|
-
sasl: {
|
|
1081
|
-
scram: {
|
|
1082
|
-
enabled: bool?
|
|
1083
|
-
}?,
|
|
1084
|
-
iam: {
|
|
1085
|
-
enabled: bool?
|
|
1086
|
-
}?
|
|
1087
|
-
}?,
|
|
1088
|
-
tls: {
|
|
1089
|
-
enabled: bool?
|
|
1090
|
-
}?
|
|
1091
|
-
}?
|
|
1092
|
-
}?,
|
|
1093
|
-
network_type: ("IPV4" | "DUAL")?
|
|
1094
|
-
},
|
|
888
|
+
?connectivity_info: Params::connectivity_info,
|
|
1095
889
|
current_version: ::String,
|
|
1096
890
|
?zookeeper_access: {
|
|
1097
891
|
enabled: bool?
|
|
@@ -1109,33 +903,8 @@ module Aws
|
|
|
1109
903
|
cluster_arn: ::String,
|
|
1110
904
|
current_version: ::String,
|
|
1111
905
|
?enhanced_monitoring: ("DEFAULT" | "PER_BROKER" | "PER_TOPIC_PER_BROKER" | "PER_TOPIC_PER_PARTITION"),
|
|
1112
|
-
?open_monitoring:
|
|
1113
|
-
|
|
1114
|
-
jmx_exporter: {
|
|
1115
|
-
enabled_in_broker: bool
|
|
1116
|
-
}?,
|
|
1117
|
-
node_exporter: {
|
|
1118
|
-
enabled_in_broker: bool
|
|
1119
|
-
}?
|
|
1120
|
-
}
|
|
1121
|
-
},
|
|
1122
|
-
?logging_info: {
|
|
1123
|
-
broker_logs: {
|
|
1124
|
-
cloud_watch_logs: {
|
|
1125
|
-
enabled: bool,
|
|
1126
|
-
log_group: ::String?
|
|
1127
|
-
}?,
|
|
1128
|
-
firehose: {
|
|
1129
|
-
delivery_stream: ::String?,
|
|
1130
|
-
enabled: bool
|
|
1131
|
-
}?,
|
|
1132
|
-
s3: {
|
|
1133
|
-
bucket: ::String?,
|
|
1134
|
-
enabled: bool,
|
|
1135
|
-
prefix: ::String?
|
|
1136
|
-
}?
|
|
1137
|
-
}
|
|
1138
|
-
}
|
|
906
|
+
?open_monitoring: Params::open_monitoring_info,
|
|
907
|
+
?logging_info: Params::logging_info
|
|
1139
908
|
) -> _UpdateMonitoringResponseSuccess
|
|
1140
909
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateMonitoringResponseSuccess
|
|
1141
910
|
|
|
@@ -1168,23 +937,7 @@ module Aws
|
|
|
1168
937
|
synchronise_consumer_group_offsets: bool
|
|
1169
938
|
},
|
|
1170
939
|
current_version: ::String,
|
|
1171
|
-
?log_delivery:
|
|
1172
|
-
replicator_log_delivery: {
|
|
1173
|
-
cloud_watch_logs: {
|
|
1174
|
-
enabled: bool,
|
|
1175
|
-
log_group: ::String?
|
|
1176
|
-
}?,
|
|
1177
|
-
firehose: {
|
|
1178
|
-
delivery_stream: ::String?,
|
|
1179
|
-
enabled: bool
|
|
1180
|
-
}?,
|
|
1181
|
-
s3: {
|
|
1182
|
-
bucket: ::String?,
|
|
1183
|
-
enabled: bool,
|
|
1184
|
-
prefix: ::String?
|
|
1185
|
-
}?
|
|
1186
|
-
}?
|
|
1187
|
-
},
|
|
940
|
+
?log_delivery: Params::log_delivery,
|
|
1188
941
|
replicator_arn: ::String,
|
|
1189
942
|
?source_kafka_cluster_arn: ::String,
|
|
1190
943
|
?source_kafka_cluster_id: ::String,
|
|
@@ -1207,34 +960,10 @@ module Aws
|
|
|
1207
960
|
end
|
|
1208
961
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#update_security-instance_method
|
|
1209
962
|
def update_security: (
|
|
1210
|
-
?client_authentication:
|
|
1211
|
-
sasl: {
|
|
1212
|
-
scram: {
|
|
1213
|
-
enabled: bool?
|
|
1214
|
-
}?,
|
|
1215
|
-
iam: {
|
|
1216
|
-
enabled: bool?
|
|
1217
|
-
}?
|
|
1218
|
-
}?,
|
|
1219
|
-
tls: {
|
|
1220
|
-
certificate_authority_arn_list: Array[::String]?,
|
|
1221
|
-
enabled: bool?
|
|
1222
|
-
}?,
|
|
1223
|
-
unauthenticated: {
|
|
1224
|
-
enabled: bool?
|
|
1225
|
-
}?
|
|
1226
|
-
},
|
|
963
|
+
?client_authentication: Params::client_authentication,
|
|
1227
964
|
cluster_arn: ::String,
|
|
1228
965
|
current_version: ::String,
|
|
1229
|
-
?encryption_info:
|
|
1230
|
-
encryption_at_rest: {
|
|
1231
|
-
data_volume_kms_key_id: ::String
|
|
1232
|
-
}?,
|
|
1233
|
-
encryption_in_transit: {
|
|
1234
|
-
client_broker: ("TLS" | "TLS_PLAINTEXT" | "PLAINTEXT")?,
|
|
1235
|
-
in_cluster: bool?
|
|
1236
|
-
}?
|
|
1237
|
-
}
|
|
966
|
+
?encryption_info: Params::encryption_info
|
|
1238
967
|
) -> _UpdateSecurityResponseSuccess
|
|
1239
968
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSecurityResponseSuccess
|
|
1240
969
|
|
data/sig/params.rbs
ADDED
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
|
2
|
+
#
|
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
|
+
#
|
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
|
7
|
+
|
|
8
|
+
module Aws
|
|
9
|
+
module Kafka
|
|
10
|
+
module Params
|
|
11
|
+
type storage_info = {
|
|
12
|
+
ebs_storage_info: {
|
|
13
|
+
provisioned_throughput: {
|
|
14
|
+
enabled: bool?,
|
|
15
|
+
volume_throughput: ::Integer?
|
|
16
|
+
}?,
|
|
17
|
+
volume_size: ::Integer?
|
|
18
|
+
}?
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
type vpc_connectivity_sasl = {
|
|
22
|
+
scram: {
|
|
23
|
+
enabled: bool?
|
|
24
|
+
}?,
|
|
25
|
+
iam: {
|
|
26
|
+
enabled: bool?
|
|
27
|
+
}?
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
type vpc_connectivity_client_authentication = {
|
|
31
|
+
sasl: Params::vpc_connectivity_sasl?,
|
|
32
|
+
tls: {
|
|
33
|
+
enabled: bool?
|
|
34
|
+
}?
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
type vpc_connectivity = {
|
|
38
|
+
client_authentication: Params::vpc_connectivity_client_authentication?
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
type connectivity_info = {
|
|
42
|
+
public_access: {
|
|
43
|
+
type: ::String?
|
|
44
|
+
}?,
|
|
45
|
+
vpc_connectivity: Params::vpc_connectivity?,
|
|
46
|
+
network_type: ("IPV4" | "DUAL")?
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
type broker_node_group_info = {
|
|
50
|
+
broker_az_distribution: ("DEFAULT")?,
|
|
51
|
+
client_subnets: Array[::String],
|
|
52
|
+
instance_type: ::String,
|
|
53
|
+
security_groups: Array[::String]?,
|
|
54
|
+
storage_info: Params::storage_info?,
|
|
55
|
+
connectivity_info: Params::connectivity_info?,
|
|
56
|
+
zone_ids: Array[::String]?
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
type sasl = {
|
|
60
|
+
scram: {
|
|
61
|
+
enabled: bool?
|
|
62
|
+
}?,
|
|
63
|
+
iam: {
|
|
64
|
+
enabled: bool?
|
|
65
|
+
}?
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
type client_authentication = {
|
|
69
|
+
sasl: Params::sasl?,
|
|
70
|
+
tls: {
|
|
71
|
+
certificate_authority_arn_list: Array[::String]?,
|
|
72
|
+
enabled: bool?
|
|
73
|
+
}?,
|
|
74
|
+
unauthenticated: {
|
|
75
|
+
enabled: bool?
|
|
76
|
+
}?
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
type encryption_info = {
|
|
80
|
+
encryption_at_rest: {
|
|
81
|
+
data_volume_kms_key_id: ::String
|
|
82
|
+
}?,
|
|
83
|
+
encryption_in_transit: {
|
|
84
|
+
client_broker: ("TLS" | "TLS_PLAINTEXT" | "PLAINTEXT")?,
|
|
85
|
+
in_cluster: bool?
|
|
86
|
+
}?
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
type broker_logs = {
|
|
90
|
+
cloud_watch_logs: {
|
|
91
|
+
enabled: bool,
|
|
92
|
+
log_group: ::String?
|
|
93
|
+
}?,
|
|
94
|
+
firehose: {
|
|
95
|
+
delivery_stream: ::String?,
|
|
96
|
+
enabled: bool
|
|
97
|
+
}?,
|
|
98
|
+
s3: {
|
|
99
|
+
bucket: ::String?,
|
|
100
|
+
enabled: bool,
|
|
101
|
+
prefix: ::String?
|
|
102
|
+
}?
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
type logging_info = {
|
|
106
|
+
broker_logs: Params::broker_logs
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
type prometheus_info = {
|
|
110
|
+
jmx_exporter: {
|
|
111
|
+
enabled_in_broker: bool
|
|
112
|
+
}?,
|
|
113
|
+
node_exporter: {
|
|
114
|
+
enabled_in_broker: bool
|
|
115
|
+
}?
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
type open_monitoring_info = {
|
|
119
|
+
prometheus: Params::prometheus_info
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
type replicator_log_delivery = {
|
|
123
|
+
cloud_watch_logs: {
|
|
124
|
+
enabled: bool,
|
|
125
|
+
log_group: ::String?
|
|
126
|
+
}?,
|
|
127
|
+
firehose: {
|
|
128
|
+
delivery_stream: ::String?,
|
|
129
|
+
enabled: bool
|
|
130
|
+
}?,
|
|
131
|
+
s3: {
|
|
132
|
+
bucket: ::String?,
|
|
133
|
+
enabled: bool,
|
|
134
|
+
prefix: ::String?
|
|
135
|
+
}?
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
type log_delivery = {
|
|
139
|
+
replicator_log_delivery: Params::replicator_log_delivery?
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
end
|
|
143
|
+
end
|
|
144
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.113.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.248.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.248.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -67,6 +67,7 @@ files:
|
|
|
67
67
|
- lib/aws-sdk-kafka/types.rb
|
|
68
68
|
- sig/client.rbs
|
|
69
69
|
- sig/errors.rbs
|
|
70
|
+
- sig/params.rbs
|
|
70
71
|
- sig/resource.rbs
|
|
71
72
|
- sig/types.rbs
|
|
72
73
|
- sig/waiters.rbs
|