aws-sdk-kafka 1.46.0 → 1.47.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a8cea37d4f4fa220ee8b23da96c84b89195d8c224fe5e8be812b5e513dc20d92
4
- data.tar.gz: a7e5c98096cbb15efa2e3aa05ab4c2e1b04452458f2c0b7b38270c29b966a392
3
+ metadata.gz: 7db07fc88d38c99020e5a860e7c0c164c01087ff6b372f3672ca167b9f449675
4
+ data.tar.gz: e30f2be63c3a318c5de52ca751eb52fd8bf15d973cf634e8b5b41f7044cdd97d
5
5
  SHA512:
6
- metadata.gz: 437abff91db7cd96acb990b7c715447cf664e468821a375a5596f9c9db170684cb0da6c70f79d6e473053328d8a63ab94ac58784b04e942ac2b8966d30fc0850
7
- data.tar.gz: bc221b8658d6e6019a02395c7b1e9e6df97778e7287108c894cd3e64e89e355a269cbcd2f8e5cf0e6b86a3a3f2439cc8076129894f71b79b7647bf1e7d298544
6
+ metadata.gz: fd160bd118dcd4fa272d3ef2bd17dcb0d4aa476f82063218680d12e441584bde3f0045f8e20fdf7cfa8928c012848f8338136505083ab65fcaaea14c2d13fba0
7
+ data.tar.gz: a61918e0c07cfd99ebb4c969a7db3f32bec23b17aa5b467854eb1cfc3e6412f4b796681ec79c6e66902195f3f5f1c0c07a393037c9af8624a51894e8e9431764
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.47.0 (2022-01-27)
5
+ ------------------
6
+
7
+ * Feature - Amazon MSK has updated the CreateCluster and UpdateBrokerStorage API that allows you to specify volume throughput during cluster creation and broker volume updates.
8
+
4
9
  1.46.0 (2021-12-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.46.0
1
+ 1.47.0
@@ -436,6 +436,10 @@ module Aws::Kafka
436
436
  # security_groups: ["__string"],
437
437
  # storage_info: {
438
438
  # ebs_storage_info: {
439
+ # provisioned_throughput: {
440
+ # enabled: false,
441
+ # volume_throughput: 1,
442
+ # },
439
443
  # volume_size: 1,
440
444
  # },
441
445
  # },
@@ -563,6 +567,10 @@ module Aws::Kafka
563
567
  # security_groups: ["__string"],
564
568
  # storage_info: {
565
569
  # ebs_storage_info: {
570
+ # provisioned_throughput: {
571
+ # enabled: false,
572
+ # volume_throughput: 1,
573
+ # },
566
574
  # volume_size: 1,
567
575
  # },
568
576
  # },
@@ -805,6 +813,8 @@ module Aws::Kafka
805
813
  # resp.cluster_info.broker_node_group_info.instance_type #=> String
806
814
  # resp.cluster_info.broker_node_group_info.security_groups #=> Array
807
815
  # resp.cluster_info.broker_node_group_info.security_groups[0] #=> String
816
+ # resp.cluster_info.broker_node_group_info.storage_info.ebs_storage_info.provisioned_throughput.enabled #=> Boolean
817
+ # resp.cluster_info.broker_node_group_info.storage_info.ebs_storage_info.provisioned_throughput.volume_throughput #=> Integer
808
818
  # resp.cluster_info.broker_node_group_info.storage_info.ebs_storage_info.volume_size #=> Integer
809
819
  # resp.cluster_info.broker_node_group_info.connectivity_info.public_access.type #=> String
810
820
  # resp.cluster_info.client_authentication.sasl.scram.enabled #=> Boolean
@@ -887,6 +897,8 @@ module Aws::Kafka
887
897
  # resp.cluster_info.provisioned.broker_node_group_info.instance_type #=> String
888
898
  # resp.cluster_info.provisioned.broker_node_group_info.security_groups #=> Array
889
899
  # resp.cluster_info.provisioned.broker_node_group_info.security_groups[0] #=> String
900
+ # resp.cluster_info.provisioned.broker_node_group_info.storage_info.ebs_storage_info.provisioned_throughput.enabled #=> Boolean
901
+ # resp.cluster_info.provisioned.broker_node_group_info.storage_info.ebs_storage_info.provisioned_throughput.volume_throughput #=> Integer
890
902
  # resp.cluster_info.provisioned.broker_node_group_info.storage_info.ebs_storage_info.volume_size #=> Integer
891
903
  # resp.cluster_info.provisioned.broker_node_group_info.connectivity_info.public_access.type #=> String
892
904
  # resp.cluster_info.provisioned.current_broker_software_info.configuration_arn #=> String
@@ -960,6 +972,8 @@ module Aws::Kafka
960
972
  # resp.cluster_operation_info.operation_type #=> String
961
973
  # resp.cluster_operation_info.source_cluster_info.broker_ebs_volume_info #=> Array
962
974
  # resp.cluster_operation_info.source_cluster_info.broker_ebs_volume_info[0].kafka_broker_node_id #=> String
975
+ # resp.cluster_operation_info.source_cluster_info.broker_ebs_volume_info[0].provisioned_throughput.enabled #=> Boolean
976
+ # resp.cluster_operation_info.source_cluster_info.broker_ebs_volume_info[0].provisioned_throughput.volume_throughput #=> Integer
963
977
  # resp.cluster_operation_info.source_cluster_info.broker_ebs_volume_info[0].volume_size_gb #=> Integer
964
978
  # resp.cluster_operation_info.source_cluster_info.configuration_info.arn #=> String
965
979
  # resp.cluster_operation_info.source_cluster_info.configuration_info.revision #=> Integer
@@ -988,6 +1002,8 @@ module Aws::Kafka
988
1002
  # resp.cluster_operation_info.source_cluster_info.connectivity_info.public_access.type #=> String
989
1003
  # resp.cluster_operation_info.target_cluster_info.broker_ebs_volume_info #=> Array
990
1004
  # resp.cluster_operation_info.target_cluster_info.broker_ebs_volume_info[0].kafka_broker_node_id #=> String
1005
+ # resp.cluster_operation_info.target_cluster_info.broker_ebs_volume_info[0].provisioned_throughput.enabled #=> Boolean
1006
+ # resp.cluster_operation_info.target_cluster_info.broker_ebs_volume_info[0].provisioned_throughput.volume_throughput #=> Integer
991
1007
  # resp.cluster_operation_info.target_cluster_info.broker_ebs_volume_info[0].volume_size_gb #=> Integer
992
1008
  # resp.cluster_operation_info.target_cluster_info.configuration_info.arn #=> String
993
1009
  # resp.cluster_operation_info.target_cluster_info.configuration_info.revision #=> Integer
@@ -1251,6 +1267,8 @@ module Aws::Kafka
1251
1267
  # resp.cluster_operation_info_list[0].operation_type #=> String
1252
1268
  # resp.cluster_operation_info_list[0].source_cluster_info.broker_ebs_volume_info #=> Array
1253
1269
  # resp.cluster_operation_info_list[0].source_cluster_info.broker_ebs_volume_info[0].kafka_broker_node_id #=> String
1270
+ # resp.cluster_operation_info_list[0].source_cluster_info.broker_ebs_volume_info[0].provisioned_throughput.enabled #=> Boolean
1271
+ # resp.cluster_operation_info_list[0].source_cluster_info.broker_ebs_volume_info[0].provisioned_throughput.volume_throughput #=> Integer
1254
1272
  # resp.cluster_operation_info_list[0].source_cluster_info.broker_ebs_volume_info[0].volume_size_gb #=> Integer
1255
1273
  # resp.cluster_operation_info_list[0].source_cluster_info.configuration_info.arn #=> String
1256
1274
  # resp.cluster_operation_info_list[0].source_cluster_info.configuration_info.revision #=> Integer
@@ -1279,6 +1297,8 @@ module Aws::Kafka
1279
1297
  # resp.cluster_operation_info_list[0].source_cluster_info.connectivity_info.public_access.type #=> String
1280
1298
  # resp.cluster_operation_info_list[0].target_cluster_info.broker_ebs_volume_info #=> Array
1281
1299
  # resp.cluster_operation_info_list[0].target_cluster_info.broker_ebs_volume_info[0].kafka_broker_node_id #=> String
1300
+ # resp.cluster_operation_info_list[0].target_cluster_info.broker_ebs_volume_info[0].provisioned_throughput.enabled #=> Boolean
1301
+ # resp.cluster_operation_info_list[0].target_cluster_info.broker_ebs_volume_info[0].provisioned_throughput.volume_throughput #=> Integer
1282
1302
  # resp.cluster_operation_info_list[0].target_cluster_info.broker_ebs_volume_info[0].volume_size_gb #=> Integer
1283
1303
  # resp.cluster_operation_info_list[0].target_cluster_info.configuration_info.arn #=> String
1284
1304
  # resp.cluster_operation_info_list[0].target_cluster_info.configuration_info.revision #=> Integer
@@ -1349,6 +1369,8 @@ module Aws::Kafka
1349
1369
  # resp.cluster_info_list[0].broker_node_group_info.instance_type #=> String
1350
1370
  # resp.cluster_info_list[0].broker_node_group_info.security_groups #=> Array
1351
1371
  # resp.cluster_info_list[0].broker_node_group_info.security_groups[0] #=> String
1372
+ # resp.cluster_info_list[0].broker_node_group_info.storage_info.ebs_storage_info.provisioned_throughput.enabled #=> Boolean
1373
+ # resp.cluster_info_list[0].broker_node_group_info.storage_info.ebs_storage_info.provisioned_throughput.volume_throughput #=> Integer
1352
1374
  # resp.cluster_info_list[0].broker_node_group_info.storage_info.ebs_storage_info.volume_size #=> Integer
1353
1375
  # resp.cluster_info_list[0].broker_node_group_info.connectivity_info.public_access.type #=> String
1354
1376
  # resp.cluster_info_list[0].client_authentication.sasl.scram.enabled #=> Boolean
@@ -1450,6 +1472,8 @@ module Aws::Kafka
1450
1472
  # resp.cluster_info_list[0].provisioned.broker_node_group_info.instance_type #=> String
1451
1473
  # resp.cluster_info_list[0].provisioned.broker_node_group_info.security_groups #=> Array
1452
1474
  # resp.cluster_info_list[0].provisioned.broker_node_group_info.security_groups[0] #=> String
1475
+ # resp.cluster_info_list[0].provisioned.broker_node_group_info.storage_info.ebs_storage_info.provisioned_throughput.enabled #=> Boolean
1476
+ # resp.cluster_info_list[0].provisioned.broker_node_group_info.storage_info.ebs_storage_info.provisioned_throughput.volume_throughput #=> Integer
1453
1477
  # resp.cluster_info_list[0].provisioned.broker_node_group_info.storage_info.ebs_storage_info.volume_size #=> Integer
1454
1478
  # resp.cluster_info_list[0].provisioned.broker_node_group_info.connectivity_info.public_access.type #=> String
1455
1479
  # resp.cluster_info_list[0].provisioned.current_broker_software_info.configuration_arn #=> String
@@ -1931,7 +1955,11 @@ module Aws::Kafka
1931
1955
  # target_broker_ebs_volume_info: [ # required
1932
1956
  # {
1933
1957
  # kafka_broker_node_id: "__string", # required
1934
- # volume_size_gb: 1, # required
1958
+ # provisioned_throughput: {
1959
+ # enabled: false,
1960
+ # volume_throughput: 1,
1961
+ # },
1962
+ # volume_size_gb: 1,
1935
1963
  # },
1936
1964
  # ],
1937
1965
  # })
@@ -2272,7 +2300,7 @@ module Aws::Kafka
2272
2300
  params: params,
2273
2301
  config: config)
