aws-sdk-kafka 1.66.0 → 1.68.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.
data/sig/client.rbs ADDED
@@ -0,0 +1,1091 @@
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
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> instance
72
+ | (?Hash[Symbol, untyped]) -> instance
73
+
74
+
75
+ interface _BatchAssociateScramSecretResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchAssociateScramSecretResponse]
77
+ def cluster_arn: () -> ::String
78
+ def unprocessed_scram_secrets: () -> ::Array[Types::UnprocessedScramSecret]
79
+ end
80
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#batch_associate_scram_secret-instance_method
81
+ def batch_associate_scram_secret: (
82
+ cluster_arn: ::String,
83
+ secret_arn_list: Array[::String]
84
+ ) -> _BatchAssociateScramSecretResponseSuccess
85
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchAssociateScramSecretResponseSuccess
86
+
87
+ interface _CreateClusterResponseSuccess
88
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateClusterResponse]
89
+ def cluster_arn: () -> ::String
90
+ def cluster_name: () -> ::String
91
+ def state: () -> ("ACTIVE" | "CREATING" | "DELETING" | "FAILED" | "HEALING" | "MAINTENANCE" | "REBOOTING_BROKER" | "UPDATING")
92
+ end
93
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#create_cluster-instance_method
94
+ def create_cluster: (
95
+ broker_node_group_info: {
96
+ broker_az_distribution: ("DEFAULT")?,
97
+ client_subnets: Array[::String],
98
+ instance_type: ::String,
99
+ security_groups: Array[::String]?,
100
+ storage_info: {
101
+ ebs_storage_info: {
102
+ provisioned_throughput: {
103
+ enabled: bool?,
104
+ volume_throughput: ::Integer?
105
+ }?,
106
+ volume_size: ::Integer?
107
+ }?
108
+ }?,
109
+ connectivity_info: {
110
+ public_access: {
111
+ type: ::String?
112
+ }?,
113
+ vpc_connectivity: {
114
+ client_authentication: {
115
+ sasl: {
116
+ scram: {
117
+ enabled: bool?
118
+ }?,
119
+ iam: {
120
+ enabled: bool?
121
+ }?
122
+ }?,
123
+ tls: {
124
+ enabled: bool?
125
+ }?
126
+ }?
127
+ }?
128
+ }?,
129
+ zone_ids: Array[::String]?
130
+ },
131
+ ?client_authentication: {
132
+ sasl: {
133
+ scram: {
134
+ enabled: bool?
135
+ }?,
136
+ iam: {
137
+ enabled: bool?
138
+ }?
139
+ }?,
140
+ tls: {
141
+ certificate_authority_arn_list: Array[::String]?,
142
+ enabled: bool?
143
+ }?,
144
+ unauthenticated: {
145
+ enabled: bool?
146
+ }?
147
+ },
148
+ cluster_name: ::String,
149
+ ?configuration_info: {
150
+ arn: ::String,
151
+ revision: ::Integer
152
+ },
153
+ ?encryption_info: {
154
+ encryption_at_rest: {
155
+ data_volume_kms_key_id: ::String
156
+ }?,
157
+ encryption_in_transit: {
158
+ client_broker: ("TLS" | "TLS_PLAINTEXT" | "PLAINTEXT")?,
159
+ in_cluster: bool?
160
+ }?
161
+ },
162
+ ?enhanced_monitoring: ("DEFAULT" | "PER_BROKER" | "PER_TOPIC_PER_BROKER" | "PER_TOPIC_PER_PARTITION"),
163
+ kafka_version: ::String,
164
+ ?logging_info: {
165
+ broker_logs: {
166
+ cloud_watch_logs: {
167
+ enabled: bool,
168
+ log_group: ::String?
169
+ }?,
170
+ firehose: {
171
+ delivery_stream: ::String?,
172
+ enabled: bool
173
+ }?,
174
+ s3: {
175
+ bucket: ::String?,
176
+ enabled: bool,
177
+ prefix: ::String?
178
+ }?
179
+ }
180
+ },
181
+ number_of_broker_nodes: ::Integer,
182
+ ?open_monitoring: {
183
+ prometheus: {
184
+ jmx_exporter: {
185
+ enabled_in_broker: bool
186
+ }?,
187
+ node_exporter: {
188
+ enabled_in_broker: bool
189
+ }?
190
+ }
191
+ },
192
+ ?tags: Hash[::String, ::String],
193
+ ?storage_mode: ("LOCAL" | "TIERED")
194
+ ) -> _CreateClusterResponseSuccess
195
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateClusterResponseSuccess
196
+
197
+ interface _CreateClusterV2ResponseSuccess
198
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateClusterV2Response]
199
+ def cluster_arn: () -> ::String
200
+ def cluster_name: () -> ::String
201
+ def state: () -> ("ACTIVE" | "CREATING" | "DELETING" | "FAILED" | "HEALING" | "MAINTENANCE" | "REBOOTING_BROKER" | "UPDATING")
202
+ def cluster_type: () -> ("PROVISIONED" | "SERVERLESS")
203
+ end
204
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#create_cluster_v2-instance_method
205
+ def create_cluster_v2: (
206
+ cluster_name: ::String,
207
+ ?tags: Hash[::String, ::String],
208
+ ?provisioned: {
209
+ broker_node_group_info: {
210
+ broker_az_distribution: ("DEFAULT")?,
211
+ client_subnets: Array[::String],
212
+ instance_type: ::String,
213
+ security_groups: Array[::String]?,
214
+ storage_info: {
215
+ ebs_storage_info: {
216
+ provisioned_throughput: {
217
+ enabled: bool?,
218
+ volume_throughput: ::Integer?
219
+ }?,
220
+ volume_size: ::Integer?
221
+ }?
222
+ }?,
223
+ connectivity_info: {
224
+ public_access: {
225
+ type: ::String?
226
+ }?,
227
+ vpc_connectivity: {
228
+ client_authentication: {
229
+ sasl: {
230
+ scram: {
231
+ enabled: bool?
232
+ }?,
233
+ iam: {
234
+ enabled: bool?
235
+ }?
236
+ }?,
237
+ tls: {
238
+ enabled: bool?
239
+ }?
240
+ }?
241
+ }?
242
+ }?,
243
+ zone_ids: Array[::String]?
244
+ },
245
+ client_authentication: {
246
+ sasl: {
247
+ scram: {
248
+ enabled: bool?
249
+ }?,
250
+ iam: {
251
+ enabled: bool?
252
+ }?
253
+ }?,
254
+ tls: {
255
+ certificate_authority_arn_list: Array[::String]?,
256
+ enabled: bool?
257
+ }?,
258
+ unauthenticated: {
259
+ enabled: bool?
260
+ }?
261
+ }?,
262
+ configuration_info: {
263
+ arn: ::String,
264
+ revision: ::Integer
265
+ }?,
266
+ encryption_info: {
267
+ encryption_at_rest: {
268
+ data_volume_kms_key_id: ::String
269
+ }?,
270
+ encryption_in_transit: {
271
+ client_broker: ("TLS" | "TLS_PLAINTEXT" | "PLAINTEXT")?,
272
+ in_cluster: bool?
273
+ }?
274
+ }?,
275
+ enhanced_monitoring: ("DEFAULT" | "PER_BROKER" | "PER_TOPIC_PER_BROKER" | "PER_TOPIC_PER_PARTITION")?,
276
+ open_monitoring: {
277
+ prometheus: {
278
+ jmx_exporter: {
279
+ enabled_in_broker: bool
280
+ }?,
281
+ node_exporter: {
282
+ enabled_in_broker: bool
283
+ }?
284
+ }
285
+ }?,
286
+ kafka_version: ::String,
287
+ logging_info: {
288
+ broker_logs: {
289
+ cloud_watch_logs: {
290
+ enabled: bool,
291
+ log_group: ::String?
292
+ }?,
293
+ firehose: {
294
+ delivery_stream: ::String?,
295
+ enabled: bool
296
+ }?,
297
+ s3: {
298
+ bucket: ::String?,
299
+ enabled: bool,
300
+ prefix: ::String?
301
+ }?
302
+ }
303
+ }?,
304
+ number_of_broker_nodes: ::Integer,
305
+ storage_mode: ("LOCAL" | "TIERED")?
306
+ },
307
+ ?serverless: {
308
+ vpc_configs: Array[
309
+ {
310
+ subnet_ids: Array[::String],
311
+ security_group_ids: Array[::String]?
312
+ },
313
+ ],
314
+ client_authentication: {
315
+ sasl: {
316
+ iam: {
317
+ enabled: bool?
318
+ }?
319
+ }?
320
+ }?
321
+ }
322
+ ) -> _CreateClusterV2ResponseSuccess
323
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateClusterV2ResponseSuccess
324
+
325
+ interface _CreateConfigurationResponseSuccess
326
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateConfigurationResponse]
327
+ def arn: () -> ::String
328
+ def creation_time: () -> ::Time
329
+ def latest_revision: () -> Types::ConfigurationRevision
330
+ def name: () -> ::String
331
+ def state: () -> ("ACTIVE" | "DELETING" | "DELETE_FAILED")
332
+ end
333
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#create_configuration-instance_method
334
+ def create_configuration: (
335
+ ?description: ::String,
336
+ ?kafka_versions: Array[::String],
337
+ name: ::String,
338
+ server_properties: ::String
339
+ ) -> _CreateConfigurationResponseSuccess
340
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConfigurationResponseSuccess
341
+
342
+ interface _CreateReplicatorResponseSuccess
343
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateReplicatorResponse]
344
+ def replicator_arn: () -> ::String
345
+ def replicator_name: () -> ::String
346
+ def replicator_state: () -> ("RUNNING" | "CREATING" | "UPDATING" | "DELETING" | "FAILED")
347
+ end
348
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#create_replicator-instance_method
349
+ def create_replicator: (
350
+ ?description: ::String,
351
+ kafka_clusters: Array[
352
+ {
353
+ amazon_msk_cluster: {
354
+ msk_cluster_arn: ::String
355
+ },
356
+ vpc_config: {
357
+ security_group_ids: Array[::String]?,
358
+ subnet_ids: Array[::String]
359
+ }
360
+ },
361
+ ],
362
+ replication_info_list: Array[
363
+ {
364
+ consumer_group_replication: {
365
+ consumer_groups_to_exclude: Array[::String]?,
366
+ consumer_groups_to_replicate: Array[::String],
367
+ detect_and_copy_new_consumer_groups: bool?,
368
+ synchronise_consumer_group_offsets: bool?
369
+ },
370
+ source_kafka_cluster_arn: ::String,
371
+ target_compression_type: ("NONE" | "GZIP" | "SNAPPY" | "LZ4" | "ZSTD"),
372
+ target_kafka_cluster_arn: ::String,
373
+ topic_replication: {
374
+ copy_access_control_lists_for_topics: bool?,
375
+ copy_topic_configurations: bool?,
376
+ detect_and_copy_new_topics: bool?,
377
+ topics_to_exclude: Array[::String]?,
378
+ topics_to_replicate: Array[::String]
379
+ }
380
+ },
381
+ ],
382
+ replicator_name: ::String,
383
+ service_execution_role_arn: ::String,
384
+ ?tags: Hash[::String, ::String]
385
+ ) -> _CreateReplicatorResponseSuccess
386
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateReplicatorResponseSuccess
387
+
388
+ interface _CreateVpcConnectionResponseSuccess
389
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateVpcConnectionResponse]
390
+ def vpc_connection_arn: () -> ::String
391
+ def state: () -> ("CREATING" | "AVAILABLE" | "INACTIVE" | "DEACTIVATING" | "DELETING" | "FAILED" | "REJECTED" | "REJECTING")
392
+ def authentication: () -> ::String
393
+ def vpc_id: () -> ::String
394
+ def client_subnets: () -> ::Array[::String]
395
+ def security_groups: () -> ::Array[::String]
396
+ def creation_time: () -> ::Time
397
+ def tags: () -> ::Hash[::String, ::String]
398
+ end
399
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#create_vpc_connection-instance_method
400
+ def create_vpc_connection: (
401
+ target_cluster_arn: ::String,
402
+ authentication: ::String,
403
+ vpc_id: ::String,
404
+ client_subnets: Array[::String],
405
+ security_groups: Array[::String],
406
+ ?tags: Hash[::String, ::String]
407
+ ) -> _CreateVpcConnectionResponseSuccess
408
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateVpcConnectionResponseSuccess
409
+
410
+ interface _DeleteClusterResponseSuccess
411
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteClusterResponse]
412
+ def cluster_arn: () -> ::String
413
+ def state: () -> ("ACTIVE" | "CREATING" | "DELETING" | "FAILED" | "HEALING" | "MAINTENANCE" | "REBOOTING_BROKER" | "UPDATING")
414
+ end
415
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#delete_cluster-instance_method
416
+ def delete_cluster: (
417
+ cluster_arn: ::String,
418
+ ?current_version: ::String
419
+ ) -> _DeleteClusterResponseSuccess
420
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteClusterResponseSuccess
421
+
422
+ interface _DeleteConfigurationResponseSuccess
423
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteConfigurationResponse]
424
+ def arn: () -> ::String
425
+ def state: () -> ("ACTIVE" | "DELETING" | "DELETE_FAILED")
426
+ end
427
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#delete_configuration-instance_method
428
+ def delete_configuration: (
429
+ arn: ::String
430
+ ) -> _DeleteConfigurationResponseSuccess
431
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConfigurationResponseSuccess
432
+
433
+ interface _DeleteReplicatorResponseSuccess
434
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteReplicatorResponse]
435
+ def replicator_arn: () -> ::String
436
+ def replicator_state: () -> ("RUNNING" | "CREATING" | "UPDATING" | "DELETING" | "FAILED")
437
+ end
438
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#delete_replicator-instance_method
439
+ def delete_replicator: (
440
+ ?current_version: ::String,
441
+ replicator_arn: ::String
442
+ ) -> _DeleteReplicatorResponseSuccess
443
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteReplicatorResponseSuccess
444
+
445
+ interface _DeleteVpcConnectionResponseSuccess
446
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteVpcConnectionResponse]
447
+ def vpc_connection_arn: () -> ::String
448
+ def state: () -> ("CREATING" | "AVAILABLE" | "INACTIVE" | "DEACTIVATING" | "DELETING" | "FAILED" | "REJECTED" | "REJECTING")
449
+ end
450
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#delete_vpc_connection-instance_method
451
+ def delete_vpc_connection: (
452
+ arn: ::String
453
+ ) -> _DeleteVpcConnectionResponseSuccess
454
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteVpcConnectionResponseSuccess
455
+
456
+ interface _DescribeClusterResponseSuccess
457
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeClusterResponse]
458
+ def cluster_info: () -> Types::ClusterInfo
459
+ end
460
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#describe_cluster-instance_method
461
+ def describe_cluster: (
462
+ cluster_arn: ::String
463
+ ) -> _DescribeClusterResponseSuccess
464
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeClusterResponseSuccess
465
+
466
+ interface _DescribeClusterV2ResponseSuccess
467
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeClusterV2Response]
468
+ def cluster_info: () -> Types::Cluster
469
+ end
470
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#describe_cluster_v2-instance_method
471
+ def describe_cluster_v2: (
472
+ cluster_arn: ::String
473
+ ) -> _DescribeClusterV2ResponseSuccess
474
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeClusterV2ResponseSuccess
475
+
476
+ interface _DescribeClusterOperationResponseSuccess
477
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeClusterOperationResponse]
478
+ def cluster_operation_info: () -> Types::ClusterOperationInfo
479
+ end
480
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#describe_cluster_operation-instance_method
481
+ def describe_cluster_operation: (
482
+ cluster_operation_arn: ::String
483
+ ) -> _DescribeClusterOperationResponseSuccess
484
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeClusterOperationResponseSuccess
485
+
486
+ interface _DescribeClusterOperationV2ResponseSuccess
487
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeClusterOperationV2Response]
488
+ def cluster_operation_info: () -> Types::ClusterOperationV2
489
+ end
490
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#describe_cluster_operation_v2-instance_method
491
+ def describe_cluster_operation_v2: (
492
+ cluster_operation_arn: ::String
493
+ ) -> _DescribeClusterOperationV2ResponseSuccess
494
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeClusterOperationV2ResponseSuccess
495
+
496
+ interface _DescribeConfigurationResponseSuccess
497
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeConfigurationResponse]
498
+ def arn: () -> ::String
499
+ def creation_time: () -> ::Time
500
+ def description: () -> ::String
501
+ def kafka_versions: () -> ::Array[::String]
502
+ def latest_revision: () -> Types::ConfigurationRevision
503
+ def name: () -> ::String
504
+ def state: () -> ("ACTIVE" | "DELETING" | "DELETE_FAILED")
505
+ end
506
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#describe_configuration-instance_method
507
+ def describe_configuration: (
508
+ arn: ::String
509
+ ) -> _DescribeConfigurationResponseSuccess
510
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeConfigurationResponseSuccess
511
+
512
+ interface _DescribeConfigurationRevisionResponseSuccess
513
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeConfigurationRevisionResponse]
514
+ def arn: () -> ::String
515
+ def creation_time: () -> ::Time
516
+ def description: () -> ::String
517
+ def revision: () -> ::Integer
518
+ def server_properties: () -> ::String
519
+ end
520
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#describe_configuration_revision-instance_method
521
+ def describe_configuration_revision: (
522
+ arn: ::String,
523
+ revision: ::Integer
524
+ ) -> _DescribeConfigurationRevisionResponseSuccess
525
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeConfigurationRevisionResponseSuccess
526
+
527
+ interface _DescribeReplicatorResponseSuccess
528
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeReplicatorResponse]
529
+ def creation_time: () -> ::Time
530
+ def current_version: () -> ::String
531
+ def is_replicator_reference: () -> bool
532
+ def kafka_clusters: () -> ::Array[Types::KafkaClusterDescription]
533
+ def replication_info_list: () -> ::Array[Types::ReplicationInfoDescription]
534
+ def replicator_arn: () -> ::String
535
+ def replicator_description: () -> ::String
536
+ def replicator_name: () -> ::String
537
+ def replicator_resource_arn: () -> ::String
538
+ def replicator_state: () -> ("RUNNING" | "CREATING" | "UPDATING" | "DELETING" | "FAILED")
539
+ def service_execution_role_arn: () -> ::String
540
+ def state_info: () -> Types::ReplicationStateInfo
541
+ def tags: () -> ::Hash[::String, ::String]
542
+ end
543
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#describe_replicator-instance_method
544
+ def describe_replicator: (
545
+ replicator_arn: ::String
546
+ ) -> _DescribeReplicatorResponseSuccess
547
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeReplicatorResponseSuccess
548
+
549
+ interface _DescribeVpcConnectionResponseSuccess
550
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeVpcConnectionResponse]
551
+ def vpc_connection_arn: () -> ::String
552
+ def target_cluster_arn: () -> ::String
553
+ def state: () -> ("CREATING" | "AVAILABLE" | "INACTIVE" | "DEACTIVATING" | "DELETING" | "FAILED" | "REJECTED" | "REJECTING")
554
+ def authentication: () -> ::String
555
+ def vpc_id: () -> ::String
556
+ def subnets: () -> ::Array[::String]
557
+ def security_groups: () -> ::Array[::String]
558
+ def creation_time: () -> ::Time
559
+ def tags: () -> ::Hash[::String, ::String]
560
+ end
561
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#describe_vpc_connection-instance_method
562
+ def describe_vpc_connection: (
563
+ arn: ::String
564
+ ) -> _DescribeVpcConnectionResponseSuccess
565
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeVpcConnectionResponseSuccess
566
+
567
+ interface _BatchDisassociateScramSecretResponseSuccess
568
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchDisassociateScramSecretResponse]
569
+ def cluster_arn: () -> ::String
570
+ def unprocessed_scram_secrets: () -> ::Array[Types::UnprocessedScramSecret]
571
+ end
572
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#batch_disassociate_scram_secret-instance_method
573
+ def batch_disassociate_scram_secret: (
574
+ cluster_arn: ::String,
575
+ secret_arn_list: Array[::String]
576
+ ) -> _BatchDisassociateScramSecretResponseSuccess
577
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchDisassociateScramSecretResponseSuccess
578
+
579
+ interface _GetBootstrapBrokersResponseSuccess
580
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetBootstrapBrokersResponse]
581
+ def bootstrap_broker_string: () -> ::String
582
+ def bootstrap_broker_string_public_sasl_iam: () -> ::String
583
+ def bootstrap_broker_string_public_sasl_scram: () -> ::String
584
+ def bootstrap_broker_string_public_tls: () -> ::String
585
+ def bootstrap_broker_string_tls: () -> ::String
586
+ def bootstrap_broker_string_sasl_scram: () -> ::String
587
+ def bootstrap_broker_string_sasl_iam: () -> ::String
588
+ def bootstrap_broker_string_vpc_connectivity_tls: () -> ::String
589
+ def bootstrap_broker_string_vpc_connectivity_sasl_scram: () -> ::String
590
+ def bootstrap_broker_string_vpc_connectivity_sasl_iam: () -> ::String
591
+ end
592
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#get_bootstrap_brokers-instance_method
593
+ def get_bootstrap_brokers: (
594
+ cluster_arn: ::String
595
+ ) -> _GetBootstrapBrokersResponseSuccess
596
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBootstrapBrokersResponseSuccess
597
+
598
+ interface _GetCompatibleKafkaVersionsResponseSuccess
599
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetCompatibleKafkaVersionsResponse]
600
+ def compatible_kafka_versions: () -> ::Array[Types::CompatibleKafkaVersion]
601
+ end
602
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#get_compatible_kafka_versions-instance_method
603
+ def get_compatible_kafka_versions: (
604
+ ?cluster_arn: ::String
605
+ ) -> _GetCompatibleKafkaVersionsResponseSuccess
606
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCompatibleKafkaVersionsResponseSuccess
607
+
608
+ interface _ListClusterOperationsResponseSuccess
609
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListClusterOperationsResponse]
610
+ def cluster_operation_info_list: () -> ::Array[Types::ClusterOperationInfo]
611
+ def next_token: () -> ::String
612
+ end
613
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#list_cluster_operations-instance_method
614
+ def list_cluster_operations: (
615
+ cluster_arn: ::String,
616
+ ?max_results: ::Integer,
617
+ ?next_token: ::String
618
+ ) -> _ListClusterOperationsResponseSuccess
619
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListClusterOperationsResponseSuccess
620
+
621
+ interface _ListClusterOperationsV2ResponseSuccess
622
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListClusterOperationsV2Response]
623
+ def cluster_operation_info_list: () -> ::Array[Types::ClusterOperationV2Summary]
624
+ def next_token: () -> ::String
625
+ end
626
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#list_cluster_operations_v2-instance_method
627
+ def list_cluster_operations_v2: (
628
+ cluster_arn: ::String,
629
+ ?max_results: ::Integer,
630
+ ?next_token: ::String
631
+ ) -> _ListClusterOperationsV2ResponseSuccess
632
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListClusterOperationsV2ResponseSuccess
633
+
634
+ interface _ListClustersResponseSuccess
635
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListClustersResponse]
636
+ def cluster_info_list: () -> ::Array[Types::ClusterInfo]
637
+ def next_token: () -> ::String
638
+ end
639
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#list_clusters-instance_method
640
+ def list_clusters: (
641
+ ?cluster_name_filter: ::String,
642
+ ?max_results: ::Integer,
643
+ ?next_token: ::String
644
+ ) -> _ListClustersResponseSuccess
645
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListClustersResponseSuccess
646
+
647
+ interface _ListClustersV2ResponseSuccess
648
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListClustersV2Response]
649
+ def cluster_info_list: () -> ::Array[Types::Cluster]
650
+ def next_token: () -> ::String
651
+ end
652
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#list_clusters_v2-instance_method
653
+ def list_clusters_v2: (
654
+ ?cluster_name_filter: ::String,
655
+ ?cluster_type_filter: ::String,
656
+ ?max_results: ::Integer,
657
+ ?next_token: ::String
658
+ ) -> _ListClustersV2ResponseSuccess
659
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListClustersV2ResponseSuccess
660
+
661
+ interface _ListConfigurationRevisionsResponseSuccess
662
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListConfigurationRevisionsResponse]
663
+ def next_token: () -> ::String
664
+ def revisions: () -> ::Array[Types::ConfigurationRevision]
665
+ end
666
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#list_configuration_revisions-instance_method
667
+ def list_configuration_revisions: (
668
+ arn: ::String,
669
+ ?max_results: ::Integer,
670
+ ?next_token: ::String
671
+ ) -> _ListConfigurationRevisionsResponseSuccess
672
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConfigurationRevisionsResponseSuccess
673
+
674
+ interface _ListConfigurationsResponseSuccess
675
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListConfigurationsResponse]
676
+ def configurations: () -> ::Array[Types::Configuration]
677
+ def next_token: () -> ::String
678
+ end
679
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#list_configurations-instance_method
680
+ def list_configurations: (
681
+ ?max_results: ::Integer,
682
+ ?next_token: ::String
683
+ ) -> _ListConfigurationsResponseSuccess
684
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConfigurationsResponseSuccess
685
+
686
+ interface _ListKafkaVersionsResponseSuccess
687
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListKafkaVersionsResponse]
688
+ def kafka_versions: () -> ::Array[Types::KafkaVersion]
689
+ def next_token: () -> ::String
690
+ end
691
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#list_kafka_versions-instance_method
692
+ def list_kafka_versions: (
693
+ ?max_results: ::Integer,
694
+ ?next_token: ::String
695
+ ) -> _ListKafkaVersionsResponseSuccess
696
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListKafkaVersionsResponseSuccess
697
+
698
+ interface _ListNodesResponseSuccess
699
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListNodesResponse]
700
+ def next_token: () -> ::String
701
+ def node_info_list: () -> ::Array[Types::NodeInfo]
702
+ end
703
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#list_nodes-instance_method
704
+ def list_nodes: (
705
+ cluster_arn: ::String,
706
+ ?max_results: ::Integer,
707
+ ?next_token: ::String
708
+ ) -> _ListNodesResponseSuccess
709
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListNodesResponseSuccess
710
+
711
+ interface _ListReplicatorsResponseSuccess
712
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListReplicatorsResponse]
713
+ def next_token: () -> ::String
714
+ def replicators: () -> ::Array[Types::ReplicatorSummary]
715
+ end
716
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#list_replicators-instance_method
717
+ def list_replicators: (
718
+ ?max_results: ::Integer,
719
+ ?next_token: ::String,
720
+ ?replicator_name_filter: ::String
721
+ ) -> _ListReplicatorsResponseSuccess
722
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReplicatorsResponseSuccess
723
+
724
+ interface _ListScramSecretsResponseSuccess
725
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListScramSecretsResponse]
726
+ def next_token: () -> ::String
727
+ def secret_arn_list: () -> ::Array[::String]
728
+ end
729
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#list_scram_secrets-instance_method
730
+ def list_scram_secrets: (
731
+ cluster_arn: ::String,
732
+ ?max_results: ::Integer,
733
+ ?next_token: ::String
734
+ ) -> _ListScramSecretsResponseSuccess
735
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListScramSecretsResponseSuccess
736
+
737
+ interface _ListTagsForResourceResponseSuccess
738
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
739
+ def tags: () -> ::Hash[::String, ::String]
740
+ end
741
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#list_tags_for_resource-instance_method
742
+ def list_tags_for_resource: (
743
+ resource_arn: ::String
744
+ ) -> _ListTagsForResourceResponseSuccess
745
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
746
+
747
+ interface _ListClientVpcConnectionsResponseSuccess
748
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListClientVpcConnectionsResponse]
749
+ def next_token: () -> ::String
750
+ def client_vpc_connections: () -> ::Array[Types::ClientVpcConnection]
751
+ end
752
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#list_client_vpc_connections-instance_method
753
+ def list_client_vpc_connections: (
754
+ cluster_arn: ::String,
755
+ ?max_results: ::Integer,
756
+ ?next_token: ::String
757
+ ) -> _ListClientVpcConnectionsResponseSuccess
758
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListClientVpcConnectionsResponseSuccess
759
+
760
+ interface _ListVpcConnectionsResponseSuccess
761
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListVpcConnectionsResponse]
762
+ def next_token: () -> ::String
763
+ def vpc_connections: () -> ::Array[Types::VpcConnection]
764
+ end
765
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#list_vpc_connections-instance_method
766
+ def list_vpc_connections: (
767
+ ?max_results: ::Integer,
768
+ ?next_token: ::String
769
+ ) -> _ListVpcConnectionsResponseSuccess
770
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVpcConnectionsResponseSuccess
771
+
772
+ interface _RejectClientVpcConnectionResponseSuccess
773
+ include ::Seahorse::Client::_ResponseSuccess[Types::RejectClientVpcConnectionResponse]
774
+ end
775
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#reject_client_vpc_connection-instance_method
776
+ def reject_client_vpc_connection: (
777
+ cluster_arn: ::String,
778
+ vpc_connection_arn: ::String
779
+ ) -> _RejectClientVpcConnectionResponseSuccess
780
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RejectClientVpcConnectionResponseSuccess
781
+
782
+ interface _DeleteClusterPolicyResponseSuccess
783
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteClusterPolicyResponse]
784
+ end
785
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#delete_cluster_policy-instance_method
786
+ def delete_cluster_policy: (
787
+ cluster_arn: ::String
788
+ ) -> _DeleteClusterPolicyResponseSuccess
789
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteClusterPolicyResponseSuccess
790
+
791
+ interface _GetClusterPolicyResponseSuccess
792
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetClusterPolicyResponse]
793
+ def current_version: () -> ::String
794
+ def policy: () -> ::String
795
+ end
796
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#get_cluster_policy-instance_method
797
+ def get_cluster_policy: (
798
+ cluster_arn: ::String
799
+ ) -> _GetClusterPolicyResponseSuccess
800
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetClusterPolicyResponseSuccess
801
+
802
+ interface _PutClusterPolicyResponseSuccess
803
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutClusterPolicyResponse]
804
+ def current_version: () -> ::String
805
+ end
806
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#put_cluster_policy-instance_method
807
+ def put_cluster_policy: (
808
+ cluster_arn: ::String,
809
+ ?current_version: ::String,
810
+ policy: ::String
811
+ ) -> _PutClusterPolicyResponseSuccess
812
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutClusterPolicyResponseSuccess
813
+
814
+ interface _RebootBrokerResponseSuccess
815
+ include ::Seahorse::Client::_ResponseSuccess[Types::RebootBrokerResponse]
816
+ def cluster_arn: () -> ::String
817
+ def cluster_operation_arn: () -> ::String
818
+ end
819
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#reboot_broker-instance_method
820
+ def reboot_broker: (
821
+ broker_ids: Array[::String],
822
+ cluster_arn: ::String
823
+ ) -> _RebootBrokerResponseSuccess
824
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RebootBrokerResponseSuccess
825
+
826
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#tag_resource-instance_method
827
+ def tag_resource: (
828
+ resource_arn: ::String,
829
+ tags: Hash[::String, ::String]
830
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
831
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
832
+
833
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#untag_resource-instance_method
834
+ def untag_resource: (
835
+ resource_arn: ::String,
836
+ tag_keys: Array[::String]
837
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
838
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
839
+
840
+ interface _UpdateBrokerCountResponseSuccess
841
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateBrokerCountResponse]
842
+ def cluster_arn: () -> ::String
843
+ def cluster_operation_arn: () -> ::String
844
+ end
845
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#update_broker_count-instance_method
846
+ def update_broker_count: (
847
+ cluster_arn: ::String,
848
+ current_version: ::String,
849
+ target_number_of_broker_nodes: ::Integer
850
+ ) -> _UpdateBrokerCountResponseSuccess
851
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateBrokerCountResponseSuccess
852
+
853
+ interface _UpdateBrokerTypeResponseSuccess
854
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateBrokerTypeResponse]
855
+ def cluster_arn: () -> ::String
856
+ def cluster_operation_arn: () -> ::String
857
+ end
858
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#update_broker_type-instance_method
859
+ def update_broker_type: (
860
+ cluster_arn: ::String,
861
+ current_version: ::String,
862
+ target_instance_type: ::String
863
+ ) -> _UpdateBrokerTypeResponseSuccess
864
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateBrokerTypeResponseSuccess
865
+
866
+ interface _UpdateBrokerStorageResponseSuccess
867
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateBrokerStorageResponse]
868
+ def cluster_arn: () -> ::String
869
+ def cluster_operation_arn: () -> ::String
870
+ end
871
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#update_broker_storage-instance_method
872
+ def update_broker_storage: (
873
+ cluster_arn: ::String,
874
+ current_version: ::String,
875
+ target_broker_ebs_volume_info: Array[
876
+ {
877
+ kafka_broker_node_id: ::String,
878
+ provisioned_throughput: {
879
+ enabled: bool?,
880
+ volume_throughput: ::Integer?
881
+ }?,
882
+ volume_size_gb: ::Integer?
883
+ },
884
+ ]
885
+ ) -> _UpdateBrokerStorageResponseSuccess
886
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateBrokerStorageResponseSuccess
887
+
888
+ interface _UpdateConfigurationResponseSuccess
889
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateConfigurationResponse]
890
+ def arn: () -> ::String
891
+ def latest_revision: () -> Types::ConfigurationRevision
892
+ end
893
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#update_configuration-instance_method
894
+ def update_configuration: (
895
+ arn: ::String,
896
+ ?description: ::String,
897
+ server_properties: ::String
898
+ ) -> _UpdateConfigurationResponseSuccess
899
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConfigurationResponseSuccess
900
+
901
+ interface _UpdateClusterConfigurationResponseSuccess
902
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateClusterConfigurationResponse]
903
+ def cluster_arn: () -> ::String
904
+ def cluster_operation_arn: () -> ::String
905
+ end
906
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#update_cluster_configuration-instance_method
907
+ def update_cluster_configuration: (
908
+ cluster_arn: ::String,
909
+ configuration_info: {
910
+ arn: ::String,
911
+ revision: ::Integer
912
+ },
913
+ current_version: ::String
914
+ ) -> _UpdateClusterConfigurationResponseSuccess
915
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateClusterConfigurationResponseSuccess
916
+
917
+ interface _UpdateClusterKafkaVersionResponseSuccess
918
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateClusterKafkaVersionResponse]
919
+ def cluster_arn: () -> ::String
920
+ def cluster_operation_arn: () -> ::String
921
+ end
922
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#update_cluster_kafka_version-instance_method
923
+ def update_cluster_kafka_version: (
924
+ cluster_arn: ::String,
925
+ ?configuration_info: {
926
+ arn: ::String,
927
+ revision: ::Integer
928
+ },
929
+ current_version: ::String,
930
+ target_kafka_version: ::String
931
+ ) -> _UpdateClusterKafkaVersionResponseSuccess
932
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateClusterKafkaVersionResponseSuccess
933
+
934
+ interface _UpdateConnectivityResponseSuccess
935
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateConnectivityResponse]
936
+ def cluster_arn: () -> ::String
937
+ def cluster_operation_arn: () -> ::String
938
+ end
939
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#update_connectivity-instance_method
940
+ def update_connectivity: (
941
+ cluster_arn: ::String,
942
+ connectivity_info: {
943
+ public_access: {
944
+ type: ::String?
945
+ }?,
946
+ vpc_connectivity: {
947
+ client_authentication: {
948
+ sasl: {
949
+ scram: {
950
+ enabled: bool?
951
+ }?,
952
+ iam: {
953
+ enabled: bool?
954
+ }?
955
+ }?,
956
+ tls: {
957
+ enabled: bool?
958
+ }?
959
+ }?
960
+ }?
961
+ },
962
+ current_version: ::String
963
+ ) -> _UpdateConnectivityResponseSuccess
964
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConnectivityResponseSuccess
965
+
966
+ interface _UpdateMonitoringResponseSuccess
967
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateMonitoringResponse]
968
+ def cluster_arn: () -> ::String
969
+ def cluster_operation_arn: () -> ::String
970
+ end
971
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#update_monitoring-instance_method
972
+ def update_monitoring: (
973
+ cluster_arn: ::String,
974
+ current_version: ::String,
975
+ ?enhanced_monitoring: ("DEFAULT" | "PER_BROKER" | "PER_TOPIC_PER_BROKER" | "PER_TOPIC_PER_PARTITION"),
976
+ ?open_monitoring: {
977
+ prometheus: {
978
+ jmx_exporter: {
979
+ enabled_in_broker: bool
980
+ }?,
981
+ node_exporter: {
982
+ enabled_in_broker: bool
983
+ }?
984
+ }
985
+ },
986
+ ?logging_info: {
987
+ broker_logs: {
988
+ cloud_watch_logs: {
989
+ enabled: bool,
990
+ log_group: ::String?
991
+ }?,
992
+ firehose: {
993
+ delivery_stream: ::String?,
994
+ enabled: bool
995
+ }?,
996
+ s3: {
997
+ bucket: ::String?,
998
+ enabled: bool,
999
+ prefix: ::String?
1000
+ }?
1001
+ }
1002
+ }
1003
+ ) -> _UpdateMonitoringResponseSuccess
1004
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateMonitoringResponseSuccess
1005
+
1006
+ interface _UpdateReplicationInfoResponseSuccess
1007
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateReplicationInfoResponse]
1008
+ def replicator_arn: () -> ::String
1009
+ def replicator_state: () -> ("RUNNING" | "CREATING" | "UPDATING" | "DELETING" | "FAILED")
1010
+ end
1011
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#update_replication_info-instance_method
1012
+ def update_replication_info: (
1013
+ ?consumer_group_replication: {
1014
+ consumer_groups_to_exclude: Array[::String],
1015
+ consumer_groups_to_replicate: Array[::String],
1016
+ detect_and_copy_new_consumer_groups: bool,
1017
+ synchronise_consumer_group_offsets: bool
1018
+ },
1019
+ current_version: ::String,
1020
+ replicator_arn: ::String,
1021
+ source_kafka_cluster_arn: ::String,
1022
+ target_kafka_cluster_arn: ::String,
1023
+ ?topic_replication: {
1024
+ copy_access_control_lists_for_topics: bool,
1025
+ copy_topic_configurations: bool,
1026
+ detect_and_copy_new_topics: bool,
1027
+ topics_to_exclude: Array[::String],
1028
+ topics_to_replicate: Array[::String]
1029
+ }
1030
+ ) -> _UpdateReplicationInfoResponseSuccess
1031
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateReplicationInfoResponseSuccess
1032
+
1033
+ interface _UpdateSecurityResponseSuccess
1034
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSecurityResponse]
1035
+ def cluster_arn: () -> ::String
1036
+ def cluster_operation_arn: () -> ::String
1037
+ end
1038
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#update_security-instance_method
1039
+ def update_security: (
1040
+ ?client_authentication: {
1041
+ sasl: {
1042
+ scram: {
1043
+ enabled: bool?
1044
+ }?,
1045
+ iam: {
1046
+ enabled: bool?
1047
+ }?
1048
+ }?,
1049
+ tls: {
1050
+ certificate_authority_arn_list: Array[::String]?,
1051
+ enabled: bool?
1052
+ }?,
1053
+ unauthenticated: {
1054
+ enabled: bool?
1055
+ }?
1056
+ },
1057
+ cluster_arn: ::String,
1058
+ current_version: ::String,
1059
+ ?encryption_info: {
1060
+ encryption_at_rest: {
1061
+ data_volume_kms_key_id: ::String
1062
+ }?,
1063
+ encryption_in_transit: {
1064
+ client_broker: ("TLS" | "TLS_PLAINTEXT" | "PLAINTEXT")?,
1065
+ in_cluster: bool?
1066
+ }?
1067
+ }
1068
+ ) -> _UpdateSecurityResponseSuccess
1069
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSecurityResponseSuccess
1070
+
1071
+ interface _UpdateStorageResponseSuccess
1072
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateStorageResponse]
1073
+ def cluster_arn: () -> ::String
1074
+ def cluster_operation_arn: () -> ::String
1075
+ end
1076
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#update_storage-instance_method
1077
+ def update_storage: (
1078
+ cluster_arn: ::String,
1079
+ current_version: ::String,
1080
+ ?provisioned_throughput: {
1081
+ enabled: bool?,
1082
+ volume_throughput: ::Integer?
1083
+ },
1084
+ ?storage_mode: ("LOCAL" | "TIERED"),
1085
+ ?volume_size_gb: ::Integer
1086
+ ) -> _UpdateStorageResponseSuccess
1087
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateStorageResponseSuccess
1088
+ end
1089
+ end
1090
+ end
1091
+