aws-sdk-kafka 1.61.0 → 1.62.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9e2bc56b81ab93ed8a957cd746bfcc92b884b9c13b23c07de548cfed2d5d2252
4
- data.tar.gz: 91c9a282397305ef2b57083f9fa7f57198782485c318378096c89a60ffd9443b
3
+ metadata.gz: 847eaff7b6ba2df4445b40772cd64be1a2b9b7fe79cd750d8a4bef6737098e45
4
+ data.tar.gz: d6f9c66646d3dd4be86db5e5d612728143631f46fc51ded6da7d92752a56bcf8
5
5
  SHA512:
6
- metadata.gz: f1b8a1495a606837587e155ff3077c2d1c374440d8671cd4f550966ab12490d2af0192bafcf3a45524392239fdea7019f4289b867f12b63818f1b1fad70b8f91
7
- data.tar.gz: c1e6ecf48a2a7f6a95e6e7595f19d8e61be4e6c2c70f9264ca6259318f0ef431f099b09e04c6b513d07a2345ed89ca3e753dfcef5a18dc38d7a1d87ad41b6a42
6
+ metadata.gz: 59ef6715b471738e5c595ae562ef2b0351b2a2304ae0c801acf54645bdfc6da099d4013a289a3f4ae40f7038143c1584059a990f38f08f513d47b575b40fa44b
7
+ data.tar.gz: 5c79e8d3ba4ba23e09ff5683dab5cdb7f30e7e2de06f5c23b63021f8a3a6ff50e386648fcdaffa0c90f9d93fcdd5107b1aa6588f40f774e4e826fa46acc43d78
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.62.0 (2023-07-28)
5
+ ------------------
6
+
7
+ * Feature - Amazon MSK has introduced new versions of ListClusterOperations and DescribeClusterOperation APIs. These v2 APIs provide information and insights into the ongoing operations of both MSK Provisioned and MSK Serverless clusters.
8
+
4
9
  1.61.0 (2023-07-11)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.61.0
1
+ 1.62.0
@@ -1238,6 +1238,120 @@ module Aws::Kafka
1238
1238
  req.send_request(options)
1239
1239
  end
1240
1240
 
