aws-sdk-kafkaconnect 1.48.0 → 1.49.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: 5d8860df6e0c149e24f8d1cd9c95b74b2180b0220382f762d98313374904b630
4
- data.tar.gz: 594f7e959c54d640cf7b26b1dd5aeb31d3aba6221c6a0c7083a3fedcaca40270
3
+ metadata.gz: 9c04335b6c9d66515ee7a6bf16fbab6a33ca3faae923ab35164a5b5a0ed67ecd
4
+ data.tar.gz: 0d9dad29bcb3f0c4371109c5f48ee45615cb37400cf861cbab34607c4fd00a49
5
5
  SHA512:
6
- metadata.gz: 9588e0801a1702a945716674253c6e6cef3b7d3e97d7aa87f4219400e37ae6fe001cd780d0661b2d0d01b775bb2f45c6566a4c916331ac29f1f98a3b5fccfd2e
7
- data.tar.gz: 5ddd5f3bae7762ca5c65a7bb65abe08130d36a1c4c17145611d598612f9067edc400efa7a723050709aa2fb52a9f03bc0dcba56795340179dd95eaee52e84e80
6
+ metadata.gz: 728d97240717d261177463a6751258619c2721848011857488f4b9ae94e3b034ae863d6a7fb34218df50c6db7b151e96681e82497051a463b722f13667d22f14
7
+ data.tar.gz: f718087a343167ca7c5622d0c62f6c31228d796484bda692b6049345c3199777594c4a84bd603ed2c1f6c55a1eba6094d4eb4ff3096ea67ce3e8e20a941ea1b0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.49.0 (2025-12-17)
5
+ ------------------
6
+
7
+ * Feature - Support dual-stack network connectivity for connectors via NetworkType field.
8
+
4
9
  1.48.0 (2025-11-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.48.0
1
+ 1.49.0
@@ -508,13 +508,18 @@ module Aws::KafkaConnect
508
508
  # @option params [Types::LogDelivery] :log_delivery
509
509
  # Details about log delivery.
510
510
  #
511
+ # @option params [String] :network_type
512
+ # The network type of the connector. It gives connectors connectivity to
513
+ # either IPv4 (IPV4) or IPv4 and IPv6 (DUAL) destinations. Defaults to
514
+ # IPV4.
515
+ #
511
516
  # @option params [required, Array<Types::Plugin>] :plugins
512
517
  # Amazon MSK Connect does not currently support specifying multiple
513
518
  # plugins as a list. To use more than one plugin for your connector, you
514
519
  # can create a single custom plugin using a ZIP file that bundles
515
520
  # multiple plugins together.
516
521
  #
517
- # Specifies which plugin to use for the connector. You must specify a
522
+ # Specifies which plugin to use for the connector. You must specify a
518
523
  # single-element list containing one `customPlugin` object.
519
524
  #
520
525
  # @option params [required, String] :service_execution_role_arn
@@ -594,6 +599,7 @@ module Aws::KafkaConnect
594
599
  # },
595
600
  # },
596
601
  # },
602
+ # network_type: "IPV4", # accepts IPV4, DUAL
597
603
  # plugins: [ # required
598
604
  # {
599
605
  # custom_plugin: { # required
@@ -855,6 +861,7 @@ module Aws::KafkaConnect
855
861
  # * {Types::DescribeConnectorResponse#kafka_cluster_encryption_in_transit #kafka_cluster_encryption_in_transit} => Types::KafkaClusterEncryptionInTransitDescription
856
862
  # * {Types::DescribeConnectorResponse#kafka_connect_version #kafka_connect_version} => String
857
863
  # * {Types::DescribeConnectorResponse#log_delivery #log_delivery} => Types::LogDeliveryDescription
864
+ # * {Types::DescribeConnectorResponse#network_type #network_type} => String
858
865
  # * {Types::DescribeConnectorResponse#plugins #plugins} => Array&lt;Types::PluginDescription&gt;
859
866
  # * {Types::DescribeConnectorResponse#service_execution_role_arn #service_execution_role_arn} => String
860
867
  # * {Types::DescribeConnectorResponse#worker_configuration #worker_configuration} => Types::WorkerConfigurationDescription
@@ -898,6 +905,7 @@ module Aws::KafkaConnect
898
905
  # resp.log_delivery.worker_log_delivery.s3.bucket #=> String
899
906
  # resp.log_delivery.worker_log_delivery.s3.enabled #=> Boolean
900
907
  # resp.log_delivery.worker_log_delivery.s3.prefix #=> String
908
+ # resp.network_type #=> String, one of "IPV4", "DUAL"
901
909
  # resp.plugins #=> Array
902
910
  # resp.plugins[0].custom_plugin.custom_plugin_arn #=> String
903
911
  # resp.plugins[0].custom_plugin.revision #=> Integer
@@ -1185,6 +1193,7 @@ module Aws::KafkaConnect
1185
1193
  # resp.connectors[0].log_delivery.worker_log_delivery.s3.bucket #=> String
1186
1194
  # resp.connectors[0].log_delivery.worker_log_delivery.s3.enabled #=> Boolean
1187
1195
  # resp.connectors[0].log_delivery.worker_log_delivery.s3.prefix #=> String
1196
+ # resp.connectors[0].network_type #=> String, one of "IPV4", "DUAL"
1188
1197
  # resp.connectors[0].plugins #=> Array
1189
1198
  # resp.connectors[0].plugins[0].custom_plugin.custom_plugin_arn #=> String
1190
1199
  # resp.connectors[0].plugins[0].custom_plugin.revision #=> Integer
@@ -1398,7 +1407,8 @@ module Aws::KafkaConnect
1398
1407
  req.send_request(options)
1399
1408
  end
1400
1409
 
1401
- # Updates the specified connector.
1410
+ # Updates the specified connector. For request body, specify only one
1411
+ # parameter: either `capacity` or `connectorConfiguration`.
1402
1412
  #
1403
1413
  # @option params [Types::CapacityUpdate] :capacity
1404
1414
  # The target capacity.
@@ -1480,7 +1490,7 @@ module Aws::KafkaConnect
1480
1490
  tracer: tracer
1481
1491
  )
