Skip to content

Commit 1a4ccca

Browse files
Added support for BOTTLEROCKET FIPS AMIs to AMI types in US regions.
1 parent e68772a commit 1a4ccca

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

generator/ServiceModels/eks/eks-2017-11-01.api.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -919,6 +919,8 @@
919919
"CUSTOM",
920920
"BOTTLEROCKET_ARM_64",
921921
"BOTTLEROCKET_x86_64",
922+
"BOTTLEROCKET_ARM_64_FIPS",
923+
"BOTTLEROCKET_x86_64_FIPS",
922924
"BOTTLEROCKET_ARM_64_NVIDIA",
923925
"BOTTLEROCKET_x86_64_NVIDIA",
924926
"WINDOWS_CORE_2019_x86_64",

generator/ServiceModels/eks/eks-2017-11-01.normal.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -976,6 +976,8 @@
976976
"CUSTOM",
977977
"BOTTLEROCKET_ARM_64",
978978
"BOTTLEROCKET_x86_64",
979+
"BOTTLEROCKET_ARM_64_FIPS",
980+
"BOTTLEROCKET_x86_64_FIPS",
979981
"BOTTLEROCKET_ARM_64_NVIDIA",
980982
"BOTTLEROCKET_x86_64_NVIDIA",
981983
"WINDOWS_CORE_2019_x86_64",

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,10 @@ public class AMITypes : ConstantClass
269269
/// </summary>
270270
public static readonly AMITypes BOTTLEROCKET_ARM_64 = new AMITypes("BOTTLEROCKET_ARM_64");
271271
/// <summary>
272+
/// Constant BOTTLEROCKET_ARM_64_FIPS for AMITypes
273+
/// </summary>
274+
public static readonly AMITypes BOTTLEROCKET_ARM_64_FIPS = new AMITypes("BOTTLEROCKET_ARM_64_FIPS");
275+
/// <summary>
272276
/// Constant BOTTLEROCKET_ARM_64_NVIDIA for AMITypes
273277
/// </summary>
274278
public static readonly AMITypes BOTTLEROCKET_ARM_64_NVIDIA = new AMITypes("BOTTLEROCKET_ARM_64_NVIDIA");
@@ -277,6 +281,10 @@ public class AMITypes : ConstantClass
277281
/// </summary>
278282
public static readonly AMITypes BOTTLEROCKET_x86_64 = new AMITypes("BOTTLEROCKET_x86_64");
279283
/// <summary>
284+
/// Constant BOTTLEROCKET_x86_64_FIPS for AMITypes
285+
/// </summary>
286+
public static readonly AMITypes BOTTLEROCKET_x86_64_FIPS = new AMITypes("BOTTLEROCKET_x86_64_FIPS");
287+
/// <summary>
280288
/// Constant BOTTLEROCKET_x86_64_NVIDIA for AMITypes
281289
/// </summary>
282290
public static readonly AMITypes BOTTLEROCKET_x86_64_NVIDIA = new AMITypes("BOTTLEROCKET_x86_64_NVIDIA");

0 commit comments

Comments
 (0)