aws-sdk-bedrockdataautomation 1.4.0 → 1.6.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
@@ -91,7 +91,13 @@ module Aws
91
91
  ?encryption_configuration: {
92
92
  kms_key_id: ::String,
93
93
  kms_encryption_context: Hash[::String, ::String]?
94
- }
94
+ },
95
+ ?tags: Array[
96
+ {
97
+ key: ::String,
98
+ value: ::String
99
+ },
100
+ ]
95
101
  ) -> _CreateBlueprintResponseSuccess
96
102
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBlueprintResponseSuccess
97
103
 
@@ -143,7 +149,7 @@ module Aws
143
149
  extraction: {
144
150
  category: {
145
151
  state: ("ENABLED" | "DISABLED"),
146
- types: Array[("CONTENT_MODERATION" | "TEXT_DETECTION")]?
152
+ types: Array[("CONTENT_MODERATION" | "TEXT_DETECTION" | "LOGOS")]?
147
153
  },
148
154
  bounding_box: {
149
155
  state: ("ENABLED" | "DISABLED")
@@ -158,7 +164,7 @@ module Aws
158
164
  extraction: {
159
165
  category: {
160
166
  state: ("ENABLED" | "DISABLED"),
161
- types: Array[("CONTENT_MODERATION" | "TEXT_DETECTION" | "TRANSCRIPT")]?
167
+ types: Array[("CONTENT_MODERATION" | "TEXT_DETECTION" | "TRANSCRIPT" | "LOGOS")]?
162
168
  },
163
169
  bounding_box: {
164
170
  state: ("ENABLED" | "DISABLED")
@@ -166,19 +172,19 @@ module Aws
166
172
  }?,
167
173
  generative_field: {
168
174
  state: ("ENABLED" | "DISABLED"),
169
- types: Array[("VIDEO_SUMMARY" | "SCENE_SUMMARY" | "IAB")]?
175
+ types: Array[("VIDEO_SUMMARY" | "IAB" | "CHAPTER_SUMMARY")]?
170
176
  }?
171
177
  }?,
172
178
  audio: {
173
179
  extraction: {
174
180
  category: {
175
181
  state: ("ENABLED" | "DISABLED"),
176
- types: Array[("AUDIO_CONTENT_MODERATION" | "CHAPTER_CONTENT_MODERATION" | "TRANSCRIPT")]?
182
+ types: Array[("AUDIO_CONTENT_MODERATION" | "TRANSCRIPT" | "TOPIC_CONTENT_MODERATION")]?
177
183
  }
178
184
  }?,
179
185
  generative_field: {
180
186
  state: ("ENABLED" | "DISABLED"),
181
- types: Array[("AUDIO_SUMMARY" | "CHAPTER_SUMMARY" | "IAB")]?
187
+ types: Array[("AUDIO_SUMMARY" | "IAB" | "TOPIC_SUMMARY")]?
182
188
  }?
183
189
  }?
184
190
  },
@@ -195,14 +201,44 @@ module Aws
195
201
  document: {
196
202
  splitter: {
197
203
  state: ("ENABLED" | "DISABLED")?
204
+ }?,
205
+ modality_processing: {
206
+ state: ("ENABLED" | "DISABLED")?
207
+ }?
208
+ }?,
209
+ image: {
210
+ modality_processing: {
211
+ state: ("ENABLED" | "DISABLED")?
212
+ }?
213
+ }?,
214
+ video: {
215
+ modality_processing: {
216
+ state: ("ENABLED" | "DISABLED")?
217
+ }?
218
+ }?,
219
+ audio: {
220
+ modality_processing: {
221
+ state: ("ENABLED" | "DISABLED")?
198
222
  }?
223
+ }?,
224
+ modality_routing: {
225
+ jpeg: ("IMAGE" | "DOCUMENT" | "AUDIO" | "VIDEO")?,
226
+ png: ("IMAGE" | "DOCUMENT" | "AUDIO" | "VIDEO")?,
227
+ mp4: ("IMAGE" | "DOCUMENT" | "AUDIO" | "VIDEO")?,
228
+ mov: ("IMAGE" | "DOCUMENT" | "AUDIO" | "VIDEO")?
199
229
  }?
200
230
  },
201
231
  ?client_token: ::String,
202
232
  ?encryption_configuration: {
203
233
  kms_key_id: ::String,
204
234
  kms_encryption_context: Hash[::String, ::String]?
205
- }
235
+ },
236
+ ?tags: Array[
237
+ {
238
+ key: ::String,
239
+ value: ::String
240
+ },
241
+ ]
206
242
  ) -> _CreateDataAutomationProjectResponseSuccess
207
243
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataAutomationProjectResponseSuccess
208
244
 
@@ -288,6 +324,41 @@ module Aws
288
324
  ) -> _ListDataAutomationProjectsResponseSuccess
289
325
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDataAutomationProjectsResponseSuccess
290
326
 
327
+ interface _ListTagsForResourceResponseSuccess
328
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
329
+ def tags: () -> ::Array[Types::Tag]
330
+ end
331
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockDataAutomation/Client.html#list_tags_for_resource-instance_method
332
+ def list_tags_for_resource: (
333
+ resource_arn: ::String
334
+ ) -> _ListTagsForResourceResponseSuccess
335
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
336
+
337
+ interface _TagResourceResponseSuccess
338
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
339
+ end
340
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockDataAutomation/Client.html#tag_resource-instance_method
341
+ def tag_resource: (
342
+ resource_arn: ::String,
343
+ tags: Array[
344
+ {
345
+ key: ::String,
346
+ value: ::String
347
+ },
348
+ ]
349
+ ) -> _TagResourceResponseSuccess
350
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
351
+
352
+ interface _UntagResourceResponseSuccess
353
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
354
+ end
355
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockDataAutomation/Client.html#untag_resource-instance_method
356
+ def untag_resource: (
357
+ resource_arn: ::String,
358
+ tag_keys: Array[::String]
359
+ ) -> _UntagResourceResponseSuccess
360
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
361
+
291
362
  interface _UpdateBlueprintResponseSuccess
292
363
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateBlueprintResponse]
293
364
  def blueprint: () -> Types::Blueprint
@@ -296,7 +367,11 @@ module Aws
296
367
  def update_blueprint: (
297
368
  blueprint_arn: ::String,
298
369
  schema: ::String,
299
- ?blueprint_stage: ("DEVELOPMENT" | "LIVE")
370
+ ?blueprint_stage: ("DEVELOPMENT" | "LIVE"),
371
+ ?encryption_configuration: {
372
+ kms_key_id: ::String,
373
+ kms_encryption_context: Hash[::String, ::String]?
374
+ }
300
375
  ) -> _UpdateBlueprintResponseSuccess
301
376
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateBlueprintResponseSuccess
302
377
 