1241
+ # Returns a description of the cluster operation specified by the ARN.
1242
+ #
1243
+ # @option params [required, String] :cluster_operation_arn
1244
+ #
1245
+ # @return [Types::DescribeClusterOperationV2Response] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1246
+ #
1247
+ # * {Types::DescribeClusterOperationV2Response#cluster_operation_info #cluster_operation_info} => Types::ClusterOperationV2
1248
+ #
1249
+ # @example Request syntax with placeholder values
1250
+ #
1251
+ # resp = client.describe_cluster_operation_v2({
1252
+ # cluster_operation_arn: "__string", # required
1253
+ # })
1254
+ #
1255
+ # @example Response structure
1256
+ #
1257
+ # resp.cluster_operation_info.cluster_arn #=> String
1258
+ # resp.cluster_operation_info.cluster_type #=> String, one of "PROVISIONED", "SERVERLESS"
1259
+ # resp.cluster_operation_info.start_time #=> Time
1260
+ # resp.cluster_operation_info.end_time #=> Time
1261
+ # resp.cluster_operation_info.operation_arn #=> String
1262
+ # resp.cluster_operation_info.operation_state #=> String
1263
+ # resp.cluster_operation_info.operation_type #=> String
1264
+ # resp.cluster_operation_info.provisioned.operation_steps #=> Array
1265
+ # resp.cluster_operation_info.provisioned.operation_steps[0].step_info.step_status #=> String
1266
+ # resp.cluster_operation_info.provisioned.operation_steps[0].step_name #=> String
1267
+ # resp.cluster_operation_info.provisioned.source_cluster_info.broker_ebs_volume_info #=> Array
1268
+ # resp.cluster_operation_info.provisioned.source_cluster_info.broker_ebs_volume_info[0].kafka_broker_node_id #=> String
1269
+ # resp.cluster_operation_info.provisioned.source_cluster_info.broker_ebs_volume_info[0].provisioned_throughput.enabled #=> Boolean
1270
+ # resp.cluster_operation_info.provisioned.source_cluster_info.broker_ebs_volume_info[0].provisioned_throughput.volume_throughput #=> Integer
1271
+ # resp.cluster_operation_info.provisioned.source_cluster_info.broker_ebs_volume_info[0].volume_size_gb #=> Integer
1272
+ # resp.cluster_operation_info.provisioned.source_cluster_info.configuration_info.arn #=> String
1273
+ # resp.cluster_operation_info.provisioned.source_cluster_info.configuration_info.revision #=> Integer
1274
+ # resp.cluster_operation_info.provisioned.source_cluster_info.number_of_broker_nodes #=> Integer
1275
+ # resp.cluster_operation_info.provisioned.source_cluster_info.open_monitoring.prometheus.jmx_exporter.enabled_in_broker #=> Boolean
1276
+ # resp.cluster_operation_info.provisioned.source_cluster_info.open_monitoring.prometheus.node_exporter.enabled_in_broker #=> Boolean
1277
+ # resp.cluster_operation_info.provisioned.source_cluster_info.enhanced_monitoring #=> String, one of "DEFAULT", "PER_BROKER", "PER_TOPIC_PER_BROKER", "PER_TOPIC_PER_PARTITION"
1278
+ # resp.cluster_operation_info.provisioned.source_cluster_info.kafka_version #=> String
1279
+ # resp.cluster_operation_info.provisioned.source_cluster_info.logging_info.broker_logs.cloud_watch_logs.enabled #=> Boolean
1280
+ # resp.cluster_operation_info.provisioned.source_cluster_info.logging_info.broker_logs.cloud_watch_logs.log_group #=> String
1281
+ # resp.cluster_operation_info.provisioned.source_cluster_info.logging_info.broker_logs.firehose.delivery_stream #=> String
1282
+ # resp.cluster_operation_info.provisioned.source_cluster_info.logging_info.broker_logs.firehose.enabled #=> Boolean
1283
+ # resp.cluster_operation_info.provisioned.source_cluster_info.logging_info.broker_logs.s3.bucket #=> String
1284
+ # resp.cluster_operation_info.provisioned.source_cluster_info.logging_info.broker_logs.s3.enabled #=> Boolean
1285
+ # resp.cluster_operation_info.provisioned.source_cluster_info.logging_info.broker_logs.s3.prefix #=> String
1286
+ # resp.cluster_operation_info.provisioned.source_cluster_info.instance_type #=> String
1287
+ # resp.cluster_operation_info.provisioned.source_cluster_info.client_authentication.sasl.scram.enabled #=> Boolean
1288
+ # resp.cluster_operation_info.provisioned.source_cluster_info.client_authentication.sasl.iam.enabled #=> Boolean
1289
+ # resp.cluster_operation_info.provisioned.source_cluster_info.client_authentication.tls.certificate_authority_arn_list #=> Array
1290
+ # resp.cluster_operation_info.provisioned.source_cluster_info.client_authentication.tls.certificate_authority_arn_list[0] #=> String
1291
+ # resp.cluster_operation_info.provisioned.source_cluster_info.client_authentication.tls.enabled #=> Boolean
1292
+ # resp.cluster_operation_info.provisioned.source_cluster_info.client_authentication.unauthenticated.enabled #=> Boolean
1293
+ # resp.cluster_operation_info.provisioned.source_cluster_info.encryption_info.encryption_at_rest.data_volume_kms_key_id #=> String
1294
+ # resp.cluster_operation_info.provisioned.source_cluster_info.encryption_info.encryption_in_transit.client_broker #=> String, one of "TLS", "TLS_PLAINTEXT", "PLAINTEXT"
1295
+ # resp.cluster_operation_info.provisioned.source_cluster_info.encryption_info.encryption_in_transit.in_cluster #=> Boolean
1296
+ # resp.cluster_operation_info.provisioned.source_cluster_info.connectivity_info.public_access.type #=> String
1297
+ # resp.cluster_operation_info.provisioned.source_cluster_info.connectivity_info.vpc_connectivity.client_authentication.sasl.scram.enabled #=> Boolean
1298
+ # resp.cluster_operation_info.provisioned.source_cluster_info.connectivity_info.vpc_connectivity.client_authentication.sasl.iam.enabled #=> Boolean
1299
+ # resp.cluster_operation_info.provisioned.source_cluster_info.connectivity_info.vpc_connectivity.client_authentication.tls.enabled #=> Boolean
1300
+ # resp.cluster_operation_info.provisioned.source_cluster_info.storage_mode #=> String, one of "LOCAL", "TIERED"
1301
+ # resp.cluster_operation_info.provisioned.target_cluster_info.broker_ebs_volume_info #=> Array
1302
+ # resp.cluster_operation_info.provisioned.target_cluster_info.broker_ebs_volume_info[0].kafka_broker_node_id #=> String
1303
+ # resp.cluster_operation_info.provisioned.target_cluster_info.broker_ebs_volume_info[0].provisioned_throughput.enabled #=> Boolean
1304
+ # resp.cluster_operation_info.provisioned.target_cluster_info.broker_ebs_volume_info[0].provisioned_throughput.volume_throughput #=> Integer
1305
+ # resp.cluster_operation_info.provisioned.target_cluster_info.broker_ebs_volume_info[0].volume_size_gb #=> Integer
1306
+ # resp.cluster_operation_info.provisioned.target_cluster_info.configuration_info.arn #=> String
1307
+ # resp.cluster_operation_info.provisioned.target_cluster_info.configuration_info.revision #=> Integer
1308
+ # resp.cluster_operation_info.provisioned.target_cluster_info.number_of_broker_nodes #=> Integer
1309
+ # resp.cluster_operation_info.provisioned.target_cluster_info.open_monitoring.prometheus.jmx_exporter.enabled_in_broker #=> Boolean
1310
+ # resp.cluster_operation_info.provisioned.target_cluster_info.open_monitoring.prometheus.node_exporter.enabled_in_broker #=> Boolean
1311
+ # resp.cluster_operation_info.provisioned.target_cluster_info.enhanced_monitoring #=> String, one of "DEFAULT", "PER_BROKER", "PER_TOPIC_PER_BROKER", "PER_TOPIC_PER_PARTITION"
1312
+ # resp.cluster_operation_info.provisioned.target_cluster_info.kafka_version #=> String
1313
+ # resp.cluster_operation_info.provisioned.target_cluster_info.logging_info.broker_logs.cloud_watch_logs.enabled #=> Boolean
1314
+ # resp.cluster_operation_info.provisioned.target_cluster_info.logging_info.broker_logs.cloud_watch_logs.log_group #=> String
1315
+ # resp.cluster_operation_info.provisioned.target_cluster_info.logging_info.broker_logs.firehose.delivery_stream #=> String
1316
+ # resp.cluster_operation_info.provisioned.target_cluster_info.logging_info.broker_logs.firehose.enabled #=> Boolean
1317
+ # resp.cluster_operation_info.provisioned.target_cluster_info.logging_info.broker_logs.s3.bucket #=> String
1318
+ # resp.cluster_operation_info.provisioned.target_cluster_info.logging_info.broker_logs.s3.enabled #=> Boolean
1319
+ # resp.cluster_operation_info.provisioned.target_cluster_info.logging_info.broker_logs.s3.prefix #=> String
1320
+ # resp.cluster_operation_info.provisioned.target_cluster_info.instance_type #=> String
1321
+ # resp.cluster_operation_info.provisioned.target_cluster_info.client_authentication.sasl.scram.enabled #=> Boolean
1322
+ # resp.cluster_operation_info.provisioned.target_cluster_info.client_authentication.sasl.iam.enabled #=> Boolean
1323
+ # resp.cluster_operation_info.provisioned.target_cluster_info.client_authentication.tls.certificate_authority_arn_list #=> Array
1324
+ # resp.cluster_operation_info.provisioned.target_cluster_info.client_authentication.tls.certificate_authority_arn_list[0] #=> String
1325
+ # resp.cluster_operation_info.provisioned.target_cluster_info.client_authentication.tls.enabled #=> Boolean
1326
+ # resp.cluster_operation_info.provisioned.target_cluster_info.client_authentication.unauthenticated.enabled #=> Boolean
1327
+ # resp.cluster_operation_info.provisioned.target_cluster_info.encryption_info.encryption_at_rest.data_volume_kms_key_id #=> String
1328
+ # resp.cluster_operation_info.provisioned.target_cluster_info.encryption_info.encryption_in_transit.client_broker #=> String, one of "TLS", "TLS_PLAINTEXT", "PLAINTEXT"
1329
+ # resp.cluster_operation_info.provisioned.target_cluster_info.encryption_info.encryption_in_transit.in_cluster #=> Boolean
1330
+ # resp.cluster_operation_info.provisioned.target_cluster_info.connectivity_info.public_access.type #=> String
1331
+ # resp.cluster_operation_info.provisioned.target_cluster_info.connectivity_info.vpc_connectivity.client_authentication.sasl.scram.enabled #=> Boolean
1332
+ # resp.cluster_operation_info.provisioned.target_cluster_info.connectivity_info.vpc_connectivity.client_authentication.sasl.iam.enabled #=> Boolean
1333
+ # resp.cluster_operation_info.provisioned.target_cluster_info.connectivity_info.vpc_connectivity.client_authentication.tls.enabled #=> Boolean
1334
+ # resp.cluster_operation_info.provisioned.target_cluster_info.storage_mode #=> String, one of "LOCAL", "TIERED"
1335
+ # resp.cluster_operation_info.provisioned.vpc_connection_info.vpc_connection_arn #=> String
1336
+ # resp.cluster_operation_info.provisioned.vpc_connection_info.owner #=> String
1337
+ # resp.cluster_operation_info.provisioned.vpc_connection_info.user_identity.type #=> String, one of "AWSACCOUNT", "AWSSERVICE"
1338
+ # resp.cluster_operation_info.provisioned.vpc_connection_info.user_identity.principal_id #=> String
1339
+ # resp.cluster_operation_info.provisioned.vpc_connection_info.creation_time #=> Time
1340
+ # resp.cluster_operation_info.serverless.vpc_connection_info.creation_time #=> Time
1341
+ # resp.cluster_operation_info.serverless.vpc_connection_info.owner #=> String
1342
+ # resp.cluster_operation_info.serverless.vpc_connection_info.user_identity.type #=> String, one of "AWSACCOUNT", "AWSSERVICE"
1343
+ # resp.cluster_operation_info.serverless.vpc_connection_info.user_identity.principal_id #=> String
1344
+ # resp.cluster_operation_info.serverless.vpc_connection_info.vpc_connection_arn #=> String
1345
+ #
1346
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeClusterOperationV2 AWS API Documentation
1347
+ #
1348
+ # @overload describe_cluster_operation_v2(params = {})
1349
+ # @param [Hash] params ({})
1350
+ def describe_cluster_operation_v2(params = {}, options = {})
1351
+ req = build_request(:describe_cluster_operation_v2, params)
1352
+ req.send_request(options)
1353
+ end
1354
+
1241
1355
  # Returns a description of this MSK configuration.
