Skip to content

Commit e999283

Browse files
Added support for Custom output and blueprints for AUDIO data types.
1 parent cff3d97 commit e999283

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

generator/ServiceModels/bedrock-data-automation/bedrock-data-automation-2023-07-26.api.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1147,7 +1147,8 @@
11471147
"type":"string",
11481148
"enum":[
11491149
"DOCUMENT",
1150-
"IMAGE"
1150+
"IMAGE",
1151+
"AUDIO"
11511152
]
11521153
},
11531154
"UntagResourceRequest":{

generator/ServiceModels/bedrock-data-automation/bedrock-data-automation-2023-07-26.normal.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1274,7 +1274,8 @@
12741274
"documentation":"<p>Type</p>",
12751275
"enum":[
12761276
"DOCUMENT",
1277-
"IMAGE"
1277+
"IMAGE",
1278+
"AUDIO"
12781279
]
12791280
},
12801281
"UntagResourceRequest":{

sdk/src/Services/BedrockDataAutomation/Generated/ServiceEnumerations.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -782,6 +782,10 @@ public static implicit operator State(string value)
782782
public class Type : ConstantClass
783783
{
784784

785+
/// <summary>
786+
/// Constant AUDIO for Type
787+
/// </summary>
788+
public static readonly Type AUDIO = new Type("AUDIO");
785789
/// <summary>
786790
/// Constant DOCUMENT for Type
787791
/// </summary>

0 commit comments

Comments
 (0)