aws-sdk-kafkaconnect 1.18.0 → 1.20.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/types.rbs ADDED
@@ -0,0 +1,623 @@
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 tags: ::Hash[::String, ::String]
122
+ attr_accessor worker_configuration: Types::WorkerConfiguration
123
+ SENSITIVE: [:connector_configuration]
124
+ end
125
+
126
+ class CreateConnectorResponse
127
+ attr_accessor connector_arn: ::String
128
+ attr_accessor connector_name: ::String
129
+ attr_accessor connector_state: ("RUNNING" | "CREATING" | "UPDATING" | "DELETING" | "FAILED")
130
+ SENSITIVE: []
131
+ end
132
+
133
+ class CreateCustomPluginRequest
134
+ attr_accessor content_type: ("JAR" | "ZIP")
135
+ attr_accessor description: ::String
136
+ attr_accessor location: Types::CustomPluginLocation
137
+ attr_accessor name: ::String
138
+ attr_accessor tags: ::Hash[::String, ::String]
139
+ SENSITIVE: []
140
+ end
141
+
142
+ class CreateCustomPluginResponse
143
+ attr_accessor custom_plugin_arn: ::String
144
+ attr_accessor custom_plugin_state: ("CREATING" | "CREATE_FAILED" | "ACTIVE" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
145
+ attr_accessor name: ::String
146
+ attr_accessor revision: ::Integer
147
+ SENSITIVE: []
148
+ end
149
+
150
+ class CreateWorkerConfigurationRequest
151
+ attr_accessor description: ::String
152
+ attr_accessor name: ::String
153
+ attr_accessor properties_file_content: ::String
154
+ attr_accessor tags: ::Hash[::String, ::String]
155
+ SENSITIVE: [:properties_file_content]
156
+ end
157
+
158
+ class CreateWorkerConfigurationResponse
159
+ attr_accessor creation_time: ::Time
160
+ attr_accessor latest_revision: Types::WorkerConfigurationRevisionSummary
161
+ attr_accessor name: ::String
162
+ attr_accessor worker_configuration_arn: ::String
163
+ attr_accessor worker_configuration_state: ("ACTIVE" | "DELETING")
164
+ SENSITIVE: []
165
+ end
166
+
167
+ class CustomPlugin
168
+ attr_accessor custom_plugin_arn: ::String
169
+ attr_accessor revision: ::Integer
170
+ SENSITIVE: []
171
+ end
172
+
173
+ class CustomPluginDescription
174
+ attr_accessor custom_plugin_arn: ::String
175
+ attr_accessor revision: ::Integer
176
+ SENSITIVE: []
177
+ end
178
+
179
+ class CustomPluginFileDescription
180
+ attr_accessor file_md_5: ::String
181
+ attr_accessor file_size: ::Integer
182
+ SENSITIVE: []
183
+ end
184
+
185
+ class CustomPluginLocation
186
+ attr_accessor s3_location: Types::S3Location
187
+ SENSITIVE: []
188
+ end
189
+
190
+ class CustomPluginLocationDescription
191
+ attr_accessor s3_location: Types::S3LocationDescription
192
+ SENSITIVE: []
193
+ end
194
+
195
+ class CustomPluginRevisionSummary
196
+ attr_accessor content_type: ("JAR" | "ZIP")
197
+ attr_accessor creation_time: ::Time
198
+ attr_accessor description: ::String
199
+ attr_accessor file_description: Types::CustomPluginFileDescription
200
+ attr_accessor location: Types::CustomPluginLocationDescription
201
+ attr_accessor revision: ::Integer
202
+ SENSITIVE: []
203
+ end
204
+
205
+ class CustomPluginSummary
206
+ attr_accessor creation_time: ::Time
207
+ attr_accessor custom_plugin_arn: ::String
208
+ attr_accessor custom_plugin_state: ("CREATING" | "CREATE_FAILED" | "ACTIVE" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
209
+ attr_accessor description: ::String
210
+ attr_accessor latest_revision: Types::CustomPluginRevisionSummary
211
+ attr_accessor name: ::String
212
+ SENSITIVE: []
213
+ end
214
+
215
+ class DeleteConnectorRequest
216
+ attr_accessor connector_arn: ::String
217
+ attr_accessor current_version: ::String
218
+ SENSITIVE: []
219
+ end
220
+
221
+ class DeleteConnectorResponse
222
+ attr_accessor connector_arn: ::String
223
+ attr_accessor connector_state: ("RUNNING" | "CREATING" | "UPDATING" | "DELETING" | "FAILED")
224
+ SENSITIVE: []
225
+ end
226
+
227
+ class DeleteCustomPluginRequest
228
+ attr_accessor custom_plugin_arn: ::String
229
+ SENSITIVE: []
230
+ end
231
+
232
+ class DeleteCustomPluginResponse
233
+ attr_accessor custom_plugin_arn: ::String
234
+ attr_accessor custom_plugin_state: ("CREATING" | "CREATE_FAILED" | "ACTIVE" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
235
+ SENSITIVE: []
236
+ end
237
+
238
+ class DeleteWorkerConfigurationRequest
239
+ attr_accessor worker_configuration_arn: ::String
240
+ SENSITIVE: []
241
+ end
242
+
243
+ class DeleteWorkerConfigurationResponse
244
+ attr_accessor worker_configuration_arn: ::String
245
+ attr_accessor worker_configuration_state: ("ACTIVE" | "DELETING")
246
+ SENSITIVE: []
247
+ end
248
+
249
+ class DescribeConnectorRequest
250
+ attr_accessor connector_arn: ::String
251
+ SENSITIVE: []
252
+ end
253
+
254
+ class DescribeConnectorResponse
255
+ attr_accessor capacity: Types::CapacityDescription
256
+ attr_accessor connector_arn: ::String
257
+ attr_accessor connector_configuration: ::Hash[::String, ::String]
258
+ attr_accessor connector_description: ::String
259
+ attr_accessor connector_name: ::String
260
+ attr_accessor connector_state: ("RUNNING" | "CREATING" | "UPDATING" | "DELETING" | "FAILED")
261
+ attr_accessor creation_time: ::Time
262
+ attr_accessor current_version: ::String
263
+ attr_accessor kafka_cluster: Types::KafkaClusterDescription
264
+ attr_accessor kafka_cluster_client_authentication: Types::KafkaClusterClientAuthenticationDescription
265
+ attr_accessor kafka_cluster_encryption_in_transit: Types::KafkaClusterEncryptionInTransitDescription
266
+ attr_accessor kafka_connect_version: ::String
267
+ attr_accessor log_delivery: Types::LogDeliveryDescription
268
+ attr_accessor plugins: ::Array[Types::PluginDescription]
269
+ attr_accessor service_execution_role_arn: ::String
270
+ attr_accessor state_description: Types::StateDescription
271
+ attr_accessor worker_configuration: Types::WorkerConfigurationDescription
272
+ SENSITIVE: [:connector_configuration]
273
+ end
274
+
275
+ class DescribeCustomPluginRequest
276
+ attr_accessor custom_plugin_arn: ::String
277
+ SENSITIVE: []
278
+ end
279
+
280
+ class DescribeCustomPluginResponse
281
+ attr_accessor creation_time: ::Time
282
+ attr_accessor custom_plugin_arn: ::String
283
+ attr_accessor custom_plugin_state: ("CREATING" | "CREATE_FAILED" | "ACTIVE" | "UPDATING" | "UPDATE_FAILED" | "DELETING")
284
+ attr_accessor description: ::String
285
+ attr_accessor latest_revision: Types::CustomPluginRevisionSummary
286
+ attr_accessor name: ::String
287
+ attr_accessor state_description: Types::StateDescription
288
+ SENSITIVE: []
289
+ end
290
+
291
+ class DescribeWorkerConfigurationRequest
292
+ attr_accessor worker_configuration_arn: ::String
293
+ SENSITIVE: []
294
+ end
295
+
296
+ class DescribeWorkerConfigurationResponse
297
+ attr_accessor creation_time: ::Time
298
+ attr_accessor description: ::String
299
+ attr_accessor latest_revision: Types::WorkerConfigurationRevisionDescription
300
+ attr_accessor name: ::String
301
+ attr_accessor worker_configuration_arn: ::String
302
+ attr_accessor worker_configuration_state: ("ACTIVE" | "DELETING")
303
+ SENSITIVE: []
304
+ end
305
+
306
+ class FirehoseLogDelivery
307
+ attr_accessor delivery_stream: ::String
308
+ attr_accessor enabled: bool
309
+ SENSITIVE: []
310
+ end
311
+
312
+ class FirehoseLogDeliveryDescription
313
+ attr_accessor delivery_stream: ::String
314
+ attr_accessor enabled: bool
315
+ SENSITIVE: []
316
+ end
317
+
318
+ class ForbiddenException
319
+ attr_accessor message: ::String
320
+ SENSITIVE: []
321
+ end
322
+
323
+ class InternalServerErrorException
324
+ attr_accessor message: ::String
325
+ SENSITIVE: []
326
+ end
327
+
328
+ class KafkaCluster
329
+ attr_accessor apache_kafka_cluster: Types::ApacheKafkaCluster
330
+ SENSITIVE: []
331
+ end
332
+
333
+ class KafkaClusterClientAuthentication
334
+ attr_accessor authentication_type: ("NONE" | "IAM")
335
+ SENSITIVE: []
336
+ end
337
+
338
+ class KafkaClusterClientAuthenticationDescription
339
+ attr_accessor authentication_type: ("NONE" | "IAM")
340
+ SENSITIVE: []
341
+ end
342
+
343
+ class KafkaClusterDescription
344
+ attr_accessor apache_kafka_cluster: Types::ApacheKafkaClusterDescription
345
+ SENSITIVE: []
346
+ end
347
+
348
+ class KafkaClusterEncryptionInTransit
349
+ attr_accessor encryption_type: ("PLAINTEXT" | "TLS")
350
+ SENSITIVE: []
351
+ end
352
+
353
+ class KafkaClusterEncryptionInTransitDescription
354
+ attr_accessor encryption_type: ("PLAINTEXT" | "TLS")
355
+ SENSITIVE: []
356
+ end
357
+
358
+ class ListConnectorsRequest
359
+ attr_accessor connector_name_prefix: ::String
360
+ attr_accessor max_results: ::Integer
361
+ attr_accessor next_token: ::String
362
+ SENSITIVE: []
363
+ end
364
+
365
+ class ListConnectorsResponse
366
+ attr_accessor connectors: ::Array[Types::ConnectorSummary]
367
+ attr_accessor next_token: ::String
368
+ SENSITIVE: []
369
+ end
370
+
371
+ class ListCustomPluginsRequest
372
+ attr_accessor max_results: ::Integer
373
+ attr_accessor name_prefix: ::String
374
+ attr_accessor next_token: ::String
375
+ SENSITIVE: []
376
+ end
377
+
378
+ class ListCustomPluginsResponse
379
+ attr_accessor custom_plugins: ::Array[Types::CustomPluginSummary]
380
+ attr_accessor next_token: ::String
381
+ SENSITIVE: []
382
+ end
383
+
384
+ class ListTagsForResourceRequest
385
+ attr_accessor resource_arn: ::String
386
+ SENSITIVE: []
387
+ end
388
+
389
+ class ListTagsForResourceResponse
390
+ attr_accessor tags: ::Hash[::String, ::String]
391
+ SENSITIVE: []
392
+ end
393
+
394
+ class ListWorkerConfigurationsRequest
395
+ attr_accessor max_results: ::Integer
396
+ attr_accessor name_prefix: ::String
397
+ attr_accessor next_token: ::String
398
+ SENSITIVE: []
399
+ end
400
+
401
+ class ListWorkerConfigurationsResponse
402
+ attr_accessor next_token: ::String
403
+ attr_accessor worker_configurations: ::Array[Types::WorkerConfigurationSummary]
404
+ SENSITIVE: []
405
+ end
406
+
407
+ class LogDelivery
408
+ attr_accessor worker_log_delivery: Types::WorkerLogDelivery
409
+ SENSITIVE: []
410
+ end
411
+
412
+ class LogDeliveryDescription
413
+ attr_accessor worker_log_delivery: Types::WorkerLogDeliveryDescription
414
+ SENSITIVE: []
415
+ end
416
+
417
+ class NotFoundException
418
+ attr_accessor message: ::String
419
+ SENSITIVE: []
420
+ end
421
+
422
+ class Plugin
423
+ attr_accessor custom_plugin: Types::CustomPlugin
424
+ SENSITIVE: []
425
+ end
426
+
427
+ class PluginDescription
428
+ attr_accessor custom_plugin: Types::CustomPluginDescription
429
+ SENSITIVE: []
430
+ end
431
+
432
+ class ProvisionedCapacity
433
+ attr_accessor mcu_count: ::Integer
434
+ attr_accessor worker_count: ::Integer
435
+ SENSITIVE: []
436
+ end
437
+
438
+ class ProvisionedCapacityDescription
439
+ attr_accessor mcu_count: ::Integer
440
+ attr_accessor worker_count: ::Integer
441
+ SENSITIVE: []
442
+ end
443
+
444
+ class ProvisionedCapacityUpdate
445
+ attr_accessor mcu_count: ::Integer
446
+ attr_accessor worker_count: ::Integer
447
+ SENSITIVE: []
448
+ end
449
+
450
+ class S3Location
451
+ attr_accessor bucket_arn: ::String
452
+ attr_accessor file_key: ::String
453
+ attr_accessor object_version: ::String
454
+ SENSITIVE: []
455
+ end
456
+
457
+ class S3LocationDescription
458
+ attr_accessor bucket_arn: ::String
459
+ attr_accessor file_key: ::String
460
+ attr_accessor object_version: ::String
461
+ SENSITIVE: []
462
+ end
463
+
464
+ class S3LogDelivery
465
+ attr_accessor bucket: ::String
466
+ attr_accessor enabled: bool
467
+ attr_accessor prefix: ::String
468
+ SENSITIVE: []
469
+ end
470
+
471
+ class S3LogDeliveryDescription
472
+ attr_accessor bucket: ::String
473
+ attr_accessor enabled: bool
474
+ attr_accessor prefix: ::String
475
+ SENSITIVE: []
476
+ end
477
+
478
+ class ScaleInPolicy
479
+ attr_accessor cpu_utilization_percentage: ::Integer
480
+ SENSITIVE: []
481
+ end
482
+
483
+ class ScaleInPolicyDescription
484
+ attr_accessor cpu_utilization_percentage: ::Integer
485
+ SENSITIVE: []
486
+ end
487
+
488
+ class ScaleInPolicyUpdate
489
+ attr_accessor cpu_utilization_percentage: ::Integer
490
+ SENSITIVE: []
491
+ end
492
+
493
+ class ScaleOutPolicy
494
+ attr_accessor cpu_utilization_percentage: ::Integer
495
+ SENSITIVE: []
496
+ end
497
+
498
+ class ScaleOutPolicyDescription
499
+ attr_accessor cpu_utilization_percentage: ::Integer
500
+ SENSITIVE: []
501
+ end
502
+
503
+ class ScaleOutPolicyUpdate
504
+ attr_accessor cpu_utilization_percentage: ::Integer
505
+ SENSITIVE: []
506
+ end
507
+
508
+ class ServiceUnavailableException
509
+ attr_accessor message: ::String
510
+ SENSITIVE: []
511
+ end
512
+
513
+ class StateDescription
514
+ attr_accessor code: ::String
515
+ attr_accessor message: ::String
516
+ SENSITIVE: []
517
+ end
518
+
519
+ class TagResourceRequest
520
+ attr_accessor resource_arn: ::String
521
+ attr_accessor tags: ::Hash[::String, ::String]
522
+ SENSITIVE: []
523
+ end
524
+
525
+ class TagResourceResponse < Aws::EmptyStructure
526
+ end
527
+
528
+ class TooManyRequestsException
529
+ attr_accessor message: ::String
530
+ SENSITIVE: []
531
+ end
532
+
533
+ class UnauthorizedException
534
+ attr_accessor message: ::String
535
+ SENSITIVE: []
536
+ end
537
+
538
+ class UntagResourceRequest
539
+ attr_accessor resource_arn: ::String
540
+ attr_accessor tag_keys: ::Array[::String]
541
+ SENSITIVE: []
542
+ end
543
+
544
+ class UntagResourceResponse < Aws::EmptyStructure
545
+ end
546
+
547
+ class UpdateConnectorRequest
548
+ attr_accessor capacity: Types::CapacityUpdate
549
+ attr_accessor connector_arn: ::String
550
+ attr_accessor current_version: ::String
551
+ SENSITIVE: []
552
+ end
553
+
554
+ class UpdateConnectorResponse
555
+ attr_accessor connector_arn: ::String
556
+ attr_accessor connector_state: ("RUNNING" | "CREATING" | "UPDATING" | "DELETING" | "FAILED")
557
+ SENSITIVE: []
558
+ end
559
+
560
+ class Vpc
561
+ attr_accessor security_groups: ::Array[::String]
562
+ attr_accessor subnets: ::Array[::String]
563
+ SENSITIVE: []
564
+ end
565
+
566
+ class VpcDescription
567
+ attr_accessor security_groups: ::Array[::String]
568
+ attr_accessor subnets: ::Array[::String]
569
+ SENSITIVE: []
570
+ end
571
+
572
+ class WorkerConfiguration
573
+ attr_accessor revision: ::Integer
574
+ attr_accessor worker_configuration_arn: ::String
575
+ SENSITIVE: []
576
+ end
577
+
578
+ class WorkerConfigurationDescription
579
+ attr_accessor revision: ::Integer
580
+ attr_accessor worker_configuration_arn: ::String
581
+ SENSITIVE: []
582
+ end
583
+
584
+ class WorkerConfigurationRevisionDescription
585
+ attr_accessor creation_time: ::Time
586
+ attr_accessor description: ::String
587
+ attr_accessor properties_file_content: ::String
588
+ attr_accessor revision: ::Integer
589
+ SENSITIVE: [:properties_file_content]
590
+ end
591
+
592
+ class WorkerConfigurationRevisionSummary
593
+ attr_accessor creation_time: ::Time
594
+ attr_accessor description: ::String
595
+ attr_accessor revision: ::Integer
596
+ SENSITIVE: []
597
+ end
598
+
599
+ class WorkerConfigurationSummary
600
+ attr_accessor creation_time: ::Time
601
+ attr_accessor description: ::String
602
+ attr_accessor latest_revision: Types::WorkerConfigurationRevisionSummary
603
+ attr_accessor name: ::String
604
+ attr_accessor worker_configuration_arn: ::String
605
+ attr_accessor worker_configuration_state: ("ACTIVE" | "DELETING")
606
+ SENSITIVE: []
607
+ end
608
+
609
+ class WorkerLogDelivery
610
+ attr_accessor cloud_watch_logs: Types::CloudWatchLogsLogDelivery
611
+ attr_accessor firehose: Types::FirehoseLogDelivery
612
+ attr_accessor s3: Types::S3LogDelivery
613
+ SENSITIVE: []
614
+ end
615
+
616
+ class WorkerLogDeliveryDescription
617
+ attr_accessor cloud_watch_logs: Types::CloudWatchLogsLogDeliveryDescription
618
+ attr_accessor firehose: Types::FirehoseLogDeliveryDescription
619
+ attr_accessor s3: Types::S3LogDeliveryDescription
620
+ SENSITIVE: []
621
+ end
622
+ end
623
+ 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.18.0
4
+ version: 1.20.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: 2023-11-28 00:00:00.000000000 Z
11
+ date: 2024-02-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.188.0
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.188.0
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.1.6
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: []