Skip to content

Commit e2aa960

Browse files
Bedrock Runtime Reserved Service Support
1 parent f37ccf7 commit e2aa960

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

generator/ServiceModels/bedrock-runtime/bedrock-runtime-2023-09-30.api.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2461,7 +2461,8 @@
24612461
"enum":[
24622462
"priority",
24632463
"default",
2464-
"flex"
2464+
"flex",
2465+
"reserved"
24652466
]
24662467
},
24672468
"ServiceUnavailableException":{

generator/ServiceModels/bedrock-runtime/bedrock-runtime-2023-09-30.normal.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3679,7 +3679,8 @@
36793679
"enum":[
36803680
"priority",
36813681
"default",
3682-
"flex"
3682+
"flex",
3683+
"reserved"
36833684
]
36843685
},
36853686
"ServiceUnavailableException":{

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1738,6 +1738,10 @@ public class ServiceTierType : ConstantClass
17381738
/// Constant Priority for ServiceTierType
17391739
/// </summary>
17401740
public static readonly ServiceTierType Priority = new ServiceTierType("priority");
1741+
/// <summary>
1742+
/// Constant Reserved for ServiceTierType
1743+
/// </summary>
1744+
public static readonly ServiceTierType Reserved = new ServiceTierType("reserved");
17411745

17421746
/// <summary>
17431747
/// This constant constructor does not need to be called if the constant

0 commit comments

Comments
 (0)