aws-sdk-kafka 1.67.0 → 1.69.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,1094 @@
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
+ starting_position: {
378
+ type: ("LATEST" | "EARLIEST")?
379
+ }?,
380
+ topics_to_exclude: Array[::String]?,
381
+ topics_to_replicate: Array[::String]
382
+ }
383
+ },
384
+ ],
385
+ replicator_name: ::String,
386
+ service_execution_role_arn: ::String,
387
+ ?tags: Hash[::String, ::String]
388
+ ) -> _CreateReplicatorResponseSuccess
389
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateReplicatorResponseSuccess
390
+
391
+ interface _CreateVpcConnectionResponseSuccess
392
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateVpcConnectionResponse]
393
+ def vpc_connection_arn: () -> ::String
394
+ def state: () -> ("CREATING" | "AVAILABLE" | "INACTIVE" | "DEACTIVATING" | "DELETING" | "FAILED" | "REJECTED" | "REJECTING")
395
+ def authentication: () -> ::String
396
+ def vpc_id: () -> ::String
397
+ def client_subnets: () -> ::Array[::String]
398
+ def security_groups: () -> ::Array[::String]
399
+ def creation_time: () -> ::Time
400
+ def tags: () -> ::Hash[::String, ::String]
401
+ end
402
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#create_vpc_connection-instance_method
403
+ def create_vpc_connection: (
404
+ target_cluster_arn: ::String,
405
+ authentication: ::String,
406
+ vpc_id: ::String,
407
+ client_subnets: Array[::String],
408
+ security_groups: Array[::String],
409
+ ?tags: Hash[::String, ::String]
410
+ ) -> _CreateVpcConnectionResponseSuccess
411
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateVpcConnectionResponseSuccess
412
+
413
+ interface _DeleteClusterResponseSuccess
414
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteClusterResponse]
415
+ def cluster_arn: () -> ::String
416
+ def state: () -> ("ACTIVE" | "CREATING" | "DELETING" | "FAILED" | "HEALING" | "MAINTENANCE" | "REBOOTING_BROKER" | "UPDATING")
417
+ end
418
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#delete_cluster-instance_method
419
+ def delete_cluster: (
420
+ cluster_arn: ::String,
421
+ ?current_version: ::String
422
+ ) -> _DeleteClusterResponseSuccess
423
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteClusterResponseSuccess
424
+
425
+ interface _DeleteConfigurationResponseSuccess
426
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteConfigurationResponse]
427
+ def arn: () -> ::String
428
+ def state: () -> ("ACTIVE" | "DELETING" | "DELETE_FAILED")
429
+ end
430
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#delete_configuration-instance_method
431
+ def delete_configuration: (
432
+ arn: ::String
433
+ ) -> _DeleteConfigurationResponseSuccess
434
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConfigurationResponseSuccess
435
+
436
+ interface _DeleteReplicatorResponseSuccess
437
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteReplicatorResponse]
438
+ def replicator_arn: () -> ::String
439
+ def replicator_state: () -> ("RUNNING" | "CREATING" | "UPDATING" | "DELETING" | "FAILED")
440
+ end
441
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#delete_replicator-instance_method
442
+ def delete_replicator: (
443
+ ?current_version: ::String,
444
+ replicator_arn: ::String
445
+ ) -> _DeleteReplicatorResponseSuccess
446
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteReplicatorResponseSuccess
447
+
448
+ interface _DeleteVpcConnectionResponseSuccess
449
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteVpcConnectionResponse]
450
+ def vpc_connection_arn: () -> ::String
451
+ def state: () -> ("CREATING" | "AVAILABLE" | "INACTIVE" | "DEACTIVATING" | "DELETING" | "FAILED" | "REJECTED" | "REJECTING")
452
+ end
453
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#delete_vpc_connection-instance_method
454
+ def delete_vpc_connection: (
455
+ arn: ::String
456
+ ) -> _DeleteVpcConnectionResponseSuccess
457
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteVpcConnectionResponseSuccess
458
+
459
+ interface _DescribeClusterResponseSuccess
460
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeClusterResponse]
461
+ def cluster_info: () -> Types::ClusterInfo
462
+ end
463
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#describe_cluster-instance_method
464
+ def describe_cluster: (
465
+ cluster_arn: ::String
466
+ ) -> _DescribeClusterResponseSuccess
467
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeClusterResponseSuccess
468
+
469
+ interface _DescribeClusterV2ResponseSuccess
470
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeClusterV2Response]
471
+ def cluster_info: () -> Types::Cluster
472
+ end
473
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#describe_cluster_v2-instance_method
474
+ def describe_cluster_v2: (
475
+ cluster_arn: ::String
476
+ ) -> _DescribeClusterV2ResponseSuccess
477
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeClusterV2ResponseSuccess
478
+
479
+ interface _DescribeClusterOperationResponseSuccess
480
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeClusterOperationResponse]
481
+ def cluster_operation_info: () -> Types::ClusterOperationInfo
482
+ end
483
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#describe_cluster_operation-instance_method
484
+ def describe_cluster_operation: (
485
+ cluster_operation_arn: ::String
486
+ ) -> _DescribeClusterOperationResponseSuccess
487
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeClusterOperationResponseSuccess
488
+
489
+ interface _DescribeClusterOperationV2ResponseSuccess
490
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeClusterOperationV2Response]
491
+ def cluster_operation_info: () -> Types::ClusterOperationV2
492
+ end
493
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#describe_cluster_operation_v2-instance_method
494
+ def describe_cluster_operation_v2: (
495
+ cluster_operation_arn: ::String
496
+ ) -> _DescribeClusterOperationV2ResponseSuccess
497
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeClusterOperationV2ResponseSuccess
498
+
499
+ interface _DescribeConfigurationResponseSuccess
500
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeConfigurationResponse]
501
+ def arn: () -> ::String
502
+ def creation_time: () -> ::Time
503
+ def description: () -> ::String
504
+ def kafka_versions: () -> ::Array[::String]
505
+ def latest_revision: () -> Types::ConfigurationRevision
506
+ def name: () -> ::String
507
+ def state: () -> ("ACTIVE" | "DELETING" | "DELETE_FAILED")
508
+ end
509
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#describe_configuration-instance_method
510
+ def describe_configuration: (
511
+ arn: ::String
512
+ ) -> _DescribeConfigurationResponseSuccess
513
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeConfigurationResponseSuccess
514
+
515
+ interface _DescribeConfigurationRevisionResponseSuccess
516
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeConfigurationRevisionResponse]
517
+ def arn: () -> ::String
518
+ def creation_time: () -> ::Time
519
+ def description: () -> ::String
520
+ def revision: () -> ::Integer
521
+ def server_properties: () -> ::String
522
+ end
523
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#describe_configuration_revision-instance_method
524
+ def describe_configuration_revision: (
525
+ arn: ::String,
526
+ revision: ::Integer
527
+ ) -> _DescribeConfigurationRevisionResponseSuccess
528
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeConfigurationRevisionResponseSuccess
529
+
530
+ interface _DescribeReplicatorResponseSuccess
531
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeReplicatorResponse]
532
+ def creation_time: () -> ::Time
533
+ def current_version: () -> ::String
534
+ def is_replicator_reference: () -> bool
535
+ def kafka_clusters: () -> ::Array[Types::KafkaClusterDescription]
536
+ def replication_info_list: () -> ::Array[Types::ReplicationInfoDescription]
537
+ def replicator_arn: () -> ::String
538
+ def replicator_description: () -> ::String
539
+ def replicator_name: () -> ::String
540
+ def replicator_resource_arn: () -> ::String
541
+ def replicator_state: () -> ("RUNNING" | "CREATING" | "UPDATING" | "DELETING" | "FAILED")
542
+ def service_execution_role_arn: () -> ::String
543
+ def state_info: () -> Types::ReplicationStateInfo
544
+ def tags: () -> ::Hash[::String, ::String]
545
+ end
546
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#describe_replicator-instance_method
547
+ def describe_replicator: (
548
+ replicator_arn: ::String
549
+ ) -> _DescribeReplicatorResponseSuccess
550
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeReplicatorResponseSuccess
551
+
552
+ interface _DescribeVpcConnectionResponseSuccess
553
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeVpcConnectionResponse]
554
+ def vpc_connection_arn: () -> ::String
555
+ def target_cluster_arn: () -> ::String
556
+ def state: () -> ("CREATING" | "AVAILABLE" | "INACTIVE" | "DEACTIVATING" | "DELETING" | "FAILED" | "REJECTED" | "REJECTING")
557
+ def authentication: () -> ::String
558
+ def vpc_id: () -> ::String
559
+ def subnets: () -> ::Array[::String]
560
+ def security_groups: () -> ::Array[::String]
561
+ def creation_time: () -> ::Time
562
+ def tags: () -> ::Hash[::String, ::String]
563
+ end
564
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#describe_vpc_connection-instance_method
565
+ def describe_vpc_connection: (
566
+ arn: ::String
567
+ ) -> _DescribeVpcConnectionResponseSuccess
568
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeVpcConnectionResponseSuccess
569
+
570
+ interface _BatchDisassociateScramSecretResponseSuccess
571
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchDisassociateScramSecretResponse]
572
+ def cluster_arn: () -> ::String
573
+ def unprocessed_scram_secrets: () -> ::Array[Types::UnprocessedScramSecret]
574
+ end
575
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#batch_disassociate_scram_secret-instance_method
576
+ def batch_disassociate_scram_secret: (
577
+ cluster_arn: ::String,
578
+ secret_arn_list: Array[::String]
579
+ ) -> _BatchDisassociateScramSecretResponseSuccess
580
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchDisassociateScramSecretResponseSuccess
581
+
582
+ interface _GetBootstrapBrokersResponseSuccess
583
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetBootstrapBrokersResponse]
584
+ def bootstrap_broker_string: () -> ::String
585
+ def bootstrap_broker_string_public_sasl_iam: () -> ::String
586
+ def bootstrap_broker_string_public_sasl_scram: () -> ::String
587
+ def bootstrap_broker_string_public_tls: () -> ::String
588
+ def bootstrap_broker_string_tls: () -> ::String
589
+ def bootstrap_broker_string_sasl_scram: () -> ::String
590
+ def bootstrap_broker_string_sasl_iam: () -> ::String
591
+ def bootstrap_broker_string_vpc_connectivity_tls: () -> ::String
592
+ def bootstrap_broker_string_vpc_connectivity_sasl_scram: () -> ::String
593
+ def bootstrap_broker_string_vpc_connectivity_sasl_iam: () -> ::String
594
+ end
595
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#get_bootstrap_brokers-instance_method
596
+ def get_bootstrap_brokers: (
597
+ cluster_arn: ::String
598
+ ) -> _GetBootstrapBrokersResponseSuccess
599
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBootstrapBrokersResponseSuccess
600
+
601
+ interface _GetCompatibleKafkaVersionsResponseSuccess
602
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetCompatibleKafkaVersionsResponse]
603
+ def compatible_kafka_versions: () -> ::Array[Types::CompatibleKafkaVersion]
604
+ end
605
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#get_compatible_kafka_versions-instance_method
606
+ def get_compatible_kafka_versions: (
607
+ ?cluster_arn: ::String
608
+ ) -> _GetCompatibleKafkaVersionsResponseSuccess
609
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCompatibleKafkaVersionsResponseSuccess
610
+
611
+ interface _ListClusterOperationsResponseSuccess
612
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListClusterOperationsResponse]
613
+ def cluster_operation_info_list: () -> ::Array[Types::ClusterOperationInfo]
614
+ def next_token: () -> ::String
615
+ end
616
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#list_cluster_operations-instance_method
617
+ def list_cluster_operations: (
618
+ cluster_arn: ::String,
619
+ ?max_results: ::Integer,
620
+ ?next_token: ::String
621
+ ) -> _ListClusterOperationsResponseSuccess
622
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListClusterOperationsResponseSuccess
623
+
624
+ interface _ListClusterOperationsV2ResponseSuccess
625
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListClusterOperationsV2Response]
626
+ def cluster_operation_info_list: () -> ::Array[Types::ClusterOperationV2Summary]
627
+ def next_token: () -> ::String
628
+ end
629
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#list_cluster_operations_v2-instance_method
630
+ def list_cluster_operations_v2: (
631
+ cluster_arn: ::String,
632
+ ?max_results: ::Integer,
633
+ ?next_token: ::String
634
+ ) -> _ListClusterOperationsV2ResponseSuccess
635
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListClusterOperationsV2ResponseSuccess
636
+
637
+ interface _ListClustersResponseSuccess
638
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListClustersResponse]
639
+ def cluster_info_list: () -> ::Array[Types::ClusterInfo]
640
+ def next_token: () -> ::String
641
+ end
642
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#list_clusters-instance_method
643
+ def list_clusters: (
644
+ ?cluster_name_filter: ::String,
645
+ ?max_results: ::Integer,
646
+ ?next_token: ::String
647
+ ) -> _ListClustersResponseSuccess
648
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListClustersResponseSuccess
649
+
650
+ interface _ListClustersV2ResponseSuccess
651
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListClustersV2Response]
652
+ def cluster_info_list: () -> ::Array[Types::Cluster]
653
+ def next_token: () -> ::String
654
+ end
655
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#list_clusters_v2-instance_method
656
+ def list_clusters_v2: (
657
+ ?cluster_name_filter: ::String,
658
+ ?cluster_type_filter: ::String,
659
+ ?max_results: ::Integer,
660
+ ?next_token: ::String
661
+ ) -> _ListClustersV2ResponseSuccess
662
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListClustersV2ResponseSuccess
663
+
664
+ interface _ListConfigurationRevisionsResponseSuccess
665
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListConfigurationRevisionsResponse]
666
+ def next_token: () -> ::String
667
+ def revisions: () -> ::Array[Types::ConfigurationRevision]
668
+ end
669
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#list_configuration_revisions-instance_method
670
+ def list_configuration_revisions: (
671
+ arn: ::String,
672
+ ?max_results: ::Integer,
673
+ ?next_token: ::String
674
+ ) -> _ListConfigurationRevisionsResponseSuccess
675
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConfigurationRevisionsResponseSuccess
676
+
677
+ interface _ListConfigurationsResponseSuccess
678
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListConfigurationsResponse]
679
+ def configurations: () -> ::Array[Types::Configuration]
680
+ def next_token: () -> ::String
681
+ end
682
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#list_configurations-instance_method
683
+ def list_configurations: (
684
+ ?max_results: ::Integer,
685
+ ?next_token: ::String
686
+ ) -> _ListConfigurationsResponseSuccess
687
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConfigurationsResponseSuccess
688
+
689
+ interface _ListKafkaVersionsResponseSuccess
690
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListKafkaVersionsResponse]
691
+ def kafka_versions: () -> ::Array[Types::KafkaVersion]
692
+ def next_token: () -> ::String
693
+ end
694
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#list_kafka_versions-instance_method
695
+ def list_kafka_versions: (
696
+ ?max_results: ::Integer,
697
+ ?next_token: ::String
698
+ ) -> _ListKafkaVersionsResponseSuccess
699
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListKafkaVersionsResponseSuccess
700
+
701
+ interface _ListNodesResponseSuccess
702
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListNodesResponse]
703
+ def next_token: () -> ::String
704
+ def node_info_list: () -> ::Array[Types::NodeInfo]
705
+ end
706
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#list_nodes-instance_method
707
+ def list_nodes: (
708
+ cluster_arn: ::String,
709
+ ?max_results: ::Integer,
710
+ ?next_token: ::String
711
+ ) -> _ListNodesResponseSuccess
712
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListNodesResponseSuccess
713
+
714
+ interface _ListReplicatorsResponseSuccess
715
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListReplicatorsResponse]
716
+ def next_token: () -> ::String
717
+ def replicators: () -> ::Array[Types::ReplicatorSummary]
718
+ end
719
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#list_replicators-instance_method
720
+ def list_replicators: (
721
+ ?max_results: ::Integer,
722
+ ?next_token: ::String,
723
+ ?replicator_name_filter: ::String
724
+ ) -> _ListReplicatorsResponseSuccess
725
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReplicatorsResponseSuccess
726
+
727
+ interface _ListScramSecretsResponseSuccess
728
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListScramSecretsResponse]
729
+ def next_token: () -> ::String
730
+ def secret_arn_list: () -> ::Array[::String]
731
+ end
732
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#list_scram_secrets-instance_method
733
+ def list_scram_secrets: (
734
+ cluster_arn: ::String,
735
+ ?max_results: ::Integer,
736
+ ?next_token: ::String
737
+ ) -> _ListScramSecretsResponseSuccess
738
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListScramSecretsResponseSuccess
739
+
740
+ interface _ListTagsForResourceResponseSuccess
741
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
742
+ def tags: () -> ::Hash[::String, ::String]
743
+ end
744
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#list_tags_for_resource-instance_method
745
+ def list_tags_for_resource: (
746
+ resource_arn: ::String
747
+ ) -> _ListTagsForResourceResponseSuccess
748
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
749
+
750
+ interface _ListClientVpcConnectionsResponseSuccess
751
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListClientVpcConnectionsResponse]
752
+ def next_token: () -> ::String
753
+ def client_vpc_connections: () -> ::Array[Types::ClientVpcConnection]
754
+ end
755
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#list_client_vpc_connections-instance_method
756
+ def list_client_vpc_connections: (
757
+ cluster_arn: ::String,
758
+ ?max_results: ::Integer,
759
+ ?next_token: ::String
760
+ ) -> _ListClientVpcConnectionsResponseSuccess
761
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListClientVpcConnectionsResponseSuccess
762
+
763
+ interface _ListVpcConnectionsResponseSuccess
764
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListVpcConnectionsResponse]
765
+ def next_token: () -> ::String
766
+ def vpc_connections: () -> ::Array[Types::VpcConnection]
767
+ end
768
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#list_vpc_connections-instance_method
769
+ def list_vpc_connections: (
770
+ ?max_results: ::Integer,
771
+ ?next_token: ::String
772
+ ) -> _ListVpcConnectionsResponseSuccess
773
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVpcConnectionsResponseSuccess
774
+
775
+ interface _RejectClientVpcConnectionResponseSuccess
776
+ include ::Seahorse::Client::_ResponseSuccess[Types::RejectClientVpcConnectionResponse]
777
+ end
778
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#reject_client_vpc_connection-instance_method
779
+ def reject_client_vpc_connection: (
780
+ cluster_arn: ::String,
781
+ vpc_connection_arn: ::String
782
+ ) -> _RejectClientVpcConnectionResponseSuccess
783
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RejectClientVpcConnectionResponseSuccess
784
+
785
+ interface _DeleteClusterPolicyResponseSuccess
786
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteClusterPolicyResponse]
787
+ end
788
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#delete_cluster_policy-instance_method
789
+ def delete_cluster_policy: (
790
+ cluster_arn: ::String
791
+ ) -> _DeleteClusterPolicyResponseSuccess
792
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteClusterPolicyResponseSuccess
793
+
794
+ interface _GetClusterPolicyResponseSuccess
795
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetClusterPolicyResponse]
796
+ def current_version: () -> ::String
797
+ def policy: () -> ::String
798
+ end
799
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#get_cluster_policy-instance_method
800
+ def get_cluster_policy: (
801
+ cluster_arn: ::String
802
+ ) -> _GetClusterPolicyResponseSuccess
803
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetClusterPolicyResponseSuccess
804
+
805
+ interface _PutClusterPolicyResponseSuccess
806
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutClusterPolicyResponse]
807
+ def current_version: () -> ::String
808
+ end
809
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#put_cluster_policy-instance_method
810
+ def put_cluster_policy: (
811
+ cluster_arn: ::String,
812
+ ?current_version: ::String,
813
+ policy: ::String
814
+ ) -> _PutClusterPolicyResponseSuccess
815
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutClusterPolicyResponseSuccess
816
+
817
+ interface _RebootBrokerResponseSuccess
818
+ include ::Seahorse::Client::_ResponseSuccess[Types::RebootBrokerResponse]
819
+ def cluster_arn: () -> ::String
820
+ def cluster_operation_arn: () -> ::String
821
+ end
822
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#reboot_broker-instance_method
823
+ def reboot_broker: (
824
+ broker_ids: Array[::String],
825
+ cluster_arn: ::String
826
+ ) -> _RebootBrokerResponseSuccess
827
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RebootBrokerResponseSuccess
828
+
829
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#tag_resource-instance_method
830
+ def tag_resource: (
831
+ resource_arn: ::String,
832
+ tags: Hash[::String, ::String]
833
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
834
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
835
+
836
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#untag_resource-instance_method
837
+ def untag_resource: (
838
+ resource_arn: ::String,
839
+ tag_keys: Array[::String]
840
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
841
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
842
+
843
+ interface _UpdateBrokerCountResponseSuccess
844
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateBrokerCountResponse]
845
+ def cluster_arn: () -> ::String
846
+ def cluster_operation_arn: () -> ::String
847
+ end
848
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#update_broker_count-instance_method
849
+ def update_broker_count: (
850
+ cluster_arn: ::String,
851
+ current_version: ::String,
852
+ target_number_of_broker_nodes: ::Integer
853
+ ) -> _UpdateBrokerCountResponseSuccess
854
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateBrokerCountResponseSuccess
855
+
856
+ interface _UpdateBrokerTypeResponseSuccess
857
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateBrokerTypeResponse]
858
+ def cluster_arn: () -> ::String
859
+ def cluster_operation_arn: () -> ::String
860
+ end
861
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#update_broker_type-instance_method
862
+ def update_broker_type: (
863
+ cluster_arn: ::String,
864
+ current_version: ::String,
865
+ target_instance_type: ::String
866
+ ) -> _UpdateBrokerTypeResponseSuccess
867
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateBrokerTypeResponseSuccess
868
+
869
+ interface _UpdateBrokerStorageResponseSuccess
870
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateBrokerStorageResponse]
871
+ def cluster_arn: () -> ::String
872
+ def cluster_operation_arn: () -> ::String
873
+ end
874
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#update_broker_storage-instance_method
875
+ def update_broker_storage: (
876
+ cluster_arn: ::String,
877
+ current_version: ::String,
878
+ target_broker_ebs_volume_info: Array[
879
+ {
880
+ kafka_broker_node_id: ::String,
881
+ provisioned_throughput: {
882
+ enabled: bool?,
883
+ volume_throughput: ::Integer?
884
+ }?,
885
+ volume_size_gb: ::Integer?
886
+ },
887
+ ]
888
+ ) -> _UpdateBrokerStorageResponseSuccess
889
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateBrokerStorageResponseSuccess
890
+
891
+ interface _UpdateConfigurationResponseSuccess
892
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateConfigurationResponse]
893
+ def arn: () -> ::String
894
+ def latest_revision: () -> Types::ConfigurationRevision
895
+ end
896
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#update_configuration-instance_method
897
+ def update_configuration: (
898
+ arn: ::String,
899
+ ?description: ::String,
900
+ server_properties: ::String
901
+ ) -> _UpdateConfigurationResponseSuccess
902
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConfigurationResponseSuccess
903
+
904
+ interface _UpdateClusterConfigurationResponseSuccess
905
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateClusterConfigurationResponse]
906
+ def cluster_arn: () -> ::String
907
+ def cluster_operation_arn: () -> ::String
908
+ end
909
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#update_cluster_configuration-instance_method
910
+ def update_cluster_configuration: (
911
+ cluster_arn: ::String,
912
+ configuration_info: {
913
+ arn: ::String,
914
+ revision: ::Integer
915
+ },
916
+ current_version: ::String
917
+ ) -> _UpdateClusterConfigurationResponseSuccess
918
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateClusterConfigurationResponseSuccess
919
+
920
+ interface _UpdateClusterKafkaVersionResponseSuccess
921
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateClusterKafkaVersionResponse]
922
+ def cluster_arn: () -> ::String
923
+ def cluster_operation_arn: () -> ::String
924
+ end
925
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#update_cluster_kafka_version-instance_method
926
+ def update_cluster_kafka_version: (
927
+ cluster_arn: ::String,
928
+ ?configuration_info: {
929
+ arn: ::String,
930
+ revision: ::Integer
931
+ },
932
+ current_version: ::String,
933
+ target_kafka_version: ::String
934
+ ) -> _UpdateClusterKafkaVersionResponseSuccess
935
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateClusterKafkaVersionResponseSuccess
936
+
937
+ interface _UpdateConnectivityResponseSuccess
938
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateConnectivityResponse]
939
+ def cluster_arn: () -> ::String
940
+ def cluster_operation_arn: () -> ::String
941
+ end
942
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#update_connectivity-instance_method
943
+ def update_connectivity: (
944
+ cluster_arn: ::String,
945
+ connectivity_info: {
946
+ public_access: {
947
+ type: ::String?
948
+ }?,
949
+ vpc_connectivity: {
950
+ client_authentication: {
951
+ sasl: {
952
+ scram: {
953
+ enabled: bool?
954
+ }?,
955
+ iam: {
956
+ enabled: bool?
957
+ }?
958
+ }?,
959
+ tls: {
960
+ enabled: bool?
961
+ }?
962
+ }?
963
+ }?
964
+ },
965
+ current_version: ::String
966
+ ) -> _UpdateConnectivityResponseSuccess
967
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConnectivityResponseSuccess
968
+
969
+ interface _UpdateMonitoringResponseSuccess
970
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateMonitoringResponse]
971
+ def cluster_arn: () -> ::String
972
+ def cluster_operation_arn: () -> ::String
973
+ end
974
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#update_monitoring-instance_method
975
+ def update_monitoring: (
976
+ cluster_arn: ::String,
977
+ current_version: ::String,
978
+ ?enhanced_monitoring: ("DEFAULT" | "PER_BROKER" | "PER_TOPIC_PER_BROKER" | "PER_TOPIC_PER_PARTITION"),
979
+ ?open_monitoring: {
980
+ prometheus: {
981
+ jmx_exporter: {
982
+ enabled_in_broker: bool
983
+ }?,
984
+ node_exporter: {
985
+ enabled_in_broker: bool
986
+ }?
987
+ }
988
+ },
989
+ ?logging_info: {
990
+ broker_logs: {
991
+ cloud_watch_logs: {
992
+ enabled: bool,
993
+ log_group: ::String?
994
+ }?,
995
+ firehose: {
996
+ delivery_stream: ::String?,
997
+ enabled: bool
998
+ }?,
999
+ s3: {
1000
+ bucket: ::String?,
1001
+ enabled: bool,
1002
+ prefix: ::String?
1003
+ }?
1004
+ }
1005
+ }
1006
+ ) -> _UpdateMonitoringResponseSuccess
1007
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateMonitoringResponseSuccess
1008
+
1009
+ interface _UpdateReplicationInfoResponseSuccess
1010
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateReplicationInfoResponse]
1011
+ def replicator_arn: () -> ::String
1012
+ def replicator_state: () -> ("RUNNING" | "CREATING" | "UPDATING" | "DELETING" | "FAILED")
1013
+ end
1014
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#update_replication_info-instance_method
1015
+ def update_replication_info: (
1016
+ ?consumer_group_replication: {
1017
+ consumer_groups_to_exclude: Array[::String],
1018
+ consumer_groups_to_replicate: Array[::String],
1019
+ detect_and_copy_new_consumer_groups: bool,
1020
+ synchronise_consumer_group_offsets: bool
1021
+ },
1022
+ current_version: ::String,
1023
+ replicator_arn: ::String,
1024
+ source_kafka_cluster_arn: ::String,
1025
+ target_kafka_cluster_arn: ::String,
1026
+ ?topic_replication: {
1027
+ copy_access_control_lists_for_topics: bool,
1028
+ copy_topic_configurations: bool,
1029
+ detect_and_copy_new_topics: bool,
1030
+ topics_to_exclude: Array[::String],
1031
+ topics_to_replicate: Array[::String]
1032
+ }
1033
+ ) -> _UpdateReplicationInfoResponseSuccess
1034
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateReplicationInfoResponseSuccess
1035
+
1036
+ interface _UpdateSecurityResponseSuccess
1037
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSecurityResponse]
1038
+ def cluster_arn: () -> ::String
1039
+ def cluster_operation_arn: () -> ::String
1040
+ end
1041
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#update_security-instance_method
1042
+ def update_security: (
1043
+ ?client_authentication: {
1044
+ sasl: {
1045
+ scram: {
1046
+ enabled: bool?
1047
+ }?,
1048
+ iam: {
1049
+ enabled: bool?
1050
+ }?
1051
+ }?,
1052
+ tls: {
1053
+ certificate_authority_arn_list: Array[::String]?,
1054
+ enabled: bool?
1055
+ }?,
1056
+ unauthenticated: {
1057
+ enabled: bool?
1058
+ }?
1059
+ },
1060
+ cluster_arn: ::String,
1061
+ current_version: ::String,
1062
+ ?encryption_info: {
1063
+ encryption_at_rest: {
1064
+ data_volume_kms_key_id: ::String
1065
+ }?,
1066
+ encryption_in_transit: {
1067
+ client_broker: ("TLS" | "TLS_PLAINTEXT" | "PLAINTEXT")?,
1068
+ in_cluster: bool?
1069
+ }?
1070
+ }
1071
+ ) -> _UpdateSecurityResponseSuccess
1072
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSecurityResponseSuccess
1073
+
1074
+ interface _UpdateStorageResponseSuccess
1075
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateStorageResponse]
1076
+ def cluster_arn: () -> ::String
1077
+ def cluster_operation_arn: () -> ::String
1078
+ end
1079
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Kafka/Client.html#update_storage-instance_method
1080
+ def update_storage: (
1081
+ cluster_arn: ::String,
1082
+ current_version: ::String,
1083
+ ?provisioned_throughput: {
1084
+ enabled: bool?,
1085
+ volume_throughput: ::Integer?
1086
+ },
1087
+ ?storage_mode: ("LOCAL" | "TIERED"),
1088
+ ?volume_size_gb: ::Integer
1089
+ ) -> _UpdateStorageResponseSuccess
1090
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateStorageResponseSuccess
1091
+ end
1092
+ end
1093
+ end
1094
+