1242
1356
  #
1243
1357
  # @option params [required, String] :arn
@@ -1599,6 +1713,51 @@ module Aws::Kafka
1599
1713
  req.send_request(options)
1600
1714
  end
1601
1715
 
1716
+ # Returns a list of all the operations that have been performed on the
1717
+ # specified MSK cluster.
1718
+ #
1719
+ # @option params [required, String] :cluster_arn
1720
+ #
1721
+ # @option params [Integer] :max_results
1722
+ #
1723
+ # @option params [String] :next_token
1724
+ #
1725
+ # @return [Types::ListClusterOperationsV2Response] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1726
+ #
1727
+ # * {Types::ListClusterOperationsV2Response#cluster_operation_info_list #cluster_operation_info_list} => Array<Types::ClusterOperationV2Summary>
1728
+ # * {Types::ListClusterOperationsV2Response#next_token #next_token} => String
1729
+ #
1730
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1731
+ #
1732
+ # @example Request syntax with placeholder values
1733
+ #
1734
+ # resp = client.list_cluster_operations_v2({
1735
+ # cluster_arn: "__string", # required
1736
+ # max_results: 1,
1737
+ # next_token: "__string",
1738
+ # })
1739
+ #
1740
+ # @example Response structure
1741
+ #
1742
+ # resp.cluster_operation_info_list #=> Array
1743
+ # resp.cluster_operation_info_list[0].cluster_arn #=> String
1744
+ # resp.cluster_operation_info_list[0].cluster_type #=> String, one of "PROVISIONED", "SERVERLESS"
1745
+ # resp.cluster_operation_info_list[0].start_time #=> Time
1746
+ # resp.cluster_operation_info_list[0].end_time #=> Time
1747
+ # resp.cluster_operation_info_list[0].operation_arn #=> String
1748
+ # resp.cluster_operation_info_list[0].operation_state #=> String
1749
+ # resp.cluster_operation_info_list[0].operation_type #=> String
1750
+ # resp.next_token #=> String
1751
+ #
1752
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListClusterOperationsV2 AWS API Documentation
1753
+ #
1754
+ # @overload list_cluster_operations_v2(params = {})
1755
+ # @param [Hash] params ({})
1756
+ def list_cluster_operations_v2(params = {}, options = {})
1757
+ req = build_request(:list_cluster_operations_v2, params)
1758
+ req.send_request(options)
1759
+ end
1760
+
1602
1761
  # Returns a list of all the MSK clusters in the current Region.
