aws-sdk-bedrockdataautomation 1.7.0 → 1.8.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockdataautomation/client.rb +6 -6
- data/lib/aws-sdk-bedrockdataautomation.rb +1 -1
- data/sig/client.rbs +1 -1
- data/sig/types.rbs +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fe312351deaa781cdfc879f164d7f2fdc42a363c5d5f075f315f7f11a654e2ce
|
4
|
+
data.tar.gz: 9463fdf41b223ca1aa49b9217b2fb10c958255ac7139db365353cc9af63147a8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ebc74490a467c16cf940cb1f44806be83bbbb9b26d508856930962d8760bd301fc3ef6750f389e64a5631c1dccd43f27013997d6761836bffa1322062b133f09
|
7
|
+
data.tar.gz: 27331853ad3873588ae75a48a2ebc838a340a4fb146e45fd3813a6dbffba6bf1a4c7da4d5c85bc171b53f183059ae8419215fcb41a8a5cd4df237fdbf2428717
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.8.0
|
@@ -504,7 +504,7 @@ module Aws::BedrockDataAutomation
|
|
504
504
|
#
|
505
505
|
# resp = client.create_blueprint({
|
506
506
|
# blueprint_name: "BlueprintName", # required
|
507
|
-
# type: "DOCUMENT", # required, accepts DOCUMENT, IMAGE
|
507
|
+
# type: "DOCUMENT", # required, accepts DOCUMENT, IMAGE, AUDIO
|
508
508
|
# blueprint_stage: "DEVELOPMENT", # accepts DEVELOPMENT, LIVE
|
509
509
|
# schema: "BlueprintSchema", # required
|
510
510
|
# client_token: "ClientToken",
|
@@ -526,7 +526,7 @@ module Aws::BedrockDataAutomation
|
|
526
526
|
#
|
527
527
|
# resp.blueprint.blueprint_arn #=> String
|
528
528
|
# resp.blueprint.schema #=> String
|
529
|
-
# resp.blueprint.type #=> String, one of "DOCUMENT", "IMAGE"
|
529
|
+
# resp.blueprint.type #=> String, one of "DOCUMENT", "IMAGE", "AUDIO"
|
530
530
|
# resp.blueprint.creation_time #=> Time
|
531
531
|
# resp.blueprint.last_modified_time #=> Time
|
532
532
|
# resp.blueprint.blueprint_name #=> String
|
@@ -572,7 +572,7 @@ module Aws::BedrockDataAutomation
|
|
572
572
|
#
|
573
573
|
# resp.blueprint.blueprint_arn #=> String
|
574
574
|
# resp.blueprint.schema #=> String
|
575
|
-
# resp.blueprint.type #=> String, one of "DOCUMENT", "IMAGE"
|
575
|
+
# resp.blueprint.type #=> String, one of "DOCUMENT", "IMAGE", "AUDIO"
|
576
576
|
# resp.blueprint.creation_time #=> Time
|
577
577
|
# resp.blueprint.last_modified_time #=> Time
|
578
578
|
# resp.blueprint.blueprint_name #=> String
|
@@ -854,7 +854,7 @@ module Aws::BedrockDataAutomation
|
|
854
854
|
#
|
855
855
|
# resp.blueprint.blueprint_arn #=> String
|
856
856
|
# resp.blueprint.schema #=> String
|
857
|
-
# resp.blueprint.type #=> String, one of "DOCUMENT", "IMAGE"
|
857
|
+
# resp.blueprint.type #=> String, one of "DOCUMENT", "IMAGE", "AUDIO"
|
858
858
|
# resp.blueprint.creation_time #=> Time
|
859
859
|
# resp.blueprint.last_modified_time #=> Time
|
860
860
|
# resp.blueprint.blueprint_name #=> String
|
@@ -1195,7 +1195,7 @@ module Aws::BedrockDataAutomation
|
|
1195
1195
|
#
|
1196
1196
|
# resp.blueprint.blueprint_arn #=> String
|
1197
1197
|
# resp.blueprint.schema #=> String
|
1198
|
-
# resp.blueprint.type #=> String, one of "DOCUMENT", "IMAGE"
|
1198
|
+
# resp.blueprint.type #=> String, one of "DOCUMENT", "IMAGE", "AUDIO"
|
1199
1199
|
# resp.blueprint.creation_time #=> Time
|
1200
1200
|
# resp.blueprint.last_modified_time #=> Time
|
1201
1201
|
# resp.blueprint.blueprint_name #=> String
|
@@ -1396,7 +1396,7 @@ module Aws::BedrockDataAutomation
|
|
1396
1396
|
tracer: tracer
|
1397
1397
|
)
|
1398
1398
|
context[:gem_name] = 'aws-sdk-bedrockdataautomation'
|
1399
|
-
context[:gem_version] = '1.
|
1399
|
+
context[:gem_version] = '1.8.0'
|
1400
1400
|
Seahorse::Client::Request.new(handlers, context)
|
1401
1401
|
end
|
1402
1402
|
|
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"),
|
87
|
+
type: ("DOCUMENT" | "IMAGE" | "AUDIO"),
|
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")
|
47
|
+
attr_accessor type: ("DOCUMENT" | "IMAGE" | "AUDIO")
|
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")
|
89
|
+
attr_accessor type: ("DOCUMENT" | "IMAGE" | "AUDIO")
|
90
90
|
attr_accessor blueprint_stage: ("DEVELOPMENT" | "LIVE")
|
91
91
|
attr_accessor schema: ::String
|
92
92
|
attr_accessor client_token: ::String
|