aws-sdk-bedrockdataautomation 1.19.0 → 1.20.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 +15 -1
- data/lib/aws-sdk-bedrockdataautomation/client_api.rb +13 -0
- data/lib/aws-sdk-bedrockdataautomation/types.rb +30 -1
- data/lib/aws-sdk-bedrockdataautomation.rb +1 -1
- data/sig/client.rbs +10 -0
- data/sig/types.rbs +8 -0
- 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: d724646a247c2719af84063ff75d77c4d979584afc3c68478872ba7499570f84
|
|
4
|
+
data.tar.gz: a2b9248cbc26f116021e6d81a967ad9dab7efc8701f7d98c2ca05ff3be170b95
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9ee35cd0561fd58995c3c0ee6e2e3c8e0985c2f4fdc240a0886abab6280c38af9cb8642a46a6255acee2ce696f3211ca25a87f162b611525c554c7cb3ea413fa
|
|
7
|
+
data.tar.gz: 1f584e2fe3f8a64163361e770a9d402f137733d04e0b06ccecf0c76d4df09a3454129cfc8ffdd3905304826c4f3549833644a30f63056e87c8d615af5b3cbfb6
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.20.0
|
|
@@ -748,6 +748,11 @@ module Aws::BedrockDataAutomation
|
|
|
748
748
|
# modality_processing: {
|
|
749
749
|
# state: "ENABLED", # accepts ENABLED, DISABLED
|
|
750
750
|
# },
|
|
751
|
+
# language_configuration: {
|
|
752
|
+
# input_languages: ["EN"], # accepts EN, DE, ES, FR, IT, PT, JA, KO, CN, TW, HK
|
|
753
|
+
# generative_output_language: "DEFAULT", # accepts DEFAULT, EN
|
|
754
|
+
# identify_multiple_languages: false,
|
|
755
|
+
# },
|
|
751
756
|
# },
|
|
752
757
|
# modality_routing: {
|
|
753
758
|
# jpeg: "IMAGE", # accepts IMAGE, DOCUMENT, AUDIO, VIDEO
|
|
@@ -955,6 +960,10 @@ module Aws::BedrockDataAutomation
|
|
|
955
960
|
# resp.project.override_configuration.image.modality_processing.state #=> String, one of "ENABLED", "DISABLED"
|
|
956
961
|
# resp.project.override_configuration.video.modality_processing.state #=> String, one of "ENABLED", "DISABLED"
|
|
957
962
|
# resp.project.override_configuration.audio.modality_processing.state #=> String, one of "ENABLED", "DISABLED"
|
|
963
|
+
# resp.project.override_configuration.audio.language_configuration.input_languages #=> Array
|
|
964
|
+
# resp.project.override_configuration.audio.language_configuration.input_languages[0] #=> String, one of "EN", "DE", "ES", "FR", "IT", "PT", "JA", "KO", "CN", "TW", "HK"
|
|
965
|
+
# resp.project.override_configuration.audio.language_configuration.generative_output_language #=> String, one of "DEFAULT", "EN"
|
|
966
|
+
# resp.project.override_configuration.audio.language_configuration.identify_multiple_languages #=> Boolean
|
|
958
967
|
# resp.project.override_configuration.modality_routing.jpeg #=> String, one of "IMAGE", "DOCUMENT", "AUDIO", "VIDEO"
|
|
959
968
|
# resp.project.override_configuration.modality_routing.png #=> String, one of "IMAGE", "DOCUMENT", "AUDIO", "VIDEO"
|
|
960
969
|
# resp.project.override_configuration.modality_routing.mp4 #=> String, one of "IMAGE", "DOCUMENT", "AUDIO", "VIDEO"
|
|
@@ -1375,6 +1384,11 @@ module Aws::BedrockDataAutomation
|
|
|
1375
1384
|
# modality_processing: {
|
|
1376
1385
|
# state: "ENABLED", # accepts ENABLED, DISABLED
|
|
1377
1386
|
# },
|
|
1387
|
+
# language_configuration: {
|
|
1388
|
+
# input_languages: ["EN"], # accepts EN, DE, ES, FR, IT, PT, JA, KO, CN, TW, HK
|
|
1389
|
+
# generative_output_language: "DEFAULT", # accepts DEFAULT, EN
|
|
1390
|
+
# identify_multiple_languages: false,
|
|
1391
|
+
# },
|
|
1378
1392
|
# },
|
|
1379
1393
|
# modality_routing: {
|
|
1380
1394
|
# jpeg: "IMAGE", # accepts IMAGE, DOCUMENT, AUDIO, VIDEO
|
|
@@ -1424,7 +1438,7 @@ module Aws::BedrockDataAutomation
|
|
|
1424
1438
|
tracer: tracer
|
|
1425
1439
|
)
|
|
1426
1440
|
context[:gem_name] = 'aws-sdk-bedrockdataautomation'
|
|
1427
|
-
context[:gem_version] = '1.
|
|
1441
|
+
context[:gem_version] = '1.20.0'
|
|
1428
1442
|
Seahorse::Client::Request.new(handlers, context)
|
|
1429
1443
|
end
|
|
1430
1444
|
|
|
@@ -19,6 +19,9 @@ module Aws::BedrockDataAutomation
|
|
|
19
19
|
AudioExtractionCategoryType = Shapes::StringShape.new(name: 'AudioExtractionCategoryType')
|
|
20
20
|
AudioExtractionCategoryTypeConfiguration = Shapes::StructureShape.new(name: 'AudioExtractionCategoryTypeConfiguration')
|
|
21
21
|
AudioExtractionCategoryTypes = Shapes::ListShape.new(name: 'AudioExtractionCategoryTypes')
|
|
22
|
+
AudioGenerativeOutputLanguage = Shapes::StringShape.new(name: 'AudioGenerativeOutputLanguage')
|
|
23
|
+
AudioInputLanguages = Shapes::ListShape.new(name: 'AudioInputLanguages')
|
|
24
|
+
AudioLanguageConfiguration = Shapes::StructureShape.new(name: 'AudioLanguageConfiguration')
|
|
22
25
|
AudioOverrideConfiguration = Shapes::StructureShape.new(name: 'AudioOverrideConfiguration')
|
|
23
26
|
AudioStandardExtraction = Shapes::StructureShape.new(name: 'AudioStandardExtraction')
|
|
24
27
|
AudioStandardGenerativeField = Shapes::StructureShape.new(name: 'AudioStandardGenerativeField')
|
|
@@ -37,6 +40,7 @@ module Aws::BedrockDataAutomation
|
|
|
37
40
|
BlueprintSummary = Shapes::StructureShape.new(name: 'BlueprintSummary')
|
|
38
41
|
BlueprintVersion = Shapes::StringShape.new(name: 'BlueprintVersion')
|
|
39
42
|
Blueprints = Shapes::ListShape.new(name: 'Blueprints')
|
|
43
|
+
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
|
40
44
|
ChannelLabelingConfiguration = Shapes::StructureShape.new(name: 'ChannelLabelingConfiguration')
|
|
41
45
|
ClientToken = Shapes::StringShape.new(name: 'ClientToken')
|
|
42
46
|
ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
|
|
@@ -96,6 +100,7 @@ module Aws::BedrockDataAutomation
|
|
|
96
100
|
InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
|
|
97
101
|
KmsEncryptionContext = Shapes::MapShape.new(name: 'KmsEncryptionContext')
|
|
98
102
|
KmsKeyId = Shapes::StringShape.new(name: 'KmsKeyId')
|
|
103
|
+
Language = Shapes::StringShape.new(name: 'Language')
|
|
99
104
|
ListBlueprintsRequest = Shapes::StructureShape.new(name: 'ListBlueprintsRequest')
|
|
100
105
|
ListBlueprintsResponse = Shapes::StructureShape.new(name: 'ListBlueprintsResponse')
|
|
101
106
|
ListDataAutomationProjectsRequest = Shapes::StructureShape.new(name: 'ListDataAutomationProjectsRequest')
|
|
@@ -159,7 +164,15 @@ module Aws::BedrockDataAutomation
|
|
|
159
164
|
|
|
160
165
|
AudioExtractionCategoryTypes.member = Shapes::ShapeRef.new(shape: AudioExtractionCategoryType)
|
|
161
166
|
|
|
167
|
+
AudioInputLanguages.member = Shapes::ShapeRef.new(shape: Language)
|
|
168
|
+
|
|
169
|
+
AudioLanguageConfiguration.add_member(:input_languages, Shapes::ShapeRef.new(shape: AudioInputLanguages, location_name: "inputLanguages"))
|
|
170
|
+
AudioLanguageConfiguration.add_member(:generative_output_language, Shapes::ShapeRef.new(shape: AudioGenerativeOutputLanguage, location_name: "generativeOutputLanguage"))
|
|
171
|
+
AudioLanguageConfiguration.add_member(:identify_multiple_languages, Shapes::ShapeRef.new(shape: Boolean, location_name: "identifyMultipleLanguages"))
|
|
172
|
+
AudioLanguageConfiguration.struct_class = Types::AudioLanguageConfiguration
|
|
173
|
+
|
|
162
174
|
AudioOverrideConfiguration.add_member(:modality_processing, Shapes::ShapeRef.new(shape: ModalityProcessingConfiguration, location_name: "modalityProcessing"))
|
|
175
|
+
AudioOverrideConfiguration.add_member(:language_configuration, Shapes::ShapeRef.new(shape: AudioLanguageConfiguration, location_name: "languageConfiguration"))
|
|
163
176
|
AudioOverrideConfiguration.struct_class = Types::AudioOverrideConfiguration
|
|
164
177
|
|
|
165
178
|
AudioStandardExtraction.add_member(:category, Shapes::ShapeRef.new(shape: AudioExtractionCategory, required: true, location_name: "category"))
|
|
@@ -63,16 +63,45 @@ module Aws::BedrockDataAutomation
|
|
|
63
63
|
include Aws::Structure
|
|
64
64
|
end
|
|
65
65
|
|
|
66
|
+
# Optional configuration for audio language settings
|
|
67
|
+
#
|
|
68
|
+
# @!attribute [rw] input_languages
|
|
69
|
+
# List of supported audio languages
|
|
70
|
+
# @return [Array<String>]
|
|
71
|
+
#
|
|
72
|
+
# @!attribute [rw] generative_output_language
|
|
73
|
+
# Configuration for Audio output language
|
|
74
|
+
# @return [String]
|
|
75
|
+
#
|
|
76
|
+
# @!attribute [rw] identify_multiple_languages
|
|
77
|
+
# Enable multiple language identification in audio
|
|
78
|
+
# @return [Boolean]
|
|
79
|
+
#
|
|
80
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/AudioLanguageConfiguration AWS API Documentation
|
|
81
|
+
#
|
|
82
|
+
class AudioLanguageConfiguration < Struct.new(
|
|
83
|
+
:input_languages,
|
|
84
|
+
:generative_output_language,
|
|
85
|
+
:identify_multiple_languages)
|
|
86
|
+
SENSITIVE = []
|
|
87
|
+
include Aws::Structure
|
|
88
|
+
end
|
|
89
|
+
|
|
66
90
|
# Override Configuration of Audio
|
|
67
91
|
#
|
|
68
92
|
# @!attribute [rw] modality_processing
|
|
69
93
|
# Configuration to enable/disable processing of modality
|
|
70
94
|
# @return [Types::ModalityProcessingConfiguration]
|
|
71
95
|
#
|
|
96
|
+
# @!attribute [rw] language_configuration
|
|
97
|
+
# Optional configuration for audio language settings
|
|
98
|
+
# @return [Types::AudioLanguageConfiguration]
|
|
99
|
+
#
|
|
72
100
|
# @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-data-automation-2023-07-26/AudioOverrideConfiguration AWS API Documentation
|
|
73
101
|
#
|
|
74
102
|
class AudioOverrideConfiguration < Struct.new(
|
|
75
|
-
:modality_processing
|
|
103
|
+
:modality_processing,
|
|
104
|
+
:language_configuration)
|
|
76
105
|
SENSITIVE = []
|
|
77
106
|
include Aws::Structure
|
|
78
107
|
end
|
data/sig/client.rbs
CHANGED
|
@@ -230,6 +230,11 @@ module Aws
|
|
|
230
230
|
audio: {
|
|
231
231
|
modality_processing: {
|
|
232
232
|
state: ("ENABLED" | "DISABLED")?
|
|
233
|
+
}?,
|
|
234
|
+
language_configuration: {
|
|
235
|
+
input_languages: Array[("EN" | "DE" | "ES" | "FR" | "IT" | "PT" | "JA" | "KO" | "CN" | "TW" | "HK")]?,
|
|
236
|
+
generative_output_language: ("DEFAULT" | "EN")?,
|
|
237
|
+
identify_multiple_languages: bool?
|
|
233
238
|
}?
|
|
234
239
|
}?,
|
|
235
240
|
modality_routing: {
|
|
@@ -503,6 +508,11 @@ module Aws
|
|
|
503
508
|
audio: {
|
|
504
509
|
modality_processing: {
|
|
505
510
|
state: ("ENABLED" | "DISABLED")?
|
|
511
|
+
}?,
|
|
512
|
+
language_configuration: {
|
|
513
|
+
input_languages: Array[("EN" | "DE" | "ES" | "FR" | "IT" | "PT" | "JA" | "KO" | "CN" | "TW" | "HK")]?,
|
|
514
|
+
generative_output_language: ("DEFAULT" | "EN")?,
|
|
515
|
+
identify_multiple_languages: bool?
|
|
506
516
|
}?
|
|
507
517
|
}?,
|
|
508
518
|
modality_routing: {
|
data/sig/types.rbs
CHANGED
|
@@ -25,8 +25,16 @@ module Aws::BedrockDataAutomation
|
|
|
25
25
|
SENSITIVE: []
|
|
26
26
|
end
|
|
27
27
|
|
|
28
|
+
class AudioLanguageConfiguration
|
|
29
|
+
attr_accessor input_languages: ::Array[("EN" | "DE" | "ES" | "FR" | "IT" | "PT" | "JA" | "KO" | "CN" | "TW" | "HK")]
|
|
30
|
+
attr_accessor generative_output_language: ("DEFAULT" | "EN")
|
|
31
|
+
attr_accessor identify_multiple_languages: bool
|
|
32
|
+
SENSITIVE: []
|
|
33
|
+
end
|
|
34
|
+
|
|
28
35
|
class AudioOverrideConfiguration
|
|
29
36
|
attr_accessor modality_processing: Types::ModalityProcessingConfiguration
|
|
37
|
+
attr_accessor language_configuration: Types::AudioLanguageConfiguration
|
|
30
38
|
SENSITIVE: []
|
|
31
39
|
end
|
|
32
40
|
|