@@ -337,7 +412,7 @@ module Aws
337
412
  extraction: {
338
413
  category: {
339
414
  state: ("ENABLED" | "DISABLED"),
340
- types: Array[("CONTENT_MODERATION" | "TEXT_DETECTION")]?
415
+ types: Array[("CONTENT_MODERATION" | "TEXT_DETECTION" | "LOGOS")]?
341
416
  },
342
417
  bounding_box: {
343
418
  state: ("ENABLED" | "DISABLED")
@@ -352,7 +427,7 @@ module Aws
352
427
  extraction: {
353
428
  category: {
354
429
  state: ("ENABLED" | "DISABLED"),
355
- types: Array[("CONTENT_MODERATION" | "TEXT_DETECTION" | "TRANSCRIPT")]?
430
+ types: Array[("CONTENT_MODERATION" | "TEXT_DETECTION" | "TRANSCRIPT" | "LOGOS")]?
356
431
  },
357
432
  bounding_box: {
358
433
  state: ("ENABLED" | "DISABLED")
@@ -360,19 +435,19 @@ module Aws
360
435
  }?,
361
436
  generative_field: {
362
437
  state: ("ENABLED" | "DISABLED"),
363
- types: Array[("VIDEO_SUMMARY" | "SCENE_SUMMARY" | "IAB")]?
438
+ types: Array[("VIDEO_SUMMARY" | "IAB" | "CHAPTER_SUMMARY")]?
364
439
  }?
365
440
  }?,
366
441
  audio: {
367
442
  extraction: {
368
443
  category: {
369
444
  state: ("ENABLED" | "DISABLED"),
370
- types: Array[("AUDIO_CONTENT_MODERATION" | "CHAPTER_CONTENT_MODERATION" | "TRANSCRIPT")]?
445
+ types: Array[("AUDIO_CONTENT_MODERATION" | "TRANSCRIPT" | "TOPIC_CONTENT_MODERATION")]?
371
446
  }
372
447
  }?,
373
448
  generative_field: {
374
449
  state: ("ENABLED" | "DISABLED"),
375
- types: Array[("AUDIO_SUMMARY" | "CHAPTER_SUMMARY" | "IAB")]?
450
+ types: Array[("AUDIO_SUMMARY" | "IAB" | "TOPIC_SUMMARY")]?
376
451
  }?
377
452
  }?
378
453
  },
@@ -389,8 +464,36 @@ module Aws
389
464
  document: {
390
465
  splitter: {
391
466
  state: ("ENABLED" | "DISABLED")?
467
+ }?,
468
+ modality_processing: {
469
+ state: ("ENABLED" | "DISABLED")?
470
+ }?
471
+ }?,
472
+ image: {
473
+ modality_processing: {
474
+ state: ("ENABLED" | "DISABLED")?
475
+ }?
476
+ }?,
477
+ video: {
478
+ modality_processing: {
479
+ state: ("ENABLED" | "DISABLED")?
480
+ }?
481
+ }?,
482
+ audio: {
483
+ modality_processing: {
484
+ state: ("ENABLED" | "DISABLED")?
392
485
  }?
486
+ }?,
487
+ modality_routing: {
488
+ jpeg: ("IMAGE" | "DOCUMENT" | "AUDIO" | "VIDEO")?,
489
+ png: ("IMAGE" | "DOCUMENT" | "AUDIO" | "VIDEO")?,
490
+ mp4: ("IMAGE" | "DOCUMENT" | "AUDIO" | "VIDEO")?,
491
+ mov: ("IMAGE" | "DOCUMENT" | "AUDIO" | "VIDEO")?
393
492
  }?
493
+ },
494
+ ?encryption_configuration: {
495
+ kms_key_id: ::String,
496
+ kms_encryption_context: Hash[::String, ::String]?
394
497
  }
395
498
  ) -> _UpdateDataAutomationProjectResponseSuccess
396
499
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDataAutomationProjectResponseSuccess
data/sig/types.rbs CHANGED
@@ -15,7 +15,12 @@ module Aws::BedrockDataAutomation
15
15
 
16
16
  class AudioExtractionCategory
17
17
  attr_accessor state: ("ENABLED" | "DISABLED")
18
- attr_accessor types: ::Array[("AUDIO_CONTENT_MODERATION" | "CHAPTER_CONTENT_MODERATION" | "TRANSCRIPT")]
18
+ attr_accessor types: ::Array[("AUDIO_CONTENT_MODERATION" | "TRANSCRIPT" | "TOPIC_CONTENT_MODERATION")]
19
+ SENSITIVE: []
20
+ end
21
+
22
+ class AudioOverrideConfiguration
23
+ attr_accessor modality_processing: Types::ModalityProcessingConfiguration
19
24
  SENSITIVE: []
