aws-sdk-kafkaconnect 1.17.0 → 1.19.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-kafkaconnect/client.rb +1 -1
- data/lib/aws-sdk-kafkaconnect/plugins/endpoints.rb +4 -2
- data/lib/aws-sdk-kafkaconnect.rb +1 -1
- data/sig/client.rbs +336 -0
- data/sig/errors.rbs +40 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +576 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f921059d67ed0a8d9a5773da388921567b016402f16bde21bd5f4b1704fd31bd
|
4
|
+
data.tar.gz: 8563d802482adb0a1675857e2f649a418802a51f22d59a5935589b899b09b77f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3e72d35b8a143d7f6e6762cdfed8c96398a9cf9549f6fd6b95ec1a2d35986e875178a229a97357890c54aa282c7748d376d1d69a5796517eefa4e9bf43a8c983
|
7
|
+
data.tar.gz: f6c9f53e6decaf95facfff1ddd8cbf7430b962e9b12a1bf2444497cff6e43995536cd08a6840a0af21cdd4c0926ae40dc06a1f29891f8d639116f8630d0e3375
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.19.0 (2024-01-26)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.18.0 (2023-11-28)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.17.0 (2023-11-22)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.19.0
|
@@ -1108,7 +1108,7 @@ module Aws::KafkaConnect
|
|
1108
1108
|
params: params,
|
1109
1109
|
config: config)
|
1110
1110
|
context[:gem_name] = 'aws-sdk-kafkaconnect'
|
1111
|
-
context[:gem_version] = '1.
|
1111
|
+
context[:gem_version] = '1.19.0'
|
1112
1112
|
Seahorse::Client::Request.new(handlers, context)
|
1113
1113
|
end
|
1114
1114
|
|
@@ -14,6 +14,7 @@ module Aws::KafkaConnect
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::KafkaConnect::EndpointProvider',
|
17
|
+
rbs_type: 'untyped',
|
17
18
|
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
18
19
|
'object that responds to `#resolve_endpoint(parameters)` '\
|
19
20
|
'where `parameters` is a Struct similar to '\
|
@@ -25,16 +26,17 @@ module Aws::KafkaConnect
|
|
25
26
|
# @api private
|
26
27
|
class Handler < Seahorse::Client::Handler
|
27
28
|
def call(context)
|
28
|
-
# If endpoint was discovered, do not resolve or apply the endpoint.
|
29
29
|
unless context[:discovered_endpoint]
|
30
30
|
params = parameters_for_operation(context)
|
31
31
|
endpoint = context.config.endpoint_provider.resolve_endpoint(params)
|
32
32
|
|
33
33
|
context.http_request.endpoint = endpoint.url
|
34
34
|
apply_endpoint_headers(context, endpoint.headers)
|
35
|
+
|
36
|
+
context[:endpoint_params] = params
|
37
|
+
context[:endpoint_properties] = endpoint.properties
|
35
38
|
end
|
36
39
|
|
37
|
-
context[:endpoint_params] = params
|
38
40
|
context[:auth_scheme] =
|
39
41
|
Aws::Endpoints.resolve_auth_scheme(context, endpoint)
|
40
42
|
|
data/lib/aws-sdk-kafkaconnect.rb
CHANGED
data/sig/client.rbs
ADDED
@@ -0,0 +1,336 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module KafkaConnect
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#initialize-instance_method
|
14
|
+
def self.new: (
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?stub_responses: untyped,
|
52
|
+
?token_provider: untyped,
|
53
|
+
?use_dualstack_endpoint: bool,
|
54
|
+
?use_fips_endpoint: bool,
|
55
|
+
?validate_params: bool,
|
56
|
+
?endpoint_provider: untyped,
|
57
|
+
?http_proxy: String,
|
58
|
+
?http_open_timeout: (Float | Integer),
|
59
|
+
?http_read_timeout: (Float | Integer),
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
63
|
+
?http_wire_trace: bool,
|
64
|
+
?ssl_verify_peer: bool,
|
65
|
+
?ssl_ca_bundle: String,
|
66
|
+
?ssl_ca_directory: String,
|
67
|
+
?ssl_ca_store: String,
|
68
|
+
?on_chunk_received: Proc,
|
69
|
+
?on_chunk_sent: Proc,
|
70
|
+
?raise_response_errors: bool
|
71
|
+
) -> instance
|
72
|
+
| (?Hash[Symbol, untyped]) -> instance
|
73
|
+
|
74
|
+
|
75
|
+
interface _CreateConnectorResponseSuccess
|
76
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateConnectorResponse]
|
77
|
+
def connector_arn: () -> ::String
|
78
|
+
def connector_name: () -> ::String
|
79
|
+
def connector_state: () -> ("RUNNING" | "CREATING" | "UPDATING" | "DELETING" | "FAILED")
|
80
|
+
end
|
81
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#create_connector-instance_method
|
82
|
+
def create_connector: (
|
83
|
+
capacity: {
|
84
|
+
auto_scaling: {
|
85
|
+
max_worker_count: ::Integer,
|
86
|
+
mcu_count: ::Integer,
|
87
|
+
min_worker_count: ::Integer,
|
88
|
+
scale_in_policy: {
|
89
|
+
cpu_utilization_percentage: ::Integer
|
90
|
+
}?,
|
91
|
+
scale_out_policy: {
|
92
|
+
cpu_utilization_percentage: ::Integer
|
93
|
+
}?
|
94
|
+
}?,
|
95
|
+
provisioned_capacity: {
|
96
|
+
mcu_count: ::Integer,
|
97
|
+
worker_count: ::Integer
|
98
|
+
}?
|
99
|
+
},
|
100
|
+
connector_configuration: Hash[::String, ::String],
|
101
|
+
?connector_description: ::String,
|
102
|
+
connector_name: ::String,
|
103
|
+
kafka_cluster: {
|
104
|
+
apache_kafka_cluster: {
|
105
|
+
bootstrap_servers: ::String,
|
106
|
+
vpc: {
|
107
|
+
security_groups: Array[::String]?,
|
108
|
+
subnets: Array[::String]
|
109
|
+
}
|
110
|
+
}
|
111
|
+
},
|
112
|
+
kafka_cluster_client_authentication: {
|
113
|
+
authentication_type: ("NONE" | "IAM")
|
114
|
+
},
|
115
|
+
kafka_cluster_encryption_in_transit: {
|
116
|
+
encryption_type: ("PLAINTEXT" | "TLS")
|
117
|
+
},
|
118
|
+
kafka_connect_version: ::String,
|
119
|
+
?log_delivery: {
|
120
|
+
worker_log_delivery: {
|
121
|
+
cloud_watch_logs: {
|
122
|
+
enabled: bool,
|
123
|
+
log_group: ::String?
|
124
|
+
}?,
|
125
|
+
firehose: {
|
126
|
+
delivery_stream: ::String?,
|
127
|
+
enabled: bool
|
128
|
+
}?,
|
129
|
+
s3: {
|
130
|
+
bucket: ::String?,
|
131
|
+
enabled: bool,
|
132
|
+
prefix: ::String?
|
133
|
+
}?
|
134
|
+
}
|
135
|
+
},
|
136
|
+
plugins: Array[
|
137
|
+
{
|
138
|
+
custom_plugin: {
|
139
|
+
custom_plugin_arn: ::String,
|
140
|
+
revision: ::Integer
|
141
|
+
}
|
142
|
+
},
|
143
|
+
],
|
144
|
+
service_execution_role_arn: ::String,
|
145
|
+
?worker_configuration: {
|
146
|
+
revision: ::Integer,
|
147
|
+
worker_configuration_arn: ::String
|
148
|
+
}
|
149
|
+
) -> _CreateConnectorResponseSuccess
|
150
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConnectorResponseSuccess
|
151
|
+
|
152
|
+
interface _CreateCustomPluginResponseSuccess
|
153
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateCustomPluginResponse]
|
154
|
+
def custom_plugin_arn: () -> ::String
|
155
|
+
def custom_plugin_state: () -> ("CREATING" | "CREATE_FAILED" | "ACTIVE" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
|
156
|
+
def name: () -> ::String
|
157
|
+
def revision: () -> ::Integer
|
158
|
+
end
|
159
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#create_custom_plugin-instance_method
|
160
|
+
def create_custom_plugin: (
|
161
|
+
content_type: ("JAR" | "ZIP"),
|
162
|
+
?description: ::String,
|
163
|
+
location: {
|
164
|
+
s3_location: {
|
165
|
+
bucket_arn: ::String,
|
166
|
+
file_key: ::String,
|
167
|
+
object_version: ::String?
|
168
|
+
}
|
169
|
+
},
|
170
|
+
name: ::String
|
171
|
+
) -> _CreateCustomPluginResponseSuccess
|
172
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCustomPluginResponseSuccess
|
173
|
+
|
174
|
+
interface _CreateWorkerConfigurationResponseSuccess
|
175
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateWorkerConfigurationResponse]
|
176
|
+
def creation_time: () -> ::Time
|
177
|
+
def latest_revision: () -> Types::WorkerConfigurationRevisionSummary
|
178
|
+
def name: () -> ::String
|
179
|
+
def worker_configuration_arn: () -> ::String
|
180
|
+
end
|
181
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#create_worker_configuration-instance_method
|
182
|
+
def create_worker_configuration: (
|
183
|
+
?description: ::String,
|
184
|
+
name: ::String,
|
185
|
+
properties_file_content: ::String
|
186
|
+
) -> _CreateWorkerConfigurationResponseSuccess
|
187
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWorkerConfigurationResponseSuccess
|
188
|
+
|
189
|
+
interface _DeleteConnectorResponseSuccess
|
190
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteConnectorResponse]
|
191
|
+
def connector_arn: () -> ::String
|
192
|
+
def connector_state: () -> ("RUNNING" | "CREATING" | "UPDATING" | "DELETING" | "FAILED")
|
193
|
+
end
|
194
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#delete_connector-instance_method
|
195
|
+
def delete_connector: (
|
196
|
+
connector_arn: ::String,
|
197
|
+
?current_version: ::String
|
198
|
+
) -> _DeleteConnectorResponseSuccess
|
199
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConnectorResponseSuccess
|
200
|
+
|
201
|
+
interface _DeleteCustomPluginResponseSuccess
|
202
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteCustomPluginResponse]
|
203
|
+
def custom_plugin_arn: () -> ::String
|
204
|
+
def custom_plugin_state: () -> ("CREATING" | "CREATE_FAILED" | "ACTIVE" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
|
205
|
+
end
|
206
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#delete_custom_plugin-instance_method
|
207
|
+
def delete_custom_plugin: (
|
208
|
+
custom_plugin_arn: ::String
|
209
|
+
) -> _DeleteCustomPluginResponseSuccess
|
210
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteCustomPluginResponseSuccess
|
211
|
+
|
212
|
+
interface _DescribeConnectorResponseSuccess
|
213
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeConnectorResponse]
|
214
|
+
def capacity: () -> Types::CapacityDescription
|
215
|
+
def connector_arn: () -> ::String
|
216
|
+
def connector_configuration: () -> ::Hash[::String, ::String]
|
217
|
+
def connector_description: () -> ::String
|
218
|
+
def connector_name: () -> ::String
|
219
|
+
def connector_state: () -> ("RUNNING" | "CREATING" | "UPDATING" | "DELETING" | "FAILED")
|
220
|
+
def creation_time: () -> ::Time
|
221
|
+
def current_version: () -> ::String
|
222
|
+
def kafka_cluster: () -> Types::KafkaClusterDescription
|
223
|
+
def kafka_cluster_client_authentication: () -> Types::KafkaClusterClientAuthenticationDescription
|
224
|
+
def kafka_cluster_encryption_in_transit: () -> Types::KafkaClusterEncryptionInTransitDescription
|
225
|
+
def kafka_connect_version: () -> ::String
|
226
|
+
def log_delivery: () -> Types::LogDeliveryDescription
|
227
|
+
def plugins: () -> ::Array[Types::PluginDescription]
|
228
|
+
def service_execution_role_arn: () -> ::String
|
229
|
+
def state_description: () -> Types::StateDescription
|
230
|
+
def worker_configuration: () -> Types::WorkerConfigurationDescription
|
231
|
+
end
|
232
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#describe_connector-instance_method
|
233
|
+
def describe_connector: (
|
234
|
+
connector_arn: ::String
|
235
|
+
) -> _DescribeConnectorResponseSuccess
|
236
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeConnectorResponseSuccess
|
237
|
+
|
238
|
+
interface _DescribeCustomPluginResponseSuccess
|
239
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeCustomPluginResponse]
|
240
|
+
def creation_time: () -> ::Time
|
241
|
+
def custom_plugin_arn: () -> ::String
|
242
|
+
def custom_plugin_state: () -> ("CREATING" | "CREATE_FAILED" | "ACTIVE" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
|
243
|
+
def description: () -> ::String
|
244
|
+
def latest_revision: () -> Types::CustomPluginRevisionSummary
|
245
|
+
def name: () -> ::String
|
246
|
+
def state_description: () -> Types::StateDescription
|
247
|
+
end
|
248
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#describe_custom_plugin-instance_method
|
249
|
+
def describe_custom_plugin: (
|
250
|
+
custom_plugin_arn: ::String
|
251
|
+
) -> _DescribeCustomPluginResponseSuccess
|
252
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeCustomPluginResponseSuccess
|
253
|
+
|
254
|
+
interface _DescribeWorkerConfigurationResponseSuccess
|
255
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeWorkerConfigurationResponse]
|
256
|
+
def creation_time: () -> ::Time
|
257
|
+
def description: () -> ::String
|
258
|
+
def latest_revision: () -> Types::WorkerConfigurationRevisionDescription
|
259
|
+
def name: () -> ::String
|
260
|
+
def worker_configuration_arn: () -> ::String
|
261
|
+
end
|
262
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#describe_worker_configuration-instance_method
|
263
|
+
def describe_worker_configuration: (
|
264
|
+
worker_configuration_arn: ::String
|
265
|
+
) -> _DescribeWorkerConfigurationResponseSuccess
|
266
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeWorkerConfigurationResponseSuccess
|
267
|
+
|
268
|
+
interface _ListConnectorsResponseSuccess
|
269
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListConnectorsResponse]
|
270
|
+
def connectors: () -> ::Array[Types::ConnectorSummary]
|
271
|
+
def next_token: () -> ::String
|
272
|
+
end
|
273
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#list_connectors-instance_method
|
274
|
+
def list_connectors: (
|
275
|
+
?connector_name_prefix: ::String,
|
276
|
+
?max_results: ::Integer,
|
277
|
+
?next_token: ::String
|
278
|
+
) -> _ListConnectorsResponseSuccess
|
279
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConnectorsResponseSuccess
|
280
|
+
|
281
|
+
interface _ListCustomPluginsResponseSuccess
|
282
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListCustomPluginsResponse]
|
283
|
+
def custom_plugins: () -> ::Array[Types::CustomPluginSummary]
|
284
|
+
def next_token: () -> ::String
|
285
|
+
end
|
286
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#list_custom_plugins-instance_method
|
287
|
+
def list_custom_plugins: (
|
288
|
+
?max_results: ::Integer,
|
289
|
+
?next_token: ::String
|
290
|
+
) -> _ListCustomPluginsResponseSuccess
|
291
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCustomPluginsResponseSuccess
|
292
|
+
|
293
|
+
interface _ListWorkerConfigurationsResponseSuccess
|
294
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListWorkerConfigurationsResponse]
|
295
|
+
def next_token: () -> ::String
|
296
|
+
def worker_configurations: () -> ::Array[Types::WorkerConfigurationSummary]
|
297
|
+
end
|
298
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#list_worker_configurations-instance_method
|
299
|
+
def list_worker_configurations: (
|
300
|
+
?max_results: ::Integer,
|
301
|
+
?next_token: ::String
|
302
|
+
) -> _ListWorkerConfigurationsResponseSuccess
|
303
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListWorkerConfigurationsResponseSuccess
|
304
|
+
|
305
|
+
interface _UpdateConnectorResponseSuccess
|
306
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateConnectorResponse]
|
307
|
+
def connector_arn: () -> ::String
|
308
|
+
def connector_state: () -> ("RUNNING" | "CREATING" | "UPDATING" | "DELETING" | "FAILED")
|
309
|
+
end
|
310
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#update_connector-instance_method
|
311
|
+
def update_connector: (
|
312
|
+
capacity: {
|
313
|
+
auto_scaling: {
|
314
|
+
max_worker_count: ::Integer,
|
315
|
+
mcu_count: ::Integer,
|
316
|
+
min_worker_count: ::Integer,
|
317
|
+
scale_in_policy: {
|
318
|
+
cpu_utilization_percentage: ::Integer
|
319
|
+
},
|
320
|
+
scale_out_policy: {
|
321
|
+
cpu_utilization_percentage: ::Integer
|
322
|
+
}
|
323
|
+
}?,
|
324
|
+
provisioned_capacity: {
|
325
|
+
mcu_count: ::Integer,
|
326
|
+
worker_count: ::Integer
|
327
|
+
}?
|
328
|
+
},
|
329
|
+
connector_arn: ::String,
|
330
|
+
current_version: ::String
|
331
|
+
) -> _UpdateConnectorResponseSuccess
|
332
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConnectorResponseSuccess
|
333
|
+
end
|
334
|
+
end
|
335
|
+
end
|
336
|
+
|
data/sig/errors.rbs
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module KafkaConnect
|
10
|
+
module Errors
|
11
|
+
class ServiceError < ::Aws::Errors::ServiceError
|
12
|
+
end
|
13
|
+
|
14
|
+
class BadRequestException < ::Aws::Errors::ServiceError
|
15
|
+
def message: () -> ::String
|
16
|
+
end
|
17
|
+
class ConflictException < ::Aws::Errors::ServiceError
|
18
|
+
def message: () -> ::String
|
19
|
+
end
|
20
|
+
class ForbiddenException < ::Aws::Errors::ServiceError
|
21
|
+
def message: () -> ::String
|
22
|
+
end
|
23
|
+
class InternalServerErrorException < ::Aws::Errors::ServiceError
|
24
|
+
def message: () -> ::String
|
25
|
+
end
|
26
|
+
class NotFoundException < ::Aws::Errors::ServiceError
|
27
|
+
def message: () -> ::String
|
28
|
+
end
|
29
|
+
class ServiceUnavailableException < ::Aws::Errors::ServiceError
|
30
|
+
def message: () -> ::String
|
31
|
+
end
|
32
|
+
class TooManyRequestsException < ::Aws::Errors::ServiceError
|
33
|
+
def message: () -> ::String
|
34
|
+
end
|
35
|
+
class UnauthorizedException < ::Aws::Errors::ServiceError
|
36
|
+
def message: () -> ::String
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
data/sig/resource.rbs
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module KafkaConnect
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Resource.html
|
11
|
+
class Resource
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Resource.html#initialize-instance_method
|
13
|
+
def initialize: (
|
14
|
+
?client: Client,
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?stub_responses: untyped,
|
52
|
+
?token_provider: untyped,
|
53
|
+
?use_dualstack_endpoint: bool,
|
54
|
+
?use_fips_endpoint: bool,
|
55
|
+
?validate_params: bool,
|
56
|
+
?endpoint_provider: untyped,
|
57
|
+
?http_proxy: String,
|
58
|
+
?http_open_timeout: (Float | Integer),
|
59
|
+
?http_read_timeout: (Float | Integer),
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
63
|
+
?http_wire_trace: bool,
|
64
|
+
?ssl_verify_peer: bool,
|
65
|
+
?ssl_ca_bundle: String,
|
66
|
+
?ssl_ca_directory: String,
|
67
|
+
?ssl_ca_store: String,
|
68
|
+
?on_chunk_received: Proc,
|
69
|
+
?on_chunk_sent: Proc,
|
70
|
+
?raise_response_errors: bool
|
71
|
+
) -> void
|
72
|
+
| (?Hash[Symbol, untyped]) -> void
|
73
|
+
|
74
|
+
def client: () -> Client
|
75
|
+
|
76
|
+
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
data/sig/types.rbs
ADDED
@@ -0,0 +1,576 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::KafkaConnect
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class ApacheKafkaCluster
|
12
|
+
attr_accessor bootstrap_servers: ::String
|
13
|
+
attr_accessor vpc: Types::Vpc
|
14
|
+
SENSITIVE: []
|
15
|
+
end
|
16
|
+
|
17
|
+
class ApacheKafkaClusterDescription
|
18
|
+
attr_accessor bootstrap_servers: ::String
|
19
|
+
attr_accessor vpc: Types::VpcDescription
|
20
|
+
SENSITIVE: []
|
21
|
+
end
|
22
|
+
|
23
|
+
class AutoScaling
|
24
|
+
attr_accessor max_worker_count: ::Integer
|
25
|
+
attr_accessor mcu_count: ::Integer
|
26
|
+
attr_accessor min_worker_count: ::Integer
|
27
|
+
attr_accessor scale_in_policy: Types::ScaleInPolicy
|
28
|
+
attr_accessor scale_out_policy: Types::ScaleOutPolicy
|
29
|
+
SENSITIVE: []
|
30
|
+
end
|
31
|
+
|
32
|
+
class AutoScalingDescription
|
33
|
+
attr_accessor max_worker_count: ::Integer
|
34
|
+
attr_accessor mcu_count: ::Integer
|
35
|
+
attr_accessor min_worker_count: ::Integer
|
36
|
+
attr_accessor scale_in_policy: Types::ScaleInPolicyDescription
|
37
|
+
attr_accessor scale_out_policy: Types::ScaleOutPolicyDescription
|
38
|
+
SENSITIVE: []
|
39
|
+
end
|
40
|
+
|
41
|
+
class AutoScalingUpdate
|
42
|
+
attr_accessor max_worker_count: ::Integer
|
43
|
+
attr_accessor mcu_count: ::Integer
|
44
|
+
attr_accessor min_worker_count: ::Integer
|
45
|
+
attr_accessor scale_in_policy: Types::ScaleInPolicyUpdate
|
46
|
+
attr_accessor scale_out_policy: Types::ScaleOutPolicyUpdate
|
47
|
+
SENSITIVE: []
|
48
|
+
end
|
49
|
+
|
50
|
+
class BadRequestException
|
51
|
+
attr_accessor message: ::String
|
52
|
+
SENSITIVE: []
|
53
|
+
end
|
54
|
+
|
55
|
+
class Capacity
|
56
|
+
attr_accessor auto_scaling: Types::AutoScaling
|
57
|
+
attr_accessor provisioned_capacity: Types::ProvisionedCapacity
|
58
|
+
SENSITIVE: []
|
59
|
+
end
|
60
|
+
|
61
|
+
class CapacityDescription
|
62
|
+
attr_accessor auto_scaling: Types::AutoScalingDescription
|
63
|
+
attr_accessor provisioned_capacity: Types::ProvisionedCapacityDescription
|
64
|
+
SENSITIVE: []
|
65
|
+
end
|
66
|
+
|
67
|
+
class CapacityUpdate
|
68
|
+
attr_accessor auto_scaling: Types::AutoScalingUpdate
|
69
|
+
attr_accessor provisioned_capacity: Types::ProvisionedCapacityUpdate
|
70
|
+
SENSITIVE: []
|
71
|
+
end
|
72
|
+
|
73
|
+
class CloudWatchLogsLogDelivery
|
74
|
+
attr_accessor enabled: bool
|
75
|
+
attr_accessor log_group: ::String
|
76
|
+
SENSITIVE: []
|
77
|
+
end
|
78
|
+
|
79
|
+
class CloudWatchLogsLogDeliveryDescription
|
80
|
+
attr_accessor enabled: bool
|
81
|
+
attr_accessor log_group: ::String
|
82
|
+
SENSITIVE: []
|
83
|
+
end
|
84
|
+
|
85
|
+
class ConflictException
|
86
|
+
attr_accessor message: ::String
|
87
|
+
SENSITIVE: []
|
88
|
+
end
|
89
|
+
|
90
|
+
class ConnectorSummary
|
91
|
+
attr_accessor capacity: Types::CapacityDescription
|
92
|
+
attr_accessor connector_arn: ::String
|
93
|
+
attr_accessor connector_description: ::String
|
94
|
+
attr_accessor connector_name: ::String
|
95
|
+
attr_accessor connector_state: ("RUNNING" | "CREATING" | "UPDATING" | "DELETING" | "FAILED")
|
96
|
+
attr_accessor creation_time: ::Time
|
97
|
+
attr_accessor current_version: ::String
|
98
|
+
attr_accessor kafka_cluster: Types::KafkaClusterDescription
|
99
|
+
attr_accessor kafka_cluster_client_authentication: Types::KafkaClusterClientAuthenticationDescription
|
100
|
+
attr_accessor kafka_cluster_encryption_in_transit: Types::KafkaClusterEncryptionInTransitDescription
|
101
|
+
attr_accessor kafka_connect_version: ::String
|
102
|
+
attr_accessor log_delivery: Types::LogDeliveryDescription
|
103
|
+
attr_accessor plugins: ::Array[Types::PluginDescription]
|
104
|
+
attr_accessor service_execution_role_arn: ::String
|
105
|
+
attr_accessor worker_configuration: Types::WorkerConfigurationDescription
|
106
|
+
SENSITIVE: []
|
107
|
+
end
|
108
|
+
|
109
|
+
class CreateConnectorRequest
|
110
|
+
attr_accessor capacity: Types::Capacity
|
111
|
+
attr_accessor connector_configuration: ::Hash[::String, ::String]
|
112
|
+
attr_accessor connector_description: ::String
|
113
|
+
attr_accessor connector_name: ::String
|
114
|
+
attr_accessor kafka_cluster: Types::KafkaCluster
|
115
|
+
attr_accessor kafka_cluster_client_authentication: Types::KafkaClusterClientAuthentication
|
116
|
+
attr_accessor kafka_cluster_encryption_in_transit: Types::KafkaClusterEncryptionInTransit
|
117
|
+
attr_accessor kafka_connect_version: ::String
|
118
|
+
attr_accessor log_delivery: Types::LogDelivery
|
119
|
+
attr_accessor plugins: ::Array[Types::Plugin]
|
120
|
+
attr_accessor service_execution_role_arn: ::String
|
121
|
+
attr_accessor worker_configuration: Types::WorkerConfiguration
|
122
|
+
SENSITIVE: [:connector_configuration]
|
123
|
+
end
|
124
|
+
|
125
|
+
class CreateConnectorResponse
|
126
|
+
attr_accessor connector_arn: ::String
|
127
|
+
attr_accessor connector_name: ::String
|
128
|
+
attr_accessor connector_state: ("RUNNING" | "CREATING" | "UPDATING" | "DELETING" | "FAILED")
|
129
|
+
SENSITIVE: []
|
130
|
+
end
|
131
|
+
|
132
|
+
class CreateCustomPluginRequest
|
133
|
+
attr_accessor content_type: ("JAR" | "ZIP")
|
134
|
+
attr_accessor description: ::String
|
135
|
+
attr_accessor location: Types::CustomPluginLocation
|
136
|
+
attr_accessor name: ::String
|
137
|
+
SENSITIVE: []
|
138
|
+
end
|
139
|
+
|
140
|
+
class CreateCustomPluginResponse
|
141
|
+
attr_accessor custom_plugin_arn: ::String
|
142
|
+
attr_accessor custom_plugin_state: ("CREATING" | "CREATE_FAILED" | "ACTIVE" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
|
143
|
+
attr_accessor name: ::String
|
144
|
+
attr_accessor revision: ::Integer
|
145
|
+
SENSITIVE: []
|
146
|
+
end
|
147
|
+
|
148
|
+
class CreateWorkerConfigurationRequest
|
149
|
+
attr_accessor description: ::String
|
150
|
+
attr_accessor name: ::String
|
151
|
+
attr_accessor properties_file_content: ::String
|
152
|
+
SENSITIVE: [:properties_file_content]
|
153
|
+
end
|
154
|
+
|
155
|
+
class CreateWorkerConfigurationResponse
|
156
|
+
attr_accessor creation_time: ::Time
|
157
|
+
attr_accessor latest_revision: Types::WorkerConfigurationRevisionSummary
|
158
|
+
attr_accessor name: ::String
|
159
|
+
attr_accessor worker_configuration_arn: ::String
|
160
|
+
SENSITIVE: []
|
161
|
+
end
|
162
|
+
|
163
|
+
class CustomPlugin
|
164
|
+
attr_accessor custom_plugin_arn: ::String
|
165
|
+
attr_accessor revision: ::Integer
|
166
|
+
SENSITIVE: []
|
167
|
+
end
|
168
|
+
|
169
|
+
class CustomPluginDescription
|
170
|
+
attr_accessor custom_plugin_arn: ::String
|
171
|
+
attr_accessor revision: ::Integer
|
172
|
+
SENSITIVE: []
|
173
|
+
end
|
174
|
+
|
175
|
+
class CustomPluginFileDescription
|
176
|
+
attr_accessor file_md_5: ::String
|
177
|
+
attr_accessor file_size: ::Integer
|
178
|
+
SENSITIVE: []
|
179
|
+
end
|
180
|
+
|
181
|
+
class CustomPluginLocation
|
182
|
+
attr_accessor s3_location: Types::S3Location
|
183
|
+
SENSITIVE: []
|
184
|
+
end
|
185
|
+
|
186
|
+
class CustomPluginLocationDescription
|
187
|
+
attr_accessor s3_location: Types::S3LocationDescription
|
188
|
+
SENSITIVE: []
|
189
|
+
end
|
190
|
+
|
191
|
+
class CustomPluginRevisionSummary
|
192
|
+
attr_accessor content_type: ("JAR" | "ZIP")
|
193
|
+
attr_accessor creation_time: ::Time
|
194
|
+
attr_accessor description: ::String
|
195
|
+
attr_accessor file_description: Types::CustomPluginFileDescription
|
196
|
+
attr_accessor location: Types::CustomPluginLocationDescription
|
197
|
+
attr_accessor revision: ::Integer
|
198
|
+
SENSITIVE: []
|
199
|
+
end
|
200
|
+
|
201
|
+
class CustomPluginSummary
|
202
|
+
attr_accessor creation_time: ::Time
|
203
|
+
attr_accessor custom_plugin_arn: ::String
|
204
|
+
attr_accessor custom_plugin_state: ("CREATING" | "CREATE_FAILED" | "ACTIVE" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
|
205
|
+
attr_accessor description: ::String
|
206
|
+
attr_accessor latest_revision: Types::CustomPluginRevisionSummary
|
207
|
+
attr_accessor name: ::String
|
208
|
+
SENSITIVE: []
|
209
|
+
end
|
210
|
+
|
211
|
+
class DeleteConnectorRequest
|
212
|
+
attr_accessor connector_arn: ::String
|
213
|
+
attr_accessor current_version: ::String
|
214
|
+
SENSITIVE: []
|
215
|
+
end
|
216
|
+
|
217
|
+
class DeleteConnectorResponse
|
218
|
+
attr_accessor connector_arn: ::String
|
219
|
+
attr_accessor connector_state: ("RUNNING" | "CREATING" | "UPDATING" | "DELETING" | "FAILED")
|
220
|
+
SENSITIVE: []
|
221
|
+
end
|
222
|
+
|
223
|
+
class DeleteCustomPluginRequest
|
224
|
+
attr_accessor custom_plugin_arn: ::String
|
225
|
+
SENSITIVE: []
|
226
|
+
end
|
227
|
+
|
228
|
+
class DeleteCustomPluginResponse
|
229
|
+
attr_accessor custom_plugin_arn: ::String
|
230
|
+
attr_accessor custom_plugin_state: ("CREATING" | "CREATE_FAILED" | "ACTIVE" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
|
231
|
+
SENSITIVE: []
|
232
|
+
end
|
233
|
+
|
234
|
+
class DescribeConnectorRequest
|
235
|
+
attr_accessor connector_arn: ::String
|
236
|
+
SENSITIVE: []
|
237
|
+
end
|
238
|
+
|
239
|
+
class DescribeConnectorResponse
|
240
|
+
attr_accessor capacity: Types::CapacityDescription
|
241
|
+
attr_accessor connector_arn: ::String
|
242
|
+
attr_accessor connector_configuration: ::Hash[::String, ::String]
|
243
|
+
attr_accessor connector_description: ::String
|
244
|
+
attr_accessor connector_name: ::String
|
245
|
+
attr_accessor connector_state: ("RUNNING" | "CREATING" | "UPDATING" | "DELETING" | "FAILED")
|
246
|
+
attr_accessor creation_time: ::Time
|
247
|
+
attr_accessor current_version: ::String
|
248
|
+
attr_accessor kafka_cluster: Types::KafkaClusterDescription
|
249
|
+
attr_accessor kafka_cluster_client_authentication: Types::KafkaClusterClientAuthenticationDescription
|
250
|
+
attr_accessor kafka_cluster_encryption_in_transit: Types::KafkaClusterEncryptionInTransitDescription
|
251
|
+
attr_accessor kafka_connect_version: ::String
|
252
|
+
attr_accessor log_delivery: Types::LogDeliveryDescription
|
253
|
+
attr_accessor plugins: ::Array[Types::PluginDescription]
|
254
|
+
attr_accessor service_execution_role_arn: ::String
|
255
|
+
attr_accessor state_description: Types::StateDescription
|
256
|
+
attr_accessor worker_configuration: Types::WorkerConfigurationDescription
|
257
|
+
SENSITIVE: [:connector_configuration]
|
258
|
+
end
|
259
|
+
|
260
|
+
class DescribeCustomPluginRequest
|
261
|
+
attr_accessor custom_plugin_arn: ::String
|
262
|
+
SENSITIVE: []
|
263
|
+
end
|
264
|
+
|
265
|
+
class DescribeCustomPluginResponse
|
266
|
+
attr_accessor creation_time: ::Time
|
267
|
+
attr_accessor custom_plugin_arn: ::String
|
268
|
+
attr_accessor custom_plugin_state: ("CREATING" | "CREATE_FAILED" | "ACTIVE" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
|
269
|
+
attr_accessor description: ::String
|
270
|
+
attr_accessor latest_revision: Types::CustomPluginRevisionSummary
|
271
|
+
attr_accessor name: ::String
|
272
|
+
attr_accessor state_description: Types::StateDescription
|
273
|
+
SENSITIVE: []
|
274
|
+
end
|
275
|
+
|
276
|
+
class DescribeWorkerConfigurationRequest
|
277
|
+
attr_accessor worker_configuration_arn: ::String
|
278
|
+
SENSITIVE: []
|
279
|
+
end
|
280
|
+
|
281
|
+
class DescribeWorkerConfigurationResponse
|
282
|
+
attr_accessor creation_time: ::Time
|
283
|
+
attr_accessor description: ::String
|
284
|
+
attr_accessor latest_revision: Types::WorkerConfigurationRevisionDescription
|
285
|
+
attr_accessor name: ::String
|
286
|
+
attr_accessor worker_configuration_arn: ::String
|
287
|
+
SENSITIVE: []
|
288
|
+
end
|
289
|
+
|
290
|
+
class FirehoseLogDelivery
|
291
|
+
attr_accessor delivery_stream: ::String
|
292
|
+
attr_accessor enabled: bool
|
293
|
+
SENSITIVE: []
|
294
|
+
end
|
295
|
+
|
296
|
+
class FirehoseLogDeliveryDescription
|
297
|
+
attr_accessor delivery_stream: ::String
|
298
|
+
attr_accessor enabled: bool
|
299
|
+
SENSITIVE: []
|
300
|
+
end
|
301
|
+
|
302
|
+
class ForbiddenException
|
303
|
+
attr_accessor message: ::String
|
304
|
+
SENSITIVE: []
|
305
|
+
end
|
306
|
+
|
307
|
+
class InternalServerErrorException
|
308
|
+
attr_accessor message: ::String
|
309
|
+
SENSITIVE: []
|
310
|
+
end
|
311
|
+
|
312
|
+
class KafkaCluster
|
313
|
+
attr_accessor apache_kafka_cluster: Types::ApacheKafkaCluster
|
314
|
+
SENSITIVE: []
|
315
|
+
end
|
316
|
+
|
317
|
+
class KafkaClusterClientAuthentication
|
318
|
+
attr_accessor authentication_type: ("NONE" | "IAM")
|
319
|
+
SENSITIVE: []
|
320
|
+
end
|
321
|
+
|
322
|
+
class KafkaClusterClientAuthenticationDescription
|
323
|
+
attr_accessor authentication_type: ("NONE" | "IAM")
|
324
|
+
SENSITIVE: []
|
325
|
+
end
|
326
|
+
|
327
|
+
class KafkaClusterDescription
|
328
|
+
attr_accessor apache_kafka_cluster: Types::ApacheKafkaClusterDescription
|
329
|
+
SENSITIVE: []
|
330
|
+
end
|
331
|
+
|
332
|
+
class KafkaClusterEncryptionInTransit
|
333
|
+
attr_accessor encryption_type: ("PLAINTEXT" | "TLS")
|
334
|
+
SENSITIVE: []
|
335
|
+
end
|
336
|
+
|
337
|
+
class KafkaClusterEncryptionInTransitDescription
|
338
|
+
attr_accessor encryption_type: ("PLAINTEXT" | "TLS")
|
339
|
+
SENSITIVE: []
|
340
|
+
end
|
341
|
+
|
342
|
+
class ListConnectorsRequest
|
343
|
+
attr_accessor connector_name_prefix: ::String
|
344
|
+
attr_accessor max_results: ::Integer
|
345
|
+
attr_accessor next_token: ::String
|
346
|
+
SENSITIVE: []
|
347
|
+
end
|
348
|
+
|
349
|
+
class ListConnectorsResponse
|
350
|
+
attr_accessor connectors: ::Array[Types::ConnectorSummary]
|
351
|
+
attr_accessor next_token: ::String
|
352
|
+
SENSITIVE: []
|
353
|
+
end
|
354
|
+
|
355
|
+
class ListCustomPluginsRequest
|
356
|
+
attr_accessor max_results: ::Integer
|
357
|
+
attr_accessor next_token: ::String
|
358
|
+
SENSITIVE: []
|
359
|
+
end
|
360
|
+
|
361
|
+
class ListCustomPluginsResponse
|
362
|
+
attr_accessor custom_plugins: ::Array[Types::CustomPluginSummary]
|
363
|
+
attr_accessor next_token: ::String
|
364
|
+
SENSITIVE: []
|
365
|
+
end
|
366
|
+
|
367
|
+
class ListWorkerConfigurationsRequest
|
368
|
+
attr_accessor max_results: ::Integer
|
369
|
+
attr_accessor next_token: ::String
|
370
|
+
SENSITIVE: []
|
371
|
+
end
|
372
|
+
|
373
|
+
class ListWorkerConfigurationsResponse
|
374
|
+
attr_accessor next_token: ::String
|
375
|
+
attr_accessor worker_configurations: ::Array[Types::WorkerConfigurationSummary]
|
376
|
+
SENSITIVE: []
|
377
|
+
end
|
378
|
+
|
379
|
+
class LogDelivery
|
380
|
+
attr_accessor worker_log_delivery: Types::WorkerLogDelivery
|
381
|
+
SENSITIVE: []
|
382
|
+
end
|
383
|
+
|
384
|
+
class LogDeliveryDescription
|
385
|
+
attr_accessor worker_log_delivery: Types::WorkerLogDeliveryDescription
|
386
|
+
SENSITIVE: []
|
387
|
+
end
|
388
|
+
|
389
|
+
class NotFoundException
|
390
|
+
attr_accessor message: ::String
|
391
|
+
SENSITIVE: []
|
392
|
+
end
|
393
|
+
|
394
|
+
class Plugin
|
395
|
+
attr_accessor custom_plugin: Types::CustomPlugin
|
396
|
+
SENSITIVE: []
|
397
|
+
end
|
398
|
+
|
399
|
+
class PluginDescription
|
400
|
+
attr_accessor custom_plugin: Types::CustomPluginDescription
|
401
|
+
SENSITIVE: []
|
402
|
+
end
|
403
|
+
|
404
|
+
class ProvisionedCapacity
|
405
|
+
attr_accessor mcu_count: ::Integer
|
406
|
+
attr_accessor worker_count: ::Integer
|
407
|
+
SENSITIVE: []
|
408
|
+
end
|
409
|
+
|
410
|
+
class ProvisionedCapacityDescription
|
411
|
+
attr_accessor mcu_count: ::Integer
|
412
|
+
attr_accessor worker_count: ::Integer
|
413
|
+
SENSITIVE: []
|
414
|
+
end
|
415
|
+
|
416
|
+
class ProvisionedCapacityUpdate
|
417
|
+
attr_accessor mcu_count: ::Integer
|
418
|
+
attr_accessor worker_count: ::Integer
|
419
|
+
SENSITIVE: []
|
420
|
+
end
|
421
|
+
|
422
|
+
class S3Location
|
423
|
+
attr_accessor bucket_arn: ::String
|
424
|
+
attr_accessor file_key: ::String
|
425
|
+
attr_accessor object_version: ::String
|
426
|
+
SENSITIVE: []
|
427
|
+
end
|
428
|
+
|
429
|
+
class S3LocationDescription
|
430
|
+
attr_accessor bucket_arn: ::String
|
431
|
+
attr_accessor file_key: ::String
|
432
|
+
attr_accessor object_version: ::String
|
433
|
+
SENSITIVE: []
|
434
|
+
end
|
435
|
+
|
436
|
+
class S3LogDelivery
|
437
|
+
attr_accessor bucket: ::String
|
438
|
+
attr_accessor enabled: bool
|
439
|
+
attr_accessor prefix: ::String
|
440
|
+
SENSITIVE: []
|
441
|
+
end
|
442
|
+
|
443
|
+
class S3LogDeliveryDescription
|
444
|
+
attr_accessor bucket: ::String
|
445
|
+
attr_accessor enabled: bool
|
446
|
+
attr_accessor prefix: ::String
|
447
|
+
SENSITIVE: []
|
448
|
+
end
|
449
|
+
|
450
|
+
class ScaleInPolicy
|
451
|
+
attr_accessor cpu_utilization_percentage: ::Integer
|
452
|
+
SENSITIVE: []
|
453
|
+
end
|
454
|
+
|
455
|
+
class ScaleInPolicyDescription
|
456
|
+
attr_accessor cpu_utilization_percentage: ::Integer
|
457
|
+
SENSITIVE: []
|
458
|
+
end
|
459
|
+
|
460
|
+
class ScaleInPolicyUpdate
|
461
|
+
attr_accessor cpu_utilization_percentage: ::Integer
|
462
|
+
SENSITIVE: []
|
463
|
+
end
|
464
|
+
|
465
|
+
class ScaleOutPolicy
|
466
|
+
attr_accessor cpu_utilization_percentage: ::Integer
|
467
|
+
SENSITIVE: []
|
468
|
+
end
|
469
|
+
|
470
|
+
class ScaleOutPolicyDescription
|
471
|
+
attr_accessor cpu_utilization_percentage: ::Integer
|
472
|
+
SENSITIVE: []
|
473
|
+
end
|
474
|
+
|
475
|
+
class ScaleOutPolicyUpdate
|
476
|
+
attr_accessor cpu_utilization_percentage: ::Integer
|
477
|
+
SENSITIVE: []
|
478
|
+
end
|
479
|
+
|
480
|
+
class ServiceUnavailableException
|
481
|
+
attr_accessor message: ::String
|
482
|
+
SENSITIVE: []
|
483
|
+
end
|
484
|
+
|
485
|
+
class StateDescription
|
486
|
+
attr_accessor code: ::String
|
487
|
+
attr_accessor message: ::String
|
488
|
+
SENSITIVE: []
|
489
|
+
end
|
490
|
+
|
491
|
+
class TooManyRequestsException
|
492
|
+
attr_accessor message: ::String
|
493
|
+
SENSITIVE: []
|
494
|
+
end
|
495
|
+
|
496
|
+
class UnauthorizedException
|
497
|
+
attr_accessor message: ::String
|
498
|
+
SENSITIVE: []
|
499
|
+
end
|
500
|
+
|
501
|
+
class UpdateConnectorRequest
|
502
|
+
attr_accessor capacity: Types::CapacityUpdate
|
503
|
+
attr_accessor connector_arn: ::String
|
504
|
+
attr_accessor current_version: ::String
|
505
|
+
SENSITIVE: []
|
506
|
+
end
|
507
|
+
|
508
|
+
class UpdateConnectorResponse
|
509
|
+
attr_accessor connector_arn: ::String
|
510
|
+
attr_accessor connector_state: ("RUNNING" | "CREATING" | "UPDATING" | "DELETING" | "FAILED")
|
511
|
+
SENSITIVE: []
|
512
|
+
end
|
513
|
+
|
514
|
+
class Vpc
|
515
|
+
attr_accessor security_groups: ::Array[::String]
|
516
|
+
attr_accessor subnets: ::Array[::String]
|
517
|
+
SENSITIVE: []
|
518
|
+
end
|
519
|
+
|
520
|
+
class VpcDescription
|
521
|
+
attr_accessor security_groups: ::Array[::String]
|
522
|
+
attr_accessor subnets: ::Array[::String]
|
523
|
+
SENSITIVE: []
|
524
|
+
end
|
525
|
+
|
526
|
+
class WorkerConfiguration
|
527
|
+
attr_accessor revision: ::Integer
|
528
|
+
attr_accessor worker_configuration_arn: ::String
|
529
|
+
SENSITIVE: []
|
530
|
+
end
|
531
|
+
|
532
|
+
class WorkerConfigurationDescription
|
533
|
+
attr_accessor revision: ::Integer
|
534
|
+
attr_accessor worker_configuration_arn: ::String
|
535
|
+
SENSITIVE: []
|
536
|
+
end
|
537
|
+
|
538
|
+
class WorkerConfigurationRevisionDescription
|
539
|
+
attr_accessor creation_time: ::Time
|
540
|
+
attr_accessor description: ::String
|
541
|
+
attr_accessor properties_file_content: ::String
|
542
|
+
attr_accessor revision: ::Integer
|
543
|
+
SENSITIVE: [:properties_file_content]
|
544
|
+
end
|
545
|
+
|
546
|
+
class WorkerConfigurationRevisionSummary
|
547
|
+
attr_accessor creation_time: ::Time
|
548
|
+
attr_accessor description: ::String
|
549
|
+
attr_accessor revision: ::Integer
|
550
|
+
SENSITIVE: []
|
551
|
+
end
|
552
|
+
|
553
|
+
class WorkerConfigurationSummary
|
554
|
+
attr_accessor creation_time: ::Time
|
555
|
+
attr_accessor description: ::String
|
556
|
+
attr_accessor latest_revision: Types::WorkerConfigurationRevisionSummary
|
557
|
+
attr_accessor name: ::String
|
558
|
+
attr_accessor worker_configuration_arn: ::String
|
559
|
+
SENSITIVE: []
|
560
|
+
end
|
561
|
+
|
562
|
+
class WorkerLogDelivery
|
563
|
+
attr_accessor cloud_watch_logs: Types::CloudWatchLogsLogDelivery
|
564
|
+
attr_accessor firehose: Types::FirehoseLogDelivery
|
565
|
+
attr_accessor s3: Types::S3LogDelivery
|
566
|
+
SENSITIVE: []
|
567
|
+
end
|
568
|
+
|
569
|
+
class WorkerLogDeliveryDescription
|
570
|
+
attr_accessor cloud_watch_logs: Types::CloudWatchLogsLogDeliveryDescription
|
571
|
+
attr_accessor firehose: Types::FirehoseLogDeliveryDescription
|
572
|
+
attr_accessor s3: Types::S3LogDeliveryDescription
|
573
|
+
SENSITIVE: []
|
574
|
+
end
|
575
|
+
end
|
576
|
+
end
|
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module KafkaConnect
|
10
|
+
module Waiters
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-kafkaconnect
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.19.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-01-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.191.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.191.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,13 +66,18 @@ files:
|
|
66
66
|
- lib/aws-sdk-kafkaconnect/plugins/endpoints.rb
|
67
67
|
- lib/aws-sdk-kafkaconnect/resource.rb
|
68
68
|
- lib/aws-sdk-kafkaconnect/types.rb
|
69
|
+
- sig/client.rbs
|
70
|
+
- sig/errors.rbs
|
71
|
+
- sig/resource.rbs
|
72
|
+
- sig/types.rbs
|
73
|
+
- sig/waiters.rbs
|
69
74
|
homepage: https://github.com/aws/aws-sdk-ruby
|
70
75
|
licenses:
|
71
76
|
- Apache-2.0
|
72
77
|
metadata:
|
73
78
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-kafkaconnect
|
74
79
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-kafkaconnect/CHANGELOG.md
|
75
|
-
post_install_message:
|
80
|
+
post_install_message:
|
76
81
|
rdoc_options: []
|
77
82
|
require_paths:
|
78
83
|
- lib
|
@@ -87,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
87
92
|
- !ruby/object:Gem::Version
|
88
93
|
version: '0'
|
89
94
|
requirements: []
|
90
|
-
rubygems_version: 3.
|
91
|
-
signing_key:
|
95
|
+
rubygems_version: 3.4.10
|
96
|
+
signing_key:
|
92
97
|
specification_version: 4
|
93
98
|
summary: AWS SDK for Ruby - Kafka Connect
|
94
99
|
test_files: []
|