1603
1762
  #
1604
1763
  # @option params [String] :cluster_name_filter
@@ -2829,7 +2988,7 @@ module Aws::Kafka
2829
2988
  params: params,
2830
2989
  config: config)
2831
2990
  context[:gem_name] = 'aws-sdk-kafka'
2832
- context[:gem_version] = '1.61.0'
2991
+ context[:gem_version] = '1.62.0'
2833
2992
  Seahorse::Client::Request.new(handlers, context)
2834
2993
  end
2835
2994
 
@@ -33,6 +33,10 @@ module Aws::Kafka
33
33
  ClusterOperationInfo = Shapes::StructureShape.new(name: 'ClusterOperationInfo')
34
34
  ClusterOperationStep = Shapes::StructureShape.new(name: 'ClusterOperationStep')
35
35
  ClusterOperationStepInfo = Shapes::StructureShape.new(name: 'ClusterOperationStepInfo')
36
+ ClusterOperationV2 = Shapes::StructureShape.new(name: 'ClusterOperationV2')
37
+ ClusterOperationV2Provisioned = Shapes::StructureShape.new(name: 'ClusterOperationV2Provisioned')
38
+ ClusterOperationV2Serverless = Shapes::StructureShape.new(name: 'ClusterOperationV2Serverless')
39
+ ClusterOperationV2Summary = Shapes::StructureShape.new(name: 'ClusterOperationV2Summary')
36
40
  ClusterState = Shapes::StringShape.new(name: 'ClusterState')
37
41
  ClusterType = Shapes::StringShape.new(name: 'ClusterType')
38
42
  CompatibleKafkaVersion = Shapes::StructureShape.new(name: 'CompatibleKafkaVersion')
@@ -60,6 +64,8 @@ module Aws::Kafka
60
64
  DeleteVpcConnectionResponse = Shapes::StructureShape.new(name: 'DeleteVpcConnectionResponse')
61
65
  DescribeClusterOperationRequest = Shapes::StructureShape.new(name: 'DescribeClusterOperationRequest')
62
66
  DescribeClusterOperationResponse = Shapes::StructureShape.new(name: 'DescribeClusterOperationResponse')
67
+ DescribeClusterOperationV2Request = Shapes::StructureShape.new(name: 'DescribeClusterOperationV2Request')
68
+ DescribeClusterOperationV2Response = Shapes::StructureShape.new(name: 'DescribeClusterOperationV2Response')
63
69
  DescribeClusterRequest = Shapes::StructureShape.new(name: 'DescribeClusterRequest')
64
70
  DescribeClusterResponse = Shapes::StructureShape.new(name: 'DescribeClusterResponse')
65
71
  DescribeClusterV2Request = Shapes::StructureShape.new(name: 'DescribeClusterV2Request')
@@ -95,6 +101,8 @@ module Aws::Kafka
95
101
  ListClientVpcConnectionsResponse = Shapes::StructureShape.new(name: 'ListClientVpcConnectionsResponse')
96
102
  ListClusterOperationsRequest = Shapes::StructureShape.new(name: 'ListClusterOperationsRequest')
97
103
  ListClusterOperationsResponse = Shapes::StructureShape.new(name: 'ListClusterOperationsResponse')
104
+ ListClusterOperationsV2Request = Shapes::StructureShape.new(name: 'ListClusterOperationsV2Request')
105
+ ListClusterOperationsV2Response = Shapes::StructureShape.new(name: 'ListClusterOperationsV2Response')
98
106
  ListClustersRequest = Shapes::StructureShape.new(name: 'ListClustersRequest')
99
107
  ListClustersResponse = Shapes::StructureShape.new(name: 'ListClustersResponse')
100
108
  ListClustersV2Request = Shapes::StructureShape.new(name: 'ListClustersV2Request')
@@ -178,6 +186,7 @@ module Aws::Kafka
178
186
  VpcConfig = Shapes::StructureShape.new(name: 'VpcConfig')
179
187
  VpcConnection = Shapes::StructureShape.new(name: 'VpcConnection')
180
188
  VpcConnectionInfo = Shapes::StructureShape.new(name: 'VpcConnectionInfo')
189
+ VpcConnectionInfoServerless = Shapes::StructureShape.new(name: 'VpcConnectionInfoServerless')
181
190
  VpcConnectionState = Shapes::StringShape.new(name: 'VpcConnectionState')
182
191
  VpcConnectivity = Shapes::StructureShape.new(name: 'VpcConnectivity')
183
192
  VpcConnectivityClientAuthentication = Shapes::StructureShape.new(name: 'VpcConnectivityClientAuthentication')
@@ -198,6 +207,7 @@ module Aws::Kafka
198
207
  __listOfClusterInfo = Shapes::ListShape.new(name: '__listOfClusterInfo')
199
208
  __listOfClusterOperationInfo = Shapes::ListShape.new(name: '__listOfClusterOperationInfo')
200
209
  __listOfClusterOperationStep = Shapes::ListShape.new(name: '__listOfClusterOperationStep')
210
+ __listOfClusterOperationV2Summary = Shapes::ListShape.new(name: '__listOfClusterOperationV2Summary')
201
211
  __listOfCompatibleKafkaVersion = Shapes::ListShape.new(name: '__listOfCompatibleKafkaVersion')
202
212
  __listOfConfiguration = Shapes::ListShape.new(name: '__listOfConfiguration')
