aws-sdk-kafkaconnect 1.33.0 → 1.34.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-kafkaconnect/client.rb +145 -21
- data/lib/aws-sdk-kafkaconnect/client_api.rb +118 -19
- data/lib/aws-sdk-kafkaconnect/types.rb +228 -27
- data/lib/aws-sdk-kafkaconnect/waiters.rb +15 -0
- data/lib/aws-sdk-kafkaconnect.rb +2 -1
- data/sig/client.rbs +44 -8
- data/sig/types.rbs +61 -5
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 10a4f30663362a258d8d275437107ee845186a2ed32a00846fa154ef4221e417
|
4
|
+
data.tar.gz: 0d587bb9feef460e5797df93600ba9a2c39a7f344b0d1df73c3ec2689b53fde5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bf50f5cf58ab6d7a286c9e5a40b79ee481eebd6bff8b2d73bc222bd0dbb814674ee580fd2b1fc9c573eed837e7e463e10fae79ede98b051d6fe7f2296d515443
|
7
|
+
data.tar.gz: 63765f8d1073fc8df371987880fa80b353588c96fd0c5feb92cfd8f0c14c55ab226e40d6cab037d38ebe58564abdfe6f56af5b5e4df45cf9a49caba4b87675c6
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.34.0 (2025-01-13)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Support updating connector configuration via UpdateConnector API. Release Operations API to monitor the status of the connector operation.
|
8
|
+
|
4
9
|
1.33.0 (2024-10-18)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.34.0
|
@@ -495,12 +495,12 @@ module Aws::KafkaConnect
|
|
495
495
|
# connector that has Amazon S3 as a destination must have permissions
|
496
496
|
# that allow it to write to the S3 destination bucket.
|
497
497
|
#
|
498
|
-
# @option params [Hash<String,String>] :tags
|
499
|
-
# The tags you want to attach to the connector.
|
500
|
-
#
|
501
498
|
# @option params [Types::WorkerConfiguration] :worker_configuration
|
502
499
|
# Specifies which worker configuration to use with the connector.
|
503
500
|
#
|
501
|
+
# @option params [Hash<String,String>] :tags
|
502
|
+
# The tags you want to attach to the connector.
|
503
|
+
#
|
504
504
|
# @return [Types::CreateConnectorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
505
505
|
#
|
506
506
|
# * {Types::CreateConnectorResponse#connector_arn #connector_arn} => String
|
@@ -574,13 +574,13 @@ module Aws::KafkaConnect
|
|
574
574
|
# },
|
575
575
|
# ],
|
576
576
|
# service_execution_role_arn: "__string", # required
|
577
|
-
# tags: {
|
578
|
-
# "TagKey" => "TagValue",
|
579
|
-
# },
|
580
577
|
# worker_configuration: {
|
581
578
|
# revision: 1, # required
|
582
579
|
# worker_configuration_arn: "__string", # required
|
583
580
|
# },
|
581
|
+
# tags: {
|
582
|
+
# "TagKey" => "TagValue",
|
583
|
+
# },
|
584
584
|
# })
|
585
585
|
#
|
586
586
|
# @example Response structure
|
@@ -828,8 +828,8 @@ module Aws::KafkaConnect
|
|
828
828
|
# * {Types::DescribeConnectorResponse#log_delivery #log_delivery} => Types::LogDeliveryDescription
|
829
829
|
# * {Types::DescribeConnectorResponse#plugins #plugins} => Array<Types::PluginDescription>
|
830
830
|
# * {Types::DescribeConnectorResponse#service_execution_role_arn #service_execution_role_arn} => String
|
831
|
-
# * {Types::DescribeConnectorResponse#state_description #state_description} => Types::StateDescription
|
832
831
|
# * {Types::DescribeConnectorResponse#worker_configuration #worker_configuration} => Types::WorkerConfigurationDescription
|
832
|
+
# * {Types::DescribeConnectorResponse#state_description #state_description} => Types::StateDescription
|
833
833
|
#
|
834
834
|
# @example Request syntax with placeholder values
|
835
835
|
#
|
@@ -873,10 +873,10 @@ module Aws::KafkaConnect
|
|
873
873
|
# resp.plugins[0].custom_plugin.custom_plugin_arn #=> String
|
874
874
|
# resp.plugins[0].custom_plugin.revision #=> Integer
|
875
875
|
# resp.service_execution_role_arn #=> String
|
876
|
-
# resp.state_description.code #=> String
|
877
|
-
# resp.state_description.message #=> String
|
878
876
|
# resp.worker_configuration.revision #=> Integer
|
879
877
|
# resp.worker_configuration.worker_configuration_arn #=> String
|
878
|
+
# resp.state_description.code #=> String
|
879
|
+
# resp.state_description.message #=> String
|
880
880
|
#
|
881
881
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kafkaconnect-2021-09-14/DescribeConnector AWS API Documentation
|
882
882
|
#
|
@@ -887,6 +887,73 @@ module Aws::KafkaConnect
|
|
887
887
|
req.send_request(options)
|
888
888
|
end
|
889
889
|
|
890
|
+
# Returns information about the specified connector's operations.
|
891
|
+
#
|
892
|
+
# @option params [required, String] :connector_operation_arn
|
893
|
+
# ARN of the connector operation to be described.
|
894
|
+
#
|
895
|
+
# @return [Types::DescribeConnectorOperationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
896
|
+
#
|
897
|
+
# * {Types::DescribeConnectorOperationResponse#connector_arn #connector_arn} => String
|
898
|
+
# * {Types::DescribeConnectorOperationResponse#connector_operation_arn #connector_operation_arn} => String
|
899
|
+
# * {Types::DescribeConnectorOperationResponse#connector_operation_state #connector_operation_state} => String
|
900
|
+
# * {Types::DescribeConnectorOperationResponse#connector_operation_type #connector_operation_type} => String
|
901
|
+
# * {Types::DescribeConnectorOperationResponse#operation_steps #operation_steps} => Array<Types::ConnectorOperationStep>
|
902
|
+
# * {Types::DescribeConnectorOperationResponse#origin_worker_setting #origin_worker_setting} => Types::WorkerSetting
|
903
|
+
# * {Types::DescribeConnectorOperationResponse#origin_connector_configuration #origin_connector_configuration} => Hash<String,String>
|
904
|
+
# * {Types::DescribeConnectorOperationResponse#target_worker_setting #target_worker_setting} => Types::WorkerSetting
|
905
|
+
# * {Types::DescribeConnectorOperationResponse#target_connector_configuration #target_connector_configuration} => Hash<String,String>
|
906
|
+
# * {Types::DescribeConnectorOperationResponse#error_info #error_info} => Types::StateDescription
|
907
|
+
# * {Types::DescribeConnectorOperationResponse#creation_time #creation_time} => Time
|
908
|
+
# * {Types::DescribeConnectorOperationResponse#end_time #end_time} => Time
|
909
|
+
#
|
910
|
+
# @example Request syntax with placeholder values
|
911
|
+
#
|
912
|
+
# resp = client.describe_connector_operation({
|
913
|
+
# connector_operation_arn: "__string", # required
|
914
|
+
# })
|
915
|
+
#
|
916
|
+
# @example Response structure
|
917
|
+
#
|
918
|
+
# resp.connector_arn #=> String
|
919
|
+
# resp.connector_operation_arn #=> String
|
920
|
+
# resp.connector_operation_state #=> String, one of "PENDING", "UPDATE_IN_PROGRESS", "UPDATE_COMPLETE", "UPDATE_FAILED", "ROLLBACK_IN_PROGRESS", "ROLLBACK_FAILED", "ROLLBACK_COMPLETE"
|
921
|
+
# resp.connector_operation_type #=> String, one of "UPDATE_WORKER_SETTING", "UPDATE_CONNECTOR_CONFIGURATION", "ISOLATE_CONNECTOR", "RESTORE_CONNECTOR"
|
922
|
+
# resp.operation_steps #=> Array
|
923
|
+
# resp.operation_steps[0].step_type #=> String, one of "INITIALIZE_UPDATE", "FINALIZE_UPDATE", "UPDATE_WORKER_SETTING", "UPDATE_CONNECTOR_CONFIGURATION", "VALIDATE_UPDATE"
|
924
|
+
# resp.operation_steps[0].step_state #=> String, one of "PENDING", "IN_PROGRESS", "COMPLETED", "FAILED", "CANCELLED"
|
925
|
+
# resp.origin_worker_setting.capacity.auto_scaling.max_worker_count #=> Integer
|
926
|
+
# resp.origin_worker_setting.capacity.auto_scaling.mcu_count #=> Integer
|
927
|
+
# resp.origin_worker_setting.capacity.auto_scaling.min_worker_count #=> Integer
|
928
|
+
# resp.origin_worker_setting.capacity.auto_scaling.scale_in_policy.cpu_utilization_percentage #=> Integer
|
929
|
+
# resp.origin_worker_setting.capacity.auto_scaling.scale_out_policy.cpu_utilization_percentage #=> Integer
|
930
|
+
# resp.origin_worker_setting.capacity.provisioned_capacity.mcu_count #=> Integer
|
931
|
+
# resp.origin_worker_setting.capacity.provisioned_capacity.worker_count #=> Integer
|
932
|
+
# resp.origin_connector_configuration #=> Hash
|
933
|
+
# resp.origin_connector_configuration["__string"] #=> String
|
934
|
+
# resp.target_worker_setting.capacity.auto_scaling.max_worker_count #=> Integer
|
935
|
+
# resp.target_worker_setting.capacity.auto_scaling.mcu_count #=> Integer
|
936
|
+
# resp.target_worker_setting.capacity.auto_scaling.min_worker_count #=> Integer
|
937
|
+
# resp.target_worker_setting.capacity.auto_scaling.scale_in_policy.cpu_utilization_percentage #=> Integer
|
938
|
+
# resp.target_worker_setting.capacity.auto_scaling.scale_out_policy.cpu_utilization_percentage #=> Integer
|
939
|
+
# resp.target_worker_setting.capacity.provisioned_capacity.mcu_count #=> Integer
|
940
|
+
# resp.target_worker_setting.capacity.provisioned_capacity.worker_count #=> Integer
|
941
|
+
# resp.target_connector_configuration #=> Hash
|
942
|
+
# resp.target_connector_configuration["__string"] #=> String
|
943
|
+
# resp.error_info.code #=> String
|
944
|
+
# resp.error_info.message #=> String
|
945
|
+
# resp.creation_time #=> Time
|
946
|
+
# resp.end_time #=> Time
|
947
|
+
#
|
948
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafkaconnect-2021-09-14/DescribeConnectorOperation AWS API Documentation
|
949
|
+
#
|
950
|
+
# @overload describe_connector_operation(params = {})
|
951
|
+
# @param [Hash] params ({})
|
952
|
+
def describe_connector_operation(params = {}, options = {})
|
953
|
+
req = build_request(:describe_connector_operation, params)
|
954
|
+
req.send_request(options)
|
955
|
+
end
|
956
|
+
|
890
957
|
# A summary description of the custom plugin.
|
891
958
|
#
|
892
959
|
# @option params [required, String] :custom_plugin_arn
|
@@ -978,6 +1045,54 @@ module Aws::KafkaConnect
|
|
978
1045
|
req.send_request(options)
|
979
1046
|
end
|
980
1047
|
|
1048
|
+
# Lists information about a connector's operation(s).
|
1049
|
+
#
|
1050
|
+
# @option params [required, String] :connector_arn
|
1051
|
+
# The Amazon Resource Name (ARN) of the connector for which to list
|
1052
|
+
# operations.
|
1053
|
+
#
|
1054
|
+
# @option params [Integer] :max_results
|
1055
|
+
# Maximum number of connector operations to fetch in one get request.
|
1056
|
+
#
|
1057
|
+
# @option params [String] :next_token
|
1058
|
+
# If the response is truncated, it includes a NextToken. Send this
|
1059
|
+
# NextToken in a subsequent request to continue listing from where it
|
1060
|
+
# left off.
|
1061
|
+
#
|
1062
|
+
# @return [Types::ListConnectorOperationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1063
|
+
#
|
1064
|
+
# * {Types::ListConnectorOperationsResponse#connector_operations #connector_operations} => Array<Types::ConnectorOperationSummary>
|
1065
|
+
# * {Types::ListConnectorOperationsResponse#next_token #next_token} => String
|
1066
|
+
#
|
1067
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1068
|
+
#
|
1069
|
+
# @example Request syntax with placeholder values
|
1070
|
+
#
|
1071
|
+
# resp = client.list_connector_operations({
|
1072
|
+
# connector_arn: "__string", # required
|
1073
|
+
# max_results: 1,
|
1074
|
+
# next_token: "__string",
|
1075
|
+
# })
|
1076
|
+
#
|
1077
|
+
# @example Response structure
|
1078
|
+
#
|
1079
|
+
# resp.connector_operations #=> Array
|
1080
|
+
# resp.connector_operations[0].connector_operation_arn #=> String
|
1081
|
+
# resp.connector_operations[0].connector_operation_type #=> String, one of "UPDATE_WORKER_SETTING", "UPDATE_CONNECTOR_CONFIGURATION", "ISOLATE_CONNECTOR", "RESTORE_CONNECTOR"
|
1082
|
+
# resp.connector_operations[0].connector_operation_state #=> String, one of "PENDING", "UPDATE_IN_PROGRESS", "UPDATE_COMPLETE", "UPDATE_FAILED", "ROLLBACK_IN_PROGRESS", "ROLLBACK_FAILED", "ROLLBACK_COMPLETE"
|
1083
|
+
# resp.connector_operations[0].creation_time #=> Time
|
1084
|
+
# resp.connector_operations[0].end_time #=> Time
|
1085
|
+
# resp.next_token #=> String
|
1086
|
+
#
|
1087
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafkaconnect-2021-09-14/ListConnectorOperations AWS API Documentation
|
1088
|
+
#
|
1089
|
+
# @overload list_connector_operations(params = {})
|
1090
|
+
# @param [Hash] params ({})
|
1091
|
+
def list_connector_operations(params = {}, options = {})
|
1092
|
+
req = build_request(:list_connector_operations, params)
|
1093
|
+
req.send_request(options)
|
1094
|
+
end
|
1095
|
+
|
981
1096
|
# Returns a list of all the connectors in this account and Region. The
|
982
1097
|
# list is limited to connectors whose name starts with the specified
|
983
1098
|
# prefix. The response also includes a description of each of the listed
|
@@ -1064,14 +1179,14 @@ module Aws::KafkaConnect
|
|
1064
1179
|
# @option params [Integer] :max_results
|
1065
1180
|
# The maximum number of custom plugins to list in one response.
|
1066
1181
|
#
|
1067
|
-
# @option params [String] :name_prefix
|
1068
|
-
# Lists custom plugin names that start with the specified text string.
|
1069
|
-
#
|
1070
1182
|
# @option params [String] :next_token
|
1071
1183
|
# If the response of a ListCustomPlugins operation is truncated, it will
|
1072
1184
|
# include a NextToken. Send this NextToken in a subsequent request to
|
1073
1185
|
# continue listing from where the previous operation left off.
|
1074
1186
|
#
|
1187
|
+
# @option params [String] :name_prefix
|
1188
|
+
# Lists custom plugin names that start with the specified text string.
|
1189
|
+
#
|
1075
1190
|
# @return [Types::ListCustomPluginsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1076
1191
|
#
|
1077
1192
|
# * {Types::ListCustomPluginsResponse#custom_plugins #custom_plugins} => Array<Types::CustomPluginSummary>
|
@@ -1083,8 +1198,8 @@ module Aws::KafkaConnect
|
|
1083
1198
|
#
|
1084
1199
|
# resp = client.list_custom_plugins({
|
1085
1200
|
# max_results: 1,
|
1086
|
-
# name_prefix: "__string",
|
1087
1201
|
# next_token: "__string",
|
1202
|
+
# name_prefix: "__string",
|
1088
1203
|
# })
|
1089
1204
|
#
|
1090
1205
|
# @example Response structure
|
@@ -1151,16 +1266,16 @@ module Aws::KafkaConnect
|
|
1151
1266
|
# @option params [Integer] :max_results
|
1152
1267
|
# The maximum number of worker configurations to list in one response.
|
1153
1268
|
#
|
1154
|
-
# @option params [String] :name_prefix
|
1155
|
-
# Lists worker configuration names that start with the specified text
|
1156
|
-
# string.
|
1157
|
-
#
|
1158
1269
|
# @option params [String] :next_token
|
1159
1270
|
# If the response of a ListWorkerConfigurations operation is truncated,
|
1160
1271
|
# it will include a NextToken. Send this NextToken in a subsequent
|
1161
1272
|
# request to continue listing from where the previous operation left
|
1162
1273
|
# off.
|
1163
1274
|
#
|
1275
|
+
# @option params [String] :name_prefix
|
1276
|
+
# Lists worker configuration names that start with the specified text
|
1277
|
+
# string.
|
1278
|
+
#
|
1164
1279
|
# @return [Types::ListWorkerConfigurationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1165
1280
|
#
|
1166
1281
|
# * {Types::ListWorkerConfigurationsResponse#next_token #next_token} => String
|
@@ -1172,8 +1287,8 @@ module Aws::KafkaConnect
|
|
1172
1287
|
#
|
1173
1288
|
# resp = client.list_worker_configurations({
|
1174
1289
|
# max_results: 1,
|
1175
|
-
# name_prefix: "__string",
|
1176
1290
|
# next_token: "__string",
|
1291
|
+
# name_prefix: "__string",
|
1177
1292
|
# })
|
1178
1293
|
#
|
1179
1294
|
# @example Response structure
|
@@ -1256,9 +1371,13 @@ module Aws::KafkaConnect
|
|
1256
1371
|
|
1257
1372
|
# Updates the specified connector.
|
1258
1373
|
#
|
1259
|
-
# @option params [
|
1374
|
+
# @option params [Types::CapacityUpdate] :capacity
|
1260
1375
|
# The target capacity.
|
1261
1376
|
#
|
1377
|
+
# @option params [Hash<String,String>] :connector_configuration
|
1378
|
+
# A map of keys to values that represent the configuration for the
|
1379
|
+
# connector.
|
1380
|
+
#
|
1262
1381
|
# @option params [required, String] :connector_arn
|
1263
1382
|
# The Amazon Resource Name (ARN) of the connector that you want to
|
1264
1383
|
# update.
|
@@ -1270,11 +1389,12 @@ module Aws::KafkaConnect
|
|
1270
1389
|
#
|
1271
1390
|
# * {Types::UpdateConnectorResponse#connector_arn #connector_arn} => String
|
1272
1391
|
# * {Types::UpdateConnectorResponse#connector_state #connector_state} => String
|
1392
|
+
# * {Types::UpdateConnectorResponse#connector_operation_arn #connector_operation_arn} => String
|
1273
1393
|
#
|
1274
1394
|
# @example Request syntax with placeholder values
|
1275
1395
|
#
|
1276
1396
|
# resp = client.update_connector({
|
1277
|
-
# capacity: {
|
1397
|
+
# capacity: {
|
1278
1398
|
# auto_scaling: {
|
1279
1399
|
# max_worker_count: 1, # required
|
1280
1400
|
# mcu_count: 1, # required
|
@@ -1291,6 +1411,9 @@ module Aws::KafkaConnect
|
|
1291
1411
|
# worker_count: 1, # required
|
1292
1412
|
# },
|
1293
1413
|
# },
|
1414
|
+
# connector_configuration: {
|
1415
|
+
# "__string" => "__string",
|
1416
|
+
# },
|
1294
1417
|
# connector_arn: "__string", # required
|
1295
1418
|
# current_version: "__string", # required
|
1296
1419
|
# })
|
@@ -1299,6 +1422,7 @@ module Aws::KafkaConnect
|
|
1299
1422
|
#
|
1300
1423
|
# resp.connector_arn #=> String
|
1301
1424
|
# resp.connector_state #=> String, one of "RUNNING", "CREATING", "UPDATING", "DELETING", "FAILED"
|
1425
|
+
# resp.connector_operation_arn #=> String
|
1302
1426
|
#
|
1303
1427
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kafkaconnect-2021-09-14/UpdateConnector AWS API Documentation
|
1304
1428
|
#
|
@@ -1327,7 +1451,7 @@ module Aws::KafkaConnect
|
|
1327
1451
|
tracer: tracer
|
1328
1452
|
)
|
1329
1453
|
context[:gem_name] = 'aws-sdk-kafkaconnect'
|
1330
|
-
context[:gem_version] = '1.
|
1454
|
+
context[:gem_version] = '1.34.0'
|
1331
1455
|
Seahorse::Client::Request.new(handlers, context)
|
1332
1456
|
end
|
1333
1457
|
|
@@ -26,6 +26,14 @@ module Aws::KafkaConnect
|
|
26
26
|
CloudWatchLogsLogDelivery = Shapes::StructureShape.new(name: 'CloudWatchLogsLogDelivery')
|
27
27
|
CloudWatchLogsLogDeliveryDescription = Shapes::StructureShape.new(name: 'CloudWatchLogsLogDeliveryDescription')
|
28
28
|
ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
|
29
|
+
ConnectorConfiguration = Shapes::MapShape.new(name: 'ConnectorConfiguration')
|
30
|
+
ConnectorConfigurationUpdate = Shapes::MapShape.new(name: 'ConnectorConfigurationUpdate')
|
31
|
+
ConnectorOperationState = Shapes::StringShape.new(name: 'ConnectorOperationState')
|
32
|
+
ConnectorOperationStep = Shapes::StructureShape.new(name: 'ConnectorOperationStep')
|
33
|
+
ConnectorOperationStepState = Shapes::StringShape.new(name: 'ConnectorOperationStepState')
|
34
|
+
ConnectorOperationStepType = Shapes::StringShape.new(name: 'ConnectorOperationStepType')
|
35
|
+
ConnectorOperationSummary = Shapes::StructureShape.new(name: 'ConnectorOperationSummary')
|
36
|
+
ConnectorOperationType = Shapes::StringShape.new(name: 'ConnectorOperationType')
|
29
37
|
ConnectorState = Shapes::StringShape.new(name: 'ConnectorState')
|
30
38
|
ConnectorSummary = Shapes::StructureShape.new(name: 'ConnectorSummary')
|
31
39
|
CreateConnectorRequest = Shapes::StructureShape.new(name: 'CreateConnectorRequest')
|
@@ -49,6 +57,8 @@ module Aws::KafkaConnect
|
|
49
57
|
DeleteCustomPluginResponse = Shapes::StructureShape.new(name: 'DeleteCustomPluginResponse')
|
50
58
|
DeleteWorkerConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteWorkerConfigurationRequest')
|
51
59
|
DeleteWorkerConfigurationResponse = Shapes::StructureShape.new(name: 'DeleteWorkerConfigurationResponse')
|
60
|
+
DescribeConnectorOperationRequest = Shapes::StructureShape.new(name: 'DescribeConnectorOperationRequest')
|
61
|
+
DescribeConnectorOperationResponse = Shapes::StructureShape.new(name: 'DescribeConnectorOperationResponse')
|
52
62
|
DescribeConnectorRequest = Shapes::StructureShape.new(name: 'DescribeConnectorRequest')
|
53
63
|
DescribeConnectorResponse = Shapes::StructureShape.new(name: 'DescribeConnectorResponse')
|
54
64
|
DescribeCustomPluginRequest = Shapes::StructureShape.new(name: 'DescribeCustomPluginRequest')
|
@@ -67,6 +77,8 @@ module Aws::KafkaConnect
|
|
67
77
|
KafkaClusterEncryptionInTransit = Shapes::StructureShape.new(name: 'KafkaClusterEncryptionInTransit')
|
68
78
|
KafkaClusterEncryptionInTransitDescription = Shapes::StructureShape.new(name: 'KafkaClusterEncryptionInTransitDescription')
|
69
79
|
KafkaClusterEncryptionInTransitType = Shapes::StringShape.new(name: 'KafkaClusterEncryptionInTransitType')
|
80
|
+
ListConnectorOperationsRequest = Shapes::StructureShape.new(name: 'ListConnectorOperationsRequest')
|
81
|
+
ListConnectorOperationsResponse = Shapes::StructureShape.new(name: 'ListConnectorOperationsResponse')
|
70
82
|
ListConnectorsRequest = Shapes::StructureShape.new(name: 'ListConnectorsRequest')
|
71
83
|
ListConnectorsResponse = Shapes::StructureShape.new(name: 'ListConnectorsResponse')
|
72
84
|
ListCustomPluginsRequest = Shapes::StructureShape.new(name: 'ListCustomPluginsRequest')
|
@@ -118,11 +130,13 @@ module Aws::KafkaConnect
|
|
118
130
|
WorkerConfigurationSummary = Shapes::StructureShape.new(name: 'WorkerConfigurationSummary')
|
119
131
|
WorkerLogDelivery = Shapes::StructureShape.new(name: 'WorkerLogDelivery')
|
120
132
|
WorkerLogDeliveryDescription = Shapes::StructureShape.new(name: 'WorkerLogDeliveryDescription')
|
133
|
+
WorkerSetting = Shapes::StructureShape.new(name: 'WorkerSetting')
|
121
134
|
__boolean = Shapes::BooleanShape.new(name: '__boolean')
|
122
135
|
__integer = Shapes::IntegerShape.new(name: '__integer')
|
123
|
-
__integerMin1Max10 = Shapes::IntegerShape.new(name: '__integerMin1Max10')
|
124
136
|
__integerMin1Max100 = Shapes::IntegerShape.new(name: '__integerMin1Max100')
|
125
137
|
__integerMin1Max8 = Shapes::IntegerShape.new(name: '__integerMin1Max8')
|
138
|
+
__listOfConnectorOperationStep = Shapes::ListShape.new(name: '__listOfConnectorOperationStep')
|
139
|
+
__listOfConnectorOperationSummary = Shapes::ListShape.new(name: '__listOfConnectorOperationSummary')
|
126
140
|
__listOfConnectorSummary = Shapes::ListShape.new(name: '__listOfConnectorSummary')
|
127
141
|
__listOfCustomPluginSummary = Shapes::ListShape.new(name: '__listOfCustomPluginSummary')
|
128
142
|
__listOfPlugin = Shapes::ListShape.new(name: '__listOfPlugin')
|
@@ -132,7 +146,6 @@ module Aws::KafkaConnect
|
|
132
146
|
__long = Shapes::IntegerShape.new(name: '__long')
|
133
147
|
__longMin1 = Shapes::IntegerShape.new(name: '__longMin1')
|
134
148
|
__sensitiveString = Shapes::StringShape.new(name: '__sensitiveString')
|
135
|
-
__sensitive__mapOf__string = Shapes::MapShape.new(name: '__sensitive__mapOf__string')
|
136
149
|
__string = Shapes::StringShape.new(name: '__string')
|
137
150
|
__stringMax1024 = Shapes::StringShape.new(name: '__stringMax1024')
|
138
151
|
__stringMin1Max128 = Shapes::StringShape.new(name: '__stringMin1Max128')
|
@@ -146,9 +159,9 @@ module Aws::KafkaConnect
|
|
146
159
|
ApacheKafkaClusterDescription.add_member(:vpc, Shapes::ShapeRef.new(shape: VpcDescription, location_name: "vpc"))
|
147
160
|
ApacheKafkaClusterDescription.struct_class = Types::ApacheKafkaClusterDescription
|
148
161
|
|
149
|
-
AutoScaling.add_member(:max_worker_count, Shapes::ShapeRef.new(shape:
|
162
|
+
AutoScaling.add_member(:max_worker_count, Shapes::ShapeRef.new(shape: __integer, required: true, location_name: "maxWorkerCount"))
|
150
163
|
AutoScaling.add_member(:mcu_count, Shapes::ShapeRef.new(shape: __integerMin1Max8, required: true, location_name: "mcuCount"))
|
151
|
-
AutoScaling.add_member(:min_worker_count, Shapes::ShapeRef.new(shape:
|
164
|
+
AutoScaling.add_member(:min_worker_count, Shapes::ShapeRef.new(shape: __integer, required: true, location_name: "minWorkerCount"))
|
152
165
|
AutoScaling.add_member(:scale_in_policy, Shapes::ShapeRef.new(shape: ScaleInPolicy, location_name: "scaleInPolicy"))
|
153
166
|
AutoScaling.add_member(:scale_out_policy, Shapes::ShapeRef.new(shape: ScaleOutPolicy, location_name: "scaleOutPolicy"))
|
154
167
|
AutoScaling.struct_class = Types::AutoScaling
|
@@ -160,9 +173,9 @@ module Aws::KafkaConnect
|
|
160
173
|
AutoScalingDescription.add_member(:scale_out_policy, Shapes::ShapeRef.new(shape: ScaleOutPolicyDescription, location_name: "scaleOutPolicy"))
|
161
174
|
AutoScalingDescription.struct_class = Types::AutoScalingDescription
|
162
175
|
|
163
|
-
AutoScalingUpdate.add_member(:max_worker_count, Shapes::ShapeRef.new(shape:
|
176
|
+
AutoScalingUpdate.add_member(:max_worker_count, Shapes::ShapeRef.new(shape: __integer, required: true, location_name: "maxWorkerCount"))
|
164
177
|
AutoScalingUpdate.add_member(:mcu_count, Shapes::ShapeRef.new(shape: __integerMin1Max8, required: true, location_name: "mcuCount"))
|
165
|
-
AutoScalingUpdate.add_member(:min_worker_count, Shapes::ShapeRef.new(shape:
|
178
|
+
AutoScalingUpdate.add_member(:min_worker_count, Shapes::ShapeRef.new(shape: __integer, required: true, location_name: "minWorkerCount"))
|
166
179
|
AutoScalingUpdate.add_member(:scale_in_policy, Shapes::ShapeRef.new(shape: ScaleInPolicyUpdate, required: true, location_name: "scaleInPolicy"))
|
167
180
|
AutoScalingUpdate.add_member(:scale_out_policy, Shapes::ShapeRef.new(shape: ScaleOutPolicyUpdate, required: true, location_name: "scaleOutPolicy"))
|
168
181
|
AutoScalingUpdate.struct_class = Types::AutoScalingUpdate
|
@@ -193,6 +206,23 @@ module Aws::KafkaConnect
|
|
193
206
|
ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: __string, location_name: "message"))
|
194
207
|
ConflictException.struct_class = Types::ConflictException
|
195
208
|
|
209
|
+
ConnectorConfiguration.key = Shapes::ShapeRef.new(shape: __string)
|
210
|
+
ConnectorConfiguration.value = Shapes::ShapeRef.new(shape: __string)
|
211
|
+
|
212
|
+
ConnectorConfigurationUpdate.key = Shapes::ShapeRef.new(shape: __string)
|
213
|
+
ConnectorConfigurationUpdate.value = Shapes::ShapeRef.new(shape: __string)
|
214
|
+
|
215
|
+
ConnectorOperationStep.add_member(:step_type, Shapes::ShapeRef.new(shape: ConnectorOperationStepType, location_name: "stepType"))
|
216
|
+
ConnectorOperationStep.add_member(:step_state, Shapes::ShapeRef.new(shape: ConnectorOperationStepState, location_name: "stepState"))
|
217
|
+
ConnectorOperationStep.struct_class = Types::ConnectorOperationStep
|
218
|
+
|
219
|
+
ConnectorOperationSummary.add_member(:connector_operation_arn, Shapes::ShapeRef.new(shape: __string, location_name: "connectorOperationArn"))
|
220
|
+
ConnectorOperationSummary.add_member(:connector_operation_type, Shapes::ShapeRef.new(shape: ConnectorOperationType, location_name: "connectorOperationType"))
|
221
|
+
ConnectorOperationSummary.add_member(:connector_operation_state, Shapes::ShapeRef.new(shape: ConnectorOperationState, location_name: "connectorOperationState"))
|
222
|
+
ConnectorOperationSummary.add_member(:creation_time, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "creationTime"))
|
223
|
+
ConnectorOperationSummary.add_member(:end_time, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "endTime"))
|
224
|
+
ConnectorOperationSummary.struct_class = Types::ConnectorOperationSummary
|
225
|
+
|
196
226
|
ConnectorSummary.add_member(:capacity, Shapes::ShapeRef.new(shape: CapacityDescription, location_name: "capacity"))
|
197
227
|
ConnectorSummary.add_member(:connector_arn, Shapes::ShapeRef.new(shape: __string, location_name: "connectorArn"))
|
198
228
|
ConnectorSummary.add_member(:connector_description, Shapes::ShapeRef.new(shape: __string, location_name: "connectorDescription"))
|
@@ -211,7 +241,7 @@ module Aws::KafkaConnect
|
|
211
241
|
ConnectorSummary.struct_class = Types::ConnectorSummary
|
212
242
|
|
213
243
|
CreateConnectorRequest.add_member(:capacity, Shapes::ShapeRef.new(shape: Capacity, required: true, location_name: "capacity"))
|
214
|
-
CreateConnectorRequest.add_member(:connector_configuration, Shapes::ShapeRef.new(shape:
|
244
|
+
CreateConnectorRequest.add_member(:connector_configuration, Shapes::ShapeRef.new(shape: ConnectorConfiguration, required: true, location_name: "connectorConfiguration"))
|
215
245
|
CreateConnectorRequest.add_member(:connector_description, Shapes::ShapeRef.new(shape: __stringMax1024, location_name: "connectorDescription"))
|
216
246
|
CreateConnectorRequest.add_member(:connector_name, Shapes::ShapeRef.new(shape: __stringMin1Max128, required: true, location_name: "connectorName"))
|
217
247
|
CreateConnectorRequest.add_member(:kafka_cluster, Shapes::ShapeRef.new(shape: KafkaCluster, required: true, location_name: "kafkaCluster"))
|
@@ -221,8 +251,8 @@ module Aws::KafkaConnect
|
|
221
251
|
CreateConnectorRequest.add_member(:log_delivery, Shapes::ShapeRef.new(shape: LogDelivery, location_name: "logDelivery"))
|
222
252
|
CreateConnectorRequest.add_member(:plugins, Shapes::ShapeRef.new(shape: __listOfPlugin, required: true, location_name: "plugins"))
|
223
253
|
CreateConnectorRequest.add_member(:service_execution_role_arn, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "serviceExecutionRoleArn"))
|
224
|
-
CreateConnectorRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
225
254
|
CreateConnectorRequest.add_member(:worker_configuration, Shapes::ShapeRef.new(shape: WorkerConfiguration, location_name: "workerConfiguration"))
|
255
|
+
CreateConnectorRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
226
256
|
CreateConnectorRequest.struct_class = Types::CreateConnectorRequest
|
227
257
|
|
228
258
|
CreateConnectorResponse.add_member(:connector_arn, Shapes::ShapeRef.new(shape: __string, location_name: "connectorArn"))
|
@@ -312,12 +342,29 @@ module Aws::KafkaConnect
|
|
312
342
|
DeleteWorkerConfigurationResponse.add_member(:worker_configuration_state, Shapes::ShapeRef.new(shape: WorkerConfigurationState, location_name: "workerConfigurationState"))
|
313
343
|
DeleteWorkerConfigurationResponse.struct_class = Types::DeleteWorkerConfigurationResponse
|
314
344
|
|
345
|
+
DescribeConnectorOperationRequest.add_member(:connector_operation_arn, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "connectorOperationArn"))
|
346
|
+
DescribeConnectorOperationRequest.struct_class = Types::DescribeConnectorOperationRequest
|
347
|
+
|
348
|
+
DescribeConnectorOperationResponse.add_member(:connector_arn, Shapes::ShapeRef.new(shape: __string, location_name: "connectorArn"))
|
349
|
+
DescribeConnectorOperationResponse.add_member(:connector_operation_arn, Shapes::ShapeRef.new(shape: __string, location_name: "connectorOperationArn"))
|
350
|
+
DescribeConnectorOperationResponse.add_member(:connector_operation_state, Shapes::ShapeRef.new(shape: ConnectorOperationState, location_name: "connectorOperationState"))
|
351
|
+
DescribeConnectorOperationResponse.add_member(:connector_operation_type, Shapes::ShapeRef.new(shape: ConnectorOperationType, location_name: "connectorOperationType"))
|
352
|
+
DescribeConnectorOperationResponse.add_member(:operation_steps, Shapes::ShapeRef.new(shape: __listOfConnectorOperationStep, location_name: "operationSteps"))
|
353
|
+
DescribeConnectorOperationResponse.add_member(:origin_worker_setting, Shapes::ShapeRef.new(shape: WorkerSetting, location_name: "originWorkerSetting"))
|
354
|
+
DescribeConnectorOperationResponse.add_member(:origin_connector_configuration, Shapes::ShapeRef.new(shape: ConnectorConfiguration, location_name: "originConnectorConfiguration"))
|
355
|
+
DescribeConnectorOperationResponse.add_member(:target_worker_setting, Shapes::ShapeRef.new(shape: WorkerSetting, location_name: "targetWorkerSetting"))
|
356
|
+
DescribeConnectorOperationResponse.add_member(:target_connector_configuration, Shapes::ShapeRef.new(shape: ConnectorConfiguration, location_name: "targetConnectorConfiguration"))
|
357
|
+
DescribeConnectorOperationResponse.add_member(:error_info, Shapes::ShapeRef.new(shape: StateDescription, location_name: "errorInfo"))
|
358
|
+
DescribeConnectorOperationResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "creationTime"))
|
359
|
+
DescribeConnectorOperationResponse.add_member(:end_time, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "endTime"))
|
360
|
+
DescribeConnectorOperationResponse.struct_class = Types::DescribeConnectorOperationResponse
|
361
|
+
|
315
362
|
DescribeConnectorRequest.add_member(:connector_arn, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "connectorArn"))
|
316
363
|
DescribeConnectorRequest.struct_class = Types::DescribeConnectorRequest
|
317
364
|
|
318
365
|
DescribeConnectorResponse.add_member(:capacity, Shapes::ShapeRef.new(shape: CapacityDescription, location_name: "capacity"))
|
319
366
|
DescribeConnectorResponse.add_member(:connector_arn, Shapes::ShapeRef.new(shape: __string, location_name: "connectorArn"))
|
320
|
-
DescribeConnectorResponse.add_member(:connector_configuration, Shapes::ShapeRef.new(shape:
|
367
|
+
DescribeConnectorResponse.add_member(:connector_configuration, Shapes::ShapeRef.new(shape: ConnectorConfiguration, location_name: "connectorConfiguration"))
|
321
368
|
DescribeConnectorResponse.add_member(:connector_description, Shapes::ShapeRef.new(shape: __string, location_name: "connectorDescription"))
|
322
369
|
DescribeConnectorResponse.add_member(:connector_name, Shapes::ShapeRef.new(shape: __string, location_name: "connectorName"))
|
323
370
|
DescribeConnectorResponse.add_member(:connector_state, Shapes::ShapeRef.new(shape: ConnectorState, location_name: "connectorState"))
|
@@ -330,8 +377,8 @@ module Aws::KafkaConnect
|
|
330
377
|
DescribeConnectorResponse.add_member(:log_delivery, Shapes::ShapeRef.new(shape: LogDeliveryDescription, location_name: "logDelivery"))
|
331
378
|
DescribeConnectorResponse.add_member(:plugins, Shapes::ShapeRef.new(shape: __listOfPluginDescription, location_name: "plugins"))
|
332
379
|
DescribeConnectorResponse.add_member(:service_execution_role_arn, Shapes::ShapeRef.new(shape: __string, location_name: "serviceExecutionRoleArn"))
|
333
|
-
DescribeConnectorResponse.add_member(:state_description, Shapes::ShapeRef.new(shape: StateDescription, location_name: "stateDescription"))
|
334
380
|
DescribeConnectorResponse.add_member(:worker_configuration, Shapes::ShapeRef.new(shape: WorkerConfigurationDescription, location_name: "workerConfiguration"))
|
381
|
+
DescribeConnectorResponse.add_member(:state_description, Shapes::ShapeRef.new(shape: StateDescription, location_name: "stateDescription"))
|
335
382
|
DescribeConnectorResponse.struct_class = Types::DescribeConnectorResponse
|
336
383
|
|
337
384
|
DescribeCustomPluginRequest.add_member(:custom_plugin_arn, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "customPluginArn"))
|
@@ -389,6 +436,15 @@ module Aws::KafkaConnect
|
|
389
436
|
KafkaClusterEncryptionInTransitDescription.add_member(:encryption_type, Shapes::ShapeRef.new(shape: KafkaClusterEncryptionInTransitType, location_name: "encryptionType"))
|
390
437
|
KafkaClusterEncryptionInTransitDescription.struct_class = Types::KafkaClusterEncryptionInTransitDescription
|
391
438
|
|
439
|
+
ListConnectorOperationsRequest.add_member(:connector_arn, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "connectorArn"))
|
440
|
+
ListConnectorOperationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
441
|
+
ListConnectorOperationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "nextToken"))
|
442
|
+
ListConnectorOperationsRequest.struct_class = Types::ListConnectorOperationsRequest
|
443
|
+
|
444
|
+
ListConnectorOperationsResponse.add_member(:connector_operations, Shapes::ShapeRef.new(shape: __listOfConnectorOperationSummary, location_name: "connectorOperations"))
|
445
|
+
ListConnectorOperationsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
|
446
|
+
ListConnectorOperationsResponse.struct_class = Types::ListConnectorOperationsResponse
|
447
|
+
|
392
448
|
ListConnectorsRequest.add_member(:connector_name_prefix, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "connectorNamePrefix"))
|
393
449
|
ListConnectorsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
394
450
|
ListConnectorsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "nextToken"))
|
@@ -399,8 +455,8 @@ module Aws::KafkaConnect
|
|
399
455
|
ListConnectorsResponse.struct_class = Types::ListConnectorsResponse
|
400
456
|
|
401
457
|
ListCustomPluginsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
402
|
-
ListCustomPluginsRequest.add_member(:name_prefix, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "namePrefix"))
|
403
458
|
ListCustomPluginsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "nextToken"))
|
459
|
+
ListCustomPluginsRequest.add_member(:name_prefix, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "namePrefix"))
|
404
460
|
ListCustomPluginsRequest.struct_class = Types::ListCustomPluginsRequest
|
405
461
|
|
406
462
|
ListCustomPluginsResponse.add_member(:custom_plugins, Shapes::ShapeRef.new(shape: __listOfCustomPluginSummary, location_name: "customPlugins"))
|
@@ -414,8 +470,8 @@ module Aws::KafkaConnect
|
|
414
470
|
ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
|
415
471
|
|
416
472
|
ListWorkerConfigurationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
417
|
-
ListWorkerConfigurationsRequest.add_member(:name_prefix, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "namePrefix"))
|
418
473
|
ListWorkerConfigurationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "nextToken"))
|
474
|
+
ListWorkerConfigurationsRequest.add_member(:name_prefix, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "namePrefix"))
|
419
475
|
ListWorkerConfigurationsRequest.struct_class = Types::ListWorkerConfigurationsRequest
|
420
476
|
|
421
477
|
ListWorkerConfigurationsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
|
@@ -438,7 +494,7 @@ module Aws::KafkaConnect
|
|
438
494
|
PluginDescription.struct_class = Types::PluginDescription
|
439
495
|
|
440
496
|
ProvisionedCapacity.add_member(:mcu_count, Shapes::ShapeRef.new(shape: __integerMin1Max8, required: true, location_name: "mcuCount"))
|
441
|
-
ProvisionedCapacity.add_member(:worker_count, Shapes::ShapeRef.new(shape:
|
497
|
+
ProvisionedCapacity.add_member(:worker_count, Shapes::ShapeRef.new(shape: __integer, required: true, location_name: "workerCount"))
|
442
498
|
ProvisionedCapacity.struct_class = Types::ProvisionedCapacity
|
443
499
|
|
444
500
|
ProvisionedCapacityDescription.add_member(:mcu_count, Shapes::ShapeRef.new(shape: __integer, location_name: "mcuCount"))
|
@@ -446,7 +502,7 @@ module Aws::KafkaConnect
|
|
446
502
|
ProvisionedCapacityDescription.struct_class = Types::ProvisionedCapacityDescription
|
447
503
|
|
448
504
|
ProvisionedCapacityUpdate.add_member(:mcu_count, Shapes::ShapeRef.new(shape: __integerMin1Max8, required: true, location_name: "mcuCount"))
|
449
|
-
ProvisionedCapacityUpdate.add_member(:worker_count, Shapes::ShapeRef.new(shape:
|
505
|
+
ProvisionedCapacityUpdate.add_member(:worker_count, Shapes::ShapeRef.new(shape: __integer, required: true, location_name: "workerCount"))
|
450
506
|
ProvisionedCapacityUpdate.struct_class = Types::ProvisionedCapacityUpdate
|
451
507
|
|
452
508
|
S3Location.add_member(:bucket_arn, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "bucketArn"))
|
@@ -517,13 +573,15 @@ module Aws::KafkaConnect
|
|
517
573
|
|
518
574
|
UntagResourceResponse.struct_class = Types::UntagResourceResponse
|
519
575
|
|
520
|
-
UpdateConnectorRequest.add_member(:capacity, Shapes::ShapeRef.new(shape: CapacityUpdate,
|
576
|
+
UpdateConnectorRequest.add_member(:capacity, Shapes::ShapeRef.new(shape: CapacityUpdate, location_name: "capacity"))
|
577
|
+
UpdateConnectorRequest.add_member(:connector_configuration, Shapes::ShapeRef.new(shape: ConnectorConfigurationUpdate, location_name: "connectorConfiguration"))
|
521
578
|
UpdateConnectorRequest.add_member(:connector_arn, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "connectorArn"))
|
522
579
|
UpdateConnectorRequest.add_member(:current_version, Shapes::ShapeRef.new(shape: __string, required: true, location: "querystring", location_name: "currentVersion"))
|
523
580
|
UpdateConnectorRequest.struct_class = Types::UpdateConnectorRequest
|
524
581
|
|
525
582
|
UpdateConnectorResponse.add_member(:connector_arn, Shapes::ShapeRef.new(shape: __string, location_name: "connectorArn"))
|
526
583
|
UpdateConnectorResponse.add_member(:connector_state, Shapes::ShapeRef.new(shape: ConnectorState, location_name: "connectorState"))
|
584
|
+
UpdateConnectorResponse.add_member(:connector_operation_arn, Shapes::ShapeRef.new(shape: __string, location_name: "connectorOperationArn"))
|
527
585
|
UpdateConnectorResponse.struct_class = Types::UpdateConnectorResponse
|
528
586
|
|
529
587
|
Vpc.add_member(:security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroups"))
|
@@ -571,6 +629,13 @@ module Aws::KafkaConnect
|
|
571
629
|
WorkerLogDeliveryDescription.add_member(:s3, Shapes::ShapeRef.new(shape: S3LogDeliveryDescription, location_name: "s3"))
|
572
630
|
WorkerLogDeliveryDescription.struct_class = Types::WorkerLogDeliveryDescription
|
573
631
|
|
632
|
+
WorkerSetting.add_member(:capacity, Shapes::ShapeRef.new(shape: CapacityDescription, location_name: "capacity"))
|
633
|
+
WorkerSetting.struct_class = Types::WorkerSetting
|
634
|
+
|
635
|
+
__listOfConnectorOperationStep.member = Shapes::ShapeRef.new(shape: ConnectorOperationStep)
|
636
|
+
|
637
|
+
__listOfConnectorOperationSummary.member = Shapes::ShapeRef.new(shape: ConnectorOperationSummary)
|
638
|
+
|
574
639
|
__listOfConnectorSummary.member = Shapes::ShapeRef.new(shape: ConnectorSummary)
|
575
640
|
|
576
641
|
__listOfCustomPluginSummary.member = Shapes::ShapeRef.new(shape: CustomPluginSummary)
|
@@ -583,9 +648,6 @@ module Aws::KafkaConnect
|
|
583
648
|
|
584
649
|
__listOf__string.member = Shapes::ShapeRef.new(shape: __string)
|
585
650
|
|
586
|
-
__sensitive__mapOf__string.key = Shapes::ShapeRef.new(shape: __string)
|
587
|
-
__sensitive__mapOf__string.value = Shapes::ShapeRef.new(shape: __string)
|
588
|
-
|
589
651
|
|
590
652
|
# @api private
|
591
653
|
API = Seahorse::Model::Api.new.tap do |api|
|
@@ -594,9 +656,10 @@ module Aws::KafkaConnect
|
|
594
656
|
|
595
657
|
api.metadata = {
|
596
658
|
"apiVersion" => "2021-09-14",
|
659
|
+
"auth" => ["aws.auth#sigv4"],
|
597
660
|
"endpointPrefix" => "kafkaconnect",
|
598
|
-
"jsonVersion" => "1.1",
|
599
661
|
"protocol" => "rest-json",
|
662
|
+
"protocols" => ["rest-json"],
|
600
663
|
"serviceAbbreviation" => "Kafka Connect",
|
601
664
|
"serviceFullName" => "Managed Streaming for Kafka Connect",
|
602
665
|
"serviceId" => "KafkaConnect",
|
@@ -713,6 +776,21 @@ module Aws::KafkaConnect
|
|
713
776
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
714
777
|
end)
|
715
778
|
|
779
|
+
api.add_operation(:describe_connector_operation, Seahorse::Model::Operation.new.tap do |o|
|
780
|
+
o.name = "DescribeConnectorOperation"
|
781
|
+
o.http_method = "GET"
|
782
|
+
o.http_request_uri = "/v1/connectorOperations/{connectorOperationArn}"
|
783
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeConnectorOperationRequest)
|
784
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeConnectorOperationResponse)
|
785
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
786
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
787
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
788
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
789
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
790
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
791
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
792
|
+
end)
|
793
|
+
|
716
794
|
api.add_operation(:describe_custom_plugin, Seahorse::Model::Operation.new.tap do |o|
|
717
795
|
o.name = "DescribeCustomPlugin"
|
718
796
|
o.http_method = "GET"
|
@@ -743,6 +821,27 @@ module Aws::KafkaConnect
|
|
743
821
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
744
822
|
end)
|
745
823
|
|
824
|
+
api.add_operation(:list_connector_operations, Seahorse::Model::Operation.new.tap do |o|
|
825
|
+
o.name = "ListConnectorOperations"
|
826
|
+
o.http_method = "GET"
|
827
|
+
o.http_request_uri = "/v1/connectors/{connectorArn}/operations"
|
828
|
+
o.input = Shapes::ShapeRef.new(shape: ListConnectorOperationsRequest)
|
829
|
+
o.output = Shapes::ShapeRef.new(shape: ListConnectorOperationsResponse)
|
830
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
831
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
832
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
833
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
834
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
835
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
836
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
837
|
+
o[:pager] = Aws::Pager.new(
|
838
|
+
limit_key: "max_results",
|
839
|
+
tokens: {
|
840
|
+
"next_token" => "next_token"
|
841
|
+
}
|
842
|
+
)
|
843
|
+
end)
|
844
|
+
|
746
845
|
api.add_operation(:list_connectors, Seahorse::Model::Operation.new.tap do |o|
|
747
846
|
o.name = "ListConnectors"
|
748
847
|
o.http_method = "GET"
|