aws-sdk-kafkaconnect 1.19.0 → 1.21.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/sig/client.rbs CHANGED
@@ -142,6 +142,7 @@ module Aws
142
142
  },
143
143
  ],
144
144
  service_execution_role_arn: ::String,
145
+ ?tags: Hash[::String, ::String],
145
146
  ?worker_configuration: {
146
147
  revision: ::Integer,
147
148
  worker_configuration_arn: ::String
@@ -167,7 +168,8 @@ module Aws
167
168
  object_version: ::String?
168
169
  }
169
170
  },
170
- name: ::String
171
+ name: ::String,
172
+ ?tags: Hash[::String, ::String]
171
173
  ) -> _CreateCustomPluginResponseSuccess
172
174
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCustomPluginResponseSuccess
173
175
 
@@ -177,12 +179,14 @@ module Aws
177
179
  def latest_revision: () -> Types::WorkerConfigurationRevisionSummary
178
180
  def name: () -> ::String
179
181
  def worker_configuration_arn: () -> ::String
182
+ def worker_configuration_state: () -> ("ACTIVE" | "DELETING")
180
183
  end
181
184
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#create_worker_configuration-instance_method
182
185
  def create_worker_configuration: (
183
186
  ?description: ::String,
184
187
  name: ::String,
185
- properties_file_content: ::String
188
+ properties_file_content: ::String,
189
+ ?tags: Hash[::String, ::String]
186
190
  ) -> _CreateWorkerConfigurationResponseSuccess
187
191
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWorkerConfigurationResponseSuccess
188
192
 
@@ -209,6 +213,17 @@ module Aws
209
213
  ) -> _DeleteCustomPluginResponseSuccess
210
214
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteCustomPluginResponseSuccess
211
215
 
216
+ interface _DeleteWorkerConfigurationResponseSuccess
217
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteWorkerConfigurationResponse]
218
+ def worker_configuration_arn: () -> ::String
219
+ def worker_configuration_state: () -> ("ACTIVE" | "DELETING")
220
+ end
221
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#delete_worker_configuration-instance_method
222
+ def delete_worker_configuration: (
223
+ worker_configuration_arn: ::String
224
+ ) -> _DeleteWorkerConfigurationResponseSuccess
225
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteWorkerConfigurationResponseSuccess
226
+
212
227
  interface _DescribeConnectorResponseSuccess
213
228
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeConnectorResponse]
214
229
  def capacity: () -> Types::CapacityDescription
@@ -258,6 +273,7 @@ module Aws
258
273
  def latest_revision: () -> Types::WorkerConfigurationRevisionDescription
259
274
  def name: () -> ::String
260
275
  def worker_configuration_arn: () -> ::String
276
+ def worker_configuration_state: () -> ("ACTIVE" | "DELETING")
261
277
  end
262
278
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#describe_worker_configuration-instance_method
263
279
  def describe_worker_configuration: (
@@ -286,10 +302,21 @@ module Aws
286
302
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#list_custom_plugins-instance_method
287
303
  def list_custom_plugins: (
288
304
  ?max_results: ::Integer,
305
+ ?name_prefix: ::String,
289
306
  ?next_token: ::String
290
307
  ) -> _ListCustomPluginsResponseSuccess
291
308
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCustomPluginsResponseSuccess
292
309
 
310
+ interface _ListTagsForResourceResponseSuccess
311
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
312
+ def tags: () -> ::Hash[::String, ::String]
313
+ end
314
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#list_tags_for_resource-instance_method
315
+ def list_tags_for_resource: (
316
+ resource_arn: ::String
317
+ ) -> _ListTagsForResourceResponseSuccess
318
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
319
+
293
320
  interface _ListWorkerConfigurationsResponseSuccess
294
321
  include ::Seahorse::Client::_ResponseSuccess[Types::ListWorkerConfigurationsResponse]
295
322
  def next_token: () -> ::String
@@ -298,10 +325,31 @@ module Aws
298
325
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#list_worker_configurations-instance_method
299
326
  def list_worker_configurations: (
300
327
  ?max_results: ::Integer,
328
+ ?name_prefix: ::String,
301
329
  ?next_token: ::String
302
330
  ) -> _ListWorkerConfigurationsResponseSuccess
303
331
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListWorkerConfigurationsResponseSuccess
304
332
 
333
+ interface _TagResourceResponseSuccess
334
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
335
+ end
336
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#tag_resource-instance_method
337
+ def tag_resource: (
338
+ resource_arn: ::String,
339
+ tags: Hash[::String, ::String]
340
+ ) -> _TagResourceResponseSuccess
341
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
342
+
343
+ interface _UntagResourceResponseSuccess
344
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
345
+ end
346
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KafkaConnect/Client.html#untag_resource-instance_method
347
+ def untag_resource: (
348
+ resource_arn: ::String,
349
+ tag_keys: Array[::String]
350
+ ) -> _UntagResourceResponseSuccess
351
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
352
+
305
353
  interface _UpdateConnectorResponseSuccess
306
354
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateConnectorResponse]
307
355
  def connector_arn: () -> ::String