203
213
  __listOfConfigurationRevision = Shapes::ListShape.new(name: '__listOfConfigurationRevision')
@@ -338,6 +348,35 @@ module Aws::Kafka
338
348
  ClusterOperationStepInfo.add_member(:step_status, Shapes::ShapeRef.new(shape: __string, location_name: "stepStatus"))
339
349
  ClusterOperationStepInfo.struct_class = Types::ClusterOperationStepInfo
340
350
 
351
+ ClusterOperationV2.add_member(:cluster_arn, Shapes::ShapeRef.new(shape: __string, location_name: "clusterArn"))
352
+ ClusterOperationV2.add_member(:cluster_type, Shapes::ShapeRef.new(shape: ClusterType, location_name: "clusterType"))
353
+ ClusterOperationV2.add_member(:start_time, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "startTime"))
354
+ ClusterOperationV2.add_member(:end_time, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "endTime"))
355
+ ClusterOperationV2.add_member(:operation_arn, Shapes::ShapeRef.new(shape: __string, location_name: "operationArn"))
356
+ ClusterOperationV2.add_member(:operation_state, Shapes::ShapeRef.new(shape: __string, location_name: "operationState"))
357
+ ClusterOperationV2.add_member(:operation_type, Shapes::ShapeRef.new(shape: __string, location_name: "operationType"))
358
+ ClusterOperationV2.add_member(:provisioned, Shapes::ShapeRef.new(shape: ClusterOperationV2Provisioned, location_name: "provisioned"))
359
+ ClusterOperationV2.add_member(:serverless, Shapes::ShapeRef.new(shape: ClusterOperationV2Serverless, location_name: "serverless"))
360
+ ClusterOperationV2.struct_class = Types::ClusterOperationV2
361
+
362
+ ClusterOperationV2Provisioned.add_member(:operation_steps, Shapes::ShapeRef.new(shape: __listOfClusterOperationStep, location_name: "operationSteps"))
363
+ ClusterOperationV2Provisioned.add_member(:source_cluster_info, Shapes::ShapeRef.new(shape: MutableClusterInfo, location_name: "sourceClusterInfo"))
364
+ ClusterOperationV2Provisioned.add_member(:target_cluster_info, Shapes::ShapeRef.new(shape: MutableClusterInfo, location_name: "targetClusterInfo"))
365
+ ClusterOperationV2Provisioned.add_member(:vpc_connection_info, Shapes::ShapeRef.new(shape: VpcConnectionInfo, location_name: "vpcConnectionInfo"))
366
+ ClusterOperationV2Provisioned.struct_class = Types::ClusterOperationV2Provisioned
367
+
368
+ ClusterOperationV2Serverless.add_member(:vpc_connection_info, Shapes::ShapeRef.new(shape: VpcConnectionInfoServerless, location_name: "vpcConnectionInfo"))
369
+ ClusterOperationV2Serverless.struct_class = Types::ClusterOperationV2Serverless
370
+
371
+ ClusterOperationV2Summary.add_member(:cluster_arn, Shapes::ShapeRef.new(shape: __string, location_name: "clusterArn"))
372
+ ClusterOperationV2Summary.add_member(:cluster_type, Shapes::ShapeRef.new(shape: ClusterType, location_name: "clusterType"))
373
+ ClusterOperationV2Summary.add_member(:start_time, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "startTime"))
374
+ ClusterOperationV2Summary.add_member(:end_time, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "endTime"))
375
+ ClusterOperationV2Summary.add_member(:operation_arn, Shapes::ShapeRef.new(shape: __string, location_name: "operationArn"))
376
+ ClusterOperationV2Summary.add_member(:operation_state, Shapes::ShapeRef.new(shape: __string, location_name: "operationState"))
377
+ ClusterOperationV2Summary.add_member(:operation_type, Shapes::ShapeRef.new(shape: __string, location_name: "operationType"))
378
+ ClusterOperationV2Summary.struct_class = Types::ClusterOperationV2Summary
379
+
341
380
  CompatibleKafkaVersion.add_member(:source_version, Shapes::ShapeRef.new(shape: __string, location_name: "sourceVersion"))
342
381
  CompatibleKafkaVersion.add_member(:target_versions, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "targetVersions"))
343
382
  CompatibleKafkaVersion.struct_class = Types::CompatibleKafkaVersion
@@ -463,6 +502,12 @@ module Aws::Kafka
463
502
  DescribeClusterOperationResponse.add_member(:cluster_operation_info, Shapes::ShapeRef.new(shape: ClusterOperationInfo, location_name: "clusterOperationInfo"))
464
503
  DescribeClusterOperationResponse.struct_class = Types::DescribeClusterOperationResponse
465
504
 
505
+ DescribeClusterOperationV2Request.add_member(:cluster_operation_arn, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "clusterOperationArn"))
506
+ DescribeClusterOperationV2Request.struct_class = Types::DescribeClusterOperationV2Request
507
+
508
+ DescribeClusterOperationV2Response.add_member(:cluster_operation_info, Shapes::ShapeRef.new(shape: ClusterOperationV2, location_name: "clusterOperationInfo"))
509
+ DescribeClusterOperationV2Response.struct_class = Types::DescribeClusterOperationV2Response
510
+
466
511
  DescribeClusterRequest.add_member(:cluster_arn, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "clusterArn"))
467
512
  DescribeClusterRequest.struct_class = Types::DescribeClusterRequest
468
513
 
@@ -606,6 +651,15 @@ module Aws::Kafka
606
651
  ListClusterOperationsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
607
652
  ListClusterOperationsResponse.struct_class = Types::ListClusterOperationsResponse
608
653
 
654
+ ListClusterOperationsV2Request.add_member(:cluster_arn, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "clusterArn"))
655
+ ListClusterOperationsV2Request.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
656
+ ListClusterOperationsV2Request.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "nextToken"))
657
+ ListClusterOperationsV2Request.struct_class = Types::ListClusterOperationsV2Request
658
+
659
+ ListClusterOperationsV2Response.add_member(:cluster_operation_info_list, Shapes::ShapeRef.new(shape: __listOfClusterOperationV2Summary, location_name: "clusterOperationInfoList"))
660
+ ListClusterOperationsV2Response.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
661
+ ListClusterOperationsV2Response.struct_class = Types::ListClusterOperationsV2Response
662
+
609
663
  ListClustersRequest.add_member(:cluster_name_filter, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "clusterNameFilter"))
610
664
  ListClustersRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
611
665
  ListClustersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "nextToken"))
@@ -968,6 +1022,12 @@ module Aws::Kafka
968
1022
  VpcConnectionInfo.add_member(:creation_time, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "creationTime"))
969
1023
  VpcConnectionInfo.struct_class = Types::VpcConnectionInfo
970
1024
 
1025
+ VpcConnectionInfoServerless.add_member(:creation_time, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "creationTime"))
1026
+ VpcConnectionInfoServerless.add_member(:owner, Shapes::ShapeRef.new(shape: __string, location_name: "owner"))
1027
+ VpcConnectionInfoServerless.add_member(:user_identity, Shapes::ShapeRef.new(shape: UserIdentity, location_name: "userIdentity"))
1028
+ VpcConnectionInfoServerless.add_member(:vpc_connection_arn, Shapes::ShapeRef.new(shape: __string, location_name: "vpcConnectionArn"))
1029
+ VpcConnectionInfoServerless.struct_class = Types::VpcConnectionInfoServerless
1030
+
971
1031
  VpcConnectivity.add_member(:client_authentication, Shapes::ShapeRef.new(shape: VpcConnectivityClientAuthentication, location_name: "clientAuthentication"))
972
1032
  VpcConnectivity.struct_class = Types::VpcConnectivity
973
1033
 
@@ -1007,6 +1067,8 @@ module Aws::Kafka
1007
1067
 
1008
1068
  __listOfClusterOperationStep.member = Shapes::ShapeRef.new(shape: ClusterOperationStep)
1009
1069
 
1070
+ __listOfClusterOperationV2Summary.member = Shapes::ShapeRef.new(shape: ClusterOperationV2Summary)
1071
+
1010
1072
  __listOfCompatibleKafkaVersion.member = Shapes::ShapeRef.new(shape: CompatibleKafkaVersion)
1011
1073
 
1012
1074
  __listOfConfiguration.member = Shapes::ShapeRef.new(shape: Configuration)
@@ -1197,6 +1259,21 @@ module Aws::Kafka
1197
1259
  o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
1198
1260
  end)
1199
1261
 
1262
+ api.add_operation(:describe_cluster_operation_v2, Seahorse::Model::Operation.new.tap do |o|
1263
+ o.name = "DescribeClusterOperationV2"
1264
+ o.http_method = "GET"
1265
+ o.http_request_uri = "/api/v2/operations/{clusterOperationArn}"
1266
+ o.input = Shapes::ShapeRef.new(shape: DescribeClusterOperationV2Request)
1267
+ o.output = Shapes::ShapeRef.new(shape: DescribeClusterOperationV2Response)
1268
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
1269
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
1270
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
1271
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
1272
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
1273
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
1274
+ o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
1275
+ end)
1276
+
1200
1277
  api.add_operation(:describe_configuration, Seahorse::Model::Operation.new.tap do |o|
1201
1278
  o.name = "DescribeConfiguration"
1202
1279
  o.http_method = "GET"
@@ -1300,6 +1377,27 @@ module Aws::Kafka
1300
1377
  )
1301
1378
  end)
1302
1379
 
1380
+ api.add_operation(:list_cluster_operations_v2, Seahorse::Model::Operation.new.tap do |o|
1381
+ o.name = "ListClusterOperationsV2"
1382
+ o.http_method = "GET"
1383
+ o.http_request_uri = "/api/v2/clusters/{clusterArn}/operations"
1384
+ o.input = Shapes::ShapeRef.new(shape: ListClusterOperationsV2Request)
1385
+ o.output = Shapes::ShapeRef.new(shape: ListClusterOperationsV2Response)
1386
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
1387
+ o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
1388
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
1389
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
1390
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
1391
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
1392
+ o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
1393
+ o[:pager] = Aws::Pager.new(
1394
+ limit_key: "max_results",
1395
+ tokens: {
1396
+ "next_token" => "next_token"
1397
+ }
1398
+ )
1399
+ end)
1400
+
1303
1401
  api.add_operation(:list_clusters, Seahorse::Model::Operation.new.tap do |o|
1304
1402
  o.name = "ListClusters"
1305
1403
  o.http_method = "GET"
@@ -166,6 +166,20 @@ module Aws::Kafka
166
166
  end
167
167
  end
168
168
 
169
+ class DescribeClusterOperationV2
170
+ def self.build(context)
171
+ unless context.config.regional_endpoint
172
+ endpoint = context.config.endpoint.to_s
173
+ end
174
+ Aws::Kafka::EndpointParameters.new(
175
+ region: context.config.region,
176
+ use_dual_stack: context.config.use_dualstack_endpoint,
177
+ use_fips: context.config.use_fips_endpoint,
178
+ endpoint: endpoint,
179
+ )
180
+ end
181
+ end
182
+
169
183
  class DescribeConfiguration
170
184
  def self.build(context)
171
185
  unless context.config.regional_endpoint
@@ -264,6 +278,20 @@ module Aws::Kafka
264
278
  end
265
279
  end
266
280
 
281
+ class ListClusterOperationsV2
282
+ def self.build(context)
283
+ unless context.config.regional_endpoint
284
+ endpoint = context.config.endpoint.to_s
285
+ end
286
+ Aws::Kafka::EndpointParameters.new(
287
+ region: context.config.region,
288
+ use_dual_stack: context.config.use_dualstack_endpoint,
289
+ use_fips: context.config.use_fips_endpoint,
290
+ endpoint: endpoint,
291
+ )
292
+ end
293
+ end
294
+
267
295
  class ListClusters
268
296
  def self.build(context)
269
297
  unless context.config.regional_endpoint
@@ -78,6 +78,8 @@ module Aws::Kafka
78
78
  Aws::Kafka::Endpoints::DescribeClusterV2.build(context)
79
79
  when :describe_cluster_operation
80
80
  Aws::Kafka::Endpoints::DescribeClusterOperation.build(context)
81
+ when :describe_cluster_operation_v2
82
+ Aws::Kafka::Endpoints::DescribeClusterOperationV2.build(context)
81
83
  when :describe_configuration
82
84
  Aws::Kafka::Endpoints::DescribeConfiguration.build(context)
83
85
  when :describe_configuration_revision
@@ -92,6 +94,8 @@ module Aws::Kafka
92
94
  Aws::Kafka::Endpoints::GetCompatibleKafkaVersions.build(context)
93
95
  when :list_cluster_operations
94
96
  Aws::Kafka::Endpoints::ListClusterOperations.build(context)
97
+ when :list_cluster_operations_v2
98
+ Aws::Kafka::Endpoints::ListClusterOperationsV2.build(context)
95
99
  when :list_clusters
96
100
  Aws::Kafka::Endpoints::ListClusters.build(context)
97
101
  when :list_clusters_v2
@@ -519,6 +519,138 @@ module Aws::Kafka
519
519
  include Aws::Structure
520
520
  end
521
521
 
522
+ # Returns information about a cluster operation.
523
+ #
524
+ # @!attribute [rw] cluster_arn
525
+ # @return [String]
526
+ #
527
+ # @!attribute [rw] cluster_type
528
+ # The type of cluster.
529
+ # @return [String]
530
+ #
531
+ # @!attribute [rw] start_time
532
+ # @return [Time]
533
+ #
534
+ # @!attribute [rw] end_time
535
+ # @return [Time]
536
+ #
537
+ # @!attribute [rw] operation_arn
538
+ # @return [String]
539
+ #
540
+ # @!attribute [rw] operation_state
541
+ # @return [String]
542
+ #
543
+ # @!attribute [rw] operation_type
544
+ # @return [String]
545
+ #
546
+ # @!attribute [rw] provisioned
547
+ # Properties of a provisioned cluster.
548
+ # @return [Types::ClusterOperationV2Provisioned]
549
+ #
550
+ # @!attribute [rw] serverless
551
+ # Properties of a serverless cluster.
552
+ # @return [Types::ClusterOperationV2Serverless]
553
+ #
554
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ClusterOperationV2 AWS API Documentation
555
+ #
556
+ class ClusterOperationV2 < Struct.new(
557
+ :cluster_arn,
558
+ :cluster_type,
559
+ :start_time,
560
+ :end_time,
561
+ :operation_arn,
562
+ :operation_state,
563
+ :operation_type,
564
+ :provisioned,
565
+ :serverless)
566
+ SENSITIVE = []
567
+ include Aws::Structure
568
+ end
569
+
570
+ # Returns information about a provisioned cluster operation.
571
+ #
572
+ # @!attribute [rw] operation_steps
573
+ # @return [Array<Types::ClusterOperationStep>]
574
+ #
575
+ # @!attribute [rw] source_cluster_info
576
+ # Information about cluster attributes that can be updated via update
577
+ # APIs.
578
+ # @return [Types::MutableClusterInfo]
579
+ #
580
+ # @!attribute [rw] target_cluster_info
581
+ # Information about cluster attributes that can be updated via update
582
+ # APIs.
583
+ # @return [Types::MutableClusterInfo]
584
+ #
585
+ # @!attribute [rw] vpc_connection_info
586
+ # Description of the VPC connection for CreateVpcConnection and
587
+ # DeleteVpcConnection operations.
588
+ # @return [Types::VpcConnectionInfo]
589
+ #
590
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ClusterOperationV2Provisioned AWS API Documentation
591
+ #
592
+ class ClusterOperationV2Provisioned < Struct.new(
593
+ :operation_steps,
594
+ :source_cluster_info,
595
+ :target_cluster_info,
596
+ :vpc_connection_info)
597
+ SENSITIVE = []
598
+ include Aws::Structure
599
+ end
600
+
601
+ # Returns information about a serverless cluster operation.
602
+ #
603
+ # @!attribute [rw] vpc_connection_info
604
+ # Description of the VPC connection for CreateVpcConnection and
605
+ # DeleteVpcConnection operations.
606
+ # @return [Types::VpcConnectionInfoServerless]
607
+ #
608
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ClusterOperationV2Serverless AWS API Documentation
609
+ #
610
+ class ClusterOperationV2Serverless < Struct.new(
611
+ :vpc_connection_info)
612
+ SENSITIVE = []
613
+ include Aws::Structure
614
+ end
615
+
616
+ # Returns information about a cluster operation.
617
+ #
618
+ # @!attribute [rw] cluster_arn
619
+ # @return [String]
620
+ #
621
+ # @!attribute [rw] cluster_type
622
+ # The type of cluster.
623
+ # @return [String]
624
+ #
625
+ # @!attribute [rw] start_time
626
+ # @return [Time]
627
+ #
628
+ # @!attribute [rw] end_time
629
+ # @return [Time]
630
+ #
631
+ # @!attribute [rw] operation_arn
632
+ # @return [String]
633
+ #
634
+ # @!attribute [rw] operation_state
635
+ # @return [String]
636
+ #
637
+ # @!attribute [rw] operation_type
638
+ # @return [String]
639
+ #
640
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ClusterOperationV2Summary AWS API Documentation
641
+ #
642
+ class ClusterOperationV2Summary < Struct.new(
643
+ :cluster_arn,
644
+ :cluster_type,
645
+ :start_time,
646
+ :end_time,
647
+ :operation_arn,
648
+ :operation_state,
649
+ :operation_type)
650
+ SENSITIVE = []
651
+ include Aws::Structure
652
+ end
653
+
522
654
  # The client VPC connection object.
523
655
  #
524
656
  # @!attribute [rw] authentication
@@ -1102,6 +1234,17 @@ module Aws::Kafka
1102
1234
  include Aws::Structure
1103
1235
  end
1104
1236
 
1237
+ # @!attribute [rw] cluster_operation_arn
1238
+ # @return [String]
1239
+ #
1240
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeClusterOperationV2Request AWS API Documentation
1241
+ #
1242
+ class DescribeClusterOperationV2Request < Struct.new(
1243
+ :cluster_operation_arn)
1244
+ SENSITIVE = []
1245
+ include Aws::Structure
1246
+ end
1247
+
1105
1248
  # Information about a cluster operation.
1106
1249
  #
1107
1250
  # @!attribute [rw] cluster_operation_info
@@ -1116,6 +1259,20 @@ module Aws::Kafka
1116
1259
  include Aws::Structure
1117
1260
  end
1118
1261
 
1262
+ # Information about a cluster operation.
1263
+ #
1264
+ # @!attribute [rw] cluster_operation_info
1265
+ # Cluster operation information
1266
+ # @return [Types::ClusterOperationV2]
1267
+ #
1268
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeClusterOperationV2Response AWS API Documentation
1269
+ #
1270
+ class DescribeClusterOperationV2Response < Struct.new(
1271
+ :cluster_operation_info)
1272
+ SENSITIVE = []
1273
+ include Aws::Structure
1274
+ end
1275
+
1119
1276
  # @!attribute [rw] cluster_arn
1120
1277
  # @return [String]
1121
1278
  #
@@ -1689,6 +1846,25 @@ module Aws::Kafka
1689
1846
  include Aws::Structure
1690
1847
  end
1691
1848
 
1849
+ # @!attribute [rw] cluster_arn
1850
+ # @return [String]
1851
+ #
1852
+ # @!attribute [rw] max_results
1853
+ # @return [Integer]
1854
+ #
1855
+ # @!attribute [rw] next_token
1856
+ # @return [String]
1857
+ #
1858
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListClusterOperationsV2Request AWS API Documentation
1859
+ #
1860
+ class ListClusterOperationsV2Request < Struct.new(
1861
+ :cluster_arn,
1862
+ :max_results,
1863
+ :next_token)
1864
+ SENSITIVE = []
1865
+ include Aws::Structure
1866
+ end
1867
+
1692
1868
  # The response contains an array containing cluster operation
1693
1869
  # information and a next token if the response is truncated.
1694
1870
  #
@@ -1711,6 +1887,24 @@ module Aws::Kafka
1711
1887
  include Aws::Structure
1712
1888
  end
1713
1889
 
1890
+ # The response contains an array containing cluster operation
1891
+ # information and a next token if the response is truncated.
1892
+ #
1893
+ # @!attribute [rw] cluster_operation_info_list
1894
+ # @return [Array<Types::ClusterOperationV2Summary>]
1895
+ #
1896
+ # @!attribute [rw] next_token
1897
+ # @return [String]
1898
+ #
1899
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListClusterOperationsV2Response AWS API Documentation
1900
+ #
1901
+ class ListClusterOperationsV2Response < Struct.new(
1902
+ :cluster_operation_info_list,
1903
+ :next_token)
1904
+ SENSITIVE = []
1905
+ include Aws::Structure
1906
+ end
1907
+
1714
1908
  # @!attribute [rw] cluster_name_filter
1715
1909
  # Specify a prefix of the names of the clusters that you want to list.
1716
1910
  # The service lists all the clusters whose names start with this
@@ -3663,6 +3857,33 @@ module Aws::Kafka
3663
3857
  include Aws::Structure
3664
3858
  end
3665
3859
 
3860
+ # Description of the VPC connection for CreateVpcConnection and
3861
+ # DeleteVpcConnection operations.
3862
+ #
3863
+ # @!attribute [rw] creation_time
3864
+ # @return [Time]
3865
+ #
3866
+ # @!attribute [rw] owner
3867
+ # @return [String]
3868
+ #
3869
+ # @!attribute [rw] user_identity
3870
+ # Description of the requester that calls the API operation.
3871
+ # @return [Types::UserIdentity]
3872
+ #
3873
+ # @!attribute [rw] vpc_connection_arn
3874
+ # @return [String]
3875
+ #
3876
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/VpcConnectionInfoServerless AWS API Documentation
3877
+ #
3878
+ class VpcConnectionInfoServerless < Struct.new(
3879
+ :creation_time,
3880
+ :owner,
3881
+ :user_identity,
3882
+ :vpc_connection_arn)
3883
+ SENSITIVE = []
3884
+ include Aws::Structure
3885
+ end
3886
+
3666
3887
  # Request body for RebootBrokerNode action.
3667
3888
  #
3668
3889
  # @!attribute [rw] broker_ids
data/lib/aws-sdk-kafka.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-kafka/customizations'
52
52
  # @!group service
53
53
  module Aws::Kafka
54
54
 
55
- GEM_VERSION = '1.61.0'
55
+ GEM_VERSION = '1.62.0'
56
56
 
57
57
  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.61.0
4
+ version: 1.62.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: 2023-07-11 00:00:00.000000000 Z
11
+ date: 2023-07-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core