Skip to content

Commit de77add

Browse files
This release adds 'outpost' location type to the DescribeInstanceTypeOfferings API, allowing customers that have been allowlisted for outpost to query their offerings in the API.
1 parent 5079765 commit de77add

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

generator/ServiceModels/ec2/ec2-2016-11-15.api.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30553,7 +30553,8 @@
3055330553
"enum":[
3055430554
"region",
3055530555
"availability-zone",
30556-
"availability-zone-id"
30556+
"availability-zone-id",
30557+
"outpost"
3055730558
]
3055830559
},
3055930560
"LogDestinationType":{

generator/ServiceModels/ec2/ec2-2016-11-15.normal.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39312,7 +39312,8 @@
3931239312
"enum":[
3931339313
"region",
3931439314
"availability-zone",
39315-
"availability-zone-id"
39315+
"availability-zone-id",
39316+
"outpost"
3931639317
]
3931739318
},
3931839319
"LogDestinationType":{

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12611,6 +12611,10 @@ public class LocationType : ConstantClass
1261112611
/// </summary>
1261212612
public static readonly LocationType AvailabilityZoneId = new LocationType("availability-zone-id");
1261312613
/// <summary>
12614+
/// Constant Outpost for LocationType
12615+
/// </summary>
12616+
public static readonly LocationType Outpost = new LocationType("outpost");
12617+
/// <summary>
1261412618
/// Constant Region for LocationType
1261512619
/// </summary>
1261612620
public static readonly LocationType Region = new LocationType("region");

0 commit comments

Comments
 (0)