aws-sdk-kafka 1.19.0 → 1.24.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/lib/aws-sdk-kafka.rb +3 -1
- data/lib/aws-sdk-kafka/client.rb +161 -24
- data/lib/aws-sdk-kafka/client_api.rb +100 -1
- data/lib/aws-sdk-kafka/errors.rb +2 -0
- data/lib/aws-sdk-kafka/resource.rb +3 -7
- data/lib/aws-sdk-kafka/types.rb +283 -1
- metadata +5 -5
data/lib/aws-sdk-kafka/errors.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,13 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::Kafka
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::Kafka::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::Kafka::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::Kafka::Resource.new(client: client)
|
11
|
+
|
16
12
|
class Resource
|
17
13
|
|
18
14
|
# @param options ({})
|
data/lib/aws-sdk-kafka/types.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -21,6 +23,7 @@ module Aws::Kafka
|
|
21
23
|
class BadRequestException < Struct.new(
|
22
24
|
:invalid_parameter,
|
23
25
|
:message)
|
26
|
+
SENSITIVE = []
|
24
27
|
include Aws::Structure
|
25
28
|
end
|
26
29
|
|
@@ -49,6 +52,7 @@ module Aws::Kafka
|
|
49
52
|
class BrokerEBSVolumeInfo < Struct.new(
|
50
53
|
:kafka_broker_node_id,
|
51
54
|
:volume_size_gb)
|
55
|
+
SENSITIVE = []
|
52
56
|
include Aws::Structure
|
53
57
|
end
|
54
58
|
|
@@ -92,6 +96,7 @@ module Aws::Kafka
|
|
92
96
|
:cloud_watch_logs,
|
93
97
|
:firehose,
|
94
98
|
:s3)
|
99
|
+
SENSITIVE = []
|
95
100
|
include Aws::Structure
|
96
101
|
end
|
97
102
|
|
@@ -154,6 +159,7 @@ module Aws::Kafka
|
|
154
159
|
:instance_type,
|
155
160
|
:security_groups,
|
156
161
|
:storage_info)
|
162
|
+
SENSITIVE = []
|
157
163
|
include Aws::Structure
|
158
164
|
end
|
159
165
|
|
@@ -193,6 +199,7 @@ module Aws::Kafka
|
|
193
199
|
:client_vpc_ip_address,
|
194
200
|
:current_broker_software_info,
|
195
201
|
:endpoints)
|
202
|
+
SENSITIVE = []
|
196
203
|
include Aws::Structure
|
197
204
|
end
|
198
205
|
|
@@ -218,6 +225,7 @@ module Aws::Kafka
|
|
218
225
|
:configuration_arn,
|
219
226
|
:configuration_revision,
|
220
227
|
:kafka_version)
|
228
|
+
SENSITIVE = []
|
221
229
|
include Aws::Structure
|
222
230
|
end
|
223
231
|
|
@@ -240,6 +248,7 @@ module Aws::Kafka
|
|
240
248
|
#
|
241
249
|
class ClientAuthentication < Struct.new(
|
242
250
|
:tls)
|
251
|
+
SENSITIVE = []
|
243
252
|
include Aws::Structure
|
244
253
|
end
|
245
254
|
|
@@ -267,6 +276,7 @@ module Aws::Kafka
|
|
267
276
|
class CloudWatchLogs < Struct.new(
|
268
277
|
:enabled,
|
269
278
|
:log_group)
|
279
|
+
SENSITIVE = []
|
270
280
|
include Aws::Structure
|
271
281
|
end
|
272
282
|
|
@@ -369,6 +379,7 @@ module Aws::Kafka
|
|
369
379
|
:state,
|
370
380
|
:tags,
|
371
381
|
:zookeeper_connect_string)
|
382
|
+
SENSITIVE = []
|
372
383
|
include Aws::Structure
|
373
384
|
end
|
374
385
|
|
@@ -394,6 +405,10 @@ module Aws::Kafka
|
|
394
405
|
# Describes the error if the operation fails.
|
395
406
|
# @return [Types::ErrorInfo]
|
396
407
|
#
|
408
|
+
# @!attribute [rw] operation_steps
|
409
|
+
# Steps completed during the operation.
|
410
|
+
# @return [Array<Types::ClusterOperationStep>]
|
411
|
+
#
|
397
412
|
# @!attribute [rw] operation_arn
|
398
413
|
# ARN of the cluster operation.
|
399
414
|
# @return [String]
|
@@ -422,11 +437,63 @@ module Aws::Kafka
|
|
422
437
|
:creation_time,
|
423
438
|
:end_time,
|
424
439
|
:error_info,
|
440
|
+
:operation_steps,
|
425
441
|
:operation_arn,
|
426
442
|
:operation_state,
|
427
443
|
:operation_type,
|
428
444
|
:source_cluster_info,
|
429
445
|
:target_cluster_info)
|
446
|
+
SENSITIVE = []
|
447
|
+
include Aws::Structure
|
448
|
+
end
|
449
|
+
|
450
|
+
# Step taken during a cluster operation.
|
451
|
+
#
|
452
|
+
# @!attribute [rw] step_info
|
453
|
+
# Information about the step and its status.
|
454
|
+
# @return [Types::ClusterOperationStepInfo]
|
455
|
+
#
|
456
|
+
# @!attribute [rw] step_name
|
457
|
+
# The name of the step.
|
458
|
+
# @return [String]
|
459
|
+
#
|
460
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ClusterOperationStep AWS API Documentation
|
461
|
+
#
|
462
|
+
class ClusterOperationStep < Struct.new(
|
463
|
+
:step_info,
|
464
|
+
:step_name)
|
465
|
+
SENSITIVE = []
|
466
|
+
include Aws::Structure
|
467
|
+
end
|
468
|
+
|
469
|
+
# State information about the operation step.
|
470
|
+
#
|
471
|
+
# @!attribute [rw] step_status
|
472
|
+
# The steps current status.
|
473
|
+
# @return [String]
|
474
|
+
#
|
475
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ClusterOperationStepInfo AWS API Documentation
|
476
|
+
#
|
477
|
+
class ClusterOperationStepInfo < Struct.new(
|
478
|
+
:step_status)
|
479
|
+
SENSITIVE = []
|
480
|
+
include Aws::Structure
|
481
|
+
end
|
482
|
+
|
483
|
+
# Contains source Kafka versions and compatible target Kafka versions.
|
484
|
+
#
|
485
|
+
# @!attribute [rw] source_version
|
486
|
+
# @return [String]
|
487
|
+
#
|
488
|
+
# @!attribute [rw] target_versions
|
489
|
+
# @return [Array<String>]
|
490
|
+
#
|
491
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/CompatibleKafkaVersion AWS API Documentation
|
492
|
+
#
|
493
|
+
class CompatibleKafkaVersion < Struct.new(
|
494
|
+
:source_version,
|
495
|
+
:target_versions)
|
496
|
+
SENSITIVE = []
|
430
497
|
include Aws::Structure
|
431
498
|
end
|
432
499
|
|
@@ -468,6 +535,7 @@ module Aws::Kafka
|
|
468
535
|
:kafka_versions,
|
469
536
|
:latest_revision,
|
470
537
|
:name)
|
538
|
+
SENSITIVE = []
|
471
539
|
include Aws::Structure
|
472
540
|
end
|
473
541
|
|
@@ -494,6 +562,7 @@ module Aws::Kafka
|
|
494
562
|
class ConfigurationInfo < Struct.new(
|
495
563
|
:arn,
|
496
564
|
:revision)
|
565
|
+
SENSITIVE = []
|
497
566
|
include Aws::Structure
|
498
567
|
end
|
499
568
|
|
@@ -517,6 +586,7 @@ module Aws::Kafka
|
|
517
586
|
:creation_time,
|
518
587
|
:description,
|
519
588
|
:revision)
|
589
|
+
SENSITIVE = []
|
520
590
|
include Aws::Structure
|
521
591
|
end
|
522
592
|
|
@@ -533,6 +603,7 @@ module Aws::Kafka
|
|
533
603
|
class ConflictException < Struct.new(
|
534
604
|
:invalid_parameter,
|
535
605
|
:message)
|
606
|
+
SENSITIVE = []
|
536
607
|
include Aws::Structure
|
537
608
|
end
|
538
609
|
|
@@ -667,6 +738,7 @@ module Aws::Kafka
|
|
667
738
|
:number_of_broker_nodes,
|
668
739
|
:open_monitoring,
|
669
740
|
:tags)
|
741
|
+
SENSITIVE = []
|
670
742
|
include Aws::Structure
|
671
743
|
end
|
672
744
|
|
@@ -691,6 +763,7 @@ module Aws::Kafka
|
|
691
763
|
:cluster_arn,
|
692
764
|
:cluster_name,
|
693
765
|
:state)
|
766
|
+
SENSITIVE = []
|
694
767
|
include Aws::Structure
|
695
768
|
end
|
696
769
|
|
@@ -701,7 +774,7 @@ module Aws::Kafka
|
|
701
774
|
#
|
702
775
|
# {
|
703
776
|
# description: "__string",
|
704
|
-
# kafka_versions: ["__string"],
|
777
|
+
# kafka_versions: ["__string"],
|
705
778
|
# name: "__string", # required
|
706
779
|
# server_properties: "data", # required
|
707
780
|
# }
|
@@ -730,6 +803,7 @@ module Aws::Kafka
|
|
730
803
|
:kafka_versions,
|
731
804
|
:name,
|
732
805
|
:server_properties)
|
806
|
+
SENSITIVE = []
|
733
807
|
include Aws::Structure
|
734
808
|
end
|
735
809
|
|
@@ -759,6 +833,7 @@ module Aws::Kafka
|
|
759
833
|
:creation_time,
|
760
834
|
:latest_revision,
|
761
835
|
:name)
|
836
|
+
SENSITIVE = []
|
762
837
|
include Aws::Structure
|
763
838
|
end
|
764
839
|
|
@@ -781,6 +856,7 @@ module Aws::Kafka
|
|
781
856
|
class DeleteClusterRequest < Struct.new(
|
782
857
|
:cluster_arn,
|
783
858
|
:current_version)
|
859
|
+
SENSITIVE = []
|
784
860
|
include Aws::Structure
|
785
861
|
end
|
786
862
|
|
@@ -800,6 +876,7 @@ module Aws::Kafka
|
|
800
876
|
class DeleteClusterResponse < Struct.new(
|
801
877
|
:cluster_arn,
|
802
878
|
:state)
|
879
|
+
SENSITIVE = []
|
803
880
|
include Aws::Structure
|
804
881
|
end
|
805
882
|
|
@@ -817,6 +894,7 @@ module Aws::Kafka
|
|
817
894
|
#
|
818
895
|
class DescribeClusterOperationRequest < Struct.new(
|
819
896
|
:cluster_operation_arn)
|
897
|
+
SENSITIVE = []
|
820
898
|
include Aws::Structure
|
821
899
|
end
|
822
900
|
|
@@ -830,6 +908,7 @@ module Aws::Kafka
|
|
830
908
|
#
|
831
909
|
class DescribeClusterOperationResponse < Struct.new(
|
832
910
|
:cluster_operation_info)
|
911
|
+
SENSITIVE = []
|
833
912
|
include Aws::Structure
|
834
913
|
end
|
835
914
|
|
@@ -847,6 +926,7 @@ module Aws::Kafka
|
|
847
926
|
#
|
848
927
|
class DescribeClusterRequest < Struct.new(
|
849
928
|
:cluster_arn)
|
929
|
+
SENSITIVE = []
|
850
930
|
include Aws::Structure
|
851
931
|
end
|
852
932
|
|
@@ -860,6 +940,7 @@ module Aws::Kafka
|
|
860
940
|
#
|
861
941
|
class DescribeClusterResponse < Struct.new(
|
862
942
|
:cluster_info)
|
943
|
+
SENSITIVE = []
|
863
944
|
include Aws::Structure
|
864
945
|
end
|
865
946
|
|
@@ -877,6 +958,7 @@ module Aws::Kafka
|
|
877
958
|
#
|
878
959
|
class DescribeConfigurationRequest < Struct.new(
|
879
960
|
:arn)
|
961
|
+
SENSITIVE = []
|
880
962
|
include Aws::Structure
|
881
963
|
end
|
882
964
|
|
@@ -917,6 +999,7 @@ module Aws::Kafka
|
|
917
999
|
:kafka_versions,
|
918
1000
|
:latest_revision,
|
919
1001
|
:name)
|
1002
|
+
SENSITIVE = []
|
920
1003
|
include Aws::Structure
|
921
1004
|
end
|
922
1005
|
|
@@ -939,6 +1022,7 @@ module Aws::Kafka
|
|
939
1022
|
class DescribeConfigurationRevisionRequest < Struct.new(
|
940
1023
|
:arn,
|
941
1024
|
:revision)
|
1025
|
+
SENSITIVE = []
|
942
1026
|
include Aws::Structure
|
943
1027
|
end
|
944
1028
|
|
@@ -971,6 +1055,7 @@ module Aws::Kafka
|
|
971
1055
|
:description,
|
972
1056
|
:revision,
|
973
1057
|
:server_properties)
|
1058
|
+
SENSITIVE = []
|
974
1059
|
include Aws::Structure
|
975
1060
|
end
|
976
1061
|
|
@@ -993,6 +1078,7 @@ module Aws::Kafka
|
|
993
1078
|
#
|
994
1079
|
class EBSStorageInfo < Struct.new(
|
995
1080
|
:volume_size)
|
1081
|
+
SENSITIVE = []
|
996
1082
|
include Aws::Structure
|
997
1083
|
end
|
998
1084
|
|
@@ -1014,6 +1100,7 @@ module Aws::Kafka
|
|
1014
1100
|
#
|
1015
1101
|
class EncryptionAtRest < Struct.new(
|
1016
1102
|
:data_volume_kms_key_id)
|
1103
|
+
SENSITIVE = []
|
1017
1104
|
include Aws::Structure
|
1018
1105
|
end
|
1019
1106
|
|
@@ -1055,6 +1142,7 @@ module Aws::Kafka
|
|
1055
1142
|
class EncryptionInTransit < Struct.new(
|
1056
1143
|
:client_broker,
|
1057
1144
|
:in_cluster)
|
1145
|
+
SENSITIVE = []
|
1058
1146
|
include Aws::Structure
|
1059
1147
|
end
|
1060
1148
|
|
@@ -1088,6 +1176,7 @@ module Aws::Kafka
|
|
1088
1176
|
class EncryptionInfo < Struct.new(
|
1089
1177
|
:encryption_at_rest,
|
1090
1178
|
:encryption_in_transit)
|
1179
|
+
SENSITIVE = []
|
1091
1180
|
include Aws::Structure
|
1092
1181
|
end
|
1093
1182
|
|
@@ -1106,6 +1195,7 @@ module Aws::Kafka
|
|
1106
1195
|
class Error < Struct.new(
|
1107
1196
|
:invalid_parameter,
|
1108
1197
|
:message)
|
1198
|
+
SENSITIVE = []
|
1109
1199
|
include Aws::Structure
|
1110
1200
|
end
|
1111
1201
|
|
@@ -1134,6 +1224,7 @@ module Aws::Kafka
|
|
1134
1224
|
class Firehose < Struct.new(
|
1135
1225
|
:delivery_stream,
|
1136
1226
|
:enabled)
|
1227
|
+
SENSITIVE = []
|
1137
1228
|
include Aws::Structure
|
1138
1229
|
end
|
1139
1230
|
|
@@ -1152,6 +1243,7 @@ module Aws::Kafka
|
|
1152
1243
|
class ErrorInfo < Struct.new(
|
1153
1244
|
:error_code,
|
1154
1245
|
:error_string)
|
1246
|
+
SENSITIVE = []
|
1155
1247
|
include Aws::Structure
|
1156
1248
|
end
|
1157
1249
|
|
@@ -1168,6 +1260,7 @@ module Aws::Kafka
|
|
1168
1260
|
class ForbiddenException < Struct.new(
|
1169
1261
|
:invalid_parameter,
|
1170
1262
|
:message)
|
1263
|
+
SENSITIVE = []
|
1171
1264
|
include Aws::Structure
|
1172
1265
|
end
|
1173
1266
|
|
@@ -1185,6 +1278,7 @@ module Aws::Kafka
|
|
1185
1278
|
#
|
1186
1279
|
class GetBootstrapBrokersRequest < Struct.new(
|
1187
1280
|
:cluster_arn)
|
1281
|
+
SENSITIVE = []
|
1188
1282
|
include Aws::Structure
|
1189
1283
|
end
|
1190
1284
|
|
@@ -1206,6 +1300,39 @@ module Aws::Kafka
|
|
1206
1300
|
class GetBootstrapBrokersResponse < Struct.new(
|
1207
1301
|
:bootstrap_broker_string,
|
1208
1302
|
:bootstrap_broker_string_tls)
|
1303
|
+
SENSITIVE = []
|
1304
|
+
include Aws::Structure
|
1305
|
+
end
|
1306
|
+
|
1307
|
+
# @note When making an API call, you may pass GetCompatibleKafkaVersionsRequest
|
1308
|
+
# data as a hash:
|
1309
|
+
#
|
1310
|
+
# {
|
1311
|
+
# cluster_arn: "__string",
|
1312
|
+
# }
|
1313
|
+
#
|
1314
|
+
# @!attribute [rw] cluster_arn
|
1315
|
+
# @return [String]
|
1316
|
+
#
|
1317
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/GetCompatibleKafkaVersionsRequest AWS API Documentation
|
1318
|
+
#
|
1319
|
+
class GetCompatibleKafkaVersionsRequest < Struct.new(
|
1320
|
+
:cluster_arn)
|
1321
|
+
SENSITIVE = []
|
1322
|
+
include Aws::Structure
|
1323
|
+
end
|
1324
|
+
|
1325
|
+
# Response body for GetCompatibleKafkaVersions.
|
1326
|
+
#
|
1327
|
+
# @!attribute [rw] compatible_kafka_versions
|
1328
|
+
# A list of CompatibleKafkaVersion objects.
|
1329
|
+
# @return [Array<Types::CompatibleKafkaVersion>]
|
1330
|
+
#
|
1331
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/GetCompatibleKafkaVersionsResponse AWS API Documentation
|
1332
|
+
#
|
1333
|
+
class GetCompatibleKafkaVersionsResponse < Struct.new(
|
1334
|
+
:compatible_kafka_versions)
|
1335
|
+
SENSITIVE = []
|
1209
1336
|
include Aws::Structure
|
1210
1337
|
end
|
1211
1338
|
|
@@ -1222,6 +1349,7 @@ module Aws::Kafka
|
|
1222
1349
|
class InternalServerErrorException < Struct.new(
|
1223
1350
|
:invalid_parameter,
|
1224
1351
|
:message)
|
1352
|
+
SENSITIVE = []
|
1225
1353
|
include Aws::Structure
|
1226
1354
|
end
|
1227
1355
|
|
@@ -1240,6 +1368,7 @@ module Aws::Kafka
|
|
1240
1368
|
class KafkaVersion < Struct.new(
|
1241
1369
|
:version,
|
1242
1370
|
:status)
|
1371
|
+
SENSITIVE = []
|
1243
1372
|
include Aws::Structure
|
1244
1373
|
end
|
1245
1374
|
|
@@ -1267,6 +1396,7 @@ module Aws::Kafka
|
|
1267
1396
|
:cluster_arn,
|
1268
1397
|
:max_results,
|
1269
1398
|
:next_token)
|
1399
|
+
SENSITIVE = []
|
1270
1400
|
include Aws::Structure
|
1271
1401
|
end
|
1272
1402
|
|
@@ -1288,6 +1418,7 @@ module Aws::Kafka
|
|
1288
1418
|
class ListClusterOperationsResponse < Struct.new(
|
1289
1419
|
:cluster_operation_info_list,
|
1290
1420
|
:next_token)
|
1421
|
+
SENSITIVE = []
|
1291
1422
|
include Aws::Structure
|
1292
1423
|
end
|
1293
1424
|
|
@@ -1315,6 +1446,7 @@ module Aws::Kafka
|
|
1315
1446
|
:cluster_name_filter,
|
1316
1447
|
:max_results,
|
1317
1448
|
:next_token)
|
1449
|
+
SENSITIVE = []
|
1318
1450
|
include Aws::Structure
|
1319
1451
|
end
|
1320
1452
|
|
@@ -1337,6 +1469,7 @@ module Aws::Kafka
|
|
1337
1469
|
class ListClustersResponse < Struct.new(
|
1338
1470
|
:cluster_info_list,
|
1339
1471
|
:next_token)
|
1472
|
+
SENSITIVE = []
|
1340
1473
|
include Aws::Structure
|
1341
1474
|
end
|
1342
1475
|
|
@@ -1364,6 +1497,7 @@ module Aws::Kafka
|
|
1364
1497
|
:arn,
|
1365
1498
|
:max_results,
|
1366
1499
|
:next_token)
|
1500
|
+
SENSITIVE = []
|
1367
1501
|
include Aws::Structure
|
1368
1502
|
end
|
1369
1503
|
|
@@ -1382,6 +1516,7 @@ module Aws::Kafka
|
|
1382
1516
|
class ListConfigurationRevisionsResponse < Struct.new(
|
1383
1517
|
:next_token,
|
1384
1518
|
:revisions)
|
1519
|
+
SENSITIVE = []
|
1385
1520
|
include Aws::Structure
|
1386
1521
|
end
|
1387
1522
|
|
@@ -1404,6 +1539,7 @@ module Aws::Kafka
|
|
1404
1539
|
class ListConfigurationsRequest < Struct.new(
|
1405
1540
|
:max_results,
|
1406
1541
|
:next_token)
|
1542
|
+
SENSITIVE = []
|
1407
1543
|
include Aws::Structure
|
1408
1544
|
end
|
1409
1545
|
|
@@ -1426,6 +1562,7 @@ module Aws::Kafka
|
|
1426
1562
|
class ListConfigurationsResponse < Struct.new(
|
1427
1563
|
:configurations,
|
1428
1564
|
:next_token)
|
1565
|
+
SENSITIVE = []
|
1429
1566
|
include Aws::Structure
|
1430
1567
|
end
|
1431
1568
|
|
@@ -1448,6 +1585,7 @@ module Aws::Kafka
|
|
1448
1585
|
class ListKafkaVersionsRequest < Struct.new(
|
1449
1586
|
:max_results,
|
1450
1587
|
:next_token)
|
1588
|
+
SENSITIVE = []
|
1451
1589
|
include Aws::Structure
|
1452
1590
|
end
|
1453
1591
|
|
@@ -1466,6 +1604,7 @@ module Aws::Kafka
|
|
1466
1604
|
class ListKafkaVersionsResponse < Struct.new(
|
1467
1605
|
:kafka_versions,
|
1468
1606
|
:next_token)
|
1607
|
+
SENSITIVE = []
|
1469
1608
|
include Aws::Structure
|
1470
1609
|
end
|
1471
1610
|
|
@@ -1493,6 +1632,7 @@ module Aws::Kafka
|
|
1493
1632
|
:cluster_arn,
|
1494
1633
|
:max_results,
|
1495
1634
|
:next_token)
|
1635
|
+
SENSITIVE = []
|
1496
1636
|
include Aws::Structure
|
1497
1637
|
end
|
1498
1638
|
|
@@ -1514,6 +1654,7 @@ module Aws::Kafka
|
|
1514
1654
|
class ListNodesResponse < Struct.new(
|
1515
1655
|
:next_token,
|
1516
1656
|
:node_info_list)
|
1657
|
+
SENSITIVE = []
|
1517
1658
|
include Aws::Structure
|
1518
1659
|
end
|
1519
1660
|
|
@@ -1531,6 +1672,7 @@ module Aws::Kafka
|
|
1531
1672
|
#
|
1532
1673
|
class ListTagsForResourceRequest < Struct.new(
|
1533
1674
|
:resource_arn)
|
1675
|
+
SENSITIVE = []
|
1534
1676
|
include Aws::Structure
|
1535
1677
|
end
|
1536
1678
|
|
@@ -1544,6 +1686,7 @@ module Aws::Kafka
|
|
1544
1686
|
#
|
1545
1687
|
class ListTagsForResourceResponse < Struct.new(
|
1546
1688
|
:tags)
|
1689
|
+
SENSITIVE = []
|
1547
1690
|
include Aws::Structure
|
1548
1691
|
end
|
1549
1692
|
|
@@ -1582,6 +1725,7 @@ module Aws::Kafka
|
|
1582
1725
|
#
|
1583
1726
|
class LoggingInfo < Struct.new(
|
1584
1727
|
:broker_logs)
|
1728
|
+
SENSITIVE = []
|
1585
1729
|
include Aws::Structure
|
1586
1730
|
end
|
1587
1731
|
|
@@ -1610,6 +1754,9 @@ module Aws::Kafka
|
|
1610
1754
|
# Amazon CloudWatch for this cluster.
|
1611
1755
|
# @return [String]
|
1612
1756
|
#
|
1757
|
+
# @!attribute [rw] kafka_version
|
1758
|
+
# @return [String]
|
1759
|
+
#
|
1613
1760
|
# @!attribute [rw] logging_info
|
1614
1761
|
# LoggingInfo details.
|
1615
1762
|
# @return [Types::LoggingInfo]
|
@@ -1622,7 +1769,9 @@ module Aws::Kafka
|
|
1622
1769
|
:number_of_broker_nodes,
|
1623
1770
|
:open_monitoring,
|
1624
1771
|
:enhanced_monitoring,
|
1772
|
+
:kafka_version,
|
1625
1773
|
:logging_info)
|
1774
|
+
SENSITIVE = []
|
1626
1775
|
include Aws::Structure
|
1627
1776
|
end
|
1628
1777
|
|
@@ -1661,6 +1810,7 @@ module Aws::Kafka
|
|
1661
1810
|
:node_arn,
|
1662
1811
|
:node_type,
|
1663
1812
|
:zookeeper_node_info)
|
1813
|
+
SENSITIVE = []
|
1664
1814
|
include Aws::Structure
|
1665
1815
|
end
|
1666
1816
|
|
@@ -1677,6 +1827,7 @@ module Aws::Kafka
|
|
1677
1827
|
class NotFoundException < Struct.new(
|
1678
1828
|
:invalid_parameter,
|
1679
1829
|
:message)
|
1830
|
+
SENSITIVE = []
|
1680
1831
|
include Aws::Structure
|
1681
1832
|
end
|
1682
1833
|
|
@@ -1693,6 +1844,7 @@ module Aws::Kafka
|
|
1693
1844
|
class ServiceUnavailableException < Struct.new(
|
1694
1845
|
:invalid_parameter,
|
1695
1846
|
:message)
|
1847
|
+
SENSITIVE = []
|
1696
1848
|
include Aws::Structure
|
1697
1849
|
end
|
1698
1850
|
|
@@ -1713,6 +1865,7 @@ module Aws::Kafka
|
|
1713
1865
|
class StateInfo < Struct.new(
|
1714
1866
|
:code,
|
1715
1867
|
:message)
|
1868
|
+
SENSITIVE = []
|
1716
1869
|
include Aws::Structure
|
1717
1870
|
end
|
1718
1871
|
|
@@ -1736,6 +1889,7 @@ module Aws::Kafka
|
|
1736
1889
|
#
|
1737
1890
|
class StorageInfo < Struct.new(
|
1738
1891
|
:ebs_storage_info)
|
1892
|
+
SENSITIVE = []
|
1739
1893
|
include Aws::Structure
|
1740
1894
|
end
|
1741
1895
|
|
@@ -1763,6 +1917,7 @@ module Aws::Kafka
|
|
1763
1917
|
class TagResourceRequest < Struct.new(
|
1764
1918
|
:resource_arn,
|
1765
1919
|
:tags)
|
1920
|
+
SENSITIVE = []
|
1766
1921
|
include Aws::Structure
|
1767
1922
|
end
|
1768
1923
|
|
@@ -1783,6 +1938,7 @@ module Aws::Kafka
|
|
1783
1938
|
#
|
1784
1939
|
class Tls < Struct.new(
|
1785
1940
|
:certificate_authority_arn_list)
|
1941
|
+
SENSITIVE = []
|
1786
1942
|
include Aws::Structure
|
1787
1943
|
end
|
1788
1944
|
|
@@ -1799,6 +1955,7 @@ module Aws::Kafka
|
|
1799
1955
|
class TooManyRequestsException < Struct.new(
|
1800
1956
|
:invalid_parameter,
|
1801
1957
|
:message)
|
1958
|
+
SENSITIVE = []
|
1802
1959
|
include Aws::Structure
|
1803
1960
|
end
|
1804
1961
|
|
@@ -1815,6 +1972,7 @@ module Aws::Kafka
|
|
1815
1972
|
class UnauthorizedException < Struct.new(
|
1816
1973
|
:invalid_parameter,
|
1817
1974
|
:message)
|
1975
|
+
SENSITIVE = []
|
1818
1976
|
include Aws::Structure
|
1819
1977
|
end
|
1820
1978
|
|
@@ -1837,6 +1995,7 @@ module Aws::Kafka
|
|
1837
1995
|
class UntagResourceRequest < Struct.new(
|
1838
1996
|
:resource_arn,
|
1839
1997
|
:tag_keys)
|
1998
|
+
SENSITIVE = []
|
1840
1999
|
include Aws::Structure
|
1841
2000
|
end
|
1842
2001
|
|
@@ -1869,6 +2028,7 @@ module Aws::Kafka
|
|
1869
2028
|
:cluster_arn,
|
1870
2029
|
:current_version,
|
1871
2030
|
:target_number_of_broker_nodes)
|
2031
|
+
SENSITIVE = []
|
1872
2032
|
include Aws::Structure
|
1873
2033
|
end
|
1874
2034
|
|
@@ -1887,6 +2047,7 @@ module Aws::Kafka
|
|
1887
2047
|
class UpdateBrokerCountResponse < Struct.new(
|
1888
2048
|
:cluster_arn,
|
1889
2049
|
:cluster_operation_arn)
|
2050
|
+
SENSITIVE = []
|
1890
2051
|
include Aws::Structure
|
1891
2052
|
end
|
1892
2053
|
|
@@ -1931,6 +2092,7 @@ module Aws::Kafka
|
|
1931
2092
|
:cluster_arn,
|
1932
2093
|
:current_version,
|
1933
2094
|
:target_broker_ebs_volume_info)
|
2095
|
+
SENSITIVE = []
|
1934
2096
|
include Aws::Structure
|
1935
2097
|
end
|
1936
2098
|
|
@@ -1949,6 +2111,7 @@ module Aws::Kafka
|
|
1949
2111
|
class UpdateBrokerStorageResponse < Struct.new(
|
1950
2112
|
:cluster_arn,
|
1951
2113
|
:cluster_operation_arn)
|
2114
|
+
SENSITIVE = []
|
1952
2115
|
include Aws::Structure
|
1953
2116
|
end
|
1954
2117
|
|
@@ -1984,6 +2147,7 @@ module Aws::Kafka
|
|
1984
2147
|
:cluster_arn,
|
1985
2148
|
:configuration_info,
|
1986
2149
|
:current_version)
|
2150
|
+
SENSITIVE = []
|
1987
2151
|
include Aws::Structure
|
1988
2152
|
end
|
1989
2153
|
|
@@ -2002,6 +2166,67 @@ module Aws::Kafka
|
|
2002
2166
|
class UpdateClusterConfigurationResponse < Struct.new(
|
2003
2167
|
:cluster_arn,
|
2004
2168
|
:cluster_operation_arn)
|
2169
|
+
SENSITIVE = []
|
2170
|
+
include Aws::Structure
|
2171
|
+
end
|
2172
|
+
|
2173
|
+
# Request body for UpdateClusterKafkaVersion.
|
2174
|
+
#
|
2175
|
+
# @note When making an API call, you may pass UpdateClusterKafkaVersionRequest
|
2176
|
+
# data as a hash:
|
2177
|
+
#
|
2178
|
+
# {
|
2179
|
+
# cluster_arn: "__string", # required
|
2180
|
+
# configuration_info: {
|
2181
|
+
# arn: "__string", # required
|
2182
|
+
# revision: 1, # required
|
2183
|
+
# },
|
2184
|
+
# current_version: "__string", # required
|
2185
|
+
# target_kafka_version: "__string", # required
|
2186
|
+
# }
|
2187
|
+
#
|
2188
|
+
# @!attribute [rw] cluster_arn
|
2189
|
+
# @return [String]
|
2190
|
+
#
|
2191
|
+
# @!attribute [rw] configuration_info
|
2192
|
+
# Specifies the configuration to use for the brokers.
|
2193
|
+
# @return [Types::ConfigurationInfo]
|
2194
|
+
#
|
2195
|
+
# @!attribute [rw] current_version
|
2196
|
+
# Current cluster version.
|
2197
|
+
# @return [String]
|
2198
|
+
#
|
2199
|
+
# @!attribute [rw] target_kafka_version
|
2200
|
+
# Target Kafka version.
|
2201
|
+
# @return [String]
|
2202
|
+
#
|
2203
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/UpdateClusterKafkaVersionRequest AWS API Documentation
|
2204
|
+
#
|
2205
|
+
class UpdateClusterKafkaVersionRequest < Struct.new(
|
2206
|
+
:cluster_arn,
|
2207
|
+
:configuration_info,
|
2208
|
+
:current_version,
|
2209
|
+
:target_kafka_version)
|
2210
|
+
SENSITIVE = []
|
2211
|
+
include Aws::Structure
|
2212
|
+
end
|
2213
|
+
|
2214
|
+
# Response body for UpdateClusterKafkaVersion.
|
2215
|
+
#
|
2216
|
+
# @!attribute [rw] cluster_arn
|
2217
|
+
# The Amazon Resource Name (ARN) of the cluster.
|
2218
|
+
# @return [String]
|
2219
|
+
#
|
2220
|
+
# @!attribute [rw] cluster_operation_arn
|
2221
|
+
# The Amazon Resource Name (ARN) of the cluster operation.
|
2222
|
+
# @return [String]
|
2223
|
+
#
|
2224
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/UpdateClusterKafkaVersionResponse AWS API Documentation
|
2225
|
+
#
|
2226
|
+
class UpdateClusterKafkaVersionResponse < Struct.new(
|
2227
|
+
:cluster_arn,
|
2228
|
+
:cluster_operation_arn)
|
2229
|
+
SENSITIVE = []
|
2005
2230
|
include Aws::Structure
|
2006
2231
|
end
|
2007
2232
|
|
@@ -2072,6 +2297,7 @@ module Aws::Kafka
|
|
2072
2297
|
:enhanced_monitoring,
|
2073
2298
|
:open_monitoring,
|
2074
2299
|
:logging_info)
|
2300
|
+
SENSITIVE = []
|
2075
2301
|
include Aws::Structure
|
2076
2302
|
end
|
2077
2303
|
|
@@ -2090,6 +2316,7 @@ module Aws::Kafka
|
|
2090
2316
|
class UpdateMonitoringResponse < Struct.new(
|
2091
2317
|
:cluster_arn,
|
2092
2318
|
:cluster_operation_arn)
|
2319
|
+
SENSITIVE = []
|
2093
2320
|
include Aws::Structure
|
2094
2321
|
end
|
2095
2322
|
|
@@ -2123,6 +2350,7 @@ module Aws::Kafka
|
|
2123
2350
|
:endpoints,
|
2124
2351
|
:zookeeper_id,
|
2125
2352
|
:zookeeper_version)
|
2353
|
+
SENSITIVE = []
|
2126
2354
|
include Aws::Structure
|
2127
2355
|
end
|
2128
2356
|
|
@@ -2136,6 +2364,7 @@ module Aws::Kafka
|
|
2136
2364
|
#
|
2137
2365
|
class OpenMonitoring < Struct.new(
|
2138
2366
|
:prometheus)
|
2367
|
+
SENSITIVE = []
|
2139
2368
|
include Aws::Structure
|
2140
2369
|
end
|
2141
2370
|
|
@@ -2163,6 +2392,7 @@ module Aws::Kafka
|
|
2163
2392
|
#
|
2164
2393
|
class OpenMonitoringInfo < Struct.new(
|
2165
2394
|
:prometheus)
|
2395
|
+
SENSITIVE = []
|
2166
2396
|
include Aws::Structure
|
2167
2397
|
end
|
2168
2398
|
|
@@ -2181,6 +2411,7 @@ module Aws::Kafka
|
|
2181
2411
|
class Prometheus < Struct.new(
|
2182
2412
|
:jmx_exporter,
|
2183
2413
|
:node_exporter)
|
2414
|
+
SENSITIVE = []
|
2184
2415
|
include Aws::Structure
|
2185
2416
|
end
|
2186
2417
|
|
@@ -2211,6 +2442,52 @@ module Aws::Kafka
|
|
2211
2442
|
class PrometheusInfo < Struct.new(
|
2212
2443
|
:jmx_exporter,
|
2213
2444
|
:node_exporter)
|
2445
|
+
SENSITIVE = []
|
2446
|
+
include Aws::Structure
|
2447
|
+
end
|
2448
|
+
|
2449
|
+
# Request body for RebootBrokerNode action.
|
2450
|
+
#
|
2451
|
+
# @note When making an API call, you may pass RebootBrokerRequest
|
2452
|
+
# data as a hash:
|
2453
|
+
#
|
2454
|
+
# {
|
2455
|
+
# broker_ids: ["__string"], # required
|
2456
|
+
# cluster_arn: "__string", # required
|
2457
|
+
# }
|
2458
|
+
#
|
2459
|
+
# @!attribute [rw] broker_ids
|
2460
|
+
# The list of broker ids to be rebooted.
|
2461
|
+
# @return [Array<String>]
|
2462
|
+
#
|
2463
|
+
# @!attribute [rw] cluster_arn
|
2464
|
+
# @return [String]
|
2465
|
+
#
|
2466
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/RebootBrokerRequest AWS API Documentation
|
2467
|
+
#
|
2468
|
+
class RebootBrokerRequest < Struct.new(
|
2469
|
+
:broker_ids,
|
2470
|
+
:cluster_arn)
|
2471
|
+
SENSITIVE = []
|
2472
|
+
include Aws::Structure
|
2473
|
+
end
|
2474
|
+
|
2475
|
+
# Response body for RebootBrokers action.
|
2476
|
+
#
|
2477
|
+
# @!attribute [rw] cluster_arn
|
2478
|
+
# The Amazon Resource Name (ARN) of the cluster.
|
2479
|
+
# @return [String]
|
2480
|
+
#
|
2481
|
+
# @!attribute [rw] cluster_operation_arn
|
2482
|
+
# The Amazon Resource Name (ARN) of the cluster operation.
|
2483
|
+
# @return [String]
|
2484
|
+
#
|
2485
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/RebootBrokerResponse AWS API Documentation
|
2486
|
+
#
|
2487
|
+
class RebootBrokerResponse < Struct.new(
|
2488
|
+
:cluster_arn,
|
2489
|
+
:cluster_operation_arn)
|
2490
|
+
SENSITIVE = []
|
2214
2491
|
include Aws::Structure
|
2215
2492
|
end
|
2216
2493
|
|
@@ -2244,6 +2521,7 @@ module Aws::Kafka
|
|
2244
2521
|
:bucket,
|
2245
2522
|
:enabled,
|
2246
2523
|
:prefix)
|
2524
|
+
SENSITIVE = []
|
2247
2525
|
include Aws::Structure
|
2248
2526
|
end
|
2249
2527
|
|
@@ -2257,6 +2535,7 @@ module Aws::Kafka
|
|
2257
2535
|
#
|
2258
2536
|
class JmxExporter < Struct.new(
|
2259
2537
|
:enabled_in_broker)
|
2538
|
+
SENSITIVE = []
|
2260
2539
|
include Aws::Structure
|
2261
2540
|
end
|
2262
2541
|
|
@@ -2277,6 +2556,7 @@ module Aws::Kafka
|
|
2277
2556
|
#
|
2278
2557
|
class JmxExporterInfo < Struct.new(
|
2279
2558
|
:enabled_in_broker)
|
2559
|
+
SENSITIVE = []
|
2280
2560
|
include Aws::Structure
|
2281
2561
|
end
|
2282
2562
|
|
@@ -2290,6 +2570,7 @@ module Aws::Kafka
|
|
2290
2570
|
#
|
2291
2571
|
class NodeExporter < Struct.new(
|
2292
2572
|
:enabled_in_broker)
|
2573
|
+
SENSITIVE = []
|
2293
2574
|
include Aws::Structure
|
2294
2575
|
end
|
2295
2576
|
|
@@ -2310,6 +2591,7 @@ module Aws::Kafka
|
|
2310
2591
|
#
|
2311
2592
|
class NodeExporterInfo < Struct.new(
|
2312
2593
|
:enabled_in_broker)
|
2594
|
+
SENSITIVE = []
|
2313
2595
|
include Aws::Structure
|
2314
2596
|
end
|
2315
2597
|
|