2274
2302
  context[:gem_name] = 'aws-sdk-kafka'
2275
- context[:gem_version] = '1.46.0'
2303
+ context[:gem_version] = '1.47.0'
2276
2304
  Seahorse::Client::Request.new(handlers, context)
2277
2305
  end
2278
2306
 
@@ -112,6 +112,7 @@ module Aws::Kafka
112
112
  PrometheusInfo = Shapes::StructureShape.new(name: 'PrometheusInfo')
113
113
  Provisioned = Shapes::StructureShape.new(name: 'Provisioned')
114
114
  ProvisionedRequest = Shapes::StructureShape.new(name: 'ProvisionedRequest')
115
+ ProvisionedThroughput = Shapes::StructureShape.new(name: 'ProvisionedThroughput')
115
116
  PublicAccess = Shapes::StructureShape.new(name: 'PublicAccess')
116
117
  RebootBrokerRequest = Shapes::StructureShape.new(name: 'RebootBrokerRequest')
117
118
  RebootBrokerResponse = Shapes::StructureShape.new(name: 'RebootBrokerResponse')
@@ -200,7 +201,8 @@ module Aws::Kafka
200
201
  BatchDisassociateScramSecretResponse.struct_class = Types::BatchDisassociateScramSecretResponse
201
202
 
