aws-sdk-bedrockdataautomation 1.9.0 → 1.10.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ecc37e44157e451155e12df178b26d8be39da2d05ac6b7481799a88a16d7f8e5
4
- data.tar.gz: 51f2b2c604bc8a02500664fd659537919a43d14935a79363927621528e3c841c
3
+ metadata.gz: c477dd61d3f21656f9aa7cf47fde9181d5b0550e168487b4abb57bcdcca1a1a5
4
+ data.tar.gz: 1019bf7c617d6ceb0cc28c60a7eccba35ae2ea81a7ae0e2de86c35404d147417
5
5
  SHA512:
6
- metadata.gz: 4a8dcc48fbe82f354fb8a279e03047205c331dc50be83d843147057b1fd8958b89cf62090cecaaea990cbee3949173bd6c21ec7cfe4a85f582ef2ff806ce6f78
7
- data.tar.gz: a7ff620772af8727c9bb6dce5a739886d0c56a724b1160a05b0bb79f375b58a6eeb27d415dd43b57284dea46656d94b90f8c2b1a6d20d78f8ef6b0147db64dc1
6
+ metadata.gz: b955a117996061b0dc4707ff73c46b0d9410e5528a432db56e61b450c5e294f435be3917563c74ed8b0827e63be74927b92112435172a2a37bf9298611706f8f
7
+ data.tar.gz: 9271bbe0799068aaa0ec9625e87c26ae87e138a33c414cf375a404755b862d86e63e4738eaeb4aa210ed247eb61ae077c81984911a0cd9ebe83c94585848a403
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.10.0 (2025-05-16)
5
+ ------------------
6
+
7
+ * Feature - Add support for VIDEO modality to BlueprintType enum.
8
+
4
9
  1.9.0 (2025-05-12)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.9.0
1
+ 1.10.0
@@ -503,7 +503,7 @@ module Aws::BedrockDataAutomation
503
503
  #
504
504
  # resp = client.create_blueprint({
505
505
  # blueprint_name: "BlueprintName", # required
506
- # type: "DOCUMENT", # required, accepts DOCUMENT, IMAGE, AUDIO
506
+ # type: "DOCUMENT", # required, accepts DOCUMENT, IMAGE, AUDIO, VIDEO
507
507
  # blueprint_stage: "DEVELOPMENT", # accepts DEVELOPMENT, LIVE
508
508
  # schema: "BlueprintSchema", # required
509
509
  # client_token: "ClientToken",
@@ -525,7 +525,7 @@ module Aws::BedrockDataAutomation
525
525
  #
526
526
  # resp.blueprint.blueprint_arn #=> String
527
527
  # resp.blueprint.schema #=> String
528
- # resp.blueprint.type #=> String, one of "DOCUMENT", "IMAGE", "AUDIO"
528
+ # resp.blueprint.type #=> String, one of "DOCUMENT", "IMAGE", "AUDIO", "VIDEO"
529
529
  # resp.blueprint.creation_time #=> Time
530
530
  # resp.blueprint.last_modified_time #=> Time
531
531
  # resp.blueprint.blueprint_name #=> String
@@ -571,7 +571,7 @@ module Aws::BedrockDataAutomation
571
571
  #
572
572
  # resp.blueprint.blueprint_arn #=> String
573
573
  # resp.blueprint.schema #=> String
574
- # resp.blueprint.type #=> String, one of "DOCUMENT", "IMAGE", "AUDIO"
574
+ # resp.blueprint.type #=> String, one of "DOCUMENT", "IMAGE", "AUDIO", "VIDEO"
575
575
  # resp.blueprint.creation_time #=> Time
576
576
  # resp.blueprint.last_modified_time #=> Time
577
577
  # resp.blueprint.blueprint_name #=> String
@@ -853,7 +853,7 @@ module Aws::BedrockDataAutomation
853
853
  #
854
854
  # resp.blueprint.blueprint_arn #=> String
855
855
  # resp.blueprint.schema #=> String
856
- # resp.blueprint.type #=> String, one of "DOCUMENT", "IMAGE", "AUDIO"
856
+ # resp.blueprint.type #=> String, one of "DOCUMENT", "IMAGE", "AUDIO", "VIDEO"
857
857
  # resp.blueprint.creation_time #=> Time
858
858
  # resp.blueprint.last_modified_time #=> Time
859
859
  # resp.blueprint.blueprint_name #=> String
@@ -1194,7 +1194,7 @@ module Aws::BedrockDataAutomation
1194
1194
  #
1195
1195
  # resp.blueprint.blueprint_arn #=> String
1196
1196
  # resp.blueprint.schema #=> String
1197
- # resp.blueprint.type #=> String, one of "DOCUMENT", "IMAGE", "AUDIO"
1197
+ # resp.blueprint.type #=> String, one of "DOCUMENT", "IMAGE", "AUDIO", "VIDEO"
1198
1198
  # resp.blueprint.creation_time #=> Time
1199
1199
  # resp.blueprint.last_modified_time #=> Time
1200
1200
  # resp.blueprint.blueprint_name #=> String
@@ -1395,7 +1395,7 @@ module Aws::BedrockDataAutomation
1395
1395
  tracer: tracer
1396
1396
  )
1397
1397
  context[:gem_name] = 'aws-sdk-bedrockdataautomation'
1398
- context[:gem_version] = '1.9.0'
1398
+ context[:gem_version] = '1.10.0'
1399
1399
  Seahorse::Client::Request.new(handlers, context)
1400
1400
  end
1401
1401
 
@@ -54,7 +54,7 @@ module Aws::BedrockDataAutomation
54
54
  autoload :EndpointProvider, 'aws-sdk-bedrockdataautomation/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-bedrockdataautomation/endpoints'
56
56
 
57
- GEM_VERSION = '1.9.0'
57
+ GEM_VERSION = '1.10.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -84,7 +84,7 @@ module Aws
84
84
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockDataAutomation/Client.html#create_blueprint-instance_method
85
85
  def create_blueprint: (
86
86
  blueprint_name: ::String,
87
- type: ("DOCUMENT" | "IMAGE" | "AUDIO"),
87
+ type: ("DOCUMENT" | "IMAGE" | "AUDIO" | "VIDEO"),
88
88
  ?blueprint_stage: ("DEVELOPMENT" | "LIVE"),
89
89
  schema: ::String,
90
90
  ?client_token: ::String,
data/sig/types.rbs CHANGED
@@ -44,7 +44,7 @@ module Aws::BedrockDataAutomation
44
44
  class Blueprint
45
45
  attr_accessor blueprint_arn: ::String
46
46
  attr_accessor schema: ::String
47
- attr_accessor type: ("DOCUMENT" | "IMAGE" | "AUDIO")
47
+ attr_accessor type: ("DOCUMENT" | "IMAGE" | "AUDIO" | "VIDEO")
48
48
  attr_accessor creation_time: ::Time
49
49
  attr_accessor last_modified_time: ::Time
50
50
  attr_accessor blueprint_name: ::String
@@ -86,7 +86,7 @@ module Aws::BedrockDataAutomation
86
86
 
87
87
  class CreateBlueprintRequest
88
88
  attr_accessor blueprint_name: ::String
89
- attr_accessor type: ("DOCUMENT" | "IMAGE" | "AUDIO")
89
+ attr_accessor type: ("DOCUMENT" | "IMAGE" | "AUDIO" | "VIDEO")
90
90
  attr_accessor blueprint_stage: ("DEVELOPMENT" | "LIVE")
91
91
  attr_accessor schema: ::String
92
92
  attr_accessor client_token: ::String
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-bedrockdataautomation
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.0
4
+ version: 1.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services