Skip to content

Commit ba8cdd5

Browse files
Add support for VIDEO modality to BlueprintType enum.
1 parent 67356d9 commit ba8cdd5

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
@@ -1148,7 +1148,8 @@
11481148
"enum":[
11491149
"DOCUMENT",
11501150
"IMAGE",
1151-
"AUDIO"
1151+
"AUDIO",
1152+
"VIDEO"
11521153
]
11531154
},
11541155
"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
@@ -1275,7 +1275,8 @@
12751275
"enum":[
12761276
"DOCUMENT",
12771277
"IMAGE",
1278-
"AUDIO"
1278+
"AUDIO",
1279+
"VIDEO"
12791280
]
12801281
},
12811282
"UntagResourceRequest":{

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -794,6 +794,10 @@ public class Type : ConstantClass
794794
/// Constant IMAGE for Type
795795
/// </summary>
796796
public static readonly Type IMAGE = new Type("IMAGE");
797+
/// <summary>
798+
/// Constant VIDEO for Type
799+
/// </summary>
800+
public static readonly Type VIDEO = new Type("VIDEO");
797801

798802
/// <summary>
799803
/// This constant constructor does not need to be called if the constant

0 commit comments

Comments
 (0)