202
203
  BrokerEBSVolumeInfo.add_member(:kafka_broker_node_id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "kafkaBrokerNodeId"))
203
- BrokerEBSVolumeInfo.add_member(:volume_size_gb, Shapes::ShapeRef.new(shape: __integer, required: true, location_name: "volumeSizeGB"))
204
+ BrokerEBSVolumeInfo.add_member(:provisioned_throughput, Shapes::ShapeRef.new(shape: ProvisionedThroughput, location_name: "provisionedThroughput"))
205
+ BrokerEBSVolumeInfo.add_member(:volume_size_gb, Shapes::ShapeRef.new(shape: __integer, location_name: "volumeSizeGB"))
204
206
  BrokerEBSVolumeInfo.struct_class = Types::BrokerEBSVolumeInfo
205
207
 
206
208
  BrokerLogs.add_member(:cloud_watch_logs, Shapes::ShapeRef.new(shape: CloudWatchLogs, location_name: "cloudWatchLogs"))
@@ -419,6 +421,7 @@ module Aws::Kafka
419
421
  DescribeConfigurationRevisionResponse.add_member(:server_properties, Shapes::ShapeRef.new(shape: __blob, location_name: "serverProperties"))
420
422
  DescribeConfigurationRevisionResponse.struct_class = Types::DescribeConfigurationRevisionResponse