20
25
  end
21
26
 
@@ -26,7 +31,7 @@ module Aws::BedrockDataAutomation
26
31
 
27
32
  class AudioStandardGenerativeField
28
33
  attr_accessor state: ("ENABLED" | "DISABLED")
29
- attr_accessor types: ::Array[("AUDIO_SUMMARY" | "CHAPTER_SUMMARY" | "IAB")]
34
+ attr_accessor types: ::Array[("AUDIO_SUMMARY" | "IAB" | "TOPIC_SUMMARY")]
30
35
  SENSITIVE: []
31
36
  end
32
37
 
@@ -86,6 +91,7 @@ module Aws::BedrockDataAutomation
86
91
  attr_accessor schema: ::String
87
92
  attr_accessor client_token: ::String
88
93
  attr_accessor encryption_configuration: Types::EncryptionConfiguration
94
+ attr_accessor tags: ::Array[Types::Tag]
89
95
  SENSITIVE: [:blueprint_name, :schema]
90
96
  end
91
97
 
@@ -114,6 +120,7 @@ module Aws::BedrockDataAutomation
114
120
  attr_accessor override_configuration: Types::OverrideConfiguration
115
121
  attr_accessor client_token: ::String
116
122
  attr_accessor encryption_configuration: Types::EncryptionConfiguration
123
+ attr_accessor tags: ::Array[Types::Tag]
117
124
  SENSITIVE: [:project_name, :project_description]
118
125
  end
119
126
 
@@ -207,6 +214,7 @@ module Aws::BedrockDataAutomation
207
214
 
208
215
  class DocumentOverrideConfiguration
209
216
  attr_accessor splitter: Types::SplitterConfiguration
217
+ attr_accessor modality_processing: Types::ModalityProcessingConfiguration
210
218
  SENSITIVE: []
211
219
  end
212
220
 
@@ -264,7 +272,12 @@ module Aws::BedrockDataAutomation
264
272
 
265
273
  class ImageExtractionCategory
266
274
  attr_accessor state: ("ENABLED" | "DISABLED")
267
- attr_accessor types: ::Array[("CONTENT_MODERATION" | "TEXT_DETECTION")]
275
+ attr_accessor types: ::Array[("CONTENT_MODERATION" | "TEXT_DETECTION" | "LOGOS")]
276
+ SENSITIVE: []
277
+ end
278
+
279
+ class ImageOverrideConfiguration
280
+ attr_accessor modality_processing: Types::ModalityProcessingConfiguration
268
281
  SENSITIVE: []
269
282
  end
270
283
 
@@ -322,8 +335,35 @@ module Aws::BedrockDataAutomation
322
335
  SENSITIVE: []
323
336
  end
324
337
 
338
+ class ListTagsForResourceRequest
339
+ attr_accessor resource_arn: ::String
340
+ SENSITIVE: []
341
+ end
342
+
343
+ class ListTagsForResourceResponse
344
+ attr_accessor tags: ::Array[Types::Tag]
345
+ SENSITIVE: []
346
+ end
347
+
348
+ class ModalityProcessingConfiguration
349
+ attr_accessor state: ("ENABLED" | "DISABLED")
350
+ SENSITIVE: []
351
+ end
352
+
353
+ class ModalityRoutingConfiguration
354
+ attr_accessor jpeg: ("IMAGE" | "DOCUMENT" | "AUDIO" | "VIDEO")
355
+ attr_accessor png: ("IMAGE" | "DOCUMENT" | "AUDIO" | "VIDEO")
356
+ attr_accessor mp4: ("IMAGE" | "DOCUMENT" | "AUDIO" | "VIDEO")
357
+ attr_accessor mov: ("IMAGE" | "DOCUMENT" | "AUDIO" | "VIDEO")
358
+ SENSITIVE: []
359
+ end
360
+
325
361
  class OverrideConfiguration
326
362
  attr_accessor document: Types::DocumentOverrideConfiguration
363
+ attr_accessor image: Types::ImageOverrideConfiguration
364
+ attr_accessor video: Types::VideoOverrideConfiguration
365
+ attr_accessor audio: Types::AudioOverrideConfiguration
366
+ attr_accessor modality_routing: Types::ModalityRoutingConfiguration
327
367
  SENSITIVE: []
328
368
  end
329
369
 
@@ -350,15 +390,40 @@ module Aws::BedrockDataAutomation
350
390
  SENSITIVE: []
351
391
  end
352
392
 
393
+ class Tag
394
+ attr_accessor key: ::String
395
+ attr_accessor value: ::String
396
+ SENSITIVE: []
397
+ end
398
+
399
+ class TagResourceRequest
400
+ attr_accessor resource_arn: ::String
401
+ attr_accessor tags: ::Array[Types::Tag]
402
+ SENSITIVE: []
403
+ end
404
+
405
+ class TagResourceResponse < Aws::EmptyStructure
406
+ end
407
+
353
408
  class ThrottlingException
354
409
  attr_accessor message: ::String
355
410
  SENSITIVE: []
356
411
  end
357
412
 
413
+ class UntagResourceRequest
414
+ attr_accessor resource_arn: ::String
415
+ attr_accessor tag_keys: ::Array[::String]
416
+ SENSITIVE: []
417
+ end
418
+
419
+ class UntagResourceResponse < Aws::EmptyStructure
420
+ end
421
+
358
422
  class UpdateBlueprintRequest
359
423
  attr_accessor blueprint_arn: ::String
360
424
  attr_accessor schema: ::String
361
425
  attr_accessor blueprint_stage: ("DEVELOPMENT" | "LIVE")
426
+ attr_accessor encryption_configuration: Types::EncryptionConfiguration
362
427
  SENSITIVE: [:schema]
363
428
  end
364
429
 
@@ -374,6 +439,7 @@ module Aws::BedrockDataAutomation
374
439
  attr_accessor standard_output_configuration: Types::StandardOutputConfiguration
375
440
  attr_accessor custom_output_configuration: Types::CustomOutputConfiguration
376
441
  attr_accessor override_configuration: Types::OverrideConfiguration
442
+ attr_accessor encryption_configuration: Types::EncryptionConfiguration
377
443
  SENSITIVE: [:project_description]
378
444
  end
379
445
 
@@ -403,7 +469,12 @@ module Aws::BedrockDataAutomation
403
469
 
404
470
  class VideoExtractionCategory
405
471
  attr_accessor state: ("ENABLED" | "DISABLED")
406
- attr_accessor types: ::Array[("CONTENT_MODERATION" | "TEXT_DETECTION" | "TRANSCRIPT")]
472
+ attr_accessor types: ::Array[("CONTENT_MODERATION" | "TEXT_DETECTION" | "TRANSCRIPT" | "LOGOS")]
473
+ SENSITIVE: []
474
+ end
475
+
476
+ class VideoOverrideConfiguration
477
+ attr_accessor modality_processing: Types::ModalityProcessingConfiguration
407
478
  SENSITIVE: []
408
479
  end
409
480
 
@@ -415,7 +486,7 @@ module Aws::BedrockDataAutomation
415
486
 
416
487
  class VideoStandardGenerativeField
417
488
  attr_accessor state: ("ENABLED" | "DISABLED")
418
- attr_accessor types: ::Array[("VIDEO_SUMMARY" | "SCENE_SUMMARY" | "IAB")]
489
+ attr_accessor types: ::Array[("VIDEO_SUMMARY" | "IAB" | "CHAPTER_SUMMARY")]
419
490
  SENSITIVE: []
420
491
  end
421
492
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-bedrockdataautomation
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.6.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: 2025-02-18 00:00:00.000000000 Z
11
+ date: 2025-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core