@@ -918,6 +918,28 @@ export enum InstanceClass {
918
918
*/
919
919
M7GD = 'm7gd' ,
920
920
921
+ /**
922
+ * Standard instances with high memory and compute capacity based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation
923
+ */
924
+ STANDARD7_INTEL = 'standard7-intel' ,
925
+
926
+ /**
927
+ * Standard instances with high memory and compute capacity based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation
928
+ */
929
+ M7I = 'm7i' ,
930
+
931
+ /**
932
+ * Flexible instances with high memory and compute capacity based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation
933
+ * The M7i-Flex instances deliver a baseline of 40% CPU performance, and can scale up to full CPU performance 95% of the time
934
+ */
935
+ STANDARD7_INTEL_FLEX = 'standard7-intel-flex' ,
936
+
937
+ /**
938
+ * Flexible instances with high memory and compute capacity based on Intel Xeon Scalable (Sapphire Rapids) processors, 7th generation
939
+ * The M7i-Flex instances deliver a baseline of 40% CPU performance, and can scale up to full CPU performance 95% of the time
940
+ */
941
+ M7I_FLEX = 'm7i-flex' ,
942
+
921
943
/**
922
944
* High memory and compute capacity instances, 1st generation
923
945
*/
@@ -1305,6 +1327,10 @@ export class InstanceType {
1305
1327
[ InstanceClass . M7G ] : 'm7g' ,
1306
1328
[ InstanceClass . STANDARD7_GRAVITON3_NVME_DRIVE ] : 'm7gd' ,
1307
1329
[ InstanceClass . M7GD ] : 'm7gd' ,
1330
+ [ InstanceClass . STANDARD7_INTEL ] : 'm7i' ,
1331
+ [ InstanceClass . M7I ] : 'm7i' ,
1332
+ [ InstanceClass . STANDARD7_INTEL_FLEX ] : 'm7i-flex' ,
1333
+ [ InstanceClass . M7I_FLEX ] : 'm7i-flex' ,
1308
1334
[ InstanceClass . HIGH_COMPUTE_MEMORY1 ] : 'z1d' ,
1309
1335
[ InstanceClass . Z1D ] : 'z1d' ,
1310
1336
[ InstanceClass . INFERENCE1 ] : 'inf1' ,
0 commit comments