421
423
 
424
+ EBSStorageInfo.add_member(:provisioned_throughput, Shapes::ShapeRef.new(shape: ProvisionedThroughput, location_name: "provisionedThroughput"))
422
425
  EBSStorageInfo.add_member(:volume_size, Shapes::ShapeRef.new(shape: __integerMin1Max16384, location_name: "volumeSize"))
423
426
  EBSStorageInfo.struct_class = Types::EBSStorageInfo
424
427
 
@@ -632,6 +635,10 @@ module Aws::Kafka
632
635
  ProvisionedRequest.add_member(:number_of_broker_nodes, Shapes::ShapeRef.new(shape: __integerMin1Max15, required: true, location_name: "numberOfBrokerNodes"))
633
636
  ProvisionedRequest.struct_class = Types::ProvisionedRequest
634
637
 
638
+ ProvisionedThroughput.add_member(:enabled, Shapes::ShapeRef.new(shape: __boolean, location_name: "enabled"))
639
+ ProvisionedThroughput.add_member(:volume_throughput, Shapes::ShapeRef.new(shape: __integer, location_name: "volumeThroughput"))
640
+ ProvisionedThroughput.struct_class = Types::ProvisionedThroughput
641
+
635
642
  PublicAccess.add_member(:type, Shapes::ShapeRef.new(shape: __string, location_name: "type"))
636
643
  PublicAccess.struct_class = Types::PublicAccess
637
644
 
@@ -81,13 +81,21 @@ module Aws::Kafka
81
81
  #
82
82
  # {
83
83
  # kafka_broker_node_id: "__string", # required
84
- # volume_size_gb: 1, # required
84
+ # provisioned_throughput: {
85
+ # enabled: false,
86
+ # volume_throughput: 1,
87
+ # },
88
+ # volume_size_gb: 1,
85
89
  # }
86
90
  #
87
91
  # @!attribute [rw] kafka_broker_node_id
88
92
  # The ID of the broker to update.
89
93
  # @return [String]
90
94
  #
95
+ # @!attribute [rw] provisioned_throughput
96
+ # EBS volume provisioned throughput information.
97
+ # @return [Types::ProvisionedThroughput]
98
+ #
91
99
  # @!attribute [rw] volume_size_gb
92
100
  # Size of the EBS volume to update.
93
101
  # @return [Integer]
@@ -96,6 +104,7 @@ module Aws::Kafka
96
104
  #
97
105
  class BrokerEBSVolumeInfo < Struct.new(
98
106
  :kafka_broker_node_id,
107
+ :provisioned_throughput,
99
108
  :volume_size_gb)
100
109
  SENSITIVE = []
101
110
  include Aws::Structure
@@ -158,6 +167,10 @@ module Aws::Kafka
158
167
  # security_groups: ["__string"],
159
168
  # storage_info: {
160
169
  # ebs_storage_info: {
170
+ # provisioned_throughput: {
171
+ # enabled: false,
172
+ # volume_throughput: 1,
173
+ # },
161
174
  # volume_size: 1,
162
175
  # },
163
176
  # },
@@ -736,6 +749,10 @@ module Aws::Kafka
736
749
  # security_groups: ["__string"],
737
750
  # storage_info: {
738
751
  # ebs_storage_info: {
752
+ # provisioned_throughput: {
753
+ # enabled: false,
754
+ # volume_throughput: 1,
755
+ # },
739
756
  # volume_size: 1,
740
757
  # },
741
758
  # },
@@ -1300,9 +1317,17 @@ module Aws::Kafka
1300
1317
  # data as a hash:
1301
1318
  #
1302
1319
  # {
1320
+ # provisioned_throughput: {
1321
+ # enabled: false,
1322
+ # volume_throughput: 1,
1323
+ # },
1303
1324
  # volume_size: 1,
1304
1325
  # }
1305
1326
  #
1327
+ # @!attribute [rw] provisioned_throughput
1328
+ # EBS volume provisioned throughput information.
1329
+ # @return [Types::ProvisionedThroughput]
1330
+ #
1306
1331
  # @!attribute [rw] volume_size
1307
1332
  # The size in GiB of the EBS volume for the data drive on each broker
1308
1333
  # node.
@@ -1311,6 +1336,7 @@ module Aws::Kafka
1311
1336
  # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/EBSStorageInfo AWS API Documentation
1312
1337
  #
1313
1338
  class EBSStorageInfo < Struct.new(
1339
+ :provisioned_throughput,
1314
1340
  :volume_size)
1315
1341
  SENSITIVE = []
1316
1342
  include Aws::Structure
@@ -1780,6 +1806,10 @@ module Aws::Kafka
1780
1806
  # security_groups: ["__string"],
1781
1807
  # storage_info: {
1782
1808
  # ebs_storage_info: {
1809
+ # provisioned_throughput: {
1810
+ # enabled: false,
1811
+ # volume_throughput: 1,
1812
+ # },
1783
1813
  # volume_size: 1,
1784
1814
  # },
1785
1815
  # },
@@ -2042,6 +2072,10 @@ module Aws::Kafka
2042
2072
  # security_groups: ["__string"],
2043
2073
  # storage_info: {
2044
2074
  # ebs_storage_info: {
2075
+ # provisioned_throughput: {
2076
+ # enabled: false,
2077
+ # volume_throughput: 1,
2078
+ # },
2045
2079
  # volume_size: 1,
2046
2080
  # },
2047
2081
  # },
@@ -2959,6 +2993,10 @@ module Aws::Kafka
2959
2993
  #
2960
2994
  # {
2961
2995
  # ebs_storage_info: {
2996
+ # provisioned_throughput: {
2997
+ # enabled: false,
2998
+ # volume_throughput: 1,
2999
+ # },
2962
3000
  # volume_size: 1,
2963
3001
  # },
2964
3002
  # }
@@ -3243,7 +3281,11 @@ module Aws::Kafka
3243
3281
  # target_broker_ebs_volume_info: [ # required
3244
3282
  # {
3245
3283
  # kafka_broker_node_id: "__string", # required
3246
- # volume_size_gb: 1, # required
3284
+ # provisioned_throughput: {
3285
+ # enabled: false,
3286
+ # volume_throughput: 1,
3287
+ # },
3288
+ # volume_size_gb: 1,
3247
3289
  # },
3248
3290
  # ],
3249
3291
  # }
@@ -3816,6 +3858,35 @@ module Aws::Kafka
3816
3858
  include Aws::Structure
3817
3859
  end
3818
3860
 
3861
+ # Contains information about provisioned throughput for EBS storage
3862
+ # volumes attached to kafka broker nodes.
3863
+ #
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
+ # @!attribute [rw] enabled
3873
+ # Provisioned throughput is enabled or not.
3874
+ # @return [Boolean]
3875
+ #
3876
+ # @!attribute [rw] volume_throughput
3877
+ # Throughput value of the EBS volumes for the data drive on each kafka
3878
+ # broker node in MiB per second.
3879
+ # @return [Integer]
3880
+ #
3881
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ProvisionedThroughput AWS API Documentation
3882
+ #
3883
+ class ProvisionedThroughput < Struct.new(
3884
+ :enabled,
3885
+ :volume_throughput)
3886
+ SENSITIVE = []
3887
+ include Aws::Structure
3888
+ end
3889
+
3819
3890
  # Broker public access control.
3820
3891
  #
3821
3892
  # @note When making an API call, you may pass PublicAccess
data/lib/aws-sdk-kafka.rb CHANGED
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-kafka/customizations'
48
48
  # @!group service
49
49
  module Aws::Kafka
50
50
 
51
- GEM_VERSION = '1.46.0'
51
+ GEM_VERSION = '1.47.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-kafka
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.46.0
4
+ version: 1.47.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-12-21 00:00:00.000000000 Z
11
+ date: 2022-01-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core