1482
1492
  context[:gem_name] = 'aws-sdk-kafkaconnect'
1483
- context[:gem_version] = '1.48.0'
1493
+ context[:gem_version] = '1.49.0'
1484
1494
  Seahorse::Client::Request.new(handlers, context)
1485
1495
  end
1486
1496
 
@@ -90,6 +90,7 @@ module Aws::KafkaConnect
90
90
  LogDelivery = Shapes::StructureShape.new(name: 'LogDelivery')
91
91
  LogDeliveryDescription = Shapes::StructureShape.new(name: 'LogDeliveryDescription')
92
92
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
93
+ NetworkType = Shapes::StringShape.new(name: 'NetworkType')
93
94
  NotFoundException = Shapes::StructureShape.new(name: 'NotFoundException')
94
95
  Plugin = Shapes::StructureShape.new(name: 'Plugin')
95
96
  PluginDescription = Shapes::StructureShape.new(name: 'PluginDescription')
@@ -235,6 +236,7 @@ module Aws::KafkaConnect
235
236
  ConnectorSummary.add_member(:kafka_cluster_encryption_in_transit, Shapes::ShapeRef.new(shape: KafkaClusterEncryptionInTransitDescription, location_name: "kafkaClusterEncryptionInTransit"))
236
237
  ConnectorSummary.add_member(:kafka_connect_version, Shapes::ShapeRef.new(shape: __string, location_name: "kafkaConnectVersion"))
237
238
  ConnectorSummary.add_member(:log_delivery, Shapes::ShapeRef.new(shape: LogDeliveryDescription, location_name: "logDelivery"))
239
+ ConnectorSummary.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "networkType"))
238
240
  ConnectorSummary.add_member(:plugins, Shapes::ShapeRef.new(shape: __listOfPluginDescription, location_name: "plugins"))
239
241
  ConnectorSummary.add_member(:service_execution_role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "serviceExecutionRoleArn"))
240
242
  ConnectorSummary.add_member(:worker_configuration, Shapes::ShapeRef.new(shape: WorkerConfigurationDescription, location_name: "workerConfiguration"))
@@ -249,6 +251,7 @@ module Aws::KafkaConnect
249
251
  CreateConnectorRequest.add_member(:kafka_cluster_encryption_in_transit, Shapes::ShapeRef.new(shape: KafkaClusterEncryptionInTransit, required: true, location_name: "kafkaClusterEncryptionInTransit"))
250
252
  CreateConnectorRequest.add_member(:kafka_connect_version, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "kafkaConnectVersion"))
251
253
  CreateConnectorRequest.add_member(:log_delivery, Shapes::ShapeRef.new(shape: LogDelivery, location_name: "logDelivery"))
254
+ CreateConnectorRequest.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "networkType"))
252
255
  CreateConnectorRequest.add_member(:plugins, Shapes::ShapeRef.new(shape: __listOfPlugin, required: true, location_name: "plugins"))
253
256
  CreateConnectorRequest.add_member(:service_execution_role_arn, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "serviceExecutionRoleArn"))
254
257
  CreateConnectorRequest.add_member(:worker_configuration, Shapes::ShapeRef.new(shape: WorkerConfiguration, location_name: "workerConfiguration"))
@@ -375,6 +378,7 @@ module Aws::KafkaConnect
375
378
  DescribeConnectorResponse.add_member(:kafka_cluster_encryption_in_transit, Shapes::ShapeRef.new(shape: KafkaClusterEncryptionInTransitDescription, location_name: "kafkaClusterEncryptionInTransit"))
376
379
  DescribeConnectorResponse.add_member(:kafka_connect_version, Shapes::ShapeRef.new(shape: __string, location_name: "kafkaConnectVersion"))
377
380
  DescribeConnectorResponse.add_member(:log_delivery, Shapes::ShapeRef.new(shape: LogDeliveryDescription, location_name: "logDelivery"))
381
+ DescribeConnectorResponse.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "networkType"))
378
382
  DescribeConnectorResponse.add_member(:plugins, Shapes::ShapeRef.new(shape: __listOfPluginDescription, location_name: "plugins"))
379
383
  DescribeConnectorResponse.add_member(:service_execution_role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "serviceExecutionRoleArn"))
380
384
  DescribeConnectorResponse.add_member(:worker_configuration, Shapes::ShapeRef.new(shape: WorkerConfigurationDescription, location_name: "workerConfiguration"))
@@ -674,8 +678,8 @@ module Aws::KafkaConnect
674
678
  o.http_request_uri = "/v1/connectors"
675
679
  o.input = Shapes::ShapeRef.new(shape: CreateConnectorRequest)
676
680
  o.output = Shapes::ShapeRef.new(shape: CreateConnectorResponse)
677
- o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
678
681
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
682
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
679
683
  o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
680
684
  o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
681
685
  o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
@@ -690,8 +694,8 @@ module Aws::KafkaConnect
690
694
  o.http_request_uri = "/v1/custom-plugins"
691
695
  o.input = Shapes::ShapeRef.new(shape: CreateCustomPluginRequest)
692
696
  o.output = Shapes::ShapeRef.new(shape: CreateCustomPluginResponse)
693
- o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
694
697
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
698
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
695
699
  o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
696
700
  o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
697
701
  o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
@@ -706,8 +710,8 @@ module Aws::KafkaConnect
706
710
  o.http_request_uri = "/v1/worker-configurations"
707
711
  o.input = Shapes::ShapeRef.new(shape: CreateWorkerConfigurationRequest)
708
712
  o.output = Shapes::ShapeRef.new(shape: CreateWorkerConfigurationResponse)
709
- o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
710
713
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
714
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
711
715
  o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
712
716
  o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
713
717
  o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
@@ -926,8 +930,8 @@ module Aws::KafkaConnect
926
930
  o.http_request_uri = "/v1/tags/{resourceArn}"
927
931
  o.input = Shapes::ShapeRef.new(shape: TagResourceRequest)
928
932
  o.output = Shapes::ShapeRef.new(shape: TagResourceResponse)
929
- o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
930
933
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
934
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
931
935
  o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
932
936
  o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
933
937
  o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
@@ -392,6 +392,12 @@ module Aws::KafkaConnect
392
392
  # Logs.
393
393
  # @return [Types::LogDeliveryDescription]
394
394
  #
395
+ # @!attribute [rw] network_type
396
+ # The network type of the connector. It gives connectors connectivity
397
+ # to either IPv4 (IPV4) or IPv4 and IPv6 (DUAL) destinations. Defaults
398
+ # to IPV4.
399
+ # @return [String]
400
+ #
395
401
  # @!attribute [rw] plugins
396
402
  # Specifies which plugins were used for this connector.
397
403
  # @return [Array<Types::PluginDescription>]
@@ -420,6 +426,7 @@ module Aws::KafkaConnect
420
426
  :kafka_cluster_encryption_in_transit,
421
427
  :kafka_connect_version,
422
428
  :log_delivery,
429
+ :network_type,
423
430
  :plugins,
424
431
  :service_execution_role_arn,
425
432
  :worker_configuration)
@@ -467,13 +474,19 @@ module Aws::KafkaConnect
467
474
  # Details about log delivery.
468
475
  # @return [Types::LogDelivery]
469
476
  #
477
+ # @!attribute [rw] network_type
478
+ # The network type of the connector. It gives connectors connectivity
479
+ # to either IPv4 (IPV4) or IPv4 and IPv6 (DUAL) destinations. Defaults
480
+ # to IPV4.
481
+ # @return [String]
482
+ #
470
483
  # @!attribute [rw] plugins
471
484
  # Amazon MSK Connect does not currently support specifying multiple
472
485
  # plugins as a list. To use more than one plugin for your connector,
473
486
  # you can create a single custom plugin using a ZIP file that bundles
474
487
  # multiple plugins together.
475
488
  #
476
- # Specifies which plugin to use for the connector. You must specify a
489
+ # Specifies which plugin to use for the connector. You must specify a
477
490
  # single-element list containing one `customPlugin` object.
478
491
  # @return [Array<Types::Plugin>]
479
492
  #
@@ -505,6 +518,7 @@ module Aws::KafkaConnect
505
518
  :kafka_cluster_encryption_in_transit,
506
519
  :kafka_connect_version,
507
520
  :log_delivery,
521
+ :network_type,
508
522
  :plugins,
509
523
  :service_execution_role_arn,
510
524
  :worker_configuration,
@@ -1071,6 +1085,12 @@ module Aws::KafkaConnect
1071
1085
  # Details about delivering logs to Amazon CloudWatch Logs.
1072
1086
  # @return [Types::LogDeliveryDescription]
1073
1087
  #
1088
+ # @!attribute [rw] network_type
1089
+ # The network type of the connector. It gives connectors connectivity
1090
+ # to either IPv4 (IPV4) or IPv4 and IPv6 (DUAL) destinations. Defaults
1091
+ # to IPV4.
1092
+ # @return [String]
1093
+ #
1074
1094
  # @!attribute [rw] plugins
1075
1095
  # Specifies which plugins were used for this connector.
1076
1096
  # @return [Array<Types::PluginDescription>]
@@ -1104,6 +1124,7 @@ module Aws::KafkaConnect
1104
1124
  :kafka_cluster_encryption_in_transit,
1105
1125
  :kafka_connect_version,
1106
1126
  :log_delivery,
1127
+ :network_type,
1107
1128
  :plugins,
1108
1129
  :service_execution_role_arn,
1109
1130
  :worker_configuration,
@@ -55,7 +55,7 @@ module Aws::KafkaConnect
55
55
  autoload :EndpointProvider, 'aws-sdk-kafkaconnect/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-kafkaconnect/endpoints'
57
57
 
58
- GEM_VERSION = '1.48.0'
58
+ GEM_VERSION = '1.49.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -139,6 +139,7 @@ module Aws
139
139
  }?
140
140
  }
141
141
  },
142
+ ?network_type: ("IPV4" | "DUAL"),
142
143
  plugins: Array[
143
144
  {
144
145
  custom_plugin: {
@@ -245,6 +246,7 @@ module Aws
245
246
  def kafka_cluster_encryption_in_transit: () -> Types::KafkaClusterEncryptionInTransitDescription
246
247
  def kafka_connect_version: () -> ::String
247
248
  def log_delivery: () -> Types::LogDeliveryDescription
249
+ def network_type: () -> ("IPV4" | "DUAL")
248
250
  def plugins: () -> ::Array[Types::PluginDescription]
249
251
  def service_execution_role_arn: () -> ::String
250
252
  def worker_configuration: () -> Types::WorkerConfigurationDescription
data/sig/types.rbs CHANGED
@@ -115,6 +115,7 @@ module Aws::KafkaConnect
115
115
  attr_accessor kafka_cluster_encryption_in_transit: Types::KafkaClusterEncryptionInTransitDescription
116
116
  attr_accessor kafka_connect_version: ::String
117
117
  attr_accessor log_delivery: Types::LogDeliveryDescription
118
+ attr_accessor network_type: ("IPV4" | "DUAL")
118
119
  attr_accessor plugins: ::Array[Types::PluginDescription]
119
120
  attr_accessor service_execution_role_arn: ::String
120
121
  attr_accessor worker_configuration: Types::WorkerConfigurationDescription
@@ -131,6 +132,7 @@ module Aws::KafkaConnect
131
132
  attr_accessor kafka_cluster_encryption_in_transit: Types::KafkaClusterEncryptionInTransit
132
133
  attr_accessor kafka_connect_version: ::String
133
134
  attr_accessor log_delivery: Types::LogDelivery
135
+ attr_accessor network_type: ("IPV4" | "DUAL")
134
136
  attr_accessor plugins: ::Array[Types::Plugin]
135
137
  attr_accessor service_execution_role_arn: ::String
136
138
  attr_accessor worker_configuration: Types::WorkerConfiguration
@@ -301,6 +303,7 @@ module Aws::KafkaConnect
301
303
  attr_accessor kafka_cluster_encryption_in_transit: Types::KafkaClusterEncryptionInTransitDescription
302
304
  attr_accessor kafka_connect_version: ::String
303
305
  attr_accessor log_delivery: Types::LogDeliveryDescription
306
+ attr_accessor network_type: ("IPV4" | "DUAL")
304
307
  attr_accessor plugins: ::Array[Types::PluginDescription]
305
308
  attr_accessor service_execution_role_arn: ::String
306
309
  attr_accessor worker_configuration: Types::WorkerConfigurationDescription
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-kafkaconnect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.48.0
4
+ version: 1.49.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services