aws-sdk-kafka 1.111.0 → 1.112.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 +1 -1
- data/lib/aws-sdk-kafka.rb +1 -1
- data/sig/client.rbs +21 -292
- data/sig/params.rbs +144 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a322420721b6f2a20f593dd363141dc21b29217df79b462e9d0169ced1f0ac67
|
|
4
|
+
data.tar.gz: c112f21f666a73243f4feb510ff4bcb0d8220c4cd18724963fac05f894411694
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 90b4fe813cdb8424e0a88ffca4fa4c1639434ca0d8b48b03d2e5da16741075acb64affccf3eb116e3f767aa2d3b8239122b605df1f614965483964e078d2c22c
|
|
7
|
+
data.tar.gz: 23745ebfe6ef448d5934650849f8987f35b4a152b73f051de287c3a2dbf54aed3ab400bb1f27ed6576354d08407cfc7a634034001ad3cf9c116b9af5649f6f35
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.112.0
|
data/lib/aws-sdk-kafka/client.rb
CHANGED
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.112.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -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
|