data/sig/types.rbs CHANGED
@@ -118,6 +118,7 @@ module Aws::KafkaConnect
118
118
  attr_accessor log_delivery: Types::LogDelivery
119
119
  attr_accessor plugins: ::Array[Types::Plugin]
120
120
  attr_accessor service_execution_role_arn: ::String
121
+ attr_accessor tags: ::Hash[::String, ::String]
121
122
  attr_accessor worker_configuration: Types::WorkerConfiguration
122
123
  SENSITIVE: [:connector_configuration]
123
124
  end
@@ -134,6 +135,7 @@ module Aws::KafkaConnect
134
135
  attr_accessor description: ::String
135
136
  attr_accessor location: Types::CustomPluginLocation
136
137
  attr_accessor name: ::String
138
+ attr_accessor tags: ::Hash[::String, ::String]
137
139
  SENSITIVE: []
138
140
  end
139
141
 
@@ -149,6 +151,7 @@ module Aws::KafkaConnect
149
151
  attr_accessor description: ::String
150
152
  attr_accessor name: ::String
151
153
  attr_accessor properties_file_content: ::String
154
+ attr_accessor tags: ::Hash[::String, ::String]
152
155
  SENSITIVE: [:properties_file_content]
153
156
  end
154
157
 
@@ -157,6 +160,7 @@ module Aws::KafkaConnect
157
160
  attr_accessor latest_revision: Types::WorkerConfigurationRevisionSummary
158
161
  attr_accessor name: ::String
159
162
  attr_accessor worker_configuration_arn: ::String
163
+ attr_accessor worker_configuration_state: ("ACTIVE" | "DELETING")
160
164
  SENSITIVE: []
161
165
  end
162
166
 
@@ -231,6 +235,17 @@ module Aws::KafkaConnect
231
235
  SENSITIVE: []
232
236
  end
233
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
+
234
249
  class DescribeConnectorRequest
235
250
  attr_accessor connector_arn: ::String
236
251
  SENSITIVE: []
@@ -284,6 +299,7 @@ module Aws::KafkaConnect
284
299
  attr_accessor latest_revision: Types::WorkerConfigurationRevisionDescription
285
300
  attr_accessor name: ::String
286
301
  attr_accessor worker_configuration_arn: ::String
302
+ attr_accessor worker_configuration_state: ("ACTIVE" | "DELETING")
287
303
  SENSITIVE: []
288
304
  end
289
305
 
@@ -354,6 +370,7 @@ module Aws::KafkaConnect
354
370
 
355
371
  class ListCustomPluginsRequest
356
372
  attr_accessor max_results: ::Integer
373
+ attr_accessor name_prefix: ::String
357
374
  attr_accessor next_token: ::String
358
375
  SENSITIVE: []
359
376
  end
@@ -364,8 +381,19 @@ module Aws::KafkaConnect
364
381
  SENSITIVE: []
365
382
  end
366
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
+
367
394
  class ListWorkerConfigurationsRequest
368
395
  attr_accessor max_results: ::Integer
396
+ attr_accessor name_prefix: ::String
369
397
  attr_accessor next_token: ::String
370
398
  SENSITIVE: []
371
399
  end
@@ -488,6 +516,15 @@ module Aws::KafkaConnect
488
516
  SENSITIVE: []
489
517
  end
490
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
+
491
528
  class TooManyRequestsException
492
529
  attr_accessor message: ::String
493
530
  SENSITIVE: []
@@ -498,6 +535,15 @@ module Aws::KafkaConnect
498
535
  SENSITIVE: []
499
536
  end
500
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
+
501
547
  class UpdateConnectorRequest
502
548
  attr_accessor capacity: Types::CapacityUpdate
503
549
  attr_accessor connector_arn: ::String
@@ -556,6 +602,7 @@ module Aws::KafkaConnect
556
602
  attr_accessor latest_revision: Types::WorkerConfigurationRevisionSummary
557
603
  attr_accessor name: ::String
558
604
  attr_accessor worker_configuration_arn: ::String
605
+ attr_accessor worker_configuration_state: ("ACTIVE" | "DELETING")
559
606
  SENSITIVE: []
560
607
  end
561
608
 
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.19.0
4
+ version: 1.21.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-26 00:00:00.000000000 Z
11
+ date: 2024-04-25 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.191.0
22
+ version: 3.193.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.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement