aws-sdk-kafka 1.51.0 → 1.53.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-kafka/client.rb +64 -1
- data/lib/aws-sdk-kafka/client_api.rb +34 -0
- data/lib/aws-sdk-kafka/endpoint_provider.rb +35 -95
- data/lib/aws-sdk-kafka/endpoints.rb +14 -0
- data/lib/aws-sdk-kafka/plugins/endpoints.rb +2 -0
- data/lib/aws-sdk-kafka/types.rb +83 -970
- data/lib/aws-sdk-kafka.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-kafka/types.rb
CHANGED
@@ -12,14 +12,6 @@ module Aws::Kafka
|
|
12
12
|
|
13
13
|
# Request body for BatchAssociateScramSecret.
|
14
14
|
#
|
15
|
-
# @note When making an API call, you may pass BatchAssociateScramSecretRequest
|
16
|
-
# data as a hash:
|
17
|
-
#
|
18
|
-
# {
|
19
|
-
# cluster_arn: "__string", # required
|
20
|
-
# secret_arn_list: ["__string"], # required
|
21
|
-
# }
|
22
|
-
#
|
23
15
|
# @!attribute [rw] cluster_arn
|
24
16
|
# @return [String]
|
25
17
|
#
|
@@ -76,18 +68,6 @@ module Aws::Kafka
|
|
76
68
|
# must be set to the keyword ALL. This means the changes apply to all
|
77
69
|
# the brokers in the cluster.
|
78
70
|
#
|
79
|
-
# @note When making an API call, you may pass BrokerEBSVolumeInfo
|
80
|
-
# data as a hash:
|
81
|
-
#
|
82
|
-
# {
|
83
|
-
# kafka_broker_node_id: "__string", # required
|
84
|
-
# provisioned_throughput: {
|
85
|
-
# enabled: false,
|
86
|
-
# volume_throughput: 1,
|
87
|
-
# },
|
88
|
-
# volume_size_gb: 1,
|
89
|
-
# }
|
90
|
-
#
|
91
71
|
# @!attribute [rw] kafka_broker_node_id
|
92
72
|
# The ID of the broker to update.
|
93
73
|
# @return [String]
|
@@ -112,25 +92,6 @@ module Aws::Kafka
|
|
112
92
|
|
113
93
|
# The broker logs configuration for this MSK cluster.
|
114
94
|
#
|
115
|
-
# @note When making an API call, you may pass BrokerLogs
|
116
|
-
# data as a hash:
|
117
|
-
#
|
118
|
-
# {
|
119
|
-
# cloud_watch_logs: {
|
120
|
-
# enabled: false, # required
|
121
|
-
# log_group: "__string",
|
122
|
-
# },
|
123
|
-
# firehose: {
|
124
|
-
# delivery_stream: "__string",
|
125
|
-
# enabled: false, # required
|
126
|
-
# },
|
127
|
-
# s3: {
|
128
|
-
# bucket: "__string",
|
129
|
-
# enabled: false, # required
|
130
|
-
# prefix: "__string",
|
131
|
-
# },
|
132
|
-
# }
|
133
|
-
#
|
134
95
|
# @!attribute [rw] cloud_watch_logs
|
135
96
|
# Details of the CloudWatch Logs destination for broker logs.
|
136
97
|
# @return [Types::CloudWatchLogs]
|
@@ -157,30 +118,6 @@ module Aws::Kafka
|
|
157
118
|
# Describes the setup to be used for Apache Kafka broker nodes in the
|
158
119
|
# cluster.
|
159
120
|
#
|
160
|
-
# @note When making an API call, you may pass BrokerNodeGroupInfo
|
161
|
-
# data as a hash:
|
162
|
-
#
|
163
|
-
# {
|
164
|
-
# broker_az_distribution: "DEFAULT", # accepts DEFAULT
|
165
|
-
# client_subnets: ["__string"], # required
|
166
|
-
# instance_type: "__stringMin5Max32", # required
|
167
|
-
# security_groups: ["__string"],
|
168
|
-
# storage_info: {
|
169
|
-
# ebs_storage_info: {
|
170
|
-
# provisioned_throughput: {
|
171
|
-
# enabled: false,
|
172
|
-
# volume_throughput: 1,
|
173
|
-
# },
|
174
|
-
# volume_size: 1,
|
175
|
-
# },
|
176
|
-
# },
|
177
|
-
# connectivity_info: {
|
178
|
-
# public_access: {
|
179
|
-
# type: "__string",
|
180
|
-
# },
|
181
|
-
# },
|
182
|
-
# }
|
183
|
-
#
|
184
121
|
# @!attribute [rw] broker_az_distribution
|
185
122
|
# The distribution of broker nodes across Availability Zones.
|
186
123
|
# @return [String]
|
@@ -297,27 +234,6 @@ module Aws::Kafka
|
|
297
234
|
|
298
235
|
# Includes all client authentication information.
|
299
236
|
#
|
300
|
-
# @note When making an API call, you may pass ClientAuthentication
|
301
|
-
# data as a hash:
|
302
|
-
#
|
303
|
-
# {
|
304
|
-
# sasl: {
|
305
|
-
# scram: {
|
306
|
-
# enabled: false,
|
307
|
-
# },
|
308
|
-
# iam: {
|
309
|
-
# enabled: false,
|
310
|
-
# },
|
311
|
-
# },
|
312
|
-
# tls: {
|
313
|
-
# certificate_authority_arn_list: ["__string"],
|
314
|
-
# enabled: false,
|
315
|
-
# },
|
316
|
-
# unauthenticated: {
|
317
|
-
# enabled: false,
|
318
|
-
# },
|
319
|
-
# }
|
320
|
-
#
|
321
237
|
# @!attribute [rw] sasl
|
322
238
|
# @return [Types::Sasl]
|
323
239
|
#
|
@@ -341,14 +257,6 @@ module Aws::Kafka
|
|
341
257
|
|
342
258
|
# Details of the CloudWatch Logs destination for broker logs.
|
343
259
|
#
|
344
|
-
# @note When making an API call, you may pass CloudWatchLogs
|
345
|
-
# data as a hash:
|
346
|
-
#
|
347
|
-
# {
|
348
|
-
# enabled: false, # required
|
349
|
-
# log_group: "__string",
|
350
|
-
# }
|
351
|
-
#
|
352
260
|
# @!attribute [rw] enabled
|
353
261
|
# Specifies whether broker logs get sent to the specified CloudWatch
|
354
262
|
# Logs destination.
|
@@ -458,6 +366,10 @@ module Aws::Kafka
|
|
458
366
|
# port.
|
459
367
|
# @return [String]
|
460
368
|
#
|
369
|
+
# @!attribute [rw] storage_mode
|
370
|
+
# This controls storage mode for supported storage tiers.
|
371
|
+
# @return [String]
|
372
|
+
#
|
461
373
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ClusterInfo AWS API Documentation
|
462
374
|
#
|
463
375
|
class ClusterInfo < Struct.new(
|
@@ -478,7 +390,8 @@ module Aws::Kafka
|
|
478
390
|
:state_info,
|
479
391
|
:tags,
|
480
392
|
:zookeeper_connect_string,
|
481
|
-
:zookeeper_connect_string_tls
|
393
|
+
:zookeeper_connect_string_tls,
|
394
|
+
:storage_mode)
|
482
395
|
SENSITIVE = []
|
483
396
|
include Aws::Structure
|
484
397
|
end
|
@@ -647,14 +560,6 @@ module Aws::Kafka
|
|
647
560
|
|
648
561
|
# Specifies the configuration to use for the brokers.
|
649
562
|
#
|
650
|
-
# @note When making an API call, you may pass ConfigurationInfo
|
651
|
-
# data as a hash:
|
652
|
-
#
|
653
|
-
# {
|
654
|
-
# arn: "__string", # required
|
655
|
-
# revision: 1, # required
|
656
|
-
# }
|
657
|
-
#
|
658
563
|
# @!attribute [rw] arn
|
659
564
|
# ARN of the configuration to use.
|
660
565
|
# @return [String]
|
@@ -715,15 +620,6 @@ module Aws::Kafka
|
|
715
620
|
|
716
621
|
# Information about the broker access configuration.
|
717
622
|
#
|
718
|
-
# @note When making an API call, you may pass ConnectivityInfo
|
719
|
-
# data as a hash:
|
720
|
-
#
|
721
|
-
# {
|
722
|
-
# public_access: {
|
723
|
-
# type: "__string",
|
724
|
-
# },
|
725
|
-
# }
|
726
|
-
#
|
727
623
|
# @!attribute [rw] public_access
|
728
624
|
# Public access control for brokers.
|
729
625
|
# @return [Types::PublicAccess]
|
@@ -738,96 +634,6 @@ module Aws::Kafka
|
|
738
634
|
|
739
635
|
# Creates a cluster.
|
740
636
|
#
|
741
|
-
# @note When making an API call, you may pass CreateClusterRequest
|
742
|
-
# data as a hash:
|
743
|
-
#
|
744
|
-
# {
|
745
|
-
# broker_node_group_info: { # required
|
746
|
-
# broker_az_distribution: "DEFAULT", # accepts DEFAULT
|
747
|
-
# client_subnets: ["__string"], # required
|
748
|
-
# instance_type: "__stringMin5Max32", # required
|
749
|
-
# security_groups: ["__string"],
|
750
|
-
# storage_info: {
|
751
|
-
# ebs_storage_info: {
|
752
|
-
# provisioned_throughput: {
|
753
|
-
# enabled: false,
|
754
|
-
# volume_throughput: 1,
|
755
|
-
# },
|
756
|
-
# volume_size: 1,
|
757
|
-
# },
|
758
|
-
# },
|
759
|
-
# connectivity_info: {
|
760
|
-
# public_access: {
|
761
|
-
# type: "__string",
|
762
|
-
# },
|
763
|
-
# },
|
764
|
-
# },
|
765
|
-
# client_authentication: {
|
766
|
-
# sasl: {
|
767
|
-
# scram: {
|
768
|
-
# enabled: false,
|
769
|
-
# },
|
770
|
-
# iam: {
|
771
|
-
# enabled: false,
|
772
|
-
# },
|
773
|
-
# },
|
774
|
-
# tls: {
|
775
|
-
# certificate_authority_arn_list: ["__string"],
|
776
|
-
# enabled: false,
|
777
|
-
# },
|
778
|
-
# unauthenticated: {
|
779
|
-
# enabled: false,
|
780
|
-
# },
|
781
|
-
# },
|
782
|
-
# cluster_name: "__stringMin1Max64", # required
|
783
|
-
# configuration_info: {
|
784
|
-
# arn: "__string", # required
|
785
|
-
# revision: 1, # required
|
786
|
-
# },
|
787
|
-
# encryption_info: {
|
788
|
-
# encryption_at_rest: {
|
789
|
-
# data_volume_kms_key_id: "__string", # required
|
790
|
-
# },
|
791
|
-
# encryption_in_transit: {
|
792
|
-
# client_broker: "TLS", # accepts TLS, TLS_PLAINTEXT, PLAINTEXT
|
793
|
-
# in_cluster: false,
|
794
|
-
# },
|
795
|
-
# },
|
796
|
-
# enhanced_monitoring: "DEFAULT", # accepts DEFAULT, PER_BROKER, PER_TOPIC_PER_BROKER, PER_TOPIC_PER_PARTITION
|
797
|
-
# kafka_version: "__stringMin1Max128", # required
|
798
|
-
# logging_info: {
|
799
|
-
# broker_logs: { # required
|
800
|
-
# cloud_watch_logs: {
|
801
|
-
# enabled: false, # required
|
802
|
-
# log_group: "__string",
|
803
|
-
# },
|
804
|
-
# firehose: {
|
805
|
-
# delivery_stream: "__string",
|
806
|
-
# enabled: false, # required
|
807
|
-
# },
|
808
|
-
# s3: {
|
809
|
-
# bucket: "__string",
|
810
|
-
# enabled: false, # required
|
811
|
-
# prefix: "__string",
|
812
|
-
# },
|
813
|
-
# },
|
814
|
-
# },
|
815
|
-
# number_of_broker_nodes: 1, # required
|
816
|
-
# open_monitoring: {
|
817
|
-
# prometheus: { # required
|
818
|
-
# jmx_exporter: {
|
819
|
-
# enabled_in_broker: false, # required
|
820
|
-
# },
|
821
|
-
# node_exporter: {
|
822
|
-
# enabled_in_broker: false, # required
|
823
|
-
# },
|
824
|
-
# },
|
825
|
-
# },
|
826
|
-
# tags: {
|
827
|
-
# "__string" => "__string",
|
828
|
-
# },
|
829
|
-
# }
|
830
|
-
#
|
831
637
|
# @!attribute [rw] broker_node_group_info
|
832
638
|
# Information about the brokers.
|
833
639
|
# @return [Types::BrokerNodeGroupInfo]
|
@@ -875,6 +681,10 @@ module Aws::Kafka
|
|
875
681
|
# Create tags when creating the cluster.
|
876
682
|
# @return [Hash<String,String>]
|
877
683
|
#
|
684
|
+
# @!attribute [rw] storage_mode
|
685
|
+
# This controls storage mode for supported storage tiers.
|
686
|
+
# @return [String]
|
687
|
+
#
|
878
688
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/CreateClusterRequest AWS API Documentation
|
879
689
|
#
|
880
690
|
class CreateClusterRequest < Struct.new(
|
@@ -888,7 +698,8 @@ module Aws::Kafka
|
|
888
698
|
:logging_info,
|
889
699
|
:number_of_broker_nodes,
|
890
700
|
:open_monitoring,
|
891
|
-
:tags
|
701
|
+
:tags,
|
702
|
+
:storage_mode)
|
892
703
|
SENSITIVE = []
|
893
704
|
include Aws::Structure
|
894
705
|
end
|
@@ -921,16 +732,6 @@ module Aws::Kafka
|
|
921
732
|
|
922
733
|
# Request body for CreateConfiguration.
|
923
734
|
#
|
924
|
-
# @note When making an API call, you may pass CreateConfigurationRequest
|
925
|
-
# data as a hash:
|
926
|
-
#
|
927
|
-
# {
|
928
|
-
# description: "__string",
|
929
|
-
# kafka_versions: ["__string"],
|
930
|
-
# name: "__string", # required
|
931
|
-
# server_properties: "data", # required
|
932
|
-
# }
|
933
|
-
#
|
934
735
|
# @!attribute [rw] description
|
935
736
|
# The description of the configuration.
|
936
737
|
# @return [String]
|
@@ -995,14 +796,6 @@ module Aws::Kafka
|
|
995
796
|
include Aws::Structure
|
996
797
|
end
|
997
798
|
|
998
|
-
# @note When making an API call, you may pass DeleteClusterRequest
|
999
|
-
# data as a hash:
|
1000
|
-
#
|
1001
|
-
# {
|
1002
|
-
# cluster_arn: "__string", # required
|
1003
|
-
# current_version: "__string",
|
1004
|
-
# }
|
1005
|
-
#
|
1006
799
|
# @!attribute [rw] cluster_arn
|
1007
800
|
# @return [String]
|
1008
801
|
#
|
@@ -1041,13 +834,6 @@ module Aws::Kafka
|
|
1041
834
|
|
1042
835
|
# Request body for DeleteConfiguration.
|
1043
836
|
#
|
1044
|
-
# @note When making an API call, you may pass DeleteConfigurationRequest
|
1045
|
-
# data as a hash:
|
1046
|
-
#
|
1047
|
-
# {
|
1048
|
-
# arn: "__string", # required
|
1049
|
-
# }
|
1050
|
-
#
|
1051
837
|
# @!attribute [rw] arn
|
1052
838
|
# The Amazon Resource Name (ARN) of the configuration.
|
1053
839
|
# @return [String]
|
@@ -1080,13 +866,6 @@ module Aws::Kafka
|
|
1080
866
|
include Aws::Structure
|
1081
867
|
end
|
1082
868
|
|
1083
|
-
# @note When making an API call, you may pass DescribeClusterOperationRequest
|
1084
|
-
# data as a hash:
|
1085
|
-
#
|
1086
|
-
# {
|
1087
|
-
# cluster_operation_arn: "__string", # required
|
1088
|
-
# }
|
1089
|
-
#
|
1090
869
|
# @!attribute [rw] cluster_operation_arn
|
1091
870
|
# @return [String]
|
1092
871
|
#
|
@@ -1112,13 +891,6 @@ module Aws::Kafka
|
|
1112
891
|
include Aws::Structure
|
1113
892
|
end
|
1114
893
|
|
1115
|
-
# @note When making an API call, you may pass DescribeClusterRequest
|
1116
|
-
# data as a hash:
|
1117
|
-
#
|
1118
|
-
# {
|
1119
|
-
# cluster_arn: "__string", # required
|
1120
|
-
# }
|
1121
|
-
#
|
1122
894
|
# @!attribute [rw] cluster_arn
|
1123
895
|
# @return [String]
|
1124
896
|
#
|
@@ -1144,13 +916,6 @@ module Aws::Kafka
|
|
1144
916
|
include Aws::Structure
|
1145
917
|
end
|
1146
918
|
|
1147
|
-
# @note When making an API call, you may pass DescribeConfigurationRequest
|
1148
|
-
# data as a hash:
|
1149
|
-
#
|
1150
|
-
# {
|
1151
|
-
# arn: "__string", # required
|
1152
|
-
# }
|
1153
|
-
#
|
1154
919
|
# @!attribute [rw] arn
|
1155
920
|
# @return [String]
|
1156
921
|
#
|
@@ -1209,14 +974,6 @@ module Aws::Kafka
|
|
1209
974
|
include Aws::Structure
|
1210
975
|
end
|
1211
976
|
|
1212
|
-
# @note When making an API call, you may pass DescribeConfigurationRevisionRequest
|
1213
|
-
# data as a hash:
|
1214
|
-
#
|
1215
|
-
# {
|
1216
|
-
# arn: "__string", # required
|
1217
|
-
# revision: 1, # required
|
1218
|
-
# }
|
1219
|
-
#
|
1220
977
|
# @!attribute [rw] arn
|
1221
978
|
# @return [String]
|
1222
979
|
#
|
@@ -1267,14 +1024,6 @@ module Aws::Kafka
|
|
1267
1024
|
|
1268
1025
|
# Request body for BatchDisassociateScramSecret.
|
1269
1026
|
#
|
1270
|
-
# @note When making an API call, you may pass BatchDisassociateScramSecretRequest
|
1271
|
-
# data as a hash:
|
1272
|
-
#
|
1273
|
-
# {
|
1274
|
-
# cluster_arn: "__string", # required
|
1275
|
-
# secret_arn_list: ["__string"], # required
|
1276
|
-
# }
|
1277
|
-
#
|
1278
1027
|
# @!attribute [rw] cluster_arn
|
1279
1028
|
# @return [String]
|
1280
1029
|
#
|
@@ -1313,17 +1062,6 @@ module Aws::Kafka
|
|
1313
1062
|
# Contains information about the EBS storage volumes attached to Apache
|
1314
1063
|
# Kafka broker nodes.
|
1315
1064
|
#
|
1316
|
-
# @note When making an API call, you may pass EBSStorageInfo
|
1317
|
-
# data as a hash:
|
1318
|
-
#
|
1319
|
-
# {
|
1320
|
-
# provisioned_throughput: {
|
1321
|
-
# enabled: false,
|
1322
|
-
# volume_throughput: 1,
|
1323
|
-
# },
|
1324
|
-
# volume_size: 1,
|
1325
|
-
# }
|
1326
|
-
#
|
1327
1065
|
# @!attribute [rw] provisioned_throughput
|
1328
1066
|
# EBS volume provisioned throughput information.
|
1329
1067
|
# @return [Types::ProvisionedThroughput]
|
@@ -1344,13 +1082,6 @@ module Aws::Kafka
|
|
1344
1082
|
|
1345
1083
|
# The data-volume encryption details.
|
1346
1084
|
#
|
1347
|
-
# @note When making an API call, you may pass EncryptionAtRest
|
1348
|
-
# data as a hash:
|
1349
|
-
#
|
1350
|
-
# {
|
1351
|
-
# data_volume_kms_key_id: "__string", # required
|
1352
|
-
# }
|
1353
|
-
#
|
1354
1085
|
# @!attribute [rw] data_volume_kms_key_id
|
1355
1086
|
# The ARN of the AWS KMS key for encrypting data at rest. If you
|
1356
1087
|
# don't specify a KMS key, MSK creates one for you and uses it.
|
@@ -1366,14 +1097,6 @@ module Aws::Kafka
|
|
1366
1097
|
|
1367
1098
|
# The settings for encrypting data in transit.
|
1368
1099
|
#
|
1369
|
-
# @note When making an API call, you may pass EncryptionInTransit
|
1370
|
-
# data as a hash:
|
1371
|
-
#
|
1372
|
-
# {
|
1373
|
-
# client_broker: "TLS", # accepts TLS, TLS_PLAINTEXT, PLAINTEXT
|
1374
|
-
# in_cluster: false,
|
1375
|
-
# }
|
1376
|
-
#
|
1377
1100
|
# @!attribute [rw] client_broker
|
1378
1101
|
# Indicates the encryption setting for data in transit between clients
|
1379
1102
|
# and brokers. You must set it to one of the following values.
|
@@ -1410,19 +1133,6 @@ module Aws::Kafka
|
|
1410
1133
|
# for encrypting data at rest and whether you want MSK to encrypt your
|
1411
1134
|
# data in transit.
|
1412
1135
|
#
|
1413
|
-
# @note When making an API call, you may pass EncryptionInfo
|
1414
|
-
# data as a hash:
|
1415
|
-
#
|
1416
|
-
# {
|
1417
|
-
# encryption_at_rest: {
|
1418
|
-
# data_volume_kms_key_id: "__string", # required
|
1419
|
-
# },
|
1420
|
-
# encryption_in_transit: {
|
1421
|
-
# client_broker: "TLS", # accepts TLS, TLS_PLAINTEXT, PLAINTEXT
|
1422
|
-
# in_cluster: false,
|
1423
|
-
# },
|
1424
|
-
# }
|
1425
|
-
#
|
1426
1136
|
# @!attribute [rw] encryption_at_rest
|
1427
1137
|
# The data-volume encryption details.
|
1428
1138
|
# @return [Types::EncryptionAtRest]
|
@@ -1461,14 +1171,6 @@ module Aws::Kafka
|
|
1461
1171
|
|
1462
1172
|
# Firehose details for BrokerLogs.
|
1463
1173
|
#
|
1464
|
-
# @note When making an API call, you may pass Firehose
|
1465
|
-
# data as a hash:
|
1466
|
-
#
|
1467
|
-
# {
|
1468
|
-
# delivery_stream: "__string",
|
1469
|
-
# enabled: false, # required
|
1470
|
-
# }
|
1471
|
-
#
|
1472
1174
|
# @!attribute [rw] delivery_stream
|
1473
1175
|
# The Kinesis Data Firehose delivery stream that is the destination
|
1474
1176
|
# for broker logs.
|
@@ -1524,13 +1226,6 @@ module Aws::Kafka
|
|
1524
1226
|
include Aws::Structure
|
1525
1227
|
end
|
1526
1228
|
|
1527
|
-
# @note When making an API call, you may pass GetBootstrapBrokersRequest
|
1528
|
-
# data as a hash:
|
1529
|
-
#
|
1530
|
-
# {
|
1531
|
-
# cluster_arn: "__string", # required
|
1532
|
-
# }
|
1533
|
-
#
|
1534
1229
|
# @!attribute [rw] cluster_arn
|
1535
1230
|
# @return [String]
|
1536
1231
|
#
|
@@ -1604,13 +1299,6 @@ module Aws::Kafka
|
|
1604
1299
|
include Aws::Structure
|
1605
1300
|
end
|
1606
1301
|
|
1607
|
-
# @note When making an API call, you may pass GetCompatibleKafkaVersionsRequest
|
1608
|
-
# data as a hash:
|
1609
|
-
#
|
1610
|
-
# {
|
1611
|
-
# cluster_arn: "__string",
|
1612
|
-
# }
|
1613
|
-
#
|
1614
1302
|
# @!attribute [rw] cluster_arn
|
1615
1303
|
# @return [String]
|
1616
1304
|
#
|
@@ -1672,15 +1360,6 @@ module Aws::Kafka
|
|
1672
1360
|
include Aws::Structure
|
1673
1361
|
end
|
1674
1362
|
|
1675
|
-
# @note When making an API call, you may pass ListClusterOperationsRequest
|
1676
|
-
# data as a hash:
|
1677
|
-
#
|
1678
|
-
# {
|
1679
|
-
# cluster_arn: "__string", # required
|
1680
|
-
# max_results: 1,
|
1681
|
-
# next_token: "__string",
|
1682
|
-
# }
|
1683
|
-
#
|
1684
1363
|
# @!attribute [rw] cluster_arn
|
1685
1364
|
# @return [String]
|
1686
1365
|
#
|
@@ -1722,16 +1401,6 @@ module Aws::Kafka
|
|
1722
1401
|
include Aws::Structure
|
1723
1402
|
end
|
1724
1403
|
|
1725
|
-
# @note When making an API call, you may pass ListClustersV2Request
|
1726
|
-
# data as a hash:
|
1727
|
-
#
|
1728
|
-
# {
|
1729
|
-
# cluster_name_filter: "__string",
|
1730
|
-
# cluster_type_filter: "__string",
|
1731
|
-
# max_results: 1,
|
1732
|
-
# next_token: "__string",
|
1733
|
-
# }
|
1734
|
-
#
|
1735
1404
|
# @!attribute [rw] cluster_name_filter
|
1736
1405
|
# Specify a prefix of the names of the clusters that you want to list.
|
1737
1406
|
# The service lists all the clusters whose names start with this
|
@@ -1790,113 +1459,6 @@ module Aws::Kafka
|
|
1790
1459
|
# Creates a new Amazon MSK cluster of either the provisioned or the
|
1791
1460
|
# serverless type.
|
1792
1461
|
#
|
1793
|
-
# @note When making an API call, you may pass CreateClusterV2Request
|
1794
|
-
# data as a hash:
|
1795
|
-
#
|
1796
|
-
# {
|
1797
|
-
# cluster_name: "__stringMin1Max64", # required
|
1798
|
-
# tags: {
|
1799
|
-
# "__string" => "__string",
|
1800
|
-
# },
|
1801
|
-
# provisioned: {
|
1802
|
-
# broker_node_group_info: { # required
|
1803
|
-
# broker_az_distribution: "DEFAULT", # accepts DEFAULT
|
1804
|
-
# client_subnets: ["__string"], # required
|
1805
|
-
# instance_type: "__stringMin5Max32", # required
|
1806
|
-
# security_groups: ["__string"],
|
1807
|
-
# storage_info: {
|
1808
|
-
# ebs_storage_info: {
|
1809
|
-
# provisioned_throughput: {
|
1810
|
-
# enabled: false,
|
1811
|
-
# volume_throughput: 1,
|
1812
|
-
# },
|
1813
|
-
# volume_size: 1,
|
1814
|
-
# },
|
1815
|
-
# },
|
1816
|
-
# connectivity_info: {
|
1817
|
-
# public_access: {
|
1818
|
-
# type: "__string",
|
1819
|
-
# },
|
1820
|
-
# },
|
1821
|
-
# },
|
1822
|
-
# client_authentication: {
|
1823
|
-
# sasl: {
|
1824
|
-
# scram: {
|
1825
|
-
# enabled: false,
|
1826
|
-
# },
|
1827
|
-
# iam: {
|
1828
|
-
# enabled: false,
|
1829
|
-
# },
|
1830
|
-
# },
|
1831
|
-
# tls: {
|
1832
|
-
# certificate_authority_arn_list: ["__string"],
|
1833
|
-
# enabled: false,
|
1834
|
-
# },
|
1835
|
-
# unauthenticated: {
|
1836
|
-
# enabled: false,
|
1837
|
-
# },
|
1838
|
-
# },
|
1839
|
-
# configuration_info: {
|
1840
|
-
# arn: "__string", # required
|
1841
|
-
# revision: 1, # required
|
1842
|
-
# },
|
1843
|
-
# encryption_info: {
|
1844
|
-
# encryption_at_rest: {
|
1845
|
-
# data_volume_kms_key_id: "__string", # required
|
1846
|
-
# },
|
1847
|
-
# encryption_in_transit: {
|
1848
|
-
# client_broker: "TLS", # accepts TLS, TLS_PLAINTEXT, PLAINTEXT
|
1849
|
-
# in_cluster: false,
|
1850
|
-
# },
|
1851
|
-
# },
|
1852
|
-
# enhanced_monitoring: "DEFAULT", # accepts DEFAULT, PER_BROKER, PER_TOPIC_PER_BROKER, PER_TOPIC_PER_PARTITION
|
1853
|
-
# open_monitoring: {
|
1854
|
-
# prometheus: { # required
|
1855
|
-
# jmx_exporter: {
|
1856
|
-
# enabled_in_broker: false, # required
|
1857
|
-
# },
|
1858
|
-
# node_exporter: {
|
1859
|
-
# enabled_in_broker: false, # required
|
1860
|
-
# },
|
1861
|
-
# },
|
1862
|
-
# },
|
1863
|
-
# kafka_version: "__stringMin1Max128", # required
|
1864
|
-
# logging_info: {
|
1865
|
-
# broker_logs: { # required
|
1866
|
-
# cloud_watch_logs: {
|
1867
|
-
# enabled: false, # required
|
1868
|
-
# log_group: "__string",
|
1869
|
-
# },
|
1870
|
-
# firehose: {
|
1871
|
-
# delivery_stream: "__string",
|
1872
|
-
# enabled: false, # required
|
1873
|
-
# },
|
1874
|
-
# s3: {
|
1875
|
-
# bucket: "__string",
|
1876
|
-
# enabled: false, # required
|
1877
|
-
# prefix: "__string",
|
1878
|
-
# },
|
1879
|
-
# },
|
1880
|
-
# },
|
1881
|
-
# number_of_broker_nodes: 1, # required
|
1882
|
-
# },
|
1883
|
-
# serverless: {
|
1884
|
-
# vpc_configs: [ # required
|
1885
|
-
# {
|
1886
|
-
# subnet_ids: ["__string"], # required
|
1887
|
-
# security_group_ids: ["__string"],
|
1888
|
-
# },
|
1889
|
-
# ],
|
1890
|
-
# client_authentication: {
|
1891
|
-
# sasl: {
|
1892
|
-
# iam: {
|
1893
|
-
# enabled: false,
|
1894
|
-
# },
|
1895
|
-
# },
|
1896
|
-
# },
|
1897
|
-
# },
|
1898
|
-
# }
|
1899
|
-
#
|
1900
1462
|
# @!attribute [rw] cluster_name
|
1901
1463
|
# The name of the cluster.
|
1902
1464
|
# @return [String]
|
@@ -1957,13 +1519,6 @@ module Aws::Kafka
|
|
1957
1519
|
include Aws::Structure
|
1958
1520
|
end
|
1959
1521
|
|
1960
|
-
# @note When making an API call, you may pass DescribeClusterV2Request
|
1961
|
-
# data as a hash:
|
1962
|
-
#
|
1963
|
-
# {
|
1964
|
-
# cluster_arn: "__string", # required
|
1965
|
-
# }
|
1966
|
-
#
|
1967
1522
|
# @!attribute [rw] cluster_arn
|
1968
1523
|
# The Amazon Resource Name (ARN) that uniquely identifies the cluster.
|
1969
1524
|
# @return [String]
|
@@ -2061,92 +1616,6 @@ module Aws::Kafka
|
|
2061
1616
|
|
2062
1617
|
# Creates a provisioned cluster.
|
2063
1618
|
#
|
2064
|
-
# @note When making an API call, you may pass ProvisionedRequest
|
2065
|
-
# data as a hash:
|
2066
|
-
#
|
2067
|
-
# {
|
2068
|
-
# broker_node_group_info: { # required
|
2069
|
-
# broker_az_distribution: "DEFAULT", # accepts DEFAULT
|
2070
|
-
# client_subnets: ["__string"], # required
|
2071
|
-
# instance_type: "__stringMin5Max32", # required
|
2072
|
-
# security_groups: ["__string"],
|
2073
|
-
# storage_info: {
|
2074
|
-
# ebs_storage_info: {
|
2075
|
-
# provisioned_throughput: {
|
2076
|
-
# enabled: false,
|
2077
|
-
# volume_throughput: 1,
|
2078
|
-
# },
|
2079
|
-
# volume_size: 1,
|
2080
|
-
# },
|
2081
|
-
# },
|
2082
|
-
# connectivity_info: {
|
2083
|
-
# public_access: {
|
2084
|
-
# type: "__string",
|
2085
|
-
# },
|
2086
|
-
# },
|
2087
|
-
# },
|
2088
|
-
# client_authentication: {
|
2089
|
-
# sasl: {
|
2090
|
-
# scram: {
|
2091
|
-
# enabled: false,
|
2092
|
-
# },
|
2093
|
-
# iam: {
|
2094
|
-
# enabled: false,
|
2095
|
-
# },
|
2096
|
-
# },
|
2097
|
-
# tls: {
|
2098
|
-
# certificate_authority_arn_list: ["__string"],
|
2099
|
-
# enabled: false,
|
2100
|
-
# },
|
2101
|
-
# unauthenticated: {
|
2102
|
-
# enabled: false,
|
2103
|
-
# },
|
2104
|
-
# },
|
2105
|
-
# configuration_info: {
|
2106
|
-
# arn: "__string", # required
|
2107
|
-
# revision: 1, # required
|
2108
|
-
# },
|
2109
|
-
# encryption_info: {
|
2110
|
-
# encryption_at_rest: {
|
2111
|
-
# data_volume_kms_key_id: "__string", # required
|
2112
|
-
# },
|
2113
|
-
# encryption_in_transit: {
|
2114
|
-
# client_broker: "TLS", # accepts TLS, TLS_PLAINTEXT, PLAINTEXT
|
2115
|
-
# in_cluster: false,
|
2116
|
-
# },
|
2117
|
-
# },
|
2118
|
-
# enhanced_monitoring: "DEFAULT", # accepts DEFAULT, PER_BROKER, PER_TOPIC_PER_BROKER, PER_TOPIC_PER_PARTITION
|
2119
|
-
# open_monitoring: {
|
2120
|
-
# prometheus: { # required
|
2121
|
-
# jmx_exporter: {
|
2122
|
-
# enabled_in_broker: false, # required
|
2123
|
-
# },
|
2124
|
-
# node_exporter: {
|
2125
|
-
# enabled_in_broker: false, # required
|
2126
|
-
# },
|
2127
|
-
# },
|
2128
|
-
# },
|
2129
|
-
# kafka_version: "__stringMin1Max128", # required
|
2130
|
-
# logging_info: {
|
2131
|
-
# broker_logs: { # required
|
2132
|
-
# cloud_watch_logs: {
|
2133
|
-
# enabled: false, # required
|
2134
|
-
# log_group: "__string",
|
2135
|
-
# },
|
2136
|
-
# firehose: {
|
2137
|
-
# delivery_stream: "__string",
|
2138
|
-
# enabled: false, # required
|
2139
|
-
# },
|
2140
|
-
# s3: {
|
2141
|
-
# bucket: "__string",
|
2142
|
-
# enabled: false, # required
|
2143
|
-
# prefix: "__string",
|
2144
|
-
# },
|
2145
|
-
# },
|
2146
|
-
# },
|
2147
|
-
# number_of_broker_nodes: 1, # required
|
2148
|
-
# }
|
2149
|
-
#
|
2150
1619
|
# @!attribute [rw] broker_node_group_info
|
2151
1620
|
# Information about the brokers.
|
2152
1621
|
# @return [Types::BrokerNodeGroupInfo]
|
@@ -2186,6 +1655,10 @@ module Aws::Kafka
|
|
2186
1655
|
# The number of brokers in the cluster.
|
2187
1656
|
# @return [Integer]
|
2188
1657
|
#
|
1658
|
+
# @!attribute [rw] storage_mode
|
1659
|
+
# This controls storage mode for supported storage tiers.
|
1660
|
+
# @return [String]
|
1661
|
+
#
|
2189
1662
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ProvisionedRequest AWS API Documentation
|
2190
1663
|
#
|
2191
1664
|
class ProvisionedRequest < Struct.new(
|
@@ -2197,7 +1670,8 @@ module Aws::Kafka
|
|
2197
1670
|
:open_monitoring,
|
2198
1671
|
:kafka_version,
|
2199
1672
|
:logging_info,
|
2200
|
-
:number_of_broker_nodes
|
1673
|
+
:number_of_broker_nodes,
|
1674
|
+
:storage_mode)
|
2201
1675
|
SENSITIVE = []
|
2202
1676
|
include Aws::Structure
|
2203
1677
|
end
|
@@ -2257,6 +1731,10 @@ module Aws::Kafka
|
|
2257
1731
|
# cluster on a TLS port.
|
2258
1732
|
# @return [String]
|
2259
1733
|
#
|
1734
|
+
# @!attribute [rw] storage_mode
|
1735
|
+
# This controls storage mode for supported storage tiers.
|
1736
|
+
# @return [String]
|
1737
|
+
#
|
2260
1738
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/Provisioned AWS API Documentation
|
2261
1739
|
#
|
2262
1740
|
class Provisioned < Struct.new(
|
@@ -2269,21 +1747,14 @@ module Aws::Kafka
|
|
2269
1747
|
:logging_info,
|
2270
1748
|
:number_of_broker_nodes,
|
2271
1749
|
:zookeeper_connect_string,
|
2272
|
-
:zookeeper_connect_string_tls
|
1750
|
+
:zookeeper_connect_string_tls,
|
1751
|
+
:storage_mode)
|
2273
1752
|
SENSITIVE = []
|
2274
1753
|
include Aws::Structure
|
2275
1754
|
end
|
2276
1755
|
|
2277
1756
|
# The configuration of the Amazon VPCs for the cluster.
|
2278
1757
|
#
|
2279
|
-
# @note When making an API call, you may pass VpcConfig
|
2280
|
-
# data as a hash:
|
2281
|
-
#
|
2282
|
-
# {
|
2283
|
-
# subnet_ids: ["__string"], # required
|
2284
|
-
# security_group_ids: ["__string"],
|
2285
|
-
# }
|
2286
|
-
#
|
2287
1758
|
# @!attribute [rw] subnet_ids
|
2288
1759
|
# The IDs of the subnets associated with the cluster.
|
2289
1760
|
# @return [Array<String>]
|
@@ -2303,25 +1774,6 @@ module Aws::Kafka
|
|
2303
1774
|
|
2304
1775
|
# Creates serverless cluster.
|
2305
1776
|
#
|
2306
|
-
# @note When making an API call, you may pass ServerlessRequest
|
2307
|
-
# data as a hash:
|
2308
|
-
#
|
2309
|
-
# {
|
2310
|
-
# vpc_configs: [ # required
|
2311
|
-
# {
|
2312
|
-
# subnet_ids: ["__string"], # required
|
2313
|
-
# security_group_ids: ["__string"],
|
2314
|
-
# },
|
2315
|
-
# ],
|
2316
|
-
# client_authentication: {
|
2317
|
-
# sasl: {
|
2318
|
-
# iam: {
|
2319
|
-
# enabled: false,
|
2320
|
-
# },
|
2321
|
-
# },
|
2322
|
-
# },
|
2323
|
-
# }
|
2324
|
-
#
|
2325
1777
|
# @!attribute [rw] vpc_configs
|
2326
1778
|
# Information on vpc config for the serverless cluster.
|
2327
1779
|
# @return [Array<Types::VpcConfig>]
|
@@ -2341,17 +1793,6 @@ module Aws::Kafka
|
|
2341
1793
|
|
2342
1794
|
# Describes the serverless cluster client authentication.
|
2343
1795
|
#
|
2344
|
-
# @note When making an API call, you may pass ServerlessClientAuthentication
|
2345
|
-
# data as a hash:
|
2346
|
-
#
|
2347
|
-
# {
|
2348
|
-
# sasl: {
|
2349
|
-
# iam: {
|
2350
|
-
# enabled: false,
|
2351
|
-
# },
|
2352
|
-
# },
|
2353
|
-
# }
|
2354
|
-
#
|
2355
1796
|
# @!attribute [rw] sasl
|
2356
1797
|
# Serverless cluster SASL information.
|
2357
1798
|
# @return [Types::ServerlessSasl]
|
@@ -2366,15 +1807,6 @@ module Aws::Kafka
|
|
2366
1807
|
|
2367
1808
|
# Describes the serverless cluster SASL information.
|
2368
1809
|
#
|
2369
|
-
# @note When making an API call, you may pass ServerlessSasl
|
2370
|
-
# data as a hash:
|
2371
|
-
#
|
2372
|
-
# {
|
2373
|
-
# iam: {
|
2374
|
-
# enabled: false,
|
2375
|
-
# },
|
2376
|
-
# }
|
2377
|
-
#
|
2378
1810
|
# @!attribute [rw] iam
|
2379
1811
|
# Indicates whether IAM access control is enabled.
|
2380
1812
|
# @return [Types::Iam]
|
@@ -2406,15 +1838,6 @@ module Aws::Kafka
|
|
2406
1838
|
include Aws::Structure
|
2407
1839
|
end
|
2408
1840
|
|
2409
|
-
# @note When making an API call, you may pass ListClustersRequest
|
2410
|
-
# data as a hash:
|
2411
|
-
#
|
2412
|
-
# {
|
2413
|
-
# cluster_name_filter: "__string",
|
2414
|
-
# max_results: 1,
|
2415
|
-
# next_token: "__string",
|
2416
|
-
# }
|
2417
|
-
#
|
2418
1841
|
# @!attribute [rw] cluster_name_filter
|
2419
1842
|
# @return [String]
|
2420
1843
|
#
|
@@ -2457,15 +1880,6 @@ module Aws::Kafka
|
|
2457
1880
|
include Aws::Structure
|
2458
1881
|
end
|
2459
1882
|
|
2460
|
-
# @note When making an API call, you may pass ListConfigurationRevisionsRequest
|
2461
|
-
# data as a hash:
|
2462
|
-
#
|
2463
|
-
# {
|
2464
|
-
# arn: "__string", # required
|
2465
|
-
# max_results: 1,
|
2466
|
-
# next_token: "__string",
|
2467
|
-
# }
|
2468
|
-
#
|
2469
1883
|
# @!attribute [rw] arn
|
2470
1884
|
# @return [String]
|
2471
1885
|
#
|
@@ -2504,14 +1918,6 @@ module Aws::Kafka
|
|
2504
1918
|
include Aws::Structure
|
2505
1919
|
end
|
2506
1920
|
|
2507
|
-
# @note When making an API call, you may pass ListConfigurationsRequest
|
2508
|
-
# data as a hash:
|
2509
|
-
#
|
2510
|
-
# {
|
2511
|
-
# max_results: 1,
|
2512
|
-
# next_token: "__string",
|
2513
|
-
# }
|
2514
|
-
#
|
2515
1921
|
# @!attribute [rw] max_results
|
2516
1922
|
# @return [Integer]
|
2517
1923
|
#
|
@@ -2550,14 +1956,6 @@ module Aws::Kafka
|
|
2550
1956
|
include Aws::Structure
|
2551
1957
|
end
|
2552
1958
|
|
2553
|
-
# @note When making an API call, you may pass ListKafkaVersionsRequest
|
2554
|
-
# data as a hash:
|
2555
|
-
#
|
2556
|
-
# {
|
2557
|
-
# max_results: 1,
|
2558
|
-
# next_token: "__string",
|
2559
|
-
# }
|
2560
|
-
#
|
2561
1959
|
# @!attribute [rw] max_results
|
2562
1960
|
# @return [Integer]
|
2563
1961
|
#
|
@@ -2592,15 +1990,6 @@ module Aws::Kafka
|
|
2592
1990
|
include Aws::Structure
|
2593
1991
|
end
|
2594
1992
|
|
2595
|
-
# @note When making an API call, you may pass ListNodesRequest
|
2596
|
-
# data as a hash:
|
2597
|
-
#
|
2598
|
-
# {
|
2599
|
-
# cluster_arn: "__string", # required
|
2600
|
-
# max_results: 1,
|
2601
|
-
# next_token: "__string",
|
2602
|
-
# }
|
2603
|
-
#
|
2604
1993
|
# @!attribute [rw] cluster_arn
|
2605
1994
|
# @return [String]
|
2606
1995
|
#
|
@@ -2642,15 +2031,6 @@ module Aws::Kafka
|
|
2642
2031
|
include Aws::Structure
|
2643
2032
|
end
|
2644
2033
|
|
2645
|
-
# @note When making an API call, you may pass ListScramSecretsRequest
|
2646
|
-
# data as a hash:
|
2647
|
-
#
|
2648
|
-
# {
|
2649
|
-
# cluster_arn: "__string", # required
|
2650
|
-
# max_results: 1,
|
2651
|
-
# next_token: "__string",
|
2652
|
-
# }
|
2653
|
-
#
|
2654
2034
|
# @!attribute [rw] cluster_arn
|
2655
2035
|
# @return [String]
|
2656
2036
|
#
|
@@ -2689,13 +2069,6 @@ module Aws::Kafka
|
|
2689
2069
|
include Aws::Structure
|
2690
2070
|
end
|
2691
2071
|
|
2692
|
-
# @note When making an API call, you may pass ListTagsForResourceRequest
|
2693
|
-
# data as a hash:
|
2694
|
-
#
|
2695
|
-
# {
|
2696
|
-
# resource_arn: "__string", # required
|
2697
|
-
# }
|
2698
|
-
#
|
2699
2072
|
# @!attribute [rw] resource_arn
|
2700
2073
|
# @return [String]
|
2701
2074
|
#
|
@@ -2725,27 +2098,6 @@ module Aws::Kafka
|
|
2725
2098
|
# destination types. This is a container for the configuration details
|
2726
2099
|
# related to broker logs.
|
2727
2100
|
#
|
2728
|
-
# @note When making an API call, you may pass LoggingInfo
|
2729
|
-
# data as a hash:
|
2730
|
-
#
|
2731
|
-
# {
|
2732
|
-
# broker_logs: { # required
|
2733
|
-
# cloud_watch_logs: {
|
2734
|
-
# enabled: false, # required
|
2735
|
-
# log_group: "__string",
|
2736
|
-
# },
|
2737
|
-
# firehose: {
|
2738
|
-
# delivery_stream: "__string",
|
2739
|
-
# enabled: false, # required
|
2740
|
-
# },
|
2741
|
-
# s3: {
|
2742
|
-
# bucket: "__string",
|
2743
|
-
# enabled: false, # required
|
2744
|
-
# prefix: "__string",
|
2745
|
-
# },
|
2746
|
-
# },
|
2747
|
-
# }
|
2748
|
-
#
|
2749
2101
|
# @!attribute [rw] broker_logs
|
2750
2102
|
# You can configure your MSK cluster to send broker logs to different
|
2751
2103
|
# destination types. This configuration specifies the details of these
|
@@ -2809,6 +2161,10 @@ module Aws::Kafka
|
|
2809
2161
|
# Information about the broker access configuration.
|
2810
2162
|
# @return [Types::ConnectivityInfo]
|
2811
2163
|
#
|
2164
|
+
# @!attribute [rw] storage_mode
|
2165
|
+
# This controls storage mode for supported storage tiers.
|
2166
|
+
# @return [String]
|
2167
|
+
#
|
2812
2168
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/MutableClusterInfo AWS API Documentation
|
2813
2169
|
#
|
2814
2170
|
class MutableClusterInfo < Struct.new(
|
@@ -2822,7 +2178,8 @@ module Aws::Kafka
|
|
2822
2178
|
:instance_type,
|
2823
2179
|
:client_authentication,
|
2824
2180
|
:encryption_info,
|
2825
|
-
:connectivity_info
|
2181
|
+
:connectivity_info,
|
2182
|
+
:storage_mode)
|
2826
2183
|
SENSITIVE = []
|
2827
2184
|
include Aws::Structure
|
2828
2185
|
end
|
@@ -2883,18 +2240,6 @@ module Aws::Kafka
|
|
2883
2240
|
include Aws::Structure
|
2884
2241
|
end
|
2885
2242
|
|
2886
|
-
# @note When making an API call, you may pass Sasl
|
2887
|
-
# data as a hash:
|
2888
|
-
#
|
2889
|
-
# {
|
2890
|
-
# scram: {
|
2891
|
-
# enabled: false,
|
2892
|
-
# },
|
2893
|
-
# iam: {
|
2894
|
-
# enabled: false,
|
2895
|
-
# },
|
2896
|
-
# }
|
2897
|
-
#
|
2898
2243
|
# @!attribute [rw] scram
|
2899
2244
|
# @return [Types::Scram]
|
2900
2245
|
#
|
@@ -2910,13 +2255,6 @@ module Aws::Kafka
|
|
2910
2255
|
include Aws::Structure
|
2911
2256
|
end
|
2912
2257
|
|
2913
|
-
# @note When making an API call, you may pass Scram
|
2914
|
-
# data as a hash:
|
2915
|
-
#
|
2916
|
-
# {
|
2917
|
-
# enabled: false,
|
2918
|
-
# }
|
2919
|
-
#
|
2920
2258
|
# @!attribute [rw] enabled
|
2921
2259
|
# SASL/SCRAM authentication is enabled or not.
|
2922
2260
|
# @return [Boolean]
|
@@ -2929,13 +2267,6 @@ module Aws::Kafka
|
|
2929
2267
|
include Aws::Structure
|
2930
2268
|
end
|
2931
2269
|
|
2932
|
-
# @note When making an API call, you may pass Iam
|
2933
|
-
# data as a hash:
|
2934
|
-
#
|
2935
|
-
# {
|
2936
|
-
# enabled: false,
|
2937
|
-
# }
|
2938
|
-
#
|
2939
2270
|
# @!attribute [rw] enabled
|
2940
2271
|
# @return [Boolean]
|
2941
2272
|
#
|
@@ -2988,19 +2319,6 @@ module Aws::Kafka
|
|
2988
2319
|
# Contains information about storage volumes attached to MSK broker
|
2989
2320
|
# nodes.
|
2990
2321
|
#
|
2991
|
-
# @note When making an API call, you may pass StorageInfo
|
2992
|
-
# data as a hash:
|
2993
|
-
#
|
2994
|
-
# {
|
2995
|
-
# ebs_storage_info: {
|
2996
|
-
# provisioned_throughput: {
|
2997
|
-
# enabled: false,
|
2998
|
-
# volume_throughput: 1,
|
2999
|
-
# },
|
3000
|
-
# volume_size: 1,
|
3001
|
-
# },
|
3002
|
-
# }
|
3003
|
-
#
|
3004
2322
|
# @!attribute [rw] ebs_storage_info
|
3005
2323
|
# EBS volume information.
|
3006
2324
|
# @return [Types::EBSStorageInfo]
|
@@ -3015,16 +2333,6 @@ module Aws::Kafka
|
|
3015
2333
|
|
3016
2334
|
# Tag a resource.
|
3017
2335
|
#
|
3018
|
-
# @note When making an API call, you may pass TagResourceRequest
|
3019
|
-
# data as a hash:
|
3020
|
-
#
|
3021
|
-
# {
|
3022
|
-
# resource_arn: "__string", # required
|
3023
|
-
# tags: { # required
|
3024
|
-
# "__string" => "__string",
|
3025
|
-
# },
|
3026
|
-
# }
|
3027
|
-
#
|
3028
2336
|
# @!attribute [rw] resource_arn
|
3029
2337
|
# @return [String]
|
3030
2338
|
#
|
@@ -3043,14 +2351,6 @@ module Aws::Kafka
|
|
3043
2351
|
|
3044
2352
|
# Details for client authentication using TLS.
|
3045
2353
|
#
|
3046
|
-
# @note When making an API call, you may pass Tls
|
3047
|
-
# data as a hash:
|
3048
|
-
#
|
3049
|
-
# {
|
3050
|
-
# certificate_authority_arn_list: ["__string"],
|
3051
|
-
# enabled: false,
|
3052
|
-
# }
|
3053
|
-
#
|
3054
2354
|
# @!attribute [rw] certificate_authority_arn_list
|
3055
2355
|
# List of ACM Certificate Authority ARNs.
|
3056
2356
|
# @return [Array<String>]
|
@@ -3087,13 +2387,6 @@ module Aws::Kafka
|
|
3087
2387
|
|
3088
2388
|
# Contains information about unauthenticated traffic to the cluster.
|
3089
2389
|
#
|
3090
|
-
# @note When making an API call, you may pass Unauthenticated
|
3091
|
-
# data as a hash:
|
3092
|
-
#
|
3093
|
-
# {
|
3094
|
-
# enabled: false,
|
3095
|
-
# }
|
3096
|
-
#
|
3097
2390
|
# @!attribute [rw] enabled
|
3098
2391
|
# Specifies whether you want to enable or disable unauthenticated
|
3099
2392
|
# traffic to your cluster.
|
@@ -3143,14 +2436,6 @@ module Aws::Kafka
|
|
3143
2436
|
include Aws::Structure
|
3144
2437
|
end
|
3145
2438
|
|
3146
|
-
# @note When making an API call, you may pass UntagResourceRequest
|
3147
|
-
# data as a hash:
|
3148
|
-
#
|
3149
|
-
# {
|
3150
|
-
# resource_arn: "__string", # required
|
3151
|
-
# tag_keys: ["__string"], # required
|
3152
|
-
# }
|
3153
|
-
#
|
3154
2439
|
# @!attribute [rw] resource_arn
|
3155
2440
|
# @return [String]
|
3156
2441
|
#
|
@@ -3168,15 +2453,6 @@ module Aws::Kafka
|
|
3168
2453
|
|
3169
2454
|
# Request body for UpdateBrokerType.
|
3170
2455
|
#
|
3171
|
-
# @note When making an API call, you may pass UpdateBrokerTypeRequest
|
3172
|
-
# data as a hash:
|
3173
|
-
#
|
3174
|
-
# {
|
3175
|
-
# cluster_arn: "__string", # required
|
3176
|
-
# current_version: "__string", # required
|
3177
|
-
# target_instance_type: "__string", # required
|
3178
|
-
# }
|
3179
|
-
#
|
3180
2456
|
# @!attribute [rw] cluster_arn
|
3181
2457
|
# @return [String]
|
3182
2458
|
#
|
@@ -3220,15 +2496,6 @@ module Aws::Kafka
|
|
3220
2496
|
|
3221
2497
|
# Request body for UpdateBrokerCount.
|
3222
2498
|
#
|
3223
|
-
# @note When making an API call, you may pass UpdateBrokerCountRequest
|
3224
|
-
# data as a hash:
|
3225
|
-
#
|
3226
|
-
# {
|
3227
|
-
# cluster_arn: "__string", # required
|
3228
|
-
# current_version: "__string", # required
|
3229
|
-
# target_number_of_broker_nodes: 1, # required
|
3230
|
-
# }
|
3231
|
-
#
|
3232
2499
|
# @!attribute [rw] cluster_arn
|
3233
2500
|
# @return [String]
|
3234
2501
|
#
|
@@ -3272,24 +2539,6 @@ module Aws::Kafka
|
|
3272
2539
|
|
3273
2540
|
# Request object for UpdateBrokerStorage.
|
3274
2541
|
#
|
3275
|
-
# @note When making an API call, you may pass UpdateBrokerStorageRequest
|
3276
|
-
# data as a hash:
|
3277
|
-
#
|
3278
|
-
# {
|
3279
|
-
# cluster_arn: "__string", # required
|
3280
|
-
# current_version: "__string", # required
|
3281
|
-
# target_broker_ebs_volume_info: [ # required
|
3282
|
-
# {
|
3283
|
-
# kafka_broker_node_id: "__string", # required
|
3284
|
-
# provisioned_throughput: {
|
3285
|
-
# enabled: false,
|
3286
|
-
# volume_throughput: 1,
|
3287
|
-
# },
|
3288
|
-
# volume_size_gb: 1,
|
3289
|
-
# },
|
3290
|
-
# ],
|
3291
|
-
# }
|
3292
|
-
#
|
3293
2542
|
# @!attribute [rw] cluster_arn
|
3294
2543
|
# @return [String]
|
3295
2544
|
#
|
@@ -3340,18 +2589,6 @@ module Aws::Kafka
|
|
3340
2589
|
|
3341
2590
|
# Request body for UpdateClusterConfiguration.
|
3342
2591
|
#
|
3343
|
-
# @note When making an API call, you may pass UpdateClusterConfigurationRequest
|
3344
|
-
# data as a hash:
|
3345
|
-
#
|
3346
|
-
# {
|
3347
|
-
# cluster_arn: "__string", # required
|
3348
|
-
# configuration_info: { # required
|
3349
|
-
# arn: "__string", # required
|
3350
|
-
# revision: 1, # required
|
3351
|
-
# },
|
3352
|
-
# current_version: "__string", # required
|
3353
|
-
# }
|
3354
|
-
#
|
3355
2592
|
# @!attribute [rw] cluster_arn
|
3356
2593
|
# @return [String]
|
3357
2594
|
#
|
@@ -3395,19 +2632,6 @@ module Aws::Kafka
|
|
3395
2632
|
|
3396
2633
|
# Request body for UpdateClusterKafkaVersion.
|
3397
2634
|
#
|
3398
|
-
# @note When making an API call, you may pass UpdateClusterKafkaVersionRequest
|
3399
|
-
# data as a hash:
|
3400
|
-
#
|
3401
|
-
# {
|
3402
|
-
# cluster_arn: "__string", # required
|
3403
|
-
# configuration_info: {
|
3404
|
-
# arn: "__string", # required
|
3405
|
-
# revision: 1, # required
|
3406
|
-
# },
|
3407
|
-
# current_version: "__string", # required
|
3408
|
-
# target_kafka_version: "__string", # required
|
3409
|
-
# }
|
3410
|
-
#
|
3411
2635
|
# @!attribute [rw] cluster_arn
|
3412
2636
|
# @return [String]
|
3413
2637
|
#
|
@@ -3455,15 +2679,6 @@ module Aws::Kafka
|
|
3455
2679
|
|
3456
2680
|
# Request body for UpdateConfiguration.
|
3457
2681
|
#
|
3458
|
-
# @note When making an API call, you may pass UpdateConfigurationRequest
|
3459
|
-
# data as a hash:
|
3460
|
-
#
|
3461
|
-
# {
|
3462
|
-
# arn: "__string", # required
|
3463
|
-
# description: "__string",
|
3464
|
-
# server_properties: "data", # required
|
3465
|
-
# }
|
3466
|
-
#
|
3467
2682
|
# @!attribute [rw] arn
|
3468
2683
|
# The Amazon Resource Name (ARN) of the configuration.
|
3469
2684
|
# @return [String]
|
@@ -3506,19 +2721,6 @@ module Aws::Kafka
|
|
3506
2721
|
|
3507
2722
|
# Request body for UpdateConnectivity.
|
3508
2723
|
#
|
3509
|
-
# @note When making an API call, you may pass UpdateConnectivityRequest
|
3510
|
-
# data as a hash:
|
3511
|
-
#
|
3512
|
-
# {
|
3513
|
-
# cluster_arn: "__string", # required
|
3514
|
-
# connectivity_info: { # required
|
3515
|
-
# public_access: {
|
3516
|
-
# type: "__string",
|
3517
|
-
# },
|
3518
|
-
# },
|
3519
|
-
# current_version: "__string", # required
|
3520
|
-
# }
|
3521
|
-
#
|
3522
2724
|
# @!attribute [rw] cluster_arn
|
3523
2725
|
# @return [String]
|
3524
2726
|
#
|
@@ -3561,42 +2763,6 @@ module Aws::Kafka
|
|
3561
2763
|
|
3562
2764
|
# Request body for UpdateMonitoring.
|
3563
2765
|
#
|
3564
|
-
# @note When making an API call, you may pass UpdateMonitoringRequest
|
3565
|
-
# data as a hash:
|
3566
|
-
#
|
3567
|
-
# {
|
3568
|
-
# cluster_arn: "__string", # required
|
3569
|
-
# current_version: "__string", # required
|
3570
|
-
# enhanced_monitoring: "DEFAULT", # accepts DEFAULT, PER_BROKER, PER_TOPIC_PER_BROKER, PER_TOPIC_PER_PARTITION
|
3571
|
-
# open_monitoring: {
|
3572
|
-
# prometheus: { # required
|
3573
|
-
# jmx_exporter: {
|
3574
|
-
# enabled_in_broker: false, # required
|
3575
|
-
# },
|
3576
|
-
# node_exporter: {
|
3577
|
-
# enabled_in_broker: false, # required
|
3578
|
-
# },
|
3579
|
-
# },
|
3580
|
-
# },
|
3581
|
-
# logging_info: {
|
3582
|
-
# broker_logs: { # required
|
3583
|
-
# cloud_watch_logs: {
|
3584
|
-
# enabled: false, # required
|
3585
|
-
# log_group: "__string",
|
3586
|
-
# },
|
3587
|
-
# firehose: {
|
3588
|
-
# delivery_stream: "__string",
|
3589
|
-
# enabled: false, # required
|
3590
|
-
# },
|
3591
|
-
# s3: {
|
3592
|
-
# bucket: "__string",
|
3593
|
-
# enabled: false, # required
|
3594
|
-
# prefix: "__string",
|
3595
|
-
# },
|
3596
|
-
# },
|
3597
|
-
# },
|
3598
|
-
# }
|
3599
|
-
#
|
3600
2766
|
# @!attribute [rw] cluster_arn
|
3601
2767
|
# @return [String]
|
3602
2768
|
#
|
@@ -3651,40 +2817,6 @@ module Aws::Kafka
|
|
3651
2817
|
|
3652
2818
|
# Request body for UpdateSecurity.
|
3653
2819
|
#
|
3654
|
-
# @note When making an API call, you may pass UpdateSecurityRequest
|
3655
|
-
# data as a hash:
|
3656
|
-
#
|
3657
|
-
# {
|
3658
|
-
# client_authentication: {
|
3659
|
-
# sasl: {
|
3660
|
-
# scram: {
|
3661
|
-
# enabled: false,
|
3662
|
-
# },
|
3663
|
-
# iam: {
|
3664
|
-
# enabled: false,
|
3665
|
-
# },
|
3666
|
-
# },
|
3667
|
-
# tls: {
|
3668
|
-
# certificate_authority_arn_list: ["__string"],
|
3669
|
-
# enabled: false,
|
3670
|
-
# },
|
3671
|
-
# unauthenticated: {
|
3672
|
-
# enabled: false,
|
3673
|
-
# },
|
3674
|
-
# },
|
3675
|
-
# cluster_arn: "__string", # required
|
3676
|
-
# current_version: "__string", # required
|
3677
|
-
# encryption_info: {
|
3678
|
-
# encryption_at_rest: {
|
3679
|
-
# data_volume_kms_key_id: "__string", # required
|
3680
|
-
# },
|
3681
|
-
# encryption_in_transit: {
|
3682
|
-
# client_broker: "TLS", # accepts TLS, TLS_PLAINTEXT, PLAINTEXT
|
3683
|
-
# in_cluster: false,
|
3684
|
-
# },
|
3685
|
-
# },
|
3686
|
-
# }
|
3687
|
-
#
|
3688
2820
|
# @!attribute [rw] client_authentication
|
3689
2821
|
# Includes all client authentication related information.
|
3690
2822
|
# @return [Types::ClientAuthentication]
|
@@ -3732,6 +2864,59 @@ module Aws::Kafka
|
|
3732
2864
|
include Aws::Structure
|
3733
2865
|
end
|
3734
2866
|
|
2867
|
+
# Request object for UpdateStorageApi.
|
2868
|
+
#
|
2869
|
+
# @!attribute [rw] cluster_arn
|
2870
|
+
# @return [String]
|
2871
|
+
#
|
2872
|
+
# @!attribute [rw] current_version
|
2873
|
+
# The version of cluster to update from. A successful operation will
|
2874
|
+
# then generate a new version.
|
2875
|
+
# @return [String]
|
2876
|
+
#
|
2877
|
+
# @!attribute [rw] provisioned_throughput
|
2878
|
+
# EBS volume provisioned throughput information.
|
2879
|
+
# @return [Types::ProvisionedThroughput]
|
2880
|
+
#
|
2881
|
+
# @!attribute [rw] storage_mode
|
2882
|
+
# Controls storage mode for supported storage tiers.
|
2883
|
+
# @return [String]
|
2884
|
+
#
|
2885
|
+
# @!attribute [rw] volume_size_gb
|
2886
|
+
# size of the EBS volume to update.
|
2887
|
+
# @return [Integer]
|
2888
|
+
#
|
2889
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/UpdateStorageRequest AWS API Documentation
|
2890
|
+
#
|
2891
|
+
class UpdateStorageRequest < Struct.new(
|
2892
|
+
:cluster_arn,
|
2893
|
+
:current_version,
|
2894
|
+
:provisioned_throughput,
|
2895
|
+
:storage_mode,
|
2896
|
+
:volume_size_gb)
|
2897
|
+
SENSITIVE = []
|
2898
|
+
include Aws::Structure
|
2899
|
+
end
|
2900
|
+
|
2901
|
+
# Response body for UpdateStorageResponse Api.
|
2902
|
+
#
|
2903
|
+
# @!attribute [rw] cluster_arn
|
2904
|
+
# The Amazon Resource Name (ARN) of the cluster.
|
2905
|
+
# @return [String]
|
2906
|
+
#
|
2907
|
+
# @!attribute [rw] cluster_operation_arn
|
2908
|
+
# The Amazon Resource Name (ARN) of the cluster operation.
|
2909
|
+
# @return [String]
|
2910
|
+
#
|
2911
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/UpdateStorageResponse AWS API Documentation
|
2912
|
+
#
|
2913
|
+
class UpdateStorageResponse < Struct.new(
|
2914
|
+
:cluster_arn,
|
2915
|
+
:cluster_operation_arn)
|
2916
|
+
SENSITIVE = []
|
2917
|
+
include Aws::Structure
|
2918
|
+
end
|
2919
|
+
|
3735
2920
|
# Zookeeper node information.
|
3736
2921
|
#
|
3737
2922
|
# @!attribute [rw] attached_eni_id
|
@@ -3782,20 +2967,6 @@ module Aws::Kafka
|
|
3782
2967
|
|
3783
2968
|
# JMX and Node monitoring for the MSK cluster.
|
3784
2969
|
#
|
3785
|
-
# @note When making an API call, you may pass OpenMonitoringInfo
|
3786
|
-
# data as a hash:
|
3787
|
-
#
|
3788
|
-
# {
|
3789
|
-
# prometheus: { # required
|
3790
|
-
# jmx_exporter: {
|
3791
|
-
# enabled_in_broker: false, # required
|
3792
|
-
# },
|
3793
|
-
# node_exporter: {
|
3794
|
-
# enabled_in_broker: false, # required
|
3795
|
-
# },
|
3796
|
-
# },
|
3797
|
-
# }
|
3798
|
-
#
|
3799
2970
|
# @!attribute [rw] prometheus
|
3800
2971
|
# Prometheus settings.
|
3801
2972
|
# @return [Types::PrometheusInfo]
|
@@ -3829,18 +3000,6 @@ module Aws::Kafka
|
|
3829
3000
|
|
3830
3001
|
# Prometheus settings.
|
3831
3002
|
#
|
3832
|
-
# @note When making an API call, you may pass PrometheusInfo
|
3833
|
-
# data as a hash:
|
3834
|
-
#
|
3835
|
-
# {
|
3836
|
-
# jmx_exporter: {
|
3837
|
-
# enabled_in_broker: false, # required
|
3838
|
-
# },
|
3839
|
-
# node_exporter: {
|
3840
|
-
# enabled_in_broker: false, # required
|
3841
|
-
# },
|
3842
|
-
# }
|
3843
|
-
#
|
3844
3003
|
# @!attribute [rw] jmx_exporter
|
3845
3004
|
# JMX Exporter settings.
|
3846
3005
|
# @return [Types::JmxExporterInfo]
|
@@ -3861,14 +3020,6 @@ module Aws::Kafka
|
|
3861
3020
|
# Contains information about provisioned throughput for EBS storage
|
3862
3021
|
# volumes attached to kafka broker nodes.
|
3863
3022
|
#
|
3864
|
-
# @note When making an API call, you may pass ProvisionedThroughput
|
3865
|
-
# data as a hash:
|
3866
|
-
#
|
3867
|
-
# {
|
3868
|
-
# enabled: false,
|
3869
|
-
# volume_throughput: 1,
|
3870
|
-
# }
|
3871
|
-
#
|
3872
3023
|
# @!attribute [rw] enabled
|
3873
3024
|
# Provisioned throughput is enabled or not.
|
3874
3025
|
# @return [Boolean]
|
@@ -3889,13 +3040,6 @@ module Aws::Kafka
|
|
3889
3040
|
|
3890
3041
|
# Broker public access control.
|
3891
3042
|
#
|
3892
|
-
# @note When making an API call, you may pass PublicAccess
|
3893
|
-
# data as a hash:
|
3894
|
-
#
|
3895
|
-
# {
|
3896
|
-
# type: "__string",
|
3897
|
-
# }
|
3898
|
-
#
|
3899
3043
|
# @!attribute [rw] type
|
3900
3044
|
# The value DISABLED indicates that public access is disabled.
|
3901
3045
|
# SERVICE\_PROVIDED\_EIPS indicates that public access is enabled.
|
@@ -3911,14 +3055,6 @@ module Aws::Kafka
|
|
3911
3055
|
|
3912
3056
|
# Request body for RebootBrokerNode action.
|
3913
3057
|
#
|
3914
|
-
# @note When making an API call, you may pass RebootBrokerRequest
|
3915
|
-
# data as a hash:
|
3916
|
-
#
|
3917
|
-
# {
|
3918
|
-
# broker_ids: ["__string"], # required
|
3919
|
-
# cluster_arn: "__string", # required
|
3920
|
-
# }
|
3921
|
-
#
|
3922
3058
|
# @!attribute [rw] broker_ids
|
3923
3059
|
# The list of broker ids to be rebooted.
|
3924
3060
|
# @return [Array<String>]
|
@@ -3956,15 +3092,6 @@ module Aws::Kafka
|
|
3956
3092
|
|
3957
3093
|
# The details of the Amazon S3 destination for broker logs.
|
3958
3094
|
#
|
3959
|
-
# @note When making an API call, you may pass S3
|
3960
|
-
# data as a hash:
|
3961
|
-
#
|
3962
|
-
# {
|
3963
|
-
# bucket: "__string",
|
3964
|
-
# enabled: false, # required
|
3965
|
-
# prefix: "__string",
|
3966
|
-
# }
|
3967
|
-
#
|
3968
3095
|
# @!attribute [rw] bucket
|
3969
3096
|
# The name of the S3 bucket that is the destination for broker logs.
|
3970
3097
|
# @return [String]
|
@@ -4004,13 +3131,6 @@ module Aws::Kafka
|
|
4004
3131
|
|
4005
3132
|
# Indicates whether you want to enable or disable the JMX Exporter.
|
4006
3133
|
#
|
4007
|
-
# @note When making an API call, you may pass JmxExporterInfo
|
4008
|
-
# data as a hash:
|
4009
|
-
#
|
4010
|
-
# {
|
4011
|
-
# enabled_in_broker: false, # required
|
4012
|
-
# }
|
4013
|
-
#
|
4014
3134
|
# @!attribute [rw] enabled_in_broker
|
4015
3135
|
# JMX Exporter being enabled in broker.
|
4016
3136
|
# @return [Boolean]
|
@@ -4039,13 +3159,6 @@ module Aws::Kafka
|
|
4039
3159
|
|
4040
3160
|
# Indicates whether you want to enable or disable the Node Exporter.
|
4041
3161
|
#
|
4042
|
-
# @note When making an API call, you may pass NodeExporterInfo
|
4043
|
-
# data as a hash:
|
4044
|
-
#
|
4045
|
-
# {
|
4046
|
-
# enabled_in_broker: false, # required
|
4047
|
-
# }
|
4048
|
-
#
|
4049
3162
|
# @!attribute [rw] enabled_in_broker
|
4050
3163
|
# Node Exporter being enabled in broker.
|
4051
3164
|
# @return [Boolean]
|