From 881a3e61a3130aa66dfc3ca0bf62e7f74e6325a3 Mon Sep 17 00:00:00 2001 From: Gnanakeethan Balasubramaniam Date: Tue, 12 Sep 2023 14:20:32 +0530 Subject: [PATCH 01/69] Adding e-shoppen models Signed-off-by: Gnanakeethan Balasubramaniam --- src/lib/case-studies/eshoppen.test.ts | 41 ++++++++++++ src/lib/case-studies/eshoppen.ts | 90 +++++++++++++++++++++++++++ 2 files changed, 131 insertions(+) create mode 100644 src/lib/case-studies/eshoppen.test.ts create mode 100644 src/lib/case-studies/eshoppen.ts diff --git a/src/lib/case-studies/eshoppen.test.ts b/src/lib/case-studies/eshoppen.test.ts new file mode 100644 index 000000000..395fa49cd --- /dev/null +++ b/src/lib/case-studies/eshoppen.test.ts @@ -0,0 +1,41 @@ +import {describe, expect, jest, test} from '@jest/globals'; +import {Eshoppen} from './eshoppen'; +jest.setTimeout(30000); + +describe('eshoppen:configure test', () => { + test('initialize and test', async () => { + const model = await new Eshoppen().configure('eshoppen', {}); + expect(model).toBeInstanceOf(Eshoppen); + await expect( + model.calculate([ + { + }, + ]) + ).resolves.toStrictEqual([ + { + }, + ]); + await expect( + model.calculate([ + { + 'grid-ci': 212.1, + energy: 100.0, + }, + ]) + ).resolves.toStrictEqual([ + { + 'grid-ci': 212.1, + energy: 100.0, + 'operational-carbon': 100.0 * 212.1, + }, + ]); + await expect( + model.calculate([ + { + 'grid-cid': 212.1, + energy: 100.0, + }, + ]) + ).rejects.toThrowError(); + }); +}); diff --git a/src/lib/case-studies/eshoppen.ts b/src/lib/case-studies/eshoppen.ts new file mode 100644 index 000000000..77192b1e0 --- /dev/null +++ b/src/lib/case-studies/eshoppen.ts @@ -0,0 +1,90 @@ +import {IImpactModelInterface} from '../interfaces'; +import {KeyValuePair} from '../../types/boavizta'; + +export class Eshoppen implements IImpactModelInterface { + authParams: object | undefined = undefined; + modelType: 'e-cpu' | 'e-mem' | 'e-net' | 'e-sum' = 'e-cpu'; + staticParams: object | undefined; + name: string | undefined; + + authenticate(authParams: object): void { + this.authParams = authParams; + } + + async calculate( + observations: object | object[] | undefined + ): Promise { + if (!Array.isArray(observations)) { + throw new Error('observations should be an array'); + } + observations.map((observation: KeyValuePair) => { + switch (this.modelType) { + case 'e-cpu': { + // e-cpu = n-hours * n-chips * tdp * tdp-coeff + observation['e-cpu'] = + observation['n-hours'] * + observation['n-chips'] * + observation['tdp'] * + observation['tdp-coeff']; + break; + } + case 'e-mem': { + // e-mem-tdp = n-hours * n-chip * tdp-mem * tdp-coeff + observation['e-mem'] = + observation['n-hours'] * + observation['n-chip'] * + observation['tdp-mem'] * + observation['tdp-coeff']; + break; + } + case 'e-net': { + // e-net = data-in + data-out * net-energy + observation['e-net'] = + (observation['data-in'] + observation['data-out']) * + observation['net-energy']; + break; + } + case 'e-sum': { + // e-sum = e-cpu + e-mem + e-net + observation['energy'] = + observation['e-cpu'] + observation['e-mem'] + observation['e-net']; + break; + } + default: { + throw new Error('Unknown msft-eshoppen model type'); + } + } + return observation; + }); + + return Promise.resolve(observations); + } + + async configure( + name: string, + staticParams: object | undefined + ): Promise { + this.staticParams = staticParams; + this.name = name; + if ( + staticParams !== undefined && + 'type' in staticParams && + // check that the type is one of the allowed values + ['e-mem', 'e-cpu', 'e-net', 'e-sum'].includes( + staticParams['type'] as string + ) + ) { + this.modelType = staticParams['type'] as + | 'e-cpu' + | 'e-mem' + | 'e-net' + | 'e-sum'; + delete staticParams['type']; + } + return this; + } + + modelIdentifier(): string { + return 'org.gsf.sci-o'; + } +} From 3302596d23447b352d910994deb9376b658e6a49 Mon Sep 17 00:00:00 2001 From: Gnanakeethan Balasubramaniam Date: Tue, 12 Sep 2023 19:30:46 +0530 Subject: [PATCH 02/69] Fix tests Signed-off-by: Gnanakeethan Balasubramaniam --- src/lib/case-studies/eshoppen.test.ts | 37 ++++++++++----------------- src/lib/case-studies/eshoppen.ts | 12 +++++++++ 2 files changed, 26 insertions(+), 23 deletions(-) diff --git a/src/lib/case-studies/eshoppen.test.ts b/src/lib/case-studies/eshoppen.test.ts index 395fa49cd..2dc120f09 100644 --- a/src/lib/case-studies/eshoppen.test.ts +++ b/src/lib/case-studies/eshoppen.test.ts @@ -1,41 +1,32 @@ import {describe, expect, jest, test} from '@jest/globals'; import {Eshoppen} from './eshoppen'; + jest.setTimeout(30000); describe('eshoppen:configure test', () => { test('initialize and test', async () => { - const model = await new Eshoppen().configure('eshoppen', {}); + const model = await new Eshoppen().configure('eshoppen', { + type: 'e-cpu', + }); expect(model).toBeInstanceOf(Eshoppen); await expect( model.calculate([ { + 'n-hours': 1, + 'n-chips': 1, + tdp: 120, + 'tdp-coeff': 1.02, }, ]) ).resolves.toStrictEqual([ { + 'e-cpu': 122.4, + 'n-hours': 1, + 'n-chips': 1, + tdp: 120, + 'tdp-coeff': 1.02, }, ]); - await expect( - model.calculate([ - { - 'grid-ci': 212.1, - energy: 100.0, - }, - ]) - ).resolves.toStrictEqual([ - { - 'grid-ci': 212.1, - energy: 100.0, - 'operational-carbon': 100.0 * 212.1, - }, - ]); - await expect( - model.calculate([ - { - 'grid-cid': 212.1, - energy: 100.0, - }, - ]) - ).rejects.toThrowError(); + await expect(model.calculate([{}])).rejects.toThrowError(); }); }); diff --git a/src/lib/case-studies/eshoppen.ts b/src/lib/case-studies/eshoppen.ts index 77192b1e0..6f6260b53 100644 --- a/src/lib/case-studies/eshoppen.ts +++ b/src/lib/case-studies/eshoppen.ts @@ -26,6 +26,9 @@ export class Eshoppen implements IImpactModelInterface { observation['n-chips'] * observation['tdp'] * observation['tdp-coeff']; + if (isNaN(observation['e-cpu'])) { + throw new Error('e-cpu not computable'); + } break; } case 'e-mem': { @@ -35,6 +38,9 @@ export class Eshoppen implements IImpactModelInterface { observation['n-chip'] * observation['tdp-mem'] * observation['tdp-coeff']; + if (isNaN(observation['e-mem'])) { + throw new Error('e-mem not computable'); + } break; } case 'e-net': { @@ -42,12 +48,18 @@ export class Eshoppen implements IImpactModelInterface { observation['e-net'] = (observation['data-in'] + observation['data-out']) * observation['net-energy']; + if (isNaN(observation['e-net'])) { + throw new Error('e-net not computable'); + } break; } case 'e-sum': { // e-sum = e-cpu + e-mem + e-net observation['energy'] = observation['e-cpu'] + observation['e-mem'] + observation['e-net']; + if (isNaN(observation['energy'])) { + throw new Error('energy not computable'); + } break; } default: { From 7751b01ae3d4b87b6a58c1bd44db8e29f0967b36 Mon Sep 17 00:00:00 2001 From: jmc Date: Tue, 12 Sep 2023 14:25:25 +0100 Subject: [PATCH 03/69] initial commit for e-mem model --- src/lib/e-mem/index.test.ts | 76 +++++++++++++++++++++++++ src/lib/e-mem/index.ts | 107 ++++++++++++++++++++++++++++++++++++ 2 files changed, 183 insertions(+) create mode 100644 src/lib/e-mem/index.test.ts create mode 100644 src/lib/e-mem/index.ts diff --git a/src/lib/e-mem/index.test.ts b/src/lib/e-mem/index.test.ts new file mode 100644 index 000000000..6564ec87c --- /dev/null +++ b/src/lib/e-mem/index.test.ts @@ -0,0 +1,76 @@ +import { describe, expect, jest, test } from '@jest/globals'; +import { EMemModel } from './index'; + +jest.setTimeout(30000); + +describe('teads:configure test', () => { + test('initialize with params', async () => { + const impactModel = new EMemModel(); + await impactModel.configure('test', { + mem_alloc: 32, + mem_energy: 0.38 + }); + await expect( + impactModel.calculate([ + { + duration: 3600, + 'mem-util': 50.0, + timestamp: '2021-01-01T00:00:00Z', + }, + ]) + ).resolves.toStrictEqual([ + { + energy: 0.00608, + duration: 3600, + 'mem-util': 50.0, + timestamp: '2021-01-01T00:00:00Z', + }, + ]); + }); + test('initialize with params', async () => { + const impactModel = new EMemModel(); + await impactModel.configure('test', { + mem_alloc: 32, + mem_energy: 0.38 + }); + await expect( + impactModel.calculate([ + { + duration: 3600, + 'mem-util': 10.0, + timestamp: '2021-01-01T00:00:00Z', + }, + { + duration: 3600, + 'mem-util': 50.0, + timestamp: '2021-01-01T00:00:00Z', + }, + { + duration: 3600, + 'mem-util': 90.0, + timestamp: '2021-01-01T00:00:00Z', + }, + ]) + ).resolves.toStrictEqual([ + { + energy: 0.0012160000000000003, + duration: 3600, + 'mem-util': 10.0, + timestamp: '2021-01-01T00:00:00Z', + }, + { + energy: 0.00608, + duration: 3600, + 'mem-util': 50.0, + timestamp: '2021-01-01T00:00:00Z', + }, + { + energy: 0.010944, + duration: 3600, + 'mem-util': 90.0, + timestamp: '2021-01-01T00:00:00Z', + }, + ]); + }) + +}); diff --git a/src/lib/e-mem/index.ts b/src/lib/e-mem/index.ts new file mode 100644 index 000000000..0656ed86f --- /dev/null +++ b/src/lib/e-mem/index.ts @@ -0,0 +1,107 @@ +import { IImpactModelInterface } from '../interfaces'; +import { KeyValuePair } from '../../types/boavizta'; + + + +export class EMemModel implements IImpactModelInterface { + // Defined for compatibility. Not used in TEADS. + authParams: object | undefined; + // name of the data source + name: string | undefined; + // tdp of the chip being measured + mem_alloc = 0; + // default power curve provided by the Teads Team + mem_energy = 0 + /** + * Defined for compatibility. Not used in TEADS. + */ + authenticate(authParams: object): void { + this.authParams = authParams; + } + + /** + * Configures the TEADS Plugin for IEF + * @param {string} name name of the resource + * @param {Object} staticParams static parameters for the resource + * @param {number} staticParams.tdp Thermal Design Power in Watts + * @param {Interpolation} staticParams.interpolation Interpolation method + */ + async configure( + name: string, + staticParams: object | undefined = undefined + ): Promise { + this.name = name; + + if (staticParams === undefined) { + throw new Error('Required Parameters not provided'); + } + + if ('mem_alloc' in staticParams) { + this.mem_alloc = staticParams?.mem_alloc as number; + } + + if ('mem_energy' in staticParams) { + this.mem_energy = staticParams?.mem_energy as number; + } + + return this; + } + + /** + * Calculate the total emissions for a list of observations + * + * Each Observation require: + * @param {Object[]} observations + * @param {string} observations[].timestamp RFC3339 timestamp string + * @param {number} observations[].mem-util percentage mem usage + */ + async calculate(observations: object | object[] | undefined): Promise { + if (observations === undefined) { + throw new Error('Required Parameters not provided'); + } else if (!Array.isArray(observations)) { + throw new Error('Observations must be an array'); + } + return observations.map((observation: KeyValuePair) => { + this.configure(this.name!, observation); + observation['energy'] = this.calculateEnergy(observation); + return observation; + }); + } + + /** + * Returns model identifier + */ + modelIdentifier(): string { + return 'e-mem'; + } + + /** + * Calculates the energy consumption for a single observation + * requires + * + * mem-util: ram usage in percentage + * timestamp: RFC3339 timestamp string + * + * multiplies memory used (GB) by a coefficient (wh/GB) and converts to kwh + */ + private calculateEnergy(observation: KeyValuePair) { + if ( + !('mem-util' in observation) || + !('timestamp' in observation) + ) { + throw new Error( + 'Required Parameters duration,cpu-util,timestamp not provided for observation' + ); + } + + const mem_alloc = this.mem_alloc; + // convert cpu usage to percentage + const mem_util = observation['mem-util']; + if (mem_util < 0 || mem_util > 100) { + throw new Error('cpu usage must be between 0 and 100'); + } + + let mem_energy = this.mem_energy; + return (mem_alloc * (mem_util / 100) * mem_energy) / 1000; + } +} From df794d24beae1954d9a3b42333f4e2be709d0d37 Mon Sep 17 00:00:00 2001 From: jmc Date: Tue, 12 Sep 2023 14:27:15 +0100 Subject: [PATCH 04/69] return `e-mem` instead of `energy` --- src/lib/e-mem/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/e-mem/index.ts b/src/lib/e-mem/index.ts index 0656ed86f..c4b0bec6b 100644 --- a/src/lib/e-mem/index.ts +++ b/src/lib/e-mem/index.ts @@ -63,7 +63,7 @@ export class EMemModel implements IImpactModelInterface { } return observations.map((observation: KeyValuePair) => { this.configure(this.name!, observation); - observation['energy'] = this.calculateEnergy(observation); + observation['e-mem'] = this.calculateEnergy(observation); return observation; }); } @@ -102,6 +102,7 @@ export class EMemModel implements IImpactModelInterface { } let mem_energy = this.mem_energy; + return (mem_alloc * (mem_util / 100) * mem_energy) / 1000; } } From 952eb96017ae3a5a89ccae182cf06ab95a842e05 Mon Sep 17 00:00:00 2001 From: jmc Date: Tue, 12 Sep 2023 14:57:34 +0100 Subject: [PATCH 05/69] change out name energy -> e-mem --- src/lib/e-mem/index.test.ts | 8 ++++---- src/lib/e-mem/index.ts | 3 +-- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/src/lib/e-mem/index.test.ts b/src/lib/e-mem/index.test.ts index 6564ec87c..5ecb8ff98 100644 --- a/src/lib/e-mem/index.test.ts +++ b/src/lib/e-mem/index.test.ts @@ -20,7 +20,7 @@ describe('teads:configure test', () => { ]) ).resolves.toStrictEqual([ { - energy: 0.00608, + e_mem: 0.00608, duration: 3600, 'mem-util': 50.0, timestamp: '2021-01-01T00:00:00Z', @@ -53,19 +53,19 @@ describe('teads:configure test', () => { ]) ).resolves.toStrictEqual([ { - energy: 0.0012160000000000003, + e_mem: 0.0012160000000000003, duration: 3600, 'mem-util': 10.0, timestamp: '2021-01-01T00:00:00Z', }, { - energy: 0.00608, + e_mem: 0.00608, duration: 3600, 'mem-util': 50.0, timestamp: '2021-01-01T00:00:00Z', }, { - energy: 0.010944, + e_mem: 0.010944, duration: 3600, 'mem-util': 90.0, timestamp: '2021-01-01T00:00:00Z', diff --git a/src/lib/e-mem/index.ts b/src/lib/e-mem/index.ts index c4b0bec6b..d912d81c5 100644 --- a/src/lib/e-mem/index.ts +++ b/src/lib/e-mem/index.ts @@ -2,7 +2,6 @@ import { IImpactModelInterface } from '../interfaces'; import { KeyValuePair } from '../../types/boavizta'; - export class EMemModel implements IImpactModelInterface { // Defined for compatibility. Not used in TEADS. authParams: object | undefined; @@ -63,7 +62,7 @@ export class EMemModel implements IImpactModelInterface { } return observations.map((observation: KeyValuePair) => { this.configure(this.name!, observation); - observation['e-mem'] = this.calculateEnergy(observation); + observation['e_mem'] = this.calculateEnergy(observation); return observation; }); } From 720e10045ba6779e8fcef386bd8e28ce0bcfb438 Mon Sep 17 00:00:00 2001 From: Gnanakeethan Balasubramaniam Date: Tue, 12 Sep 2023 19:39:39 +0530 Subject: [PATCH 06/69] changing according to standards Signed-off-by: Gnanakeethan Balasubramaniam --- .../emem.test.ts} | 23 ++-- src/lib/case-studies/emem.ts | 113 ++++++++++++++++++ src/lib/e-mem/index.ts | 107 ----------------- 3 files changed, 124 insertions(+), 119 deletions(-) rename src/lib/{e-mem/index.test.ts => case-studies/emem.test.ts} (82%) create mode 100644 src/lib/case-studies/emem.ts delete mode 100644 src/lib/e-mem/index.ts diff --git a/src/lib/e-mem/index.test.ts b/src/lib/case-studies/emem.test.ts similarity index 82% rename from src/lib/e-mem/index.test.ts rename to src/lib/case-studies/emem.test.ts index 5ecb8ff98..1ebc498d5 100644 --- a/src/lib/e-mem/index.test.ts +++ b/src/lib/case-studies/emem.test.ts @@ -1,5 +1,5 @@ -import { describe, expect, jest, test } from '@jest/globals'; -import { EMemModel } from './index'; +import {describe, expect, jest, test} from '@jest/globals'; +import {EMemModel} from './emem'; jest.setTimeout(30000); @@ -7,8 +7,8 @@ describe('teads:configure test', () => { test('initialize with params', async () => { const impactModel = new EMemModel(); await impactModel.configure('test', { - mem_alloc: 32, - mem_energy: 0.38 + 'mem-alloc': 32, + 'mem-energy': 0.38, }); await expect( impactModel.calculate([ @@ -20,7 +20,7 @@ describe('teads:configure test', () => { ]) ).resolves.toStrictEqual([ { - e_mem: 0.00608, + 'e-mem': 0.00608, duration: 3600, 'mem-util': 50.0, timestamp: '2021-01-01T00:00:00Z', @@ -30,8 +30,8 @@ describe('teads:configure test', () => { test('initialize with params', async () => { const impactModel = new EMemModel(); await impactModel.configure('test', { - mem_alloc: 32, - mem_energy: 0.38 + 'mem-alloc': 32, + 'mem-energy': 0.38, }); await expect( impactModel.calculate([ @@ -53,24 +53,23 @@ describe('teads:configure test', () => { ]) ).resolves.toStrictEqual([ { - e_mem: 0.0012160000000000003, + 'e-mem': 0.0012160000000000003, duration: 3600, 'mem-util': 10.0, timestamp: '2021-01-01T00:00:00Z', }, { - e_mem: 0.00608, + 'e-mem': 0.00608, duration: 3600, 'mem-util': 50.0, timestamp: '2021-01-01T00:00:00Z', }, { - e_mem: 0.010944, + 'e-mem': 0.010944, duration: 3600, 'mem-util': 90.0, timestamp: '2021-01-01T00:00:00Z', }, ]); - }) - + }); }); diff --git a/src/lib/case-studies/emem.ts b/src/lib/case-studies/emem.ts new file mode 100644 index 000000000..3d1986eb4 --- /dev/null +++ b/src/lib/case-studies/emem.ts @@ -0,0 +1,113 @@ +import {IImpactModelInterface} from '../interfaces'; +import {KeyValuePair} from '../../types/boavizta'; + +export class EMemModel implements IImpactModelInterface { + // Defined for compatibility. Not used in TEADS. + authParams: object | undefined; + // name of the data source + name: string | undefined; + // tdp of the chip being measured + memoryAllocation = 0; + // default power curve provided by the Teads Team + memoryEnergy = 0; + /** + * Defined for compatibility. Not used in TEADS. + */ + authenticate(authParams: object): void { + this.authParams = authParams; + } + + /** + * Configures the TEADS Plugin for IEF + * @param {string} name name of the resource + * @param {Object} staticParams static parameters for the resource + * @param {number} staticParams.tdp Thermal Design Power in Watts + * @param {Interpolation} staticParams.interpolation Interpolation method + */ + async configure( + name: string, + staticParams: object | undefined = undefined + ): Promise { + this.name = name; + + if (staticParams === undefined) { + throw new Error('Required Parameters not provided'); + } + + if ('mem-alloc' in staticParams) { + this.memoryAllocation = staticParams['mem-alloc'] as number; + } + + if ('mem-energy' in staticParams) { + this.memoryEnergy = staticParams['mem-energy'] as number; + } + + return this; + } + + /** + * Calculate the total emissions for a list of observations + * + * Each Observation require: + * @param {Object[]} observations + * @param {string} observations[].timestamp RFC3339 timestamp string + * @param {number} observations[].mem-util percentage mem usage + */ + async calculate(observations: object | object[] | undefined): Promise { + if (observations === undefined) { + throw new Error('Required Parameters not provided'); + } else if (!Array.isArray(observations)) { + throw new Error('Observations must be an array'); + } + return observations.map((observation: KeyValuePair) => { + this.configure(this.name!, observation); + observation['e-mem'] = this.calculateEnergy(observation); + return observation; + }); + } + + /** + * Returns model identifier + */ + modelIdentifier(): string { + return 'e-mem'; + } + + /** + * Calculates the energy consumption for a single observation + * requires + * + * mem-util: ram usage in percentage + * timestamp: RFC3339 timestamp string + * + * multiplies memory used (GB) by a coefficient (wh/GB) and converts to kwh + */ + private calculateEnergy(observation: KeyValuePair) { + if (!('mem-util' in observation) || !('timestamp' in observation)) { + throw new Error( + 'Required Parameters duration,cpu-util,timestamp not provided for observation' + ); + } + if (this.memoryAllocation === 0) { + throw new Error( + 'Required Parameter: mem-alloc not provided in configure' + ); + } + if (this.memoryEnergy === 0) { + throw new Error( + 'Required Parameter: mem-energy not provided in configure' + ); + } + + const mem_alloc = this.memoryAllocation; + // convert cpu usage to percentage + const mem_util = observation['mem-util']; + if (mem_util < 0 || mem_util > 100) { + throw new Error('cpu usage must be between 0 and 100'); + } + + const mem_energy = this.memoryEnergy; + + return (mem_alloc * (mem_util / 100) * mem_energy) / 1000; + } +} diff --git a/src/lib/e-mem/index.ts b/src/lib/e-mem/index.ts deleted file mode 100644 index d912d81c5..000000000 --- a/src/lib/e-mem/index.ts +++ /dev/null @@ -1,107 +0,0 @@ -import { IImpactModelInterface } from '../interfaces'; -import { KeyValuePair } from '../../types/boavizta'; - - -export class EMemModel implements IImpactModelInterface { - // Defined for compatibility. Not used in TEADS. - authParams: object | undefined; - // name of the data source - name: string | undefined; - // tdp of the chip being measured - mem_alloc = 0; - // default power curve provided by the Teads Team - mem_energy = 0 - /** - * Defined for compatibility. Not used in TEADS. - */ - authenticate(authParams: object): void { - this.authParams = authParams; - } - - /** - * Configures the TEADS Plugin for IEF - * @param {string} name name of the resource - * @param {Object} staticParams static parameters for the resource - * @param {number} staticParams.tdp Thermal Design Power in Watts - * @param {Interpolation} staticParams.interpolation Interpolation method - */ - async configure( - name: string, - staticParams: object | undefined = undefined - ): Promise { - this.name = name; - - if (staticParams === undefined) { - throw new Error('Required Parameters not provided'); - } - - if ('mem_alloc' in staticParams) { - this.mem_alloc = staticParams?.mem_alloc as number; - } - - if ('mem_energy' in staticParams) { - this.mem_energy = staticParams?.mem_energy as number; - } - - return this; - } - - /** - * Calculate the total emissions for a list of observations - * - * Each Observation require: - * @param {Object[]} observations - * @param {string} observations[].timestamp RFC3339 timestamp string - * @param {number} observations[].mem-util percentage mem usage - */ - async calculate(observations: object | object[] | undefined): Promise { - if (observations === undefined) { - throw new Error('Required Parameters not provided'); - } else if (!Array.isArray(observations)) { - throw new Error('Observations must be an array'); - } - return observations.map((observation: KeyValuePair) => { - this.configure(this.name!, observation); - observation['e_mem'] = this.calculateEnergy(observation); - return observation; - }); - } - - /** - * Returns model identifier - */ - modelIdentifier(): string { - return 'e-mem'; - } - - /** - * Calculates the energy consumption for a single observation - * requires - * - * mem-util: ram usage in percentage - * timestamp: RFC3339 timestamp string - * - * multiplies memory used (GB) by a coefficient (wh/GB) and converts to kwh - */ - private calculateEnergy(observation: KeyValuePair) { - if ( - !('mem-util' in observation) || - !('timestamp' in observation) - ) { - throw new Error( - 'Required Parameters duration,cpu-util,timestamp not provided for observation' - ); - } - - const mem_alloc = this.mem_alloc; - // convert cpu usage to percentage - const mem_util = observation['mem-util']; - if (mem_util < 0 || mem_util > 100) { - throw new Error('cpu usage must be between 0 and 100'); - } - - let mem_energy = this.mem_energy; - - return (mem_alloc * (mem_util / 100) * mem_energy) / 1000; - } -} From 1eae7e9a6c62c484500646961485403860d42e70 Mon Sep 17 00:00:00 2001 From: Gnanakeethan Balasubramaniam Date: Tue, 12 Sep 2023 20:05:17 +0530 Subject: [PATCH 07/69] adding sci-accenture model Signed-off-by: Gnanakeethan Balasubramaniam --- src/lib/case-studies/sci-accenture.test.ts | 24 +++++++++++++ src/lib/case-studies/sci-accenture.ts | 42 ++++++++++++++++++++++ 2 files changed, 66 insertions(+) create mode 100644 src/lib/case-studies/sci-accenture.test.ts create mode 100644 src/lib/case-studies/sci-accenture.ts diff --git a/src/lib/case-studies/sci-accenture.test.ts b/src/lib/case-studies/sci-accenture.test.ts new file mode 100644 index 000000000..c34c3f93f --- /dev/null +++ b/src/lib/case-studies/sci-accenture.test.ts @@ -0,0 +1,24 @@ +import {describe, expect, jest, test} from '@jest/globals'; +import {SciAccenture} from './sci-accenture'; + +jest.setTimeout(30000); + +describe('eshoppen:configure test', () => { + test('initialize and test', async () => { + const model = await new SciAccenture().configure('sci-accenture', {}); + expect(model).toBeInstanceOf(SciAccenture); + await expect( + model.calculate([ + { + 'sci-total': 1, + }, + ]) + ).resolves.toStrictEqual([ + { + 'sci-total': 1, + sci: 1.05, + }, + ]); + await expect(model.calculate([{}])).rejects.toThrowError(); + }); +}); diff --git a/src/lib/case-studies/sci-accenture.ts b/src/lib/case-studies/sci-accenture.ts new file mode 100644 index 000000000..c8ea14e86 --- /dev/null +++ b/src/lib/case-studies/sci-accenture.ts @@ -0,0 +1,42 @@ +import {IImpactModelInterface} from '../interfaces'; +import {KeyValuePair} from '../../types/boavizta'; + +export class SciAccenture implements IImpactModelInterface { + authParams: object | undefined = undefined; + staticParams: object | undefined; + name: string | undefined; + + authenticate(authParams: object): void { + this.authParams = authParams; + } + + async calculate( + observations: object | object[] | undefined + ): Promise { + if (!Array.isArray(observations)) { + throw new Error('observations should be an array'); + } + observations.map((observation: KeyValuePair) => { + observation['sci'] = observation['sci-total'] * 1.05; + if (isNaN(observation['sci'])) { + throw new Error('sci not computable'); + } + return observation; + }); + + return Promise.resolve(observations); + } + + async configure( + name: string, + staticParams: object | undefined + ): Promise { + this.staticParams = staticParams; + this.name = name; + return this; + } + + modelIdentifier(): string { + return 'org.gsf.sci-o'; + } +} From 294acbfd949d9ca70f037a0aa257dc3e4cf4be6e Mon Sep 17 00:00:00 2001 From: jmc Date: Tue, 12 Sep 2023 15:43:43 +0100 Subject: [PATCH 08/69] adds e-net model --- src/lib/e-net/index.test.ts | 81 +++++++++++++++++++++++++++++ src/lib/e-net/index.ts | 100 ++++++++++++++++++++++++++++++++++++ 2 files changed, 181 insertions(+) create mode 100644 src/lib/e-net/index.test.ts create mode 100644 src/lib/e-net/index.ts diff --git a/src/lib/e-net/index.test.ts b/src/lib/e-net/index.test.ts new file mode 100644 index 000000000..a5cac9963 --- /dev/null +++ b/src/lib/e-net/index.test.ts @@ -0,0 +1,81 @@ +import {describe, expect, jest, test} from '@jest/globals'; +import {ENetModel} from './index'; + +jest.setTimeout(30000); + +describe('teads:configure test', () => { + test('initialize with params', async () => { + const impactModel = new ENetModel(); + await impactModel.configure('test', { + net_energy: 0.001, + }); + await expect( + impactModel.calculate([ + { + duration: 3600, + 'data-in': 14.3, + 'data-out': 1.16, + timestamp: '2021-01-01T00:00:00Z', + }, + ]) + ).resolves.toStrictEqual([ + { + e_net: 0.015460000000000002, + duration: 3600, + 'data-in': 14.3, + 'data-out': 1.16, + timestamp: '2021-01-01T00:00:00Z', + }, + ]); + }); + test('initialize with params', async () => { + const impactModel = new ENetModel(); + await impactModel.configure('test', { + net_energy: 0.001, + }); + await expect( + impactModel.calculate([ + { + duration: 3600, + 'data-in': 14.3, + 'data-out': 1.16, + timestamp: '2021-01-01T00:00:00Z', + }, + { + duration: 3600, + 'data-in': 1.3, + 'data-out': 0.16, + timestamp: '2021-01-01T00:00:00Z', + }, + { + duration: 3600, + 'data-in': 145.3, + 'data-out': 100.16, + timestamp: '2021-01-01T00:00:00Z', + }, + ]) + ).resolves.toStrictEqual([ + { + e_net: 0.015460000000000002, + duration: 3600, + 'data-in': 14.3, + 'data-out': 1.16, + timestamp: '2021-01-01T00:00:00Z', + }, + { + e_net: 0.00146, + duration: 3600, + 'data-in': 1.3, + 'data-out': 0.16, + timestamp: '2021-01-01T00:00:00Z', + }, + { + e_net: 0.24546, + duration: 3600, + 'data-in': 145.3, + 'data-out': 100.16, + timestamp: '2021-01-01T00:00:00Z', + }, + ]); + }); +}); diff --git a/src/lib/e-net/index.ts b/src/lib/e-net/index.ts new file mode 100644 index 000000000..f9663d3ef --- /dev/null +++ b/src/lib/e-net/index.ts @@ -0,0 +1,100 @@ +import {IImpactModelInterface} from '../interfaces'; +import {KeyValuePair} from '../../types/boavizta'; + +export class ENetModel implements IImpactModelInterface { + // Defined for compatibility. Not used in thi smodel. + authParams: object | undefined; + // name of the data source + name: string | undefined; + // tdp of the chip being measured + data_in = 0; + net_energy = 0; + + /** + * Defined for compatibility. Not used in TEADS. + */ + authenticate(authParams: object): void { + this.authParams = authParams; + } + + /** + * Configures the TEADS Plugin for IEF + * @param {string} name name of the resource + * @param {Object} staticParams static parameters for the resource + * @param {number} staticParams.tdp Thermal Design Power in Watts + * @param {Interpolation} staticParams.interpolation Interpolation method + */ + async configure( + name: string, + staticParams: object | undefined = undefined + ): Promise { + this.name = name; + + if (staticParams === undefined) { + throw new Error('Required Parameters not provided'); + } + + if ('net_energy' in staticParams) { + this.net_energy = staticParams?.net_energy as number; + } + + return this; + } + + /** + * Calculate the total emissions for a list of observations + * + * Each Observation require: + * @param {Object[]} observations + * @param {string} observations[].timestamp RFC3339 timestamp string + * @param {number} observations[].mem-util percentage mem usage + */ + async calculate(observations: object | object[] | undefined): Promise { + if (observations === undefined) { + throw new Error('Required Parameters not provided'); + } else if (!Array.isArray(observations)) { + throw new Error('Observations must be an array'); + } + return observations.map((observation: KeyValuePair) => { + this.configure(this.name!, observation); + observation['e_net'] = this.calculateEnergy(observation); + return observation; + }); + } + + /** + * Returns model identifier + */ + modelIdentifier(): string { + return 'e-net'; + } + + /** + * Calculates the energy consumption for a single observation + * requires + * + * data-in: GB of inbound network data + * data-out: GB of outbound network data + * timestamp: RFC3339 timestamp string + * + * multiplies memory used (GB) by a coefficient (wh/GB) and converts to kwh + */ + private calculateEnergy(observation: KeyValuePair) { + if ( + !('data-in' in observation) || + !('data-out' in observation) || + !('timestamp' in observation) + ) { + throw new Error( + 'Required Parameters duration,cpu-util,timestamp not provided for observation' + ); + } + + const net_energy = this.net_energy; + // convert cpu usage to percentage + const data_in = observation['data-in']; + const data_out = observation['data-out']; + + return (data_in + data_out) * net_energy; + } +} From 41377cec634454cece3e706581e01b5e4fe04b8a Mon Sep 17 00:00:00 2001 From: jmc Date: Tue, 12 Sep 2023 17:33:19 +0100 Subject: [PATCH 09/69] fix comments --- src/lib/e-net/index.ts | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/src/lib/e-net/index.ts b/src/lib/e-net/index.ts index f9663d3ef..25c4143ed 100644 --- a/src/lib/e-net/index.ts +++ b/src/lib/e-net/index.ts @@ -1,8 +1,8 @@ -import {IImpactModelInterface} from '../interfaces'; -import {KeyValuePair} from '../../types/boavizta'; +import { IImpactModelInterface } from '../interfaces'; +import { KeyValuePair } from '../../types/boavizta'; export class ENetModel implements IImpactModelInterface { - // Defined for compatibility. Not used in thi smodel. + // Defined for compatibility. Not used in this model. authParams: object | undefined; // name of the data source name: string | undefined; @@ -11,18 +11,16 @@ export class ENetModel implements IImpactModelInterface { net_energy = 0; /** - * Defined for compatibility. Not used in TEADS. + * Defined for compatibility. Not used in this model. */ authenticate(authParams: object): void { this.authParams = authParams; } /** - * Configures the TEADS Plugin for IEF + * Configures the e-net Plugin for IEF * @param {string} name name of the resource * @param {Object} staticParams static parameters for the resource - * @param {number} staticParams.tdp Thermal Design Power in Watts - * @param {Interpolation} staticParams.interpolation Interpolation method */ async configure( name: string, From abf4af655f36721e64bd2be5a639ff3285842231 Mon Sep 17 00:00:00 2001 From: jmc Date: Tue, 12 Sep 2023 14:25:25 +0100 Subject: [PATCH 10/69] initial commit for e-mem model --- src/lib/e-mem/index.test.ts | 76 +++++++++++++++++++++++++ src/lib/e-mem/index.ts | 107 ++++++++++++++++++++++++++++++++++++ 2 files changed, 183 insertions(+) create mode 100644 src/lib/e-mem/index.test.ts create mode 100644 src/lib/e-mem/index.ts diff --git a/src/lib/e-mem/index.test.ts b/src/lib/e-mem/index.test.ts new file mode 100644 index 000000000..6564ec87c --- /dev/null +++ b/src/lib/e-mem/index.test.ts @@ -0,0 +1,76 @@ +import { describe, expect, jest, test } from '@jest/globals'; +import { EMemModel } from './index'; + +jest.setTimeout(30000); + +describe('teads:configure test', () => { + test('initialize with params', async () => { + const impactModel = new EMemModel(); + await impactModel.configure('test', { + mem_alloc: 32, + mem_energy: 0.38 + }); + await expect( + impactModel.calculate([ + { + duration: 3600, + 'mem-util': 50.0, + timestamp: '2021-01-01T00:00:00Z', + }, + ]) + ).resolves.toStrictEqual([ + { + energy: 0.00608, + duration: 3600, + 'mem-util': 50.0, + timestamp: '2021-01-01T00:00:00Z', + }, + ]); + }); + test('initialize with params', async () => { + const impactModel = new EMemModel(); + await impactModel.configure('test', { + mem_alloc: 32, + mem_energy: 0.38 + }); + await expect( + impactModel.calculate([ + { + duration: 3600, + 'mem-util': 10.0, + timestamp: '2021-01-01T00:00:00Z', + }, + { + duration: 3600, + 'mem-util': 50.0, + timestamp: '2021-01-01T00:00:00Z', + }, + { + duration: 3600, + 'mem-util': 90.0, + timestamp: '2021-01-01T00:00:00Z', + }, + ]) + ).resolves.toStrictEqual([ + { + energy: 0.0012160000000000003, + duration: 3600, + 'mem-util': 10.0, + timestamp: '2021-01-01T00:00:00Z', + }, + { + energy: 0.00608, + duration: 3600, + 'mem-util': 50.0, + timestamp: '2021-01-01T00:00:00Z', + }, + { + energy: 0.010944, + duration: 3600, + 'mem-util': 90.0, + timestamp: '2021-01-01T00:00:00Z', + }, + ]); + }) + +}); diff --git a/src/lib/e-mem/index.ts b/src/lib/e-mem/index.ts new file mode 100644 index 000000000..0656ed86f --- /dev/null +++ b/src/lib/e-mem/index.ts @@ -0,0 +1,107 @@ +import { IImpactModelInterface } from '../interfaces'; +import { KeyValuePair } from '../../types/boavizta'; + + + +export class EMemModel implements IImpactModelInterface { + // Defined for compatibility. Not used in TEADS. + authParams: object | undefined; + // name of the data source + name: string | undefined; + // tdp of the chip being measured + mem_alloc = 0; + // default power curve provided by the Teads Team + mem_energy = 0 + /** + * Defined for compatibility. Not used in TEADS. + */ + authenticate(authParams: object): void { + this.authParams = authParams; + } + + /** + * Configures the TEADS Plugin for IEF + * @param {string} name name of the resource + * @param {Object} staticParams static parameters for the resource + * @param {number} staticParams.tdp Thermal Design Power in Watts + * @param {Interpolation} staticParams.interpolation Interpolation method + */ + async configure( + name: string, + staticParams: object | undefined = undefined + ): Promise { + this.name = name; + + if (staticParams === undefined) { + throw new Error('Required Parameters not provided'); + } + + if ('mem_alloc' in staticParams) { + this.mem_alloc = staticParams?.mem_alloc as number; + } + + if ('mem_energy' in staticParams) { + this.mem_energy = staticParams?.mem_energy as number; + } + + return this; + } + + /** + * Calculate the total emissions for a list of observations + * + * Each Observation require: + * @param {Object[]} observations + * @param {string} observations[].timestamp RFC3339 timestamp string + * @param {number} observations[].mem-util percentage mem usage + */ + async calculate(observations: object | object[] | undefined): Promise { + if (observations === undefined) { + throw new Error('Required Parameters not provided'); + } else if (!Array.isArray(observations)) { + throw new Error('Observations must be an array'); + } + return observations.map((observation: KeyValuePair) => { + this.configure(this.name!, observation); + observation['energy'] = this.calculateEnergy(observation); + return observation; + }); + } + + /** + * Returns model identifier + */ + modelIdentifier(): string { + return 'e-mem'; + } + + /** + * Calculates the energy consumption for a single observation + * requires + * + * mem-util: ram usage in percentage + * timestamp: RFC3339 timestamp string + * + * multiplies memory used (GB) by a coefficient (wh/GB) and converts to kwh + */ + private calculateEnergy(observation: KeyValuePair) { + if ( + !('mem-util' in observation) || + !('timestamp' in observation) + ) { + throw new Error( + 'Required Parameters duration,cpu-util,timestamp not provided for observation' + ); + } + + const mem_alloc = this.mem_alloc; + // convert cpu usage to percentage + const mem_util = observation['mem-util']; + if (mem_util < 0 || mem_util > 100) { + throw new Error('cpu usage must be between 0 and 100'); + } + + let mem_energy = this.mem_energy; + return (mem_alloc * (mem_util / 100) * mem_energy) / 1000; + } +} From 86fa846862796ec70e52254e12185bafff8bbe7e Mon Sep 17 00:00:00 2001 From: jmc Date: Tue, 12 Sep 2023 14:27:15 +0100 Subject: [PATCH 11/69] return `e-mem` instead of `energy` --- src/lib/e-mem/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/e-mem/index.ts b/src/lib/e-mem/index.ts index 0656ed86f..c4b0bec6b 100644 --- a/src/lib/e-mem/index.ts +++ b/src/lib/e-mem/index.ts @@ -63,7 +63,7 @@ export class EMemModel implements IImpactModelInterface { } return observations.map((observation: KeyValuePair) => { this.configure(this.name!, observation); - observation['energy'] = this.calculateEnergy(observation); + observation['e-mem'] = this.calculateEnergy(observation); return observation; }); } @@ -102,6 +102,7 @@ export class EMemModel implements IImpactModelInterface { } let mem_energy = this.mem_energy; + return (mem_alloc * (mem_util / 100) * mem_energy) / 1000; } } From 44b1b3ba4d256f786801a99e09653aa60c9c129a Mon Sep 17 00:00:00 2001 From: jmc Date: Tue, 12 Sep 2023 14:57:34 +0100 Subject: [PATCH 12/69] change out name energy -> e-mem --- src/lib/e-mem/index.test.ts | 8 ++++---- src/lib/e-mem/index.ts | 3 +-- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/src/lib/e-mem/index.test.ts b/src/lib/e-mem/index.test.ts index 6564ec87c..5ecb8ff98 100644 --- a/src/lib/e-mem/index.test.ts +++ b/src/lib/e-mem/index.test.ts @@ -20,7 +20,7 @@ describe('teads:configure test', () => { ]) ).resolves.toStrictEqual([ { - energy: 0.00608, + e_mem: 0.00608, duration: 3600, 'mem-util': 50.0, timestamp: '2021-01-01T00:00:00Z', @@ -53,19 +53,19 @@ describe('teads:configure test', () => { ]) ).resolves.toStrictEqual([ { - energy: 0.0012160000000000003, + e_mem: 0.0012160000000000003, duration: 3600, 'mem-util': 10.0, timestamp: '2021-01-01T00:00:00Z', }, { - energy: 0.00608, + e_mem: 0.00608, duration: 3600, 'mem-util': 50.0, timestamp: '2021-01-01T00:00:00Z', }, { - energy: 0.010944, + e_mem: 0.010944, duration: 3600, 'mem-util': 90.0, timestamp: '2021-01-01T00:00:00Z', diff --git a/src/lib/e-mem/index.ts b/src/lib/e-mem/index.ts index c4b0bec6b..d912d81c5 100644 --- a/src/lib/e-mem/index.ts +++ b/src/lib/e-mem/index.ts @@ -2,7 +2,6 @@ import { IImpactModelInterface } from '../interfaces'; import { KeyValuePair } from '../../types/boavizta'; - export class EMemModel implements IImpactModelInterface { // Defined for compatibility. Not used in TEADS. authParams: object | undefined; @@ -63,7 +62,7 @@ export class EMemModel implements IImpactModelInterface { } return observations.map((observation: KeyValuePair) => { this.configure(this.name!, observation); - observation['e-mem'] = this.calculateEnergy(observation); + observation['e_mem'] = this.calculateEnergy(observation); return observation; }); } From 80ce02c768a0d4c9a33735b543774f0d12892760 Mon Sep 17 00:00:00 2001 From: Gnanakeethan Balasubramaniam Date: Tue, 12 Sep 2023 19:39:39 +0530 Subject: [PATCH 13/69] changing according to standards Signed-off-by: Gnanakeethan Balasubramaniam --- src/lib/e-mem/index.test.ts | 76 ------------------------- src/lib/e-mem/index.ts | 107 ------------------------------------ 2 files changed, 183 deletions(-) delete mode 100644 src/lib/e-mem/index.test.ts delete mode 100644 src/lib/e-mem/index.ts diff --git a/src/lib/e-mem/index.test.ts b/src/lib/e-mem/index.test.ts deleted file mode 100644 index 5ecb8ff98..000000000 --- a/src/lib/e-mem/index.test.ts +++ /dev/null @@ -1,76 +0,0 @@ -import { describe, expect, jest, test } from '@jest/globals'; -import { EMemModel } from './index'; - -jest.setTimeout(30000); - -describe('teads:configure test', () => { - test('initialize with params', async () => { - const impactModel = new EMemModel(); - await impactModel.configure('test', { - mem_alloc: 32, - mem_energy: 0.38 - }); - await expect( - impactModel.calculate([ - { - duration: 3600, - 'mem-util': 50.0, - timestamp: '2021-01-01T00:00:00Z', - }, - ]) - ).resolves.toStrictEqual([ - { - e_mem: 0.00608, - duration: 3600, - 'mem-util': 50.0, - timestamp: '2021-01-01T00:00:00Z', - }, - ]); - }); - test('initialize with params', async () => { - const impactModel = new EMemModel(); - await impactModel.configure('test', { - mem_alloc: 32, - mem_energy: 0.38 - }); - await expect( - impactModel.calculate([ - { - duration: 3600, - 'mem-util': 10.0, - timestamp: '2021-01-01T00:00:00Z', - }, - { - duration: 3600, - 'mem-util': 50.0, - timestamp: '2021-01-01T00:00:00Z', - }, - { - duration: 3600, - 'mem-util': 90.0, - timestamp: '2021-01-01T00:00:00Z', - }, - ]) - ).resolves.toStrictEqual([ - { - e_mem: 0.0012160000000000003, - duration: 3600, - 'mem-util': 10.0, - timestamp: '2021-01-01T00:00:00Z', - }, - { - e_mem: 0.00608, - duration: 3600, - 'mem-util': 50.0, - timestamp: '2021-01-01T00:00:00Z', - }, - { - e_mem: 0.010944, - duration: 3600, - 'mem-util': 90.0, - timestamp: '2021-01-01T00:00:00Z', - }, - ]); - }) - -}); diff --git a/src/lib/e-mem/index.ts b/src/lib/e-mem/index.ts deleted file mode 100644 index d912d81c5..000000000 --- a/src/lib/e-mem/index.ts +++ /dev/null @@ -1,107 +0,0 @@ -import { IImpactModelInterface } from '../interfaces'; -import { KeyValuePair } from '../../types/boavizta'; - - -export class EMemModel implements IImpactModelInterface { - // Defined for compatibility. Not used in TEADS. - authParams: object | undefined; - // name of the data source - name: string | undefined; - // tdp of the chip being measured - mem_alloc = 0; - // default power curve provided by the Teads Team - mem_energy = 0 - /** - * Defined for compatibility. Not used in TEADS. - */ - authenticate(authParams: object): void { - this.authParams = authParams; - } - - /** - * Configures the TEADS Plugin for IEF - * @param {string} name name of the resource - * @param {Object} staticParams static parameters for the resource - * @param {number} staticParams.tdp Thermal Design Power in Watts - * @param {Interpolation} staticParams.interpolation Interpolation method - */ - async configure( - name: string, - staticParams: object | undefined = undefined - ): Promise { - this.name = name; - - if (staticParams === undefined) { - throw new Error('Required Parameters not provided'); - } - - if ('mem_alloc' in staticParams) { - this.mem_alloc = staticParams?.mem_alloc as number; - } - - if ('mem_energy' in staticParams) { - this.mem_energy = staticParams?.mem_energy as number; - } - - return this; - } - - /** - * Calculate the total emissions for a list of observations - * - * Each Observation require: - * @param {Object[]} observations - * @param {string} observations[].timestamp RFC3339 timestamp string - * @param {number} observations[].mem-util percentage mem usage - */ - async calculate(observations: object | object[] | undefined): Promise { - if (observations === undefined) { - throw new Error('Required Parameters not provided'); - } else if (!Array.isArray(observations)) { - throw new Error('Observations must be an array'); - } - return observations.map((observation: KeyValuePair) => { - this.configure(this.name!, observation); - observation['e_mem'] = this.calculateEnergy(observation); - return observation; - }); - } - - /** - * Returns model identifier - */ - modelIdentifier(): string { - return 'e-mem'; - } - - /** - * Calculates the energy consumption for a single observation - * requires - * - * mem-util: ram usage in percentage - * timestamp: RFC3339 timestamp string - * - * multiplies memory used (GB) by a coefficient (wh/GB) and converts to kwh - */ - private calculateEnergy(observation: KeyValuePair) { - if ( - !('mem-util' in observation) || - !('timestamp' in observation) - ) { - throw new Error( - 'Required Parameters duration,cpu-util,timestamp not provided for observation' - ); - } - - const mem_alloc = this.mem_alloc; - // convert cpu usage to percentage - const mem_util = observation['mem-util']; - if (mem_util < 0 || mem_util > 100) { - throw new Error('cpu usage must be between 0 and 100'); - } - - let mem_energy = this.mem_energy; - - return (mem_alloc * (mem_util / 100) * mem_energy) / 1000; - } -} From 88e8b926193d104bcf09bbe48c1aeae1c7c7f555 Mon Sep 17 00:00:00 2001 From: jmc Date: Tue, 12 Sep 2023 17:43:07 +0100 Subject: [PATCH 14/69] add sci-e model --- src/lib/sci-e/index.test.ts | 31 +++++++++++ src/lib/sci-e/index.ts | 101 ++++++++++++++++++++++++++++++++++++ 2 files changed, 132 insertions(+) create mode 100644 src/lib/sci-e/index.test.ts create mode 100644 src/lib/sci-e/index.ts diff --git a/src/lib/sci-e/index.test.ts b/src/lib/sci-e/index.test.ts new file mode 100644 index 000000000..1de3c02c0 --- /dev/null +++ b/src/lib/sci-e/index.test.ts @@ -0,0 +1,31 @@ +import {describe, expect, jest, test} from '@jest/globals'; +import {SciEModel} from './index'; + +jest.setTimeout(30000); + +describe('teads:configure test', () => { + test('initialize with params', async () => { + const impactModel = new SciEModel(); + await impactModel.configure('test', {}); + await expect( + impactModel.calculate([ + { + duration: 3600, + energy: 1, + e_net: 1, + e_mem: 1, + timestamp: '2021-01-01T00:00:00Z', + }, + ]) + ).resolves.toStrictEqual([ + { + total_energy: 3, + duration: 3600, + energy: 1, + e_net: 1, + e_mem: 1, + timestamp: '2021-01-01T00:00:00Z', + }, + ]); + }); +}); diff --git a/src/lib/sci-e/index.ts b/src/lib/sci-e/index.ts new file mode 100644 index 000000000..3e9b66809 --- /dev/null +++ b/src/lib/sci-e/index.ts @@ -0,0 +1,101 @@ +import { IImpactModelInterface } from '../interfaces'; +import { KeyValuePair } from '../../types/boavizta'; + +export class SciEModel implements IImpactModelInterface { + // Defined for compatibility. Not used in thi smodel. + authParams: object | undefined; + // name of the data source + name: string | undefined; + // tdp of the chip being measured + + /** + * Defined for compatibility. Not used in e-net. + */ + authenticate(authParams: object): void { + this.authParams = authParams; + } + + /** + * Configures the sci-e Plugin for IEF + * @param {string} name name of the resource + * @param {Object} staticParams static parameters for the resource + */ + async configure( + name: string, + staticParams: object | undefined = undefined + ): Promise { + this.name = name; + + if (staticParams === undefined) { + throw new Error('Required Parameters not provided'); + } + + return this; + } + + /** + * Calculate the total emissions for a list of observations + * + * Each Observation require: + * @param {Object[]} observations + * @param {string} observations[].timestamp RFC3339 timestamp string + */ + async calculate(observations: object | object[] | undefined): Promise { + if (observations === undefined) { + throw new Error('Required Parameters not provided'); + } else if (!Array.isArray(observations)) { + throw new Error('Observations must be an array'); + } + return observations.map((observation: KeyValuePair) => { + this.configure(this.name!, observation); + observation['total_energy'] = this.calculateEnergy(observation); + return observation; + }); + } + + /** + * Returns model identifier + */ + modelIdentifier(): string { + return 'sci-e'; + } + + /** + * Calculates the sum of the energy components + * + * energy: cpu energy in kwh + * e_mem: energy due to memory usage in kwh + * e_net: energy due to network data in kwh + * timestamp: RFC3339 timestamp string + * + * adds energy + e_net + e_mum + */ + private calculateEnergy(observation: KeyValuePair) { + let e_mem = 0; + let e_net = 0; + let e_cpu = 0; + + if ( + !('energy' in observation) && + !('e_mem' in observation) && + !('e_net' in observation) + ) { + throw new Error( + 'Required Parameters not provided: at least one of e-mem, e-net or energy must be present in observation' + ); + } + + // if the user gives a negative value it will default to zero + if ('energy' in observation && observation['energy'] > 0) { + e_cpu = observation['energy']; + } + if ('e_mem' in observation && observation['energy'] > 0) { + e_mem = observation['energy']; + } + if ('e_net' in observation && observation['energy'] > 0) { + e_net = observation['energy']; + } + + return e_cpu + e_net + e_mem; + } +} From e1085927e038798850ba0362a83791c1e8f69861 Mon Sep 17 00:00:00 2001 From: jmc Date: Tue, 12 Sep 2023 17:51:22 +0100 Subject: [PATCH 15/69] fix linter --- src/lib/sci-e/index.ts | 172 ++++++++++++++++++++--------------------- 1 file changed, 86 insertions(+), 86 deletions(-) diff --git a/src/lib/sci-e/index.ts b/src/lib/sci-e/index.ts index 3e9b66809..2cd9aafaa 100644 --- a/src/lib/sci-e/index.ts +++ b/src/lib/sci-e/index.ts @@ -1,101 +1,101 @@ -import { IImpactModelInterface } from '../interfaces'; -import { KeyValuePair } from '../../types/boavizta'; +import {IImpactModelInterface} from '../interfaces'; +import {KeyValuePair} from '../../types/boavizta'; export class SciEModel implements IImpactModelInterface { - // Defined for compatibility. Not used in thi smodel. - authParams: object | undefined; - // name of the data source - name: string | undefined; - // tdp of the chip being measured + // Defined for compatibility. Not used in thi smodel. + authParams: object | undefined; + // name of the data source + name: string | undefined; + // tdp of the chip being measured - /** - * Defined for compatibility. Not used in e-net. - */ - authenticate(authParams: object): void { - this.authParams = authParams; - } - - /** - * Configures the sci-e Plugin for IEF - * @param {string} name name of the resource - * @param {Object} staticParams static parameters for the resource - */ - async configure( - name: string, - staticParams: object | undefined = undefined - ): Promise { - this.name = name; + /** + * Defined for compatibility. Not used in e-net. + */ + authenticate(authParams: object): void { + this.authParams = authParams; + } - if (staticParams === undefined) { - throw new Error('Required Parameters not provided'); - } + /** + * Configures the sci-e Plugin for IEF + * @param {string} name name of the resource + * @param {Object} staticParams static parameters for the resource + */ + async configure( + name: string, + staticParams: object | undefined = undefined + ): Promise { + this.name = name; - return this; + if (staticParams === undefined) { + throw new Error('Required Parameters not provided'); } - /** - * Calculate the total emissions for a list of observations - * - * Each Observation require: - * @param {Object[]} observations - * @param {string} observations[].timestamp RFC3339 timestamp string - */ - async calculate(observations: object | object[] | undefined): Promise { - if (observations === undefined) { - throw new Error('Required Parameters not provided'); - } else if (!Array.isArray(observations)) { - throw new Error('Observations must be an array'); - } - return observations.map((observation: KeyValuePair) => { - this.configure(this.name!, observation); - observation['total_energy'] = this.calculateEnergy(observation); - return observation; - }); - } + return this; + } - /** - * Returns model identifier - */ - modelIdentifier(): string { - return 'sci-e'; + /** + * Calculate the total emissions for a list of observations + * + * Each Observation require: + * @param {Object[]} observations + * @param {string} observations[].timestamp RFC3339 timestamp string + */ + async calculate(observations: object | object[] | undefined): Promise { + if (observations === undefined) { + throw new Error('Required Parameters not provided'); + } else if (!Array.isArray(observations)) { + throw new Error('Observations must be an array'); } + return observations.map((observation: KeyValuePair) => { + this.configure(this.name!, observation); + observation['total_energy'] = this.calculateEnergy(observation); + return observation; + }); + } - /** - * Calculates the sum of the energy components - * - * energy: cpu energy in kwh - * e_mem: energy due to memory usage in kwh - * e_net: energy due to network data in kwh - * timestamp: RFC3339 timestamp string - * - * adds energy + e_net + e_mum - */ - private calculateEnergy(observation: KeyValuePair) { - let e_mem = 0; - let e_net = 0; - let e_cpu = 0; + /** + * Returns model identifier + */ + modelIdentifier(): string { + return 'sci-e'; + } - if ( - !('energy' in observation) && - !('e_mem' in observation) && - !('e_net' in observation) - ) { - throw new Error( - 'Required Parameters not provided: at least one of e-mem, e-net or energy must be present in observation' - ); - } + /** + * Calculates the sum of the energy components + * + * energy: cpu energy in kwh + * e_mem: energy due to memory usage in kwh + * e_net: energy due to network data in kwh + * timestamp: RFC3339 timestamp string + * + * adds energy + e_net + e_mum + */ + private calculateEnergy(observation: KeyValuePair) { + let e_mem = 0; + let e_net = 0; + let e_cpu = 0; - // if the user gives a negative value it will default to zero - if ('energy' in observation && observation['energy'] > 0) { - e_cpu = observation['energy']; - } - if ('e_mem' in observation && observation['energy'] > 0) { - e_mem = observation['energy']; - } - if ('e_net' in observation && observation['energy'] > 0) { - e_net = observation['energy']; - } + if ( + !('energy' in observation) && + !('e_mem' in observation) && + !('e_net' in observation) + ) { + throw new Error( + 'Required Parameters not provided: at least one of e-mem, e-net or energy must be present in observation' + ); + } - return e_cpu + e_net + e_mem; + // if the user gives a negative value it will default to zero + if ('energy' in observation && observation['energy'] > 0) { + e_cpu = observation['energy']; } + if ('e_mem' in observation && observation['energy'] > 0) { + e_mem = observation['energy']; + } + if ('e_net' in observation && observation['energy'] > 0) { + e_net = observation['energy']; + } + + return e_cpu + e_net + e_mem; + } } From 9d0af878bd1b099222448f6adcc4834568757063 Mon Sep 17 00:00:00 2001 From: Gnanakeethan Balasubramaniam Date: Wed, 13 Sep 2023 15:33:26 +0530 Subject: [PATCH 16/69] Fixing naming Signed-off-by: Gnanakeethan Balasubramaniam --- src/lib/sci-e/index.test.ts | 14 +++++++------- src/lib/sci-e/index.ts | 26 +++++++++++++------------- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/src/lib/sci-e/index.test.ts b/src/lib/sci-e/index.test.ts index 1de3c02c0..c68534050 100644 --- a/src/lib/sci-e/index.test.ts +++ b/src/lib/sci-e/index.test.ts @@ -11,19 +11,19 @@ describe('teads:configure test', () => { impactModel.calculate([ { duration: 3600, - energy: 1, - e_net: 1, - e_mem: 1, + 'e-cpu': 1, + 'e-net': 1, + 'e-mem': 1, timestamp: '2021-01-01T00:00:00Z', }, ]) ).resolves.toStrictEqual([ { - total_energy: 3, duration: 3600, - energy: 1, - e_net: 1, - e_mem: 1, + 'e-cpu': 1, + 'e-net': 1, + 'e-mem': 1, + 'energy': 3, timestamp: '2021-01-01T00:00:00Z', }, ]); diff --git a/src/lib/sci-e/index.ts b/src/lib/sci-e/index.ts index 2cd9aafaa..062afed2d 100644 --- a/src/lib/sci-e/index.ts +++ b/src/lib/sci-e/index.ts @@ -48,7 +48,7 @@ export class SciEModel implements IImpactModelInterface { } return observations.map((observation: KeyValuePair) => { this.configure(this.name!, observation); - observation['total_energy'] = this.calculateEnergy(observation); + observation['energy'] = this.calculateEnergy(observation); return observation; }); } @@ -63,9 +63,9 @@ export class SciEModel implements IImpactModelInterface { /** * Calculates the sum of the energy components * - * energy: cpu energy in kwh - * e_mem: energy due to memory usage in kwh - * e_net: energy due to network data in kwh + * e-cpu: cpu energy in kwh + * e-mem: energy due to memory usage in kwh + * e-net: energy due to network data in kwh * timestamp: RFC3339 timestamp string * * adds energy + e_net + e_mum @@ -76,9 +76,9 @@ export class SciEModel implements IImpactModelInterface { let e_cpu = 0; if ( - !('energy' in observation) && - !('e_mem' in observation) && - !('e_net' in observation) + !('e-cpu' in observation) && + !('e-mem' in observation) && + !('e-net' in observation) ) { throw new Error( 'Required Parameters not provided: at least one of e-mem, e-net or energy must be present in observation' @@ -86,14 +86,14 @@ export class SciEModel implements IImpactModelInterface { } // if the user gives a negative value it will default to zero - if ('energy' in observation && observation['energy'] > 0) { - e_cpu = observation['energy']; + if ('e-cpu' in observation && observation['e-cpu'] > 0) { + e_cpu = observation['e-cpu']; } - if ('e_mem' in observation && observation['energy'] > 0) { - e_mem = observation['energy']; + if ('e-mem' in observation && observation['e-mem'] > 0) { + e_mem = observation['e-mem']; } - if ('e_net' in observation && observation['energy'] > 0) { - e_net = observation['energy']; + if ('e-net' in observation && observation['e-net'] > 0) { + e_net = observation['e-net']; } return e_cpu + e_net + e_mem; From bcc0463fa9270cb052ec49246036463ac1d59579 Mon Sep 17 00:00:00 2001 From: jmc Date: Wed, 13 Sep 2023 10:10:22 +0100 Subject: [PATCH 17/69] add sci model (time and factor conversions) --- src/lib/sci/index.test.ts | 70 +++++++++++++++++++++++++++++++ src/lib/sci/index.ts | 86 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 156 insertions(+) create mode 100644 src/lib/sci/index.test.ts create mode 100644 src/lib/sci/index.ts diff --git a/src/lib/sci/index.test.ts b/src/lib/sci/index.test.ts new file mode 100644 index 000000000..f4c60bf07 --- /dev/null +++ b/src/lib/sci/index.test.ts @@ -0,0 +1,70 @@ +import { describe, expect, jest, test } from '@jest/globals'; +import { SciModel } from './index'; +jest.setTimeout(30000); + +describe('ccf:configure test', () => { + test('initialize and test', async () => { + const model = await new SciModel().configure('name', { time: 'minutes', factor: 1 }); + expect(model).toBeInstanceOf(SciModel); + await expect( + model.calculate([ + { + 'operational-emissions': 0.02, + 'embodied-carbon': 5, + }, + ]) + ).resolves.toStrictEqual([ + { + 'operational-emissions': 0.02, + 'embodied-carbon': 5, + 'sci': 301.2 + }, + ]); + await expect( + model.calculate([ + { + 'operational-emissions': 20, + 'embodied-carbon': 0.005, + }, + ]) + ).resolves.toStrictEqual([ + { + 'operational-emissions': 20, + 'embodied-carbon': 0.005, + 'sci': 1200.3 + }, + ]); + }), + test('initialize and test', async () => { + const model = await new SciModel().configure('name', { time: 'days', factor: 100 }); + expect(model).toBeInstanceOf(SciModel); + await expect( + model.calculate([ + { + 'operational-emissions': 0.02, + 'embodied-carbon': 5, + }, + ]) + ).resolves.toStrictEqual([ + { + 'operational-emissions': 0.02, + 'embodied-carbon': 5, + 'sci': 4337.28 + }, + ]); + await expect( + model.calculate([ + { + 'operational-emissions': 20, + 'embodied-carbon': 0.005, + }, + ]) + ).resolves.toStrictEqual([ + { + 'operational-emissions': 20, + 'embodied-carbon': 0.005, + 'sci': 17284.32 + }, + ]); + }) +}); diff --git a/src/lib/sci/index.ts b/src/lib/sci/index.ts new file mode 100644 index 000000000..a5d435cac --- /dev/null +++ b/src/lib/sci/index.ts @@ -0,0 +1,86 @@ +import { IImpactModelInterface } from '../interfaces'; +import { KeyValuePair } from '../../types/boavizta'; + +export class SciModel implements IImpactModelInterface { + authParams: object | undefined = undefined; + staticParams: object | undefined; + name: string | undefined; + time: string | unknown; + factor: number = 1; + + authenticate(authParams: object): void { + this.authParams = authParams; + } + + async calculate(observations: object | object[] | undefined): Promise { + if (!Array.isArray(observations)) { + throw new Error('observations should be an array'); + } + observations.map((observation: KeyValuePair) => { + if (!('operational-emissions' in observation)) { + throw new Error('observation missing `operational-emissions`'); + } + if (!('embodied-carbon' in observation)) { + throw new Error('observation missing `embodied-carbon`'); + } + + const emissions = parseFloat(observation['operational-emissions']); + const embodied = parseFloat(observation['embodied-carbon']); + const sci_secs = emissions + embodied; // sci in time units of /s + let sci_timed: number = sci_secs; + + if ((this.time == 'second') || (this.time == 'seconds') || (this.time == '')) { + sci_timed = sci_secs + } + if ((this.time == 'minute') || (this.time == 'minutes')) { + sci_timed = sci_secs * 60 + } + if ((this.time == 'hour') || (this.time == 'hours')) { + sci_timed = sci_secs * 60 * 60 + } + if ((this.time == 'day') || (this.time == 'days')) { + sci_timed = sci_secs * 60 * 60 * 24 + } + if ((this.time == 'week') || (this.time == 'weeks')) { + sci_timed = sci_secs * 60 * 60 * 24 * 7 + } + if ((this.time == 'month') || (this.time == 'months')) { + sci_timed = sci_secs * 60 * 60 * 24 * 7 * 4 + } + if ((this.time == 'year') || (this.time == 'years')) { + sci_timed = sci_secs * 60 * 60 * 24 * 365 + } + + const factor = this.factor; + observation['sci'] = sci_timed / factor; + return observation; + }); + + return Promise.resolve(observations); + } + + async configure( + name: string, + staticParams: object | undefined + ): Promise { + if (staticParams === undefined) { + throw new Error('Required Parameters not provided'); + } + + this.staticParams = staticParams; + this.name = name; + + if ('time' in staticParams) { + this.time = staticParams?.time; + } + if (('factor' in staticParams) && typeof (staticParams.factor) == 'number') { + this.factor = staticParams?.factor; + } + + return this; + } + + modelIdentifier(): string { + return 'org.gsf.sci'; + } +} From 60d0117df745439ae81d58b8b2021c6533f1ebc2 Mon Sep 17 00:00:00 2001 From: jmc Date: Wed, 13 Sep 2023 10:15:49 +0100 Subject: [PATCH 18/69] fix linter --- src/lib/sci/index.test.ts | 136 +++++++++++++++++++----------------- src/lib/sci/index.ts | 142 +++++++++++++++++++------------------- 2 files changed, 142 insertions(+), 136 deletions(-) diff --git a/src/lib/sci/index.test.ts b/src/lib/sci/index.test.ts index f4c60bf07..f32538d2b 100644 --- a/src/lib/sci/index.test.ts +++ b/src/lib/sci/index.test.ts @@ -1,70 +1,76 @@ -import { describe, expect, jest, test } from '@jest/globals'; -import { SciModel } from './index'; +import {describe, expect, jest, test} from '@jest/globals'; +import {SciModel} from './index'; jest.setTimeout(30000); describe('ccf:configure test', () => { + test('initialize and test', async () => { + const model = await new SciModel().configure('name', { + time: 'minutes', + factor: 1, + }); + expect(model).toBeInstanceOf(SciModel); + await expect( + model.calculate([ + { + 'operational-emissions': 0.02, + 'embodied-carbon': 5, + }, + ]) + ).resolves.toStrictEqual([ + { + 'operational-emissions': 0.02, + 'embodied-carbon': 5, + sci: 301.2, + }, + ]); + await expect( + model.calculate([ + { + 'operational-emissions': 20, + 'embodied-carbon': 0.005, + }, + ]) + ).resolves.toStrictEqual([ + { + 'operational-emissions': 20, + 'embodied-carbon': 0.005, + sci: 1200.3, + }, + ]); + }), test('initialize and test', async () => { - const model = await new SciModel().configure('name', { time: 'minutes', factor: 1 }); - expect(model).toBeInstanceOf(SciModel); - await expect( - model.calculate([ - { - 'operational-emissions': 0.02, - 'embodied-carbon': 5, - }, - ]) - ).resolves.toStrictEqual([ - { - 'operational-emissions': 0.02, - 'embodied-carbon': 5, - 'sci': 301.2 - }, - ]); - await expect( - model.calculate([ - { - 'operational-emissions': 20, - 'embodied-carbon': 0.005, - }, - ]) - ).resolves.toStrictEqual([ - { - 'operational-emissions': 20, - 'embodied-carbon': 0.005, - 'sci': 1200.3 - }, - ]); - }), - test('initialize and test', async () => { - const model = await new SciModel().configure('name', { time: 'days', factor: 100 }); - expect(model).toBeInstanceOf(SciModel); - await expect( - model.calculate([ - { - 'operational-emissions': 0.02, - 'embodied-carbon': 5, - }, - ]) - ).resolves.toStrictEqual([ - { - 'operational-emissions': 0.02, - 'embodied-carbon': 5, - 'sci': 4337.28 - }, - ]); - await expect( - model.calculate([ - { - 'operational-emissions': 20, - 'embodied-carbon': 0.005, - }, - ]) - ).resolves.toStrictEqual([ - { - 'operational-emissions': 20, - 'embodied-carbon': 0.005, - 'sci': 17284.32 - }, - ]); - }) + const model = await new SciModel().configure('name', { + time: 'days', + factor: 100, + }); + expect(model).toBeInstanceOf(SciModel); + await expect( + model.calculate([ + { + 'operational-emissions': 0.02, + 'embodied-carbon': 5, + }, + ]) + ).resolves.toStrictEqual([ + { + 'operational-emissions': 0.02, + 'embodied-carbon': 5, + sci: 4337.28, + }, + ]); + await expect( + model.calculate([ + { + 'operational-emissions': 20, + 'embodied-carbon': 0.005, + }, + ]) + ).resolves.toStrictEqual([ + { + 'operational-emissions': 20, + 'embodied-carbon': 0.005, + sci: 17284.32, + }, + ]); + }); }); diff --git a/src/lib/sci/index.ts b/src/lib/sci/index.ts index a5d435cac..02b21a1f2 100644 --- a/src/lib/sci/index.ts +++ b/src/lib/sci/index.ts @@ -1,86 +1,86 @@ -import { IImpactModelInterface } from '../interfaces'; -import { KeyValuePair } from '../../types/boavizta'; +import {IImpactModelInterface} from '../interfaces'; +import {KeyValuePair} from '../../types/boavizta'; export class SciModel implements IImpactModelInterface { - authParams: object | undefined = undefined; - staticParams: object | undefined; - name: string | undefined; - time: string | unknown; - factor: number = 1; + authParams: object | undefined = undefined; + staticParams: object | undefined; + name: string | undefined; + time: string | unknown; + factor = 1; - authenticate(authParams: object): void { - this.authParams = authParams; + authenticate(authParams: object): void { + this.authParams = authParams; + } + + async calculate(observations: object | object[] | undefined): Promise { + if (!Array.isArray(observations)) { + throw new Error('observations should be an array'); } + observations.map((observation: KeyValuePair) => { + if (!('operational-emissions' in observation)) { + throw new Error('observation missing `operational-emissions`'); + } + if (!('embodied-carbon' in observation)) { + throw new Error('observation missing `embodied-carbon`'); + } - async calculate(observations: object | object[] | undefined): Promise { - if (!Array.isArray(observations)) { - throw new Error('observations should be an array'); - } - observations.map((observation: KeyValuePair) => { - if (!('operational-emissions' in observation)) { - throw new Error('observation missing `operational-emissions`'); - } - if (!('embodied-carbon' in observation)) { - throw new Error('observation missing `embodied-carbon`'); - } + const emissions = parseFloat(observation['operational-emissions']); + const embodied = parseFloat(observation['embodied-carbon']); + const sci_secs = emissions + embodied; // sci in time units of /s + let sci_timed: number = sci_secs; - const emissions = parseFloat(observation['operational-emissions']); - const embodied = parseFloat(observation['embodied-carbon']); - const sci_secs = emissions + embodied; // sci in time units of /s - let sci_timed: number = sci_secs; + if (this.time == 'second' || this.time == 'seconds' || this.time == '') { + sci_timed = sci_secs; + } + if (this.time == 'minute' || this.time == 'minutes') { + sci_timed = sci_secs * 60; + } + if (this.time == 'hour' || this.time == 'hours') { + sci_timed = sci_secs * 60 * 60; + } + if (this.time == 'day' || this.time == 'days') { + sci_timed = sci_secs * 60 * 60 * 24; + } + if (this.time == 'week' || this.time == 'weeks') { + sci_timed = sci_secs * 60 * 60 * 24 * 7; + } + if (this.time == 'month' || this.time == 'months') { + sci_timed = sci_secs * 60 * 60 * 24 * 7 * 4; + } + if (this.time == 'year' || this.time == 'years') { + sci_timed = sci_secs * 60 * 60 * 24 * 365; + } - if ((this.time == 'second') || (this.time == 'seconds') || (this.time == '')) { - sci_timed = sci_secs - } - if ((this.time == 'minute') || (this.time == 'minutes')) { - sci_timed = sci_secs * 60 - } - if ((this.time == 'hour') || (this.time == 'hours')) { - sci_timed = sci_secs * 60 * 60 - } - if ((this.time == 'day') || (this.time == 'days')) { - sci_timed = sci_secs * 60 * 60 * 24 - } - if ((this.time == 'week') || (this.time == 'weeks')) { - sci_timed = sci_secs * 60 * 60 * 24 * 7 - } - if ((this.time == 'month') || (this.time == 'months')) { - sci_timed = sci_secs * 60 * 60 * 24 * 7 * 4 - } - if ((this.time == 'year') || (this.time == 'years')) { - sci_timed = sci_secs * 60 * 60 * 24 * 365 - } + const factor = this.factor; + observation['sci'] = sci_timed / factor; + return observation; + }); - const factor = this.factor; - observation['sci'] = sci_timed / factor; - return observation; - }); + return Promise.resolve(observations); + } - return Promise.resolve(observations); + async configure( + name: string, + staticParams: object | undefined + ): Promise { + if (staticParams === undefined) { + throw new Error('Required Parameters not provided'); } - async configure( - name: string, - staticParams: object | undefined - ): Promise { - if (staticParams === undefined) { - throw new Error('Required Parameters not provided'); - } - - this.staticParams = staticParams; - this.name = name; - - if ('time' in staticParams) { - this.time = staticParams?.time; - } - if (('factor' in staticParams) && typeof (staticParams.factor) == 'number') { - this.factor = staticParams?.factor; - } + this.staticParams = staticParams; + this.name = name; - return this; + if ('time' in staticParams) { + this.time = staticParams?.time; } - - modelIdentifier(): string { - return 'org.gsf.sci'; + if ('factor' in staticParams && typeof staticParams.factor === 'number') { + this.factor = staticParams?.factor; } + + return this; + } + + modelIdentifier(): string { + return 'org.gsf.sci'; + } } From 36073f23416b9ed6d0556d57da504d19f07c7ecf Mon Sep 17 00:00:00 2001 From: jmc Date: Wed, 13 Sep 2023 10:23:28 +0100 Subject: [PATCH 19/69] equal --> strict equal --- src/lib/sci/index.ts | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/src/lib/sci/index.ts b/src/lib/sci/index.ts index 02b21a1f2..056006a78 100644 --- a/src/lib/sci/index.ts +++ b/src/lib/sci/index.ts @@ -29,25 +29,29 @@ export class SciModel implements IImpactModelInterface { const sci_secs = emissions + embodied; // sci in time units of /s let sci_timed: number = sci_secs; - if (this.time == 'second' || this.time == 'seconds' || this.time == '') { + if ( + this.time === 'second' || + this.time === 'seconds' || + this.time === '' + ) { sci_timed = sci_secs; } - if (this.time == 'minute' || this.time == 'minutes') { + if (this.time === 'minute' || this.time === 'minutes') { sci_timed = sci_secs * 60; } - if (this.time == 'hour' || this.time == 'hours') { + if (this.time === 'hour' || this.time === 'hours') { sci_timed = sci_secs * 60 * 60; } - if (this.time == 'day' || this.time == 'days') { + if (this.time === 'day' || this.time === 'days') { sci_timed = sci_secs * 60 * 60 * 24; } - if (this.time == 'week' || this.time == 'weeks') { + if (this.time === 'week' || this.time === 'weeks') { sci_timed = sci_secs * 60 * 60 * 24 * 7; } - if (this.time == 'month' || this.time == 'months') { + if (this.time === 'month' || this.time === 'months') { sci_timed = sci_secs * 60 * 60 * 24 * 7 * 4; } - if (this.time == 'year' || this.time == 'years') { + if (this.time === 'year' || this.time === 'years') { sci_timed = sci_secs * 60 * 60 * 24 * 365; } From 159e434ce639eebb501ae8c3892f743c85b08814 Mon Sep 17 00:00:00 2001 From: Gnanakeethan Balasubramaniam Date: Wed, 13 Sep 2023 15:14:26 +0530 Subject: [PATCH 20/69] Rename operational-emissions to operational-carbon Signed-off-by: Gnanakeethan Balasubramaniam --- src/lib/sci/index.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib/sci/index.ts b/src/lib/sci/index.ts index 056006a78..e45de67ab 100644 --- a/src/lib/sci/index.ts +++ b/src/lib/sci/index.ts @@ -17,16 +17,16 @@ export class SciModel implements IImpactModelInterface { throw new Error('observations should be an array'); } observations.map((observation: KeyValuePair) => { - if (!('operational-emissions' in observation)) { - throw new Error('observation missing `operational-emissions`'); + if (!('operational-carbon' in observation)) { + throw new Error('observation missing `operational-carbon`'); } if (!('embodied-carbon' in observation)) { throw new Error('observation missing `embodied-carbon`'); } - const emissions = parseFloat(observation['operational-emissions']); + const operational = parseFloat(observation['operational-carbon']); const embodied = parseFloat(observation['embodied-carbon']); - const sci_secs = emissions + embodied; // sci in time units of /s + const sci_secs = operational + embodied; // sci in time units of /s let sci_timed: number = sci_secs; if ( From 7df61870ccf835967dc942b98c919c4b83da8226 Mon Sep 17 00:00:00 2001 From: Gnanakeethan Balasubramaniam Date: Wed, 13 Sep 2023 15:35:03 +0530 Subject: [PATCH 21/69] typo fixes Signed-off-by: Gnanakeethan Balasubramaniam --- src/lib/sci/index.test.ts | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/lib/sci/index.test.ts b/src/lib/sci/index.test.ts index f32538d2b..83cef7eb8 100644 --- a/src/lib/sci/index.test.ts +++ b/src/lib/sci/index.test.ts @@ -2,7 +2,7 @@ import {describe, expect, jest, test} from '@jest/globals'; import {SciModel} from './index'; jest.setTimeout(30000); -describe('ccf:configure test', () => { +describe('sci:configure test', () => { test('initialize and test', async () => { const model = await new SciModel().configure('name', { time: 'minutes', @@ -12,13 +12,13 @@ describe('ccf:configure test', () => { await expect( model.calculate([ { - 'operational-emissions': 0.02, + 'operational-carbon': 0.02, 'embodied-carbon': 5, }, ]) ).resolves.toStrictEqual([ { - 'operational-emissions': 0.02, + 'operational-carbon': 0.02, 'embodied-carbon': 5, sci: 301.2, }, @@ -26,13 +26,13 @@ describe('ccf:configure test', () => { await expect( model.calculate([ { - 'operational-emissions': 20, + 'operational-carbon': 20, 'embodied-carbon': 0.005, }, ]) ).resolves.toStrictEqual([ { - 'operational-emissions': 20, + 'operational-carbon': 20, 'embodied-carbon': 0.005, sci: 1200.3, }, @@ -47,13 +47,13 @@ describe('ccf:configure test', () => { await expect( model.calculate([ { - 'operational-emissions': 0.02, + 'operational-carbon': 0.02, 'embodied-carbon': 5, }, ]) ).resolves.toStrictEqual([ { - 'operational-emissions': 0.02, + 'operational-carbon': 0.02, 'embodied-carbon': 5, sci: 4337.28, }, @@ -61,13 +61,13 @@ describe('ccf:configure test', () => { await expect( model.calculate([ { - 'operational-emissions': 20, + 'operational-carbon': 20, 'embodied-carbon': 0.005, }, ]) ).resolves.toStrictEqual([ { - 'operational-emissions': 20, + 'operational-carbon': 20, 'embodied-carbon': 0.005, sci: 17284.32, }, From 543f168e5ddb81cab1c937585ff2cdca1f6f209d Mon Sep 17 00:00:00 2001 From: Gnanakeethan Balasubramaniam Date: Wed, 13 Sep 2023 15:36:42 +0530 Subject: [PATCH 22/69] Yarn fixes Signed-off-by: Gnanakeethan Balasubramaniam --- src/lib/e-net/index.ts | 4 ++-- src/lib/sci-e/index.test.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/e-net/index.ts b/src/lib/e-net/index.ts index 25c4143ed..49b8e1cfb 100644 --- a/src/lib/e-net/index.ts +++ b/src/lib/e-net/index.ts @@ -1,5 +1,5 @@ -import { IImpactModelInterface } from '../interfaces'; -import { KeyValuePair } from '../../types/boavizta'; +import {IImpactModelInterface} from '../interfaces'; +import {KeyValuePair} from '../../types/boavizta'; export class ENetModel implements IImpactModelInterface { // Defined for compatibility. Not used in this model. diff --git a/src/lib/sci-e/index.test.ts b/src/lib/sci-e/index.test.ts index c68534050..efcf46c55 100644 --- a/src/lib/sci-e/index.test.ts +++ b/src/lib/sci-e/index.test.ts @@ -23,7 +23,7 @@ describe('teads:configure test', () => { 'e-cpu': 1, 'e-net': 1, 'e-mem': 1, - 'energy': 3, + energy: 3, timestamp: '2021-01-01T00:00:00Z', }, ]); From 924ab70b9d8ff76a81f28a4a6ab77b7c339e175f Mon Sep 17 00:00:00 2001 From: Gnanakeethan Balasubramaniam Date: Wed, 13 Sep 2023 15:41:19 +0530 Subject: [PATCH 23/69] Fixing naming Signed-off-by: Gnanakeethan Balasubramaniam --- .../case-studies/{emem.ts => emem-model.ts} | 0 src/lib/case-studies/emem.test.ts | 2 +- .../{eshoppen.ts => eshoppen-model.ts} | 2 +- src/lib/case-studies/eshoppen.test.ts | 6 +- ...ci-accenture.ts => sci-accenture-model.ts} | 2 +- src/lib/case-studies/sci-accenture.test.ts | 6 +- src/lib/e-net/index.test.ts | 81 --------------- src/lib/e-net/index.ts | 98 ------------------- src/util/models-universe.ts | 13 +++ 9 files changed, 22 insertions(+), 188 deletions(-) rename src/lib/case-studies/{emem.ts => emem-model.ts} (100%) rename src/lib/case-studies/{eshoppen.ts => eshoppen-model.ts} (97%) rename src/lib/case-studies/{sci-accenture.ts => sci-accenture-model.ts} (94%) delete mode 100644 src/lib/e-net/index.test.ts delete mode 100644 src/lib/e-net/index.ts diff --git a/src/lib/case-studies/emem.ts b/src/lib/case-studies/emem-model.ts similarity index 100% rename from src/lib/case-studies/emem.ts rename to src/lib/case-studies/emem-model.ts diff --git a/src/lib/case-studies/emem.test.ts b/src/lib/case-studies/emem.test.ts index 1ebc498d5..065b4e5d5 100644 --- a/src/lib/case-studies/emem.test.ts +++ b/src/lib/case-studies/emem.test.ts @@ -1,5 +1,5 @@ import {describe, expect, jest, test} from '@jest/globals'; -import {EMemModel} from './emem'; +import {EMemModel} from './emem-model'; jest.setTimeout(30000); diff --git a/src/lib/case-studies/eshoppen.ts b/src/lib/case-studies/eshoppen-model.ts similarity index 97% rename from src/lib/case-studies/eshoppen.ts rename to src/lib/case-studies/eshoppen-model.ts index 6f6260b53..5dad921ef 100644 --- a/src/lib/case-studies/eshoppen.ts +++ b/src/lib/case-studies/eshoppen-model.ts @@ -1,7 +1,7 @@ import {IImpactModelInterface} from '../interfaces'; import {KeyValuePair} from '../../types/boavizta'; -export class Eshoppen implements IImpactModelInterface { +export class EshoppenModel implements IImpactModelInterface { authParams: object | undefined = undefined; modelType: 'e-cpu' | 'e-mem' | 'e-net' | 'e-sum' = 'e-cpu'; staticParams: object | undefined; diff --git a/src/lib/case-studies/eshoppen.test.ts b/src/lib/case-studies/eshoppen.test.ts index 2dc120f09..204933f25 100644 --- a/src/lib/case-studies/eshoppen.test.ts +++ b/src/lib/case-studies/eshoppen.test.ts @@ -1,14 +1,14 @@ import {describe, expect, jest, test} from '@jest/globals'; -import {Eshoppen} from './eshoppen'; +import {EshoppenModel} from './eshoppen-model'; jest.setTimeout(30000); describe('eshoppen:configure test', () => { test('initialize and test', async () => { - const model = await new Eshoppen().configure('eshoppen', { + const model = await new EshoppenModel().configure('eshoppen', { type: 'e-cpu', }); - expect(model).toBeInstanceOf(Eshoppen); + expect(model).toBeInstanceOf(EshoppenModel); await expect( model.calculate([ { diff --git a/src/lib/case-studies/sci-accenture.ts b/src/lib/case-studies/sci-accenture-model.ts similarity index 94% rename from src/lib/case-studies/sci-accenture.ts rename to src/lib/case-studies/sci-accenture-model.ts index c8ea14e86..f6a809d12 100644 --- a/src/lib/case-studies/sci-accenture.ts +++ b/src/lib/case-studies/sci-accenture-model.ts @@ -1,7 +1,7 @@ import {IImpactModelInterface} from '../interfaces'; import {KeyValuePair} from '../../types/boavizta'; -export class SciAccenture implements IImpactModelInterface { +export class SciAccentureModel implements IImpactModelInterface { authParams: object | undefined = undefined; staticParams: object | undefined; name: string | undefined; diff --git a/src/lib/case-studies/sci-accenture.test.ts b/src/lib/case-studies/sci-accenture.test.ts index c34c3f93f..689bf8f88 100644 --- a/src/lib/case-studies/sci-accenture.test.ts +++ b/src/lib/case-studies/sci-accenture.test.ts @@ -1,12 +1,12 @@ import {describe, expect, jest, test} from '@jest/globals'; -import {SciAccenture} from './sci-accenture'; +import {SciAccentureModel} from './sci-accenture-model'; jest.setTimeout(30000); describe('eshoppen:configure test', () => { test('initialize and test', async () => { - const model = await new SciAccenture().configure('sci-accenture', {}); - expect(model).toBeInstanceOf(SciAccenture); + const model = await new SciAccentureModel().configure('sci-accenture', {}); + expect(model).toBeInstanceOf(SciAccentureModel); await expect( model.calculate([ { diff --git a/src/lib/e-net/index.test.ts b/src/lib/e-net/index.test.ts deleted file mode 100644 index a5cac9963..000000000 --- a/src/lib/e-net/index.test.ts +++ /dev/null @@ -1,81 +0,0 @@ -import {describe, expect, jest, test} from '@jest/globals'; -import {ENetModel} from './index'; - -jest.setTimeout(30000); - -describe('teads:configure test', () => { - test('initialize with params', async () => { - const impactModel = new ENetModel(); - await impactModel.configure('test', { - net_energy: 0.001, - }); - await expect( - impactModel.calculate([ - { - duration: 3600, - 'data-in': 14.3, - 'data-out': 1.16, - timestamp: '2021-01-01T00:00:00Z', - }, - ]) - ).resolves.toStrictEqual([ - { - e_net: 0.015460000000000002, - duration: 3600, - 'data-in': 14.3, - 'data-out': 1.16, - timestamp: '2021-01-01T00:00:00Z', - }, - ]); - }); - test('initialize with params', async () => { - const impactModel = new ENetModel(); - await impactModel.configure('test', { - net_energy: 0.001, - }); - await expect( - impactModel.calculate([ - { - duration: 3600, - 'data-in': 14.3, - 'data-out': 1.16, - timestamp: '2021-01-01T00:00:00Z', - }, - { - duration: 3600, - 'data-in': 1.3, - 'data-out': 0.16, - timestamp: '2021-01-01T00:00:00Z', - }, - { - duration: 3600, - 'data-in': 145.3, - 'data-out': 100.16, - timestamp: '2021-01-01T00:00:00Z', - }, - ]) - ).resolves.toStrictEqual([ - { - e_net: 0.015460000000000002, - duration: 3600, - 'data-in': 14.3, - 'data-out': 1.16, - timestamp: '2021-01-01T00:00:00Z', - }, - { - e_net: 0.00146, - duration: 3600, - 'data-in': 1.3, - 'data-out': 0.16, - timestamp: '2021-01-01T00:00:00Z', - }, - { - e_net: 0.24546, - duration: 3600, - 'data-in': 145.3, - 'data-out': 100.16, - timestamp: '2021-01-01T00:00:00Z', - }, - ]); - }); -}); diff --git a/src/lib/e-net/index.ts b/src/lib/e-net/index.ts deleted file mode 100644 index 49b8e1cfb..000000000 --- a/src/lib/e-net/index.ts +++ /dev/null @@ -1,98 +0,0 @@ -import {IImpactModelInterface} from '../interfaces'; -import {KeyValuePair} from '../../types/boavizta'; - -export class ENetModel implements IImpactModelInterface { - // Defined for compatibility. Not used in this model. - authParams: object | undefined; - // name of the data source - name: string | undefined; - // tdp of the chip being measured - data_in = 0; - net_energy = 0; - - /** - * Defined for compatibility. Not used in this model. - */ - authenticate(authParams: object): void { - this.authParams = authParams; - } - - /** - * Configures the e-net Plugin for IEF - * @param {string} name name of the resource - * @param {Object} staticParams static parameters for the resource - */ - async configure( - name: string, - staticParams: object | undefined = undefined - ): Promise { - this.name = name; - - if (staticParams === undefined) { - throw new Error('Required Parameters not provided'); - } - - if ('net_energy' in staticParams) { - this.net_energy = staticParams?.net_energy as number; - } - - return this; - } - - /** - * Calculate the total emissions for a list of observations - * - * Each Observation require: - * @param {Object[]} observations - * @param {string} observations[].timestamp RFC3339 timestamp string - * @param {number} observations[].mem-util percentage mem usage - */ - async calculate(observations: object | object[] | undefined): Promise { - if (observations === undefined) { - throw new Error('Required Parameters not provided'); - } else if (!Array.isArray(observations)) { - throw new Error('Observations must be an array'); - } - return observations.map((observation: KeyValuePair) => { - this.configure(this.name!, observation); - observation['e_net'] = this.calculateEnergy(observation); - return observation; - }); - } - - /** - * Returns model identifier - */ - modelIdentifier(): string { - return 'e-net'; - } - - /** - * Calculates the energy consumption for a single observation - * requires - * - * data-in: GB of inbound network data - * data-out: GB of outbound network data - * timestamp: RFC3339 timestamp string - * - * multiplies memory used (GB) by a coefficient (wh/GB) and converts to kwh - */ - private calculateEnergy(observation: KeyValuePair) { - if ( - !('data-in' in observation) || - !('data-out' in observation) || - !('timestamp' in observation) - ) { - throw new Error( - 'Required Parameters duration,cpu-util,timestamp not provided for observation' - ); - } - - const net_energy = this.net_energy; - // convert cpu usage to percentage - const data_in = observation['data-in']; - const data_out = observation['data-out']; - - return (data_in + data_out) * net_energy; - } -} diff --git a/src/util/models-universe.ts b/src/util/models-universe.ts index fbb0fd507..ebedd9237 100644 --- a/src/util/models-universe.ts +++ b/src/util/models-universe.ts @@ -13,6 +13,10 @@ import { ImplInitializeModel, InitalizedModels, } from '../types/models-universe'; +import {SciModel} from '../lib/sci'; +import {EshoppenModel} from '../lib/case-studies/eshoppen-model'; +import {EMemModel} from '../lib/case-studies/emem-model'; +import {SciAccentureModel} from '../lib/case-studies/sci-accenture-model'; /** * Models Initialization Lifecycle. @@ -40,6 +44,15 @@ export class ModelsUniverse { return SciMModel; case 'sci-o': return SciOModel; + case 'sci': + return SciModel; + case 'eshoppen': + return EshoppenModel; + case 'sci-accenture': + return SciAccentureModel; + + case 'emem': + return EMemModel; default: // cover default return BoaviztaCpuImpactModel; } From e1a7886e362449a975db6550c9cbfff1990b51a0 Mon Sep 17 00:00:00 2001 From: Gnanakeethan Balasubramaniam Date: Wed, 13 Sep 2023 15:56:54 +0530 Subject: [PATCH 24/69] Fixing operational pipeline changes Signed-off-by: Gnanakeethan Balasubramaniam --- examples/impls/complex-pipeline.yml | 55 ++++++++++++-------------- src/lib/case-studies/emem.test.ts | 2 +- src/lib/case-studies/eshoppen-model.ts | 37 ++++++++++++++++- src/util/models-universe.ts | 17 ++++++-- 4 files changed, 76 insertions(+), 35 deletions(-) diff --git a/examples/impls/complex-pipeline.yml b/examples/impls/complex-pipeline.yml index 32fbe019b..5621abc07 100644 --- a/examples/impls/complex-pipeline.yml +++ b/examples/impls/complex-pipeline.yml @@ -13,6 +13,14 @@ initialize: kind: builtin - name: sci-o kind: builtin + - name: sci-e + kind: builtin + - name: eshoppen-net + kind: builtin + - name: eshoppen-mem + kind: builtin + - name: eshoppen-cpu + kind: builtin - name: sampler kind: shell path: python3 /usr/local/bin/sampler @@ -20,8 +28,10 @@ graph: children: front-end: pipeline: - - teads-curve - - sampler + - eshoppen-mem + - eshoppen-cpu + - eshoppen-net + - sci-e - sci-o config: teads-curve: @@ -31,39 +41,26 @@ graph: observations: - timestamp: 2023-07-06T00:00 # [KEYWORD] [NO-SUBFIELDS] time when measurement occurred processor: Intel® Core™ i7-1185G7 + data-in: 1 + data-out: 1 + net-energy: 1 + n-hours: 1 + n-chips: 1 + tdp-mem: 1 + tdp-coeff: 1 duration: 3600 # Secs tdp: 28 # W cpu-util: 18.392 grid-ci: 951 # gCO2e/kWh - timestamp: 2023-08-06T00:00 # [KEYWORD] [NO-SUBFIELDS] time when measurement occurred processor: Intel® Core™ i7-1185G7 - duration: 3600 # Secs - tdp: 20 # W - cpu-util: 16 - grid-ci: 800 # gCO2e/kWh - back-end: - pipeline: - - teads-curve - - sci-o - - sci-m - config: - sci-m: - te: 350 # kgCO2eq - tir: "duration" # get this value from the duration field - el: 126144000 # 4 years in seconds - rr: 1 - tor: 1 - teads-curve: - tdp: 1 - observations: - - timestamp: 2023-07-06T00:00 # [KEYWORD] [NO-SUBFIELDS] time when measurement occurred - processor: Intel® Core™ i7-1185G7 - duration: 3600 # Secs - tdp: 28 # W - cpu-util: 18.392 - grid-ci: 951 # gCO2e/kWh - - timestamp: 2023-08-06T00:00 # [KEYWORD] [NO-SUBFIELDS] time when measurement occurred - processor: Intel® Core™ i7-1185G7 + data-in: 1 + data-out: 1 + net-energy: 1 + n-hours: 1 + n-chips: 1 + tdp-mem: 1 + tdp-coeff: 1 duration: 3600 # Secs tdp: 20 # W cpu-util: 16 diff --git a/src/lib/case-studies/emem.test.ts b/src/lib/case-studies/emem.test.ts index 065b4e5d5..e813d6e25 100644 --- a/src/lib/case-studies/emem.test.ts +++ b/src/lib/case-studies/emem.test.ts @@ -3,7 +3,7 @@ import {EMemModel} from './emem-model'; jest.setTimeout(30000); -describe('teads:configure test', () => { +describe('emem:configure test', () => { test('initialize with params', async () => { const impactModel = new EMemModel(); await impactModel.configure('test', { diff --git a/src/lib/case-studies/eshoppen-model.ts b/src/lib/case-studies/eshoppen-model.ts index 5dad921ef..912b231b4 100644 --- a/src/lib/case-studies/eshoppen-model.ts +++ b/src/lib/case-studies/eshoppen-model.ts @@ -35,7 +35,7 @@ export class EshoppenModel implements IImpactModelInterface { // e-mem-tdp = n-hours * n-chip * tdp-mem * tdp-coeff observation['e-mem'] = observation['n-hours'] * - observation['n-chip'] * + observation['n-chips'] * observation['tdp-mem'] * observation['tdp-coeff']; if (isNaN(observation['e-mem'])) { @@ -97,6 +97,39 @@ export class EshoppenModel implements IImpactModelInterface { } modelIdentifier(): string { - return 'org.gsf.sci-o'; + return 'org.gsf.eshoppen'; + } +} + +export class EshoppenCpuModel extends EshoppenModel { + constructor() { + super(); + this.modelType = 'e-cpu'; + } + + modelIdentifier(): string { + return 'org.gsf.eshoppen-cpu'; + } +} + +export class EshoppenMemModel extends EshoppenModel { + constructor() { + super(); + this.modelType = 'e-mem'; + } + + static modelIdentifier(): string { + return 'org.gsf.eshoppen-mem'; + } +} + +export class EshoppenNetModel extends EshoppenModel { + constructor() { + super(); + this.modelType = 'e-net'; + } + + modelIdentifier(): string { + return 'org.gsf.eshoppen-net'; } } diff --git a/src/util/models-universe.ts b/src/util/models-universe.ts index ebedd9237..3f39e4fb4 100644 --- a/src/util/models-universe.ts +++ b/src/util/models-universe.ts @@ -14,9 +14,14 @@ import { InitalizedModels, } from '../types/models-universe'; import {SciModel} from '../lib/sci'; -import {EshoppenModel} from '../lib/case-studies/eshoppen-model'; +import { + EshoppenCpuModel, + EshoppenMemModel, + EshoppenNetModel, +} from '../lib/case-studies/eshoppen-model'; import {EMemModel} from '../lib/case-studies/emem-model'; import {SciAccentureModel} from '../lib/case-studies/sci-accenture-model'; +import {SciEModel} from "../lib/sci-e"; /** * Models Initialization Lifecycle. @@ -40,14 +45,20 @@ export class ModelsUniverse { return CloudCarbonFootprint; case 'teads-curve': return TeadsCurveModel; + case 'sci-e': + return SciEModel; case 'sci-m': return SciMModel; case 'sci-o': return SciOModel; case 'sci': return SciModel; - case 'eshoppen': - return EshoppenModel; + case 'eshoppen-net': + return EshoppenNetModel; + case 'eshoppen-cpu': + return EshoppenCpuModel; + case 'eshoppen-mem': + return EshoppenMemModel; case 'sci-accenture': return SciAccentureModel; From 587c2aed16fcb6574d7fcb692ce9e6bd0e7b041f Mon Sep 17 00:00:00 2001 From: Gnanakeethan Balasubramaniam Date: Wed, 13 Sep 2023 16:08:46 +0530 Subject: [PATCH 25/69] yarn fixes Signed-off-by: Gnanakeethan Balasubramaniam --- src/util/models-universe.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/models-universe.ts b/src/util/models-universe.ts index 3f39e4fb4..1213c1e77 100644 --- a/src/util/models-universe.ts +++ b/src/util/models-universe.ts @@ -21,7 +21,7 @@ import { } from '../lib/case-studies/eshoppen-model'; import {EMemModel} from '../lib/case-studies/emem-model'; import {SciAccentureModel} from '../lib/case-studies/sci-accenture-model'; -import {SciEModel} from "../lib/sci-e"; +import {SciEModel} from '../lib/sci-e'; /** * Models Initialization Lifecycle. From c186f1d6fc38548980b550e21293adfe7f8058a4 Mon Sep 17 00:00:00 2001 From: jmc Date: Wed, 13 Sep 2023 13:50:33 +0100 Subject: [PATCH 26/69] add aveva model Signed-off-by: jmc --- src/lib/case-studies/aveva.js | 75 ++++++++++++++++++++++++++++++ src/lib/case-studies/aveva.test.js | 30 ++++++++++++ 2 files changed, 105 insertions(+) create mode 100644 src/lib/case-studies/aveva.js create mode 100644 src/lib/case-studies/aveva.test.js diff --git a/src/lib/case-studies/aveva.js b/src/lib/case-studies/aveva.js new file mode 100644 index 000000000..43e806880 --- /dev/null +++ b/src/lib/case-studies/aveva.js @@ -0,0 +1,75 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +exports.EAvevaModel = void 0; +class EAvevaModel { + constructor() { + } + /** + * Defined for compatibility. Not used here. + */ + authenticate(authParams) { + this.authParams = authParams; + } + /** + * Configures the TEADS Plugin for IEF + * @param {string} name name of the resource + * @param {Object} staticParams static parameters for the resource + */ + async configure(name, staticParams = undefined) { + this.name = name; + if (staticParams === undefined) { + throw new Error('Required Parameters not provided'); + } + return this; + } + /** + * Calculate the total emissions for a list of observations + * + * Each Observation require: + * @param {Object[]} observations + * @param {number} observations[].time time to normalize to in hours + * @param {number} observations[].pb percentage mem usage + * @param {number} observations[].pl percentage mem usage + */ + async calculate(observations) { + if (observations === undefined) { + throw new Error('Required Parameters not provided'); + } else if (!Array.isArray(observations)) { + throw new Error('Observations must be an array'); + } + return observations.map(observation => { + this.configure(this.name, observation); + observation['e-cpu'] = this.calculateEnergy(observation); + return observation; + }); + } + /** + * Returns model identifier + */ + modelIdentifier() { + return 'e-aveva'; + } + /** + * Calculates the energy consumption for a single observation + * requires + * + * mem-util: ram usage in percentage + * timestamp: RFC3339 timestamp string + * + * multiplies memory used (GB) by a coefficient (wh/GB) and converts to kwh + */ + calculateEnergy(observation) { + if (!('pl' in observation) || !('pb' in observation) || !('time' in observation)) { + throw new Error( + 'Required Parameters pl, pb, time not provided for observation' + ); + } + const pl = observation['pl']; + const pb = observation['pb']; + const time = observation['time']; + + return ((pl - pb) * time) / 1000; + } +} +exports.EAvevaModel = EAvevaModel; +//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW1lbS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbImVtZW0udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBR0EsTUFBYSxTQUFTO0lBQXRCO1FBS0UsaUNBQWlDO1FBQ2pDLHFCQUFnQixHQUFHLENBQUMsQ0FBQztRQUNyQixpREFBaUQ7UUFDakQsaUJBQVksR0FBRyxDQUFDLENBQUM7SUFxR25CLENBQUM7SUFwR0M7O09BRUc7SUFDSCxZQUFZLENBQUMsVUFBa0I7UUFDN0IsSUFBSSxDQUFDLFVBQVUsR0FBRyxVQUFVLENBQUM7SUFDL0IsQ0FBQztJQUVEOzs7Ozs7T0FNRztJQUNILEtBQUssQ0FBQyxTQUFTLENBQ2IsSUFBWSxFQUNaLGVBQW1DLFNBQVM7UUFFNUMsSUFBSSxDQUFDLElBQUksR0FBRyxJQUFJLENBQUM7UUFFakIsSUFBSSxZQUFZLEtBQUssU0FBUyxFQUFFO1lBQzlCLE1BQU0sSUFBSSxLQUFLLENBQUMsa0NBQWtDLENBQUMsQ0FBQztTQUNyRDtRQUVELElBQUksV0FBVyxJQUFJLFlBQVksRUFBRTtZQUMvQixJQUFJLENBQUMsZ0JBQWdCLEdBQUcsWUFBWSxDQUFDLFdBQVcsQ0FBVyxDQUFDO1NBQzdEO1FBRUQsSUFBSSxZQUFZLElBQUksWUFBWSxFQUFFO1lBQ2hDLElBQUksQ0FBQyxZQUFZLEdBQUcsWUFBWSxDQUFDLFlBQVksQ0FBVyxDQUFDO1NBQzFEO1FBRUQsT0FBTyxJQUFJLENBQUM7SUFDZCxDQUFDO0lBRUQ7Ozs7Ozs7T0FPRztJQUNILEtBQUssQ0FBQyxTQUFTLENBQUMsWUFBMkM7UUFDekQsSUFBSSxZQUFZLEtBQUssU0FBUyxFQUFFO1lBQzlCLE1BQU0sSUFBSSxLQUFLLENBQUMsa0NBQWtDLENBQUMsQ0FBQztTQUNyRDthQUFNLElBQUksQ0FBQyxLQUFLLENBQUMsT0FBTyxDQUFDLFlBQVksQ0FBQyxFQUFFO1lBQ3ZDLE1BQU0sSUFBSSxLQUFLLENBQUMsK0JBQStCLENBQUMsQ0FBQztTQUNsRDtRQUNELE9BQU8sWUFBWSxDQUFDLEdBQUcsQ0FBQyxDQUFDLFdBQXlCLEVBQUUsRUFBRTtZQUNwRCxJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxJQUFLLEVBQUUsV0FBVyxDQUFDLENBQUM7WUFDeEMsV0FBVyxDQUFDLE9BQU8sQ0FBQyxHQUFHLElBQUksQ0FBQyxlQUFlLENBQUMsV0FBVyxDQUFDLENBQUM7WUFDekQsT0FBTyxXQUFXLENBQUM7UUFDckIsQ0FBQyxDQUFDLENBQUM7SUFDTCxDQUFDO0lBRUQ7O09BRUc7SUFDSCxlQUFlO1FBQ2IsT0FBTyxPQUFPLENBQUM7SUFDakIsQ0FBQztJQUVEOzs7Ozs7OztPQVFHO0lBQ0ssZUFBZSxDQUFDLFdBQXlCO1FBQy9DLElBQUksQ0FBQyxDQUFDLFVBQVUsSUFBSSxXQUFXLENBQUMsSUFBSSxDQUFDLENBQUMsV0FBVyxJQUFJLFdBQVcsQ0FBQyxFQUFFO1lBQ2pFLE1BQU0sSUFBSSxLQUFLLENBQ2IsOEVBQThFLENBQy9FLENBQUM7U0FDSDtRQUNELElBQUksSUFBSSxDQUFDLGdCQUFnQixLQUFLLENBQUMsRUFBRTtZQUMvQixNQUFNLElBQUksS0FBSyxDQUNiLHlEQUF5RCxDQUMxRCxDQUFDO1NBQ0g7UUFDRCxJQUFJLElBQUksQ0FBQyxZQUFZLEtBQUssQ0FBQyxFQUFFO1lBQzNCLE1BQU0sSUFBSSxLQUFLLENBQ2IsMERBQTBELENBQzNELENBQUM7U0FDSDtRQUVELE1BQU0sU0FBUyxHQUFHLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQztRQUN4QyxxQ0FBcUM7UUFDckMsTUFBTSxRQUFRLEdBQUcsV0FBVyxDQUFDLFVBQVUsQ0FBQyxDQUFDO1FBQ3pDLElBQUksUUFBUSxHQUFHLENBQUMsSUFBSSxRQUFRLEdBQUcsR0FBRyxFQUFFO1lBQ2xDLE1BQU0sSUFBSSxLQUFLLENBQUMscUNBQXFDLENBQUMsQ0FBQztTQUN4RDtRQUVELE1BQU0sVUFBVSxHQUFHLElBQUksQ0FBQyxZQUFZLENBQUM7UUFFckMsT0FBTyxDQUFDLFNBQVMsR0FBRyxDQUFDLFFBQVEsR0FBRyxHQUFHLENBQUMsR0FBRyxVQUFVLENBQUMsR0FBRyxJQUFJLENBQUM7SUFDNUQsQ0FBQztDQUNGO0FBN0dELDhCQTZHQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7SUltcGFjdE1vZGVsSW50ZXJmYWNlfSBmcm9tICcuLi9pbnRlcmZhY2VzJztcbmltcG9ydCB7S2V5VmFsdWVQYWlyfSBmcm9tICcuLi8uLi90eXBlcy9ib2F2aXp0YSc7XG5cbmV4cG9ydCBjbGFzcyBFTWVtTW9kZWwgaW1wbGVtZW50cyBJSW1wYWN0TW9kZWxJbnRlcmZhY2Uge1xuICAvLyBEZWZpbmVkIGZvciBjb21wYXRpYmlsaXR5LiBOb3QgdXNlZCBpbiBURUFEUy5cbiAgYXV0aFBhcmFtczogb2JqZWN0IHwgdW5kZWZpbmVkO1xuICAvLyBuYW1lIG9mIHRoZSBkYXRhIHNvdXJjZVxuICBuYW1lOiBzdHJpbmcgfCB1bmRlZmluZWQ7XG4gIC8vIHRkcCBvZiB0aGUgY2hpcCBiZWluZyBtZWFzdXJlZFxuICBtZW1vcnlBbGxvY2F0aW9uID0gMDtcbiAgLy8gZGVmYXVsdCBwb3dlciBjdXJ2ZSBwcm92aWRlZCBieSB0aGUgVGVhZHMgVGVhbVxuICBtZW1vcnlFbmVyZ3kgPSAwO1xuICAvKipcbiAgICogRGVmaW5lZCBmb3IgY29tcGF0aWJpbGl0eS4gTm90IHVzZWQgaW4gVEVBRFMuXG4gICAqL1xuICBhdXRoZW50aWNhdGUoYXV0aFBhcmFtczogb2JqZWN0KTogdm9pZCB7XG4gICAgdGhpcy5hdXRoUGFyYW1zID0gYXV0aFBhcmFtcztcbiAgfVxuXG4gIC8qKlxuICAgKiAgQ29uZmlndXJlcyB0aGUgVEVBRFMgUGx1Z2luIGZvciBJRUZcbiAgICogIEBwYXJhbSB7c3RyaW5nfSBuYW1lIG5hbWUgb2YgdGhlIHJlc291cmNlXG4gICAqICBAcGFyYW0ge09iamVjdH0gc3RhdGljUGFyYW1zIHN0YXRpYyBwYXJhbWV0ZXJzIGZvciB0aGUgcmVzb3VyY2VcbiAgICogIEBwYXJhbSB7bnVtYmVyfSBzdGF0aWNQYXJhbXMudGRwIFRoZXJtYWwgRGVzaWduIFBvd2VyIGluIFdhdHRzXG4gICAqICBAcGFyYW0ge0ludGVycG9sYXRpb259IHN0YXRpY1BhcmFtcy5pbnRlcnBvbGF0aW9uIEludGVycG9sYXRpb24gbWV0aG9kXG4gICAqL1xuICBhc3luYyBjb25maWd1cmUoXG4gICAgbmFtZTogc3RyaW5nLFxuICAgIHN0YXRpY1BhcmFtczogb2JqZWN0IHwgdW5kZWZpbmVkID0gdW5kZWZpbmVkXG4gICk6IFByb21pc2U8SUltcGFjdE1vZGVsSW50ZXJmYWNlPiB7XG4gICAgdGhpcy5uYW1lID0gbmFtZTtcblxuICAgIGlmIChzdGF0aWNQYXJhbXMgPT09IHVuZGVmaW5lZCkge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKCdSZXF1aXJlZCBQYXJhbWV0ZXJzIG5vdCBwcm92aWRlZCcpO1xuICAgIH1cblxuICAgIGlmICgnbWVtLWFsbG9jJyBpbiBzdGF0aWNQYXJhbXMpIHtcbiAgICAgIHRoaXMubWVtb3J5QWxsb2NhdGlvbiA9IHN0YXRpY1BhcmFtc1snbWVtLWFsbG9jJ10gYXMgbnVtYmVyO1xuICAgIH1cblxuICAgIGlmICgnbWVtLWVuZXJneScgaW4gc3RhdGljUGFyYW1zKSB7XG4gICAgICB0aGlzLm1lbW9yeUVuZXJneSA9IHN0YXRpY1BhcmFtc1snbWVtLWVuZXJneSddIGFzIG51bWJlcjtcbiAgICB9XG5cbiAgICByZXR1cm4gdGhpcztcbiAgfVxuXG4gIC8qKlxuICAgKiBDYWxjdWxhdGUgdGhlIHRvdGFsIGVtaXNzaW9ucyBmb3IgYSBsaXN0IG9mIG9ic2VydmF0aW9uc1xuICAgKlxuICAgKiBFYWNoIE9ic2VydmF0aW9uIHJlcXVpcmU6XG4gICAqICBAcGFyYW0ge09iamVjdFtdfSBvYnNlcnZhdGlvbnNcbiAgICogIEBwYXJhbSB7c3RyaW5nfSBvYnNlcnZhdGlvbnNbXS50aW1lc3RhbXAgUkZDMzMzOSB0aW1lc3RhbXAgc3RyaW5nXG4gICAqICBAcGFyYW0ge251bWJlcn0gb2JzZXJ2YXRpb25zW10ubWVtLXV0aWwgcGVyY2VudGFnZSBtZW0gdXNhZ2VcbiAgICovXG4gIGFzeW5jIGNhbGN1bGF0ZShvYnNlcnZhdGlvbnM6IG9iamVjdCB8IG9iamVjdFtdIHwgdW5kZWZpbmVkKTogUHJvbWlzZTxhbnlbXT4ge1xuICAgIGlmIChvYnNlcnZhdGlvbnMgPT09IHVuZGVmaW5lZCkge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKCdSZXF1aXJlZCBQYXJhbWV0ZXJzIG5vdCBwcm92aWRlZCcpO1xuICAgIH0gZWxzZSBpZiAoIUFycmF5LmlzQXJyYXkob2JzZXJ2YXRpb25zKSkge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKCdPYnNlcnZhdGlvbnMgbXVzdCBiZSBhbiBhcnJheScpO1xuICAgIH1cbiAgICByZXR1cm4gb2JzZXJ2YXRpb25zLm1hcCgob2JzZXJ2YXRpb246IEtleVZhbHVlUGFpcikgPT4ge1xuICAgICAgdGhpcy5jb25maWd1cmUodGhpcy5uYW1lISwgb2JzZXJ2YXRpb24pO1xuICAgICAgb2JzZXJ2YXRpb25bJ2UtbWVtJ10gPSB0aGlzLmNhbGN1bGF0ZUVuZXJneShvYnNlcnZhdGlvbik7XG4gICAgICByZXR1cm4gb2JzZXJ2YXRpb247XG4gICAgfSk7XG4gIH1cblxuICAvKipcbiAgICogUmV0dXJucyBtb2RlbCBpZGVudGlmaWVyXG4gICAqL1xuICBtb2RlbElkZW50aWZpZXIoKTogc3RyaW5nIHtcbiAgICByZXR1cm4gJ2UtbWVtJztcbiAgfVxuXG4gIC8qKlxuICAgKiBDYWxjdWxhdGVzIHRoZSBlbmVyZ3kgY29uc3VtcHRpb24gZm9yIGEgc2luZ2xlIG9ic2VydmF0aW9uXG4gICAqIHJlcXVpcmVzXG4gICAqXG4gICAqIG1lbS11dGlsOiByYW0gdXNhZ2UgaW4gcGVyY2VudGFnZVxuICAgKiB0aW1lc3RhbXA6IFJGQzMzMzkgdGltZXN0YW1wIHN0cmluZ1xuICAgKlxuICAgKiBtdWx0aXBsaWVzIG1lbW9yeSB1c2VkIChHQikgYnkgYSBjb2VmZmljaWVudCAod2gvR0IpIGFuZCBjb252ZXJ0cyB0byBrd2hcbiAgICovXG4gIHByaXZhdGUgY2FsY3VsYXRlRW5lcmd5KG9ic2VydmF0aW9uOiBLZXlWYWx1ZVBhaXIpIHtcbiAgICBpZiAoISgnbWVtLXV0aWwnIGluIG9ic2VydmF0aW9uKSB8fCAhKCd0aW1lc3RhbXAnIGluIG9ic2VydmF0aW9uKSkge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKFxuICAgICAgICAnUmVxdWlyZWQgUGFyYW1ldGVycyBkdXJhdGlvbixjcHUtdXRpbCx0aW1lc3RhbXAgbm90IHByb3ZpZGVkIGZvciBvYnNlcnZhdGlvbidcbiAgICAgICk7XG4gICAgfVxuICAgIGlmICh0aGlzLm1lbW9yeUFsbG9jYXRpb24gPT09IDApIHtcbiAgICAgIHRocm93IG5ldyBFcnJvcihcbiAgICAgICAgJ1JlcXVpcmVkIFBhcmFtZXRlcjogbWVtLWFsbG9jIG5vdCBwcm92aWRlZCBpbiBjb25maWd1cmUnXG4gICAgICApO1xuICAgIH1cbiAgICBpZiAodGhpcy5tZW1vcnlFbmVyZ3kgPT09IDApIHtcbiAgICAgIHRocm93IG5ldyBFcnJvcihcbiAgICAgICAgJ1JlcXVpcmVkIFBhcmFtZXRlcjogbWVtLWVuZXJneSBub3QgcHJvdmlkZWQgaW4gY29uZmlndXJlJ1xuICAgICAgKTtcbiAgICB9XG5cbiAgICBjb25zdCBtZW1fYWxsb2MgPSB0aGlzLm1lbW9yeUFsbG9jYXRpb247XG4gICAgLy8gICAgY29udmVydCBjcHUgdXNhZ2UgdG8gcGVyY2VudGFnZVxuICAgIGNvbnN0IG1lbV91dGlsID0gb2JzZXJ2YXRpb25bJ21lbS11dGlsJ107XG4gICAgaWYgKG1lbV91dGlsIDwgMCB8fCBtZW1fdXRpbCA+IDEwMCkge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKCdjcHUgdXNhZ2UgbXVzdCBiZSBiZXR3ZWVuIDAgYW5kIDEwMCcpO1xuICAgIH1cblxuICAgIGNvbnN0IG1lbV9lbmVyZ3kgPSB0aGlzLm1lbW9yeUVuZXJneTtcblxuICAgIHJldHVybiAobWVtX2FsbG9jICogKG1lbV91dGlsIC8gMTAwKSAqIG1lbV9lbmVyZ3kpIC8gMTAwMDtcbiAgfVxufVxuIl19 diff --git a/src/lib/case-studies/aveva.test.js b/src/lib/case-studies/aveva.test.js new file mode 100644 index 000000000..334876102 --- /dev/null +++ b/src/lib/case-studies/aveva.test.js @@ -0,0 +1,30 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +const globals_1 = require('@jest/globals'); +const e_aveva = require('./aveva'); +globals_1.jest.setTimeout(30000); +(0, globals_1.describe)('e-aveva:configure test', () => { + (0, globals_1.test)('initialize with params', async () => { + const impactModel = new e_aveva.EAvevaModel(); + await impactModel.configure('test', {}); + await (0, globals_1.expect)( + impactModel.calculate([ + { + pl: 16.009, + pb: 11.335, + time: 8322, + timestamp: '2021-01-01T00:00:00Z', + }, + ]) + ).resolves.toStrictEqual([ + { + 'e-cpu': 38.897028, + pl: 16.009, + pb: 11.335, + time: 8322, + timestamp: '2021-01-01T00:00:00Z', + }, + ]); + }); +}); +//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW1lbS50ZXN0LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiZW1lbS50ZXN0LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7O0FBQUEsMkNBQTJEO0FBQzNELGlDQUFpQztBQUVqQyxjQUFJLENBQUMsVUFBVSxDQUFDLEtBQUssQ0FBQyxDQUFDO0FBRXZCLElBQUEsa0JBQVEsRUFBQyxzQkFBc0IsRUFBRSxHQUFHLEVBQUU7SUFDcEMsSUFBQSxjQUFJLEVBQUMsd0JBQXdCLEVBQUUsS0FBSyxJQUFJLEVBQUU7UUFDeEMsTUFBTSxXQUFXLEdBQUcsSUFBSSxnQkFBUyxFQUFFLENBQUM7UUFDcEMsTUFBTSxXQUFXLENBQUMsU0FBUyxDQUFDLE1BQU0sRUFBRTtZQUNsQyxXQUFXLEVBQUUsRUFBRTtZQUNmLFlBQVksRUFBRSxJQUFJO1NBQ25CLENBQUMsQ0FBQztRQUNILE1BQU0sSUFBQSxnQkFBTSxFQUNWLFdBQVcsQ0FBQyxTQUFTLENBQUM7WUFDcEI7Z0JBQ0UsUUFBUSxFQUFFLElBQUk7Z0JBQ2QsVUFBVSxFQUFFLElBQUk7Z0JBQ2hCLFNBQVMsRUFBRSxzQkFBc0I7YUFDbEM7U0FDRixDQUFDLENBQ0gsQ0FBQyxRQUFRLENBQUMsYUFBYSxDQUFDO1lBQ3ZCO2dCQUNFLE9BQU8sRUFBRSxPQUFPO2dCQUNoQixRQUFRLEVBQUUsSUFBSTtnQkFDZCxVQUFVLEVBQUUsSUFBSTtnQkFDaEIsU0FBUyxFQUFFLHNCQUFzQjthQUNsQztTQUNGLENBQUMsQ0FBQztJQUNMLENBQUMsQ0FBQyxDQUFDO0lBQ0gsSUFBQSxjQUFJLEVBQUMsd0JBQXdCLEVBQUUsS0FBSyxJQUFJLEVBQUU7UUFDeEMsTUFBTSxXQUFXLEdBQUcsSUFBSSxnQkFBUyxFQUFFLENBQUM7UUFDcEMsTUFBTSxXQUFXLENBQUMsU0FBUyxDQUFDLE1BQU0sRUFBRTtZQUNsQyxXQUFXLEVBQUUsRUFBRTtZQUNmLFlBQVksRUFBRSxJQUFJO1NBQ25CLENBQUMsQ0FBQztRQUNILE1BQU0sSUFBQSxnQkFBTSxFQUNWLFdBQVcsQ0FBQyxTQUFTLENBQUM7WUFDcEI7Z0JBQ0UsUUFBUSxFQUFFLElBQUk7Z0JBQ2QsVUFBVSxFQUFFLElBQUk7Z0JBQ2hCLFNBQVMsRUFBRSxzQkFBc0I7YUFDbEM7WUFDRDtnQkFDRSxRQUFRLEVBQUUsSUFBSTtnQkFDZCxVQUFVLEVBQUUsSUFBSTtnQkFDaEIsU0FBUyxFQUFFLHNCQUFzQjthQUNsQztZQUNEO2dCQUNFLFFBQVEsRUFBRSxJQUFJO2dCQUNkLFVBQVUsRUFBRSxJQUFJO2dCQUNoQixTQUFTLEVBQUUsc0JBQXNCO2FBQ2xDO1NBQ0YsQ0FBQyxDQUNILENBQUMsUUFBUSxDQUFDLGFBQWEsQ0FBQztZQUN2QjtnQkFDRSxPQUFPLEVBQUUscUJBQXFCO2dCQUM5QixRQUFRLEVBQUUsSUFBSTtnQkFDZCxVQUFVLEVBQUUsSUFBSTtnQkFDaEIsU0FBUyxFQUFFLHNCQUFzQjthQUNsQztZQUNEO2dCQUNFLE9BQU8sRUFBRSxPQUFPO2dCQUNoQixRQUFRLEVBQUUsSUFBSTtnQkFDZCxVQUFVLEVBQUUsSUFBSTtnQkFDaEIsU0FBUyxFQUFFLHNCQUFzQjthQUNsQztZQUNEO2dCQUNFLE9BQU8sRUFBRSxRQUFRO2dCQUNqQixRQUFRLEVBQUUsSUFBSTtnQkFDZCxVQUFVLEVBQUUsSUFBSTtnQkFDaEIsU0FBUyxFQUFFLHNCQUFzQjthQUNsQztTQUNGLENBQUMsQ0FBQztJQUNMLENBQUMsQ0FBQyxDQUFDO0FBQ0wsQ0FBQyxDQUFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge2Rlc2NyaWJlLCBleHBlY3QsIGplc3QsIHRlc3R9IGZyb20gJ0BqZXN0L2dsb2JhbHMnO1xuaW1wb3J0IHtFTWVtTW9kZWx9IGZyb20gJy4vZW1lbSc7XG5cbmplc3Quc2V0VGltZW91dCgzMDAwMCk7XG5cbmRlc2NyaWJlKCd0ZWFkczpjb25maWd1cmUgdGVzdCcsICgpID0+IHtcbiAgdGVzdCgnaW5pdGlhbGl6ZSB3aXRoIHBhcmFtcycsIGFzeW5jICgpID0+IHtcbiAgICBjb25zdCBpbXBhY3RNb2RlbCA9IG5ldyBFTWVtTW9kZWwoKTtcbiAgICBhd2FpdCBpbXBhY3RNb2RlbC5jb25maWd1cmUoJ3Rlc3QnLCB7XG4gICAgICAnbWVtLWFsbG9jJzogMzIsXG4gICAgICAnbWVtLWVuZXJneSc6IDAuMzgsXG4gICAgfSk7XG4gICAgYXdhaXQgZXhwZWN0KFxuICAgICAgaW1wYWN0TW9kZWwuY2FsY3VsYXRlKFtcbiAgICAgICAge1xuICAgICAgICAgIGR1cmF0aW9uOiAzNjAwLFxuICAgICAgICAgICdtZW0tdXRpbCc6IDUwLjAsXG4gICAgICAgICAgdGltZXN0YW1wOiAnMjAyMS0wMS0wMVQwMDowMDowMFonLFxuICAgICAgICB9LFxuICAgICAgXSlcbiAgICApLnJlc29sdmVzLnRvU3RyaWN0RXF1YWwoW1xuICAgICAge1xuICAgICAgICAnZS1tZW0nOiAwLjAwNjA4LFxuICAgICAgICBkdXJhdGlvbjogMzYwMCxcbiAgICAgICAgJ21lbS11dGlsJzogNTAuMCxcbiAgICAgICAgdGltZXN0YW1wOiAnMjAyMS0wMS0wMVQwMDowMDowMFonLFxuICAgICAgfSxcbiAgICBdKTtcbiAgfSk7XG4gIHRlc3QoJ2luaXRpYWxpemUgd2l0aCBwYXJhbXMnLCBhc3luYyAoKSA9PiB7XG4gICAgY29uc3QgaW1wYWN0TW9kZWwgPSBuZXcgRU1lbU1vZGVsKCk7XG4gICAgYXdhaXQgaW1wYWN0TW9kZWwuY29uZmlndXJlKCd0ZXN0Jywge1xuICAgICAgJ21lbS1hbGxvYyc6IDMyLFxuICAgICAgJ21lbS1lbmVyZ3knOiAwLjM4LFxuICAgIH0pO1xuICAgIGF3YWl0IGV4cGVjdChcbiAgICAgIGltcGFjdE1vZGVsLmNhbGN1bGF0ZShbXG4gICAgICAgIHtcbiAgICAgICAgICBkdXJhdGlvbjogMzYwMCxcbiAgICAgICAgICAnbWVtLXV0aWwnOiAxMC4wLFxuICAgICAgICAgIHRpbWVzdGFtcDogJzIwMjEtMDEtMDFUMDA6MDA6MDBaJyxcbiAgICAgICAgfSxcbiAgICAgICAge1xuICAgICAgICAgIGR1cmF0aW9uOiAzNjAwLFxuICAgICAgICAgICdtZW0tdXRpbCc6IDUwLjAsXG4gICAgICAgICAgdGltZXN0YW1wOiAnMjAyMS0wMS0wMVQwMDowMDowMFonLFxuICAgICAgICB9LFxuICAgICAgICB7XG4gICAgICAgICAgZHVyYXRpb246IDM2MDAsXG4gICAgICAgICAgJ21lbS11dGlsJzogOTAuMCxcbiAgICAgICAgICB0aW1lc3RhbXA6ICcyMDIxLTAxLTAxVDAwOjAwOjAwWicsXG4gICAgICAgIH0sXG4gICAgICBdKVxuICAgICkucmVzb2x2ZXMudG9TdHJpY3RFcXVhbChbXG4gICAgICB7XG4gICAgICAgICdlLW1lbSc6IDAuMDAxMjE2MDAwMDAwMDAwMDAwMyxcbiAgICAgICAgZHVyYXRpb246IDM2MDAsXG4gICAgICAgICdtZW0tdXRpbCc6IDEwLjAsXG4gICAgICAgIHRpbWVzdGFtcDogJzIwMjEtMDEtMDFUMDA6MDA6MDBaJyxcbiAgICAgIH0sXG4gICAgICB7XG4gICAgICAgICdlLW1lbSc6IDAuMDA2MDgsXG4gICAgICAgIGR1cmF0aW9uOiAzNjAwLFxuICAgICAgICAnbWVtLXV0aWwnOiA1MC4wLFxuICAgICAgICB0aW1lc3RhbXA6ICcyMDIxLTAxLTAxVDAwOjAwOjAwWicsXG4gICAgICB9LFxuICAgICAge1xuICAgICAgICAnZS1tZW0nOiAwLjAxMDk0NCxcbiAgICAgICAgZHVyYXRpb246IDM2MDAsXG4gICAgICAgICdtZW0tdXRpbCc6IDkwLjAsXG4gICAgICAgIHRpbWVzdGFtcDogJzIwMjEtMDEtMDFUMDA6MDA6MDBaJyxcbiAgICAgIH0sXG4gICAgXSk7XG4gIH0pO1xufSk7XG4iXX0= From 8dd4940d6cb7cefbdbfcf2690e8005f2ec4e167b Mon Sep 17 00:00:00 2001 From: jmc Date: Wed, 13 Sep 2023 13:56:25 +0100 Subject: [PATCH 27/69] fix linter Signed-off-by: jmc --- src/lib/case-studies/aveva.js | 133 +++++++++++++++-------------- src/lib/case-studies/aveva.test.js | 2 +- 2 files changed, 69 insertions(+), 66 deletions(-) diff --git a/src/lib/case-studies/aveva.js b/src/lib/case-studies/aveva.js index 43e806880..1726025b3 100644 --- a/src/lib/case-studies/aveva.js +++ b/src/lib/case-studies/aveva.js @@ -1,75 +1,78 @@ 'use strict'; -Object.defineProperty(exports, '__esModule', { value: true }); +Object.defineProperty(exports, '__esModule', {value: true}); exports.EAvevaModel = void 0; class EAvevaModel { - constructor() { + constructor() {} + /** + * Defined for compatibility. Not used here. + */ + authenticate(authParams) { + this.authParams = authParams; + } + /** + * Configures the TEADS Plugin for IEF + * @param {string} name name of the resource + * @param {Object} staticParams static parameters for the resource + */ + async configure(name, staticParams = undefined) { + this.name = name; + if (staticParams === undefined) { + throw new Error('Required Parameters not provided'); } - /** - * Defined for compatibility. Not used here. - */ - authenticate(authParams) { - this.authParams = authParams; + return this; + } + /** + * Calculate the total emissions for a list of observations + * + * Each Observation require: + * @param {Object[]} observations + * @param {number} observations[].time time to normalize to in hours + * @param {number} observations[].pb percentage mem usage + * @param {number} observations[].pl percentage mem usage + */ + async calculate(observations) { + if (observations === undefined) { + throw new Error('Required Parameters not provided'); + } else if (!Array.isArray(observations)) { + throw new Error('Observations must be an array'); } - /** - * Configures the TEADS Plugin for IEF - * @param {string} name name of the resource - * @param {Object} staticParams static parameters for the resource - */ - async configure(name, staticParams = undefined) { - this.name = name; - if (staticParams === undefined) { - throw new Error('Required Parameters not provided'); - } - return this; + return observations.map(observation => { + this.configure(this.name, observation); + observation['e-cpu'] = this.calculateEnergy(observation); + return observation; + }); + } + /** + * Returns model identifier + */ + modelIdentifier() { + return 'e-aveva'; + } + /** + * Calculates the energy consumption for a single observation + * requires + * + * mem-util: ram usage in percentage + * timestamp: RFC3339 timestamp string + * + * multiplies memory used (GB) by a coefficient (wh/GB) and converts to kwh + */ + calculateEnergy(observation) { + if ( + !('pl' in observation) || + !('pb' in observation) || + !('time' in observation) + ) { + throw new Error( + 'Required Parameters pl, pb, time not provided for observation' + ); } - /** - * Calculate the total emissions for a list of observations - * - * Each Observation require: - * @param {Object[]} observations - * @param {number} observations[].time time to normalize to in hours - * @param {number} observations[].pb percentage mem usage - * @param {number} observations[].pl percentage mem usage - */ - async calculate(observations) { - if (observations === undefined) { - throw new Error('Required Parameters not provided'); - } else if (!Array.isArray(observations)) { - throw new Error('Observations must be an array'); - } - return observations.map(observation => { - this.configure(this.name, observation); - observation['e-cpu'] = this.calculateEnergy(observation); - return observation; - }); - } - /** - * Returns model identifier - */ - modelIdentifier() { - return 'e-aveva'; - } - /** - * Calculates the energy consumption for a single observation - * requires - * - * mem-util: ram usage in percentage - * timestamp: RFC3339 timestamp string - * - * multiplies memory used (GB) by a coefficient (wh/GB) and converts to kwh - */ - calculateEnergy(observation) { - if (!('pl' in observation) || !('pb' in observation) || !('time' in observation)) { - throw new Error( - 'Required Parameters pl, pb, time not provided for observation' - ); - } - const pl = observation['pl']; - const pb = observation['pb']; - const time = observation['time']; + const pl = observation['pl']; + const pb = observation['pb']; + const time = observation['time']; - return ((pl - pb) * time) / 1000; - } + return ((pl - pb) * time) / 1000; + } } exports.EAvevaModel = EAvevaModel; //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW1lbS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbImVtZW0udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBR0EsTUFBYSxTQUFTO0lBQXRCO1FBS0UsaUNBQWlDO1FBQ2pDLHFCQUFnQixHQUFHLENBQUMsQ0FBQztRQUNyQixpREFBaUQ7UUFDakQsaUJBQVksR0FBRyxDQUFDLENBQUM7SUFxR25CLENBQUM7SUFwR0M7O09BRUc7SUFDSCxZQUFZLENBQUMsVUFBa0I7UUFDN0IsSUFBSSxDQUFDLFVBQVUsR0FBRyxVQUFVLENBQUM7SUFDL0IsQ0FBQztJQUVEOzs7Ozs7T0FNRztJQUNILEtBQUssQ0FBQyxTQUFTLENBQ2IsSUFBWSxFQUNaLGVBQW1DLFNBQVM7UUFFNUMsSUFBSSxDQUFDLElBQUksR0FBRyxJQUFJLENBQUM7UUFFakIsSUFBSSxZQUFZLEtBQUssU0FBUyxFQUFFO1lBQzlCLE1BQU0sSUFBSSxLQUFLLENBQUMsa0NBQWtDLENBQUMsQ0FBQztTQUNyRDtRQUVELElBQUksV0FBVyxJQUFJLFlBQVksRUFBRTtZQUMvQixJQUFJLENBQUMsZ0JBQWdCLEdBQUcsWUFBWSxDQUFDLFdBQVcsQ0FBVyxDQUFDO1NBQzdEO1FBRUQsSUFBSSxZQUFZLElBQUksWUFBWSxFQUFFO1lBQ2hDLElBQUksQ0FBQyxZQUFZLEdBQUcsWUFBWSxDQUFDLFlBQVksQ0FBVyxDQUFDO1NBQzFEO1FBRUQsT0FBTyxJQUFJLENBQUM7SUFDZCxDQUFDO0lBRUQ7Ozs7Ozs7T0FPRztJQUNILEtBQUssQ0FBQyxTQUFTLENBQUMsWUFBMkM7UUFDekQsSUFBSSxZQUFZLEtBQUssU0FBUyxFQUFFO1lBQzlCLE1BQU0sSUFBSSxLQUFLLENBQUMsa0NBQWtDLENBQUMsQ0FBQztTQUNyRDthQUFNLElBQUksQ0FBQyxLQUFLLENBQUMsT0FBTyxDQUFDLFlBQVksQ0FBQyxFQUFFO1lBQ3ZDLE1BQU0sSUFBSSxLQUFLLENBQUMsK0JBQStCLENBQUMsQ0FBQztTQUNsRDtRQUNELE9BQU8sWUFBWSxDQUFDLEdBQUcsQ0FBQyxDQUFDLFdBQXlCLEVBQUUsRUFBRTtZQUNwRCxJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxJQUFLLEVBQUUsV0FBVyxDQUFDLENBQUM7WUFDeEMsV0FBVyxDQUFDLE9BQU8sQ0FBQyxHQUFHLElBQUksQ0FBQyxlQUFlLENBQUMsV0FBVyxDQUFDLENBQUM7WUFDekQsT0FBTyxXQUFXLENBQUM7UUFDckIsQ0FBQyxDQUFDLENBQUM7SUFDTCxDQUFDO0lBRUQ7O09BRUc7SUFDSCxlQUFlO1FBQ2IsT0FBTyxPQUFPLENBQUM7SUFDakIsQ0FBQztJQUVEOzs7Ozs7OztPQVFHO0lBQ0ssZUFBZSxDQUFDLFdBQXlCO1FBQy9DLElBQUksQ0FBQyxDQUFDLFVBQVUsSUFBSSxXQUFXLENBQUMsSUFBSSxDQUFDLENBQUMsV0FBVyxJQUFJLFdBQVcsQ0FBQyxFQUFFO1lBQ2pFLE1BQU0sSUFBSSxLQUFLLENBQ2IsOEVBQThFLENBQy9FLENBQUM7U0FDSDtRQUNELElBQUksSUFBSSxDQUFDLGdCQUFnQixLQUFLLENBQUMsRUFBRTtZQUMvQixNQUFNLElBQUksS0FBSyxDQUNiLHlEQUF5RCxDQUMxRCxDQUFDO1NBQ0g7UUFDRCxJQUFJLElBQUksQ0FBQyxZQUFZLEtBQUssQ0FBQyxFQUFFO1lBQzNCLE1BQU0sSUFBSSxLQUFLLENBQ2IsMERBQTBELENBQzNELENBQUM7U0FDSDtRQUVELE1BQU0sU0FBUyxHQUFHLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQztRQUN4QyxxQ0FBcUM7UUFDckMsTUFBTSxRQUFRLEdBQUcsV0FBVyxDQUFDLFVBQVUsQ0FBQyxDQUFDO1FBQ3pDLElBQUksUUFBUSxHQUFHLENBQUMsSUFBSSxRQUFRLEdBQUcsR0FBRyxFQUFFO1lBQ2xDLE1BQU0sSUFBSSxLQUFLLENBQUMscUNBQXFDLENBQUMsQ0FBQztTQUN4RDtRQUVELE1BQU0sVUFBVSxHQUFHLElBQUksQ0FBQyxZQUFZLENBQUM7UUFFckMsT0FBTyxDQUFDLFNBQVMsR0FBRyxDQUFDLFFBQVEsR0FBRyxHQUFHLENBQUMsR0FBRyxVQUFVLENBQUMsR0FBRyxJQUFJLENBQUM7SUFDNUQsQ0FBQztDQUNGO0FBN0dELDhCQTZHQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7SUltcGFjdE1vZGVsSW50ZXJmYWNlfSBmcm9tICcuLi9pbnRlcmZhY2VzJztcbmltcG9ydCB7S2V5VmFsdWVQYWlyfSBmcm9tICcuLi8uLi90eXBlcy9ib2F2aXp0YSc7XG5cbmV4cG9ydCBjbGFzcyBFTWVtTW9kZWwgaW1wbGVtZW50cyBJSW1wYWN0TW9kZWxJbnRlcmZhY2Uge1xuICAvLyBEZWZpbmVkIGZvciBjb21wYXRpYmlsaXR5LiBOb3QgdXNlZCBpbiBURUFEUy5cbiAgYXV0aFBhcmFtczogb2JqZWN0IHwgdW5kZWZpbmVkO1xuICAvLyBuYW1lIG9mIHRoZSBkYXRhIHNvdXJjZVxuICBuYW1lOiBzdHJpbmcgfCB1bmRlZmluZWQ7XG4gIC8vIHRkcCBvZiB0aGUgY2hpcCBiZWluZyBtZWFzdXJlZFxuICBtZW1vcnlBbGxvY2F0aW9uID0gMDtcbiAgLy8gZGVmYXVsdCBwb3dlciBjdXJ2ZSBwcm92aWRlZCBieSB0aGUgVGVhZHMgVGVhbVxuICBtZW1vcnlFbmVyZ3kgPSAwO1xuICAvKipcbiAgICogRGVmaW5lZCBmb3IgY29tcGF0aWJpbGl0eS4gTm90IHVzZWQgaW4gVEVBRFMuXG4gICAqL1xuICBhdXRoZW50aWNhdGUoYXV0aFBhcmFtczogb2JqZWN0KTogdm9pZCB7XG4gICAgdGhpcy5hdXRoUGFyYW1zID0gYXV0aFBhcmFtcztcbiAgfVxuXG4gIC8qKlxuICAgKiAgQ29uZmlndXJlcyB0aGUgVEVBRFMgUGx1Z2luIGZvciBJRUZcbiAgICogIEBwYXJhbSB7c3RyaW5nfSBuYW1lIG5hbWUgb2YgdGhlIHJlc291cmNlXG4gICAqICBAcGFyYW0ge09iamVjdH0gc3RhdGljUGFyYW1zIHN0YXRpYyBwYXJhbWV0ZXJzIGZvciB0aGUgcmVzb3VyY2VcbiAgICogIEBwYXJhbSB7bnVtYmVyfSBzdGF0aWNQYXJhbXMudGRwIFRoZXJtYWwgRGVzaWduIFBvd2VyIGluIFdhdHRzXG4gICAqICBAcGFyYW0ge0ludGVycG9sYXRpb259IHN0YXRpY1BhcmFtcy5pbnRlcnBvbGF0aW9uIEludGVycG9sYXRpb24gbWV0aG9kXG4gICAqL1xuICBhc3luYyBjb25maWd1cmUoXG4gICAgbmFtZTogc3RyaW5nLFxuICAgIHN0YXRpY1BhcmFtczogb2JqZWN0IHwgdW5kZWZpbmVkID0gdW5kZWZpbmVkXG4gICk6IFByb21pc2U8SUltcGFjdE1vZGVsSW50ZXJmYWNlPiB7XG4gICAgdGhpcy5uYW1lID0gbmFtZTtcblxuICAgIGlmIChzdGF0aWNQYXJhbXMgPT09IHVuZGVmaW5lZCkge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKCdSZXF1aXJlZCBQYXJhbWV0ZXJzIG5vdCBwcm92aWRlZCcpO1xuICAgIH1cblxuICAgIGlmICgnbWVtLWFsbG9jJyBpbiBzdGF0aWNQYXJhbXMpIHtcbiAgICAgIHRoaXMubWVtb3J5QWxsb2NhdGlvbiA9IHN0YXRpY1BhcmFtc1snbWVtLWFsbG9jJ10gYXMgbnVtYmVyO1xuICAgIH1cblxuICAgIGlmICgnbWVtLWVuZXJneScgaW4gc3RhdGljUGFyYW1zKSB7XG4gICAgICB0aGlzLm1lbW9yeUVuZXJneSA9IHN0YXRpY1BhcmFtc1snbWVtLWVuZXJneSddIGFzIG51bWJlcjtcbiAgICB9XG5cbiAgICByZXR1cm4gdGhpcztcbiAgfVxuXG4gIC8qKlxuICAgKiBDYWxjdWxhdGUgdGhlIHRvdGFsIGVtaXNzaW9ucyBmb3IgYSBsaXN0IG9mIG9ic2VydmF0aW9uc1xuICAgKlxuICAgKiBFYWNoIE9ic2VydmF0aW9uIHJlcXVpcmU6XG4gICAqICBAcGFyYW0ge09iamVjdFtdfSBvYnNlcnZhdGlvbnNcbiAgICogIEBwYXJhbSB7c3RyaW5nfSBvYnNlcnZhdGlvbnNbXS50aW1lc3RhbXAgUkZDMzMzOSB0aW1lc3RhbXAgc3RyaW5nXG4gICAqICBAcGFyYW0ge251bWJlcn0gb2JzZXJ2YXRpb25zW10ubWVtLXV0aWwgcGVyY2VudGFnZSBtZW0gdXNhZ2VcbiAgICovXG4gIGFzeW5jIGNhbGN1bGF0ZShvYnNlcnZhdGlvbnM6IG9iamVjdCB8IG9iamVjdFtdIHwgdW5kZWZpbmVkKTogUHJvbWlzZTxhbnlbXT4ge1xuICAgIGlmIChvYnNlcnZhdGlvbnMgPT09IHVuZGVmaW5lZCkge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKCdSZXF1aXJlZCBQYXJhbWV0ZXJzIG5vdCBwcm92aWRlZCcpO1xuICAgIH0gZWxzZSBpZiAoIUFycmF5LmlzQXJyYXkob2JzZXJ2YXRpb25zKSkge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKCdPYnNlcnZhdGlvbnMgbXVzdCBiZSBhbiBhcnJheScpO1xuICAgIH1cbiAgICByZXR1cm4gb2JzZXJ2YXRpb25zLm1hcCgob2JzZXJ2YXRpb246IEtleVZhbHVlUGFpcikgPT4ge1xuICAgICAgdGhpcy5jb25maWd1cmUodGhpcy5uYW1lISwgb2JzZXJ2YXRpb24pO1xuICAgICAgb2JzZXJ2YXRpb25bJ2UtbWVtJ10gPSB0aGlzLmNhbGN1bGF0ZUVuZXJneShvYnNlcnZhdGlvbik7XG4gICAgICByZXR1cm4gb2JzZXJ2YXRpb247XG4gICAgfSk7XG4gIH1cblxuICAvKipcbiAgICogUmV0dXJucyBtb2RlbCBpZGVudGlmaWVyXG4gICAqL1xuICBtb2RlbElkZW50aWZpZXIoKTogc3RyaW5nIHtcbiAgICByZXR1cm4gJ2UtbWVtJztcbiAgfVxuXG4gIC8qKlxuICAgKiBDYWxjdWxhdGVzIHRoZSBlbmVyZ3kgY29uc3VtcHRpb24gZm9yIGEgc2luZ2xlIG9ic2VydmF0aW9uXG4gICAqIHJlcXVpcmVzXG4gICAqXG4gICAqIG1lbS11dGlsOiByYW0gdXNhZ2UgaW4gcGVyY2VudGFnZVxuICAgKiB0aW1lc3RhbXA6IFJGQzMzMzkgdGltZXN0YW1wIHN0cmluZ1xuICAgKlxuICAgKiBtdWx0aXBsaWVzIG1lbW9yeSB1c2VkIChHQikgYnkgYSBjb2VmZmljaWVudCAod2gvR0IpIGFuZCBjb252ZXJ0cyB0byBrd2hcbiAgICovXG4gIHByaXZhdGUgY2FsY3VsYXRlRW5lcmd5KG9ic2VydmF0aW9uOiBLZXlWYWx1ZVBhaXIpIHtcbiAgICBpZiAoISgnbWVtLXV0aWwnIGluIG9ic2VydmF0aW9uKSB8fCAhKCd0aW1lc3RhbXAnIGluIG9ic2VydmF0aW9uKSkge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKFxuICAgICAgICAnUmVxdWlyZWQgUGFyYW1ldGVycyBkdXJhdGlvbixjcHUtdXRpbCx0aW1lc3RhbXAgbm90IHByb3ZpZGVkIGZvciBvYnNlcnZhdGlvbidcbiAgICAgICk7XG4gICAgfVxuICAgIGlmICh0aGlzLm1lbW9yeUFsbG9jYXRpb24gPT09IDApIHtcbiAgICAgIHRocm93IG5ldyBFcnJvcihcbiAgICAgICAgJ1JlcXVpcmVkIFBhcmFtZXRlcjogbWVtLWFsbG9jIG5vdCBwcm92aWRlZCBpbiBjb25maWd1cmUnXG4gICAgICApO1xuICAgIH1cbiAgICBpZiAodGhpcy5tZW1vcnlFbmVyZ3kgPT09IDApIHtcbiAgICAgIHRocm93IG5ldyBFcnJvcihcbiAgICAgICAgJ1JlcXVpcmVkIFBhcmFtZXRlcjogbWVtLWVuZXJneSBub3QgcHJvdmlkZWQgaW4gY29uZmlndXJlJ1xuICAgICAgKTtcbiAgICB9XG5cbiAgICBjb25zdCBtZW1fYWxsb2MgPSB0aGlzLm1lbW9yeUFsbG9jYXRpb247XG4gICAgLy8gICAgY29udmVydCBjcHUgdXNhZ2UgdG8gcGVyY2VudGFnZVxuICAgIGNvbnN0IG1lbV91dGlsID0gb2JzZXJ2YXRpb25bJ21lbS11dGlsJ107XG4gICAgaWYgKG1lbV91dGlsIDwgMCB8fCBtZW1fdXRpbCA+IDEwMCkge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKCdjcHUgdXNhZ2UgbXVzdCBiZSBiZXR3ZWVuIDAgYW5kIDEwMCcpO1xuICAgIH1cblxuICAgIGNvbnN0IG1lbV9lbmVyZ3kgPSB0aGlzLm1lbW9yeUVuZXJneTtcblxuICAgIHJldHVybiAobWVtX2FsbG9jICogKG1lbV91dGlsIC8gMTAwKSAqIG1lbV9lbmVyZ3kpIC8gMTAwMDtcbiAgfVxufVxuIl19 diff --git a/src/lib/case-studies/aveva.test.js b/src/lib/case-studies/aveva.test.js index 334876102..eb9d74563 100644 --- a/src/lib/case-studies/aveva.test.js +++ b/src/lib/case-studies/aveva.test.js @@ -1,5 +1,5 @@ 'use strict'; -Object.defineProperty(exports, '__esModule', { value: true }); +Object.defineProperty(exports, '__esModule', {value: true}); const globals_1 = require('@jest/globals'); const e_aveva = require('./aveva'); globals_1.jest.setTimeout(30000); From 95cfda562e44b6ddad5a3365d719733d3578b902 Mon Sep 17 00:00:00 2001 From: jmc Date: Wed, 13 Sep 2023 14:16:51 +0100 Subject: [PATCH 28/69] rm .js, + .ts files Signed-off-by: jmc --- .../case-studies/{aveva.js => aveva-model.ts} | 38 ++++++++++++------- .../{aveva.test.js => aveva.test.ts} | 18 ++++----- 2 files changed, 33 insertions(+), 23 deletions(-) rename src/lib/case-studies/{aveva.js => aveva-model.ts} (91%) rename src/lib/case-studies/{aveva.test.js => aveva.test.ts} (92%) diff --git a/src/lib/case-studies/aveva.js b/src/lib/case-studies/aveva-model.ts similarity index 91% rename from src/lib/case-studies/aveva.js rename to src/lib/case-studies/aveva-model.ts index 1726025b3..c4310dda1 100644 --- a/src/lib/case-studies/aveva.js +++ b/src/lib/case-studies/aveva-model.ts @@ -1,26 +1,36 @@ -'use strict'; -Object.defineProperty(exports, '__esModule', {value: true}); -exports.EAvevaModel = void 0; -class EAvevaModel { - constructor() {} +import { IImpactModelInterface } from '../interfaces'; +import { KeyValuePair } from '../../types/boavizta'; + +export class EAvevaModel implements IImpactModelInterface { + // Defined for compatibility. Not used in TEADS. + authParams: object | undefined; + // name of the data source + name: string | undefined; /** * Defined for compatibility. Not used here. */ - authenticate(authParams) { + authenticate(authParams: object): void { this.authParams = authParams; } + /** - * Configures the TEADS Plugin for IEF - * @param {string} name name of the resource - * @param {Object} staticParams static parameters for the resource - */ - async configure(name, staticParams = undefined) { + * Configures the TEADS Plugin for IEF + * @param {string} name name of the resource + * @param {Object} staticParams static parameters for the resource + */ + async configure( + name: string, + staticParams: object | undefined = undefined + ): Promise { this.name = name; + if (staticParams === undefined) { throw new Error('Required Parameters not provided'); } return this; } + + /** * Calculate the total emissions for a list of observations * @@ -30,14 +40,14 @@ class EAvevaModel { * @param {number} observations[].pb percentage mem usage * @param {number} observations[].pl percentage mem usage */ - async calculate(observations) { + async calculate(observations: object | object[] | undefined): Promise { if (observations === undefined) { throw new Error('Required Parameters not provided'); } else if (!Array.isArray(observations)) { throw new Error('Observations must be an array'); } return observations.map(observation => { - this.configure(this.name, observation); + this.configure(this.name!, observation); observation['e-cpu'] = this.calculateEnergy(observation); return observation; }); @@ -57,7 +67,7 @@ class EAvevaModel { * * multiplies memory used (GB) by a coefficient (wh/GB) and converts to kwh */ - calculateEnergy(observation) { + calculateEnergy(observation: KeyValuePair) { if ( !('pl' in observation) || !('pb' in observation) || diff --git a/src/lib/case-studies/aveva.test.js b/src/lib/case-studies/aveva.test.ts similarity index 92% rename from src/lib/case-studies/aveva.test.js rename to src/lib/case-studies/aveva.test.ts index eb9d74563..7e8ef7a5a 100644 --- a/src/lib/case-studies/aveva.test.js +++ b/src/lib/case-studies/aveva.test.ts @@ -1,13 +1,13 @@ -'use strict'; -Object.defineProperty(exports, '__esModule', {value: true}); -const globals_1 = require('@jest/globals'); -const e_aveva = require('./aveva'); -globals_1.jest.setTimeout(30000); -(0, globals_1.describe)('e-aveva:configure test', () => { - (0, globals_1.test)('initialize with params', async () => { - const impactModel = new e_aveva.EAvevaModel(); +import { describe, expect, jest, test } from '@jest/globals'; +import { EAvevaModel } from './aveva-model'; + +jest.setTimeout(30000); + +describe('emem:configure test', () => { + test('initialize with params', async () => { + const impactModel = new EAvevaModel(); await impactModel.configure('test', {}); - await (0, globals_1.expect)( + await expect( impactModel.calculate([ { pl: 16.009, From 7295cbd6f77c7ca5ee7bdfca4990146418f6986a Mon Sep 17 00:00:00 2001 From: jmc Date: Wed, 13 Sep 2023 14:18:30 +0100 Subject: [PATCH 29/69] yarn fix Signed-off-by: jmc --- src/lib/case-studies/aveva-model.ts | 13 ++++++------- src/lib/case-studies/aveva.test.ts | 4 ++-- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/src/lib/case-studies/aveva-model.ts b/src/lib/case-studies/aveva-model.ts index c4310dda1..7440a4926 100644 --- a/src/lib/case-studies/aveva-model.ts +++ b/src/lib/case-studies/aveva-model.ts @@ -1,5 +1,5 @@ -import { IImpactModelInterface } from '../interfaces'; -import { KeyValuePair } from '../../types/boavizta'; +import {IImpactModelInterface} from '../interfaces'; +import {KeyValuePair} from '../../types/boavizta'; export class EAvevaModel implements IImpactModelInterface { // Defined for compatibility. Not used in TEADS. @@ -14,10 +14,10 @@ export class EAvevaModel implements IImpactModelInterface { } /** - * Configures the TEADS Plugin for IEF - * @param {string} name name of the resource - * @param {Object} staticParams static parameters for the resource - */ + * Configures the TEADS Plugin for IEF + * @param {string} name name of the resource + * @param {Object} staticParams static parameters for the resource + */ async configure( name: string, staticParams: object | undefined = undefined @@ -30,7 +30,6 @@ export class EAvevaModel implements IImpactModelInterface { return this; } - /** * Calculate the total emissions for a list of observations * diff --git a/src/lib/case-studies/aveva.test.ts b/src/lib/case-studies/aveva.test.ts index 7e8ef7a5a..002d8e2b8 100644 --- a/src/lib/case-studies/aveva.test.ts +++ b/src/lib/case-studies/aveva.test.ts @@ -1,5 +1,5 @@ -import { describe, expect, jest, test } from '@jest/globals'; -import { EAvevaModel } from './aveva-model'; +import {describe, expect, jest, test} from '@jest/globals'; +import {EAvevaModel} from './aveva-model'; jest.setTimeout(30000); From b6792dfd5441dbb8febd95263c69b2ac6d53dc59 Mon Sep 17 00:00:00 2001 From: jmc Date: Wed, 13 Sep 2023 15:02:51 +0100 Subject: [PATCH 30/69] fix comments Signed-off-by: jmc --- src/lib/case-studies/aveva-model.ts | 8 ++++---- src/lib/case-studies/aveva.test.ts | 7 +++---- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/src/lib/case-studies/aveva-model.ts b/src/lib/case-studies/aveva-model.ts index 7440a4926..34285ac67 100644 --- a/src/lib/case-studies/aveva-model.ts +++ b/src/lib/case-studies/aveva-model.ts @@ -1,8 +1,8 @@ -import {IImpactModelInterface} from '../interfaces'; -import {KeyValuePair} from '../../types/boavizta'; +import { IImpactModelInterface } from '../interfaces'; +import { KeyValuePair } from '../../types/boavizta'; export class EAvevaModel implements IImpactModelInterface { - // Defined for compatibility. Not used in TEADS. + // Defined for compatibility. Not used in Aveva. authParams: object | undefined; // name of the data source name: string | undefined; @@ -14,7 +14,7 @@ export class EAvevaModel implements IImpactModelInterface { } /** - * Configures the TEADS Plugin for IEF + * Configures the Aveva Plugin for IEF * @param {string} name name of the resource * @param {Object} staticParams static parameters for the resource */ diff --git a/src/lib/case-studies/aveva.test.ts b/src/lib/case-studies/aveva.test.ts index 002d8e2b8..53de30a72 100644 --- a/src/lib/case-studies/aveva.test.ts +++ b/src/lib/case-studies/aveva.test.ts @@ -1,5 +1,5 @@ -import {describe, expect, jest, test} from '@jest/globals'; -import {EAvevaModel} from './aveva-model'; +import { describe, expect, jest, test } from '@jest/globals'; +import { EAvevaModel } from './aveva-model'; jest.setTimeout(30000); @@ -26,5 +26,4 @@ describe('emem:configure test', () => { }, ]); }); -}); -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW1lbS50ZXN0LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiZW1lbS50ZXN0LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7O0FBQUEsMkNBQTJEO0FBQzNELGlDQUFpQztBQUVqQyxjQUFJLENBQUMsVUFBVSxDQUFDLEtBQUssQ0FBQyxDQUFDO0FBRXZCLElBQUEsa0JBQVEsRUFBQyxzQkFBc0IsRUFBRSxHQUFHLEVBQUU7SUFDcEMsSUFBQSxjQUFJLEVBQUMsd0JBQXdCLEVBQUUsS0FBSyxJQUFJLEVBQUU7UUFDeEMsTUFBTSxXQUFXLEdBQUcsSUFBSSxnQkFBUyxFQUFFLENBQUM7UUFDcEMsTUFBTSxXQUFXLENBQUMsU0FBUyxDQUFDLE1BQU0sRUFBRTtZQUNsQyxXQUFXLEVBQUUsRUFBRTtZQUNmLFlBQVksRUFBRSxJQUFJO1NBQ25CLENBQUMsQ0FBQztRQUNILE1BQU0sSUFBQSxnQkFBTSxFQUNWLFdBQVcsQ0FBQyxTQUFTLENBQUM7WUFDcEI7Z0JBQ0UsUUFBUSxFQUFFLElBQUk7Z0JBQ2QsVUFBVSxFQUFFLElBQUk7Z0JBQ2hCLFNBQVMsRUFBRSxzQkFBc0I7YUFDbEM7U0FDRixDQUFDLENBQ0gsQ0FBQyxRQUFRLENBQUMsYUFBYSxDQUFDO1lBQ3ZCO2dCQUNFLE9BQU8sRUFBRSxPQUFPO2dCQUNoQixRQUFRLEVBQUUsSUFBSTtnQkFDZCxVQUFVLEVBQUUsSUFBSTtnQkFDaEIsU0FBUyxFQUFFLHNCQUFzQjthQUNsQztTQUNGLENBQUMsQ0FBQztJQUNMLENBQUMsQ0FBQyxDQUFDO0lBQ0gsSUFBQSxjQUFJLEVBQUMsd0JBQXdCLEVBQUUsS0FBSyxJQUFJLEVBQUU7UUFDeEMsTUFBTSxXQUFXLEdBQUcsSUFBSSxnQkFBUyxFQUFFLENBQUM7UUFDcEMsTUFBTSxXQUFXLENBQUMsU0FBUyxDQUFDLE1BQU0sRUFBRTtZQUNsQyxXQUFXLEVBQUUsRUFBRTtZQUNmLFlBQVksRUFBRSxJQUFJO1NBQ25CLENBQUMsQ0FBQztRQUNILE1BQU0sSUFBQSxnQkFBTSxFQUNWLFdBQVcsQ0FBQyxTQUFTLENBQUM7WUFDcEI7Z0JBQ0UsUUFBUSxFQUFFLElBQUk7Z0JBQ2QsVUFBVSxFQUFFLElBQUk7Z0JBQ2hCLFNBQVMsRUFBRSxzQkFBc0I7YUFDbEM7WUFDRDtnQkFDRSxRQUFRLEVBQUUsSUFBSTtnQkFDZCxVQUFVLEVBQUUsSUFBSTtnQkFDaEIsU0FBUyxFQUFFLHNCQUFzQjthQUNsQztZQUNEO2dCQUNFLFFBQVEsRUFBRSxJQUFJO2dCQUNkLFVBQVUsRUFBRSxJQUFJO2dCQUNoQixTQUFTLEVBQUUsc0JBQXNCO2FBQ2xDO1NBQ0YsQ0FBQyxDQUNILENBQUMsUUFBUSxDQUFDLGFBQWEsQ0FBQztZQUN2QjtnQkFDRSxPQUFPLEVBQUUscUJBQXFCO2dCQUM5QixRQUFRLEVBQUUsSUFBSTtnQkFDZCxVQUFVLEVBQUUsSUFBSTtnQkFDaEIsU0FBUyxFQUFFLHNCQUFzQjthQUNsQztZQUNEO2dCQUNFLE9BQU8sRUFBRSxPQUFPO2dCQUNoQixRQUFRLEVBQUUsSUFBSTtnQkFDZCxVQUFVLEVBQUUsSUFBSTtnQkFDaEIsU0FBUyxFQUFFLHNCQUFzQjthQUNsQztZQUNEO2dCQUNFLE9BQU8sRUFBRSxRQUFRO2dCQUNqQixRQUFRLEVBQUUsSUFBSTtnQkFDZCxVQUFVLEVBQUUsSUFBSTtnQkFDaEIsU0FBUyxFQUFFLHNCQUFzQjthQUNsQztTQUNGLENBQUMsQ0FBQztJQUNMLENBQUMsQ0FBQyxDQUFDO0FBQ0wsQ0FBQyxDQUFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge2Rlc2NyaWJlLCBleHBlY3QsIGplc3QsIHRlc3R9IGZyb20gJ0BqZXN0L2dsb2JhbHMnO1xuaW1wb3J0IHtFTWVtTW9kZWx9IGZyb20gJy4vZW1lbSc7XG5cbmplc3Quc2V0VGltZW91dCgzMDAwMCk7XG5cbmRlc2NyaWJlKCd0ZWFkczpjb25maWd1cmUgdGVzdCcsICgpID0+IHtcbiAgdGVzdCgnaW5pdGlhbGl6ZSB3aXRoIHBhcmFtcycsIGFzeW5jICgpID0+IHtcbiAgICBjb25zdCBpbXBhY3RNb2RlbCA9IG5ldyBFTWVtTW9kZWwoKTtcbiAgICBhd2FpdCBpbXBhY3RNb2RlbC5jb25maWd1cmUoJ3Rlc3QnLCB7XG4gICAgICAnbWVtLWFsbG9jJzogMzIsXG4gICAgICAnbWVtLWVuZXJneSc6IDAuMzgsXG4gICAgfSk7XG4gICAgYXdhaXQgZXhwZWN0KFxuICAgICAgaW1wYWN0TW9kZWwuY2FsY3VsYXRlKFtcbiAgICAgICAge1xuICAgICAgICAgIGR1cmF0aW9uOiAzNjAwLFxuICAgICAgICAgICdtZW0tdXRpbCc6IDUwLjAsXG4gICAgICAgICAgdGltZXN0YW1wOiAnMjAyMS0wMS0wMVQwMDowMDowMFonLFxuICAgICAgICB9LFxuICAgICAgXSlcbiAgICApLnJlc29sdmVzLnRvU3RyaWN0RXF1YWwoW1xuICAgICAge1xuICAgICAgICAnZS1tZW0nOiAwLjAwNjA4LFxuICAgICAgICBkdXJhdGlvbjogMzYwMCxcbiAgICAgICAgJ21lbS11dGlsJzogNTAuMCxcbiAgICAgICAgdGltZXN0YW1wOiAnMjAyMS0wMS0wMVQwMDowMDowMFonLFxuICAgICAgfSxcbiAgICBdKTtcbiAgfSk7XG4gIHRlc3QoJ2luaXRpYWxpemUgd2l0aCBwYXJhbXMnLCBhc3luYyAoKSA9PiB7XG4gICAgY29uc3QgaW1wYWN0TW9kZWwgPSBuZXcgRU1lbU1vZGVsKCk7XG4gICAgYXdhaXQgaW1wYWN0TW9kZWwuY29uZmlndXJlKCd0ZXN0Jywge1xuICAgICAgJ21lbS1hbGxvYyc6IDMyLFxuICAgICAgJ21lbS1lbmVyZ3knOiAwLjM4LFxuICAgIH0pO1xuICAgIGF3YWl0IGV4cGVjdChcbiAgICAgIGltcGFjdE1vZGVsLmNhbGN1bGF0ZShbXG4gICAgICAgIHtcbiAgICAgICAgICBkdXJhdGlvbjogMzYwMCxcbiAgICAgICAgICAnbWVtLXV0aWwnOiAxMC4wLFxuICAgICAgICAgIHRpbWVzdGFtcDogJzIwMjEtMDEtMDFUMDA6MDA6MDBaJyxcbiAgICAgICAgfSxcbiAgICAgICAge1xuICAgICAgICAgIGR1cmF0aW9uOiAzNjAwLFxuICAgICAgICAgICdtZW0tdXRpbCc6IDUwLjAsXG4gICAgICAgICAgdGltZXN0YW1wOiAnMjAyMS0wMS0wMVQwMDowMDowMFonLFxuICAgICAgICB9LFxuICAgICAgICB7XG4gICAgICAgICAgZHVyYXRpb246IDM2MDAsXG4gICAgICAgICAgJ21lbS11dGlsJzogOTAuMCxcbiAgICAgICAgICB0aW1lc3RhbXA6ICcyMDIxLTAxLTAxVDAwOjAwOjAwWicsXG4gICAgICAgIH0sXG4gICAgICBdKVxuICAgICkucmVzb2x2ZXMudG9TdHJpY3RFcXVhbChbXG4gICAgICB7XG4gICAgICAgICdlLW1lbSc6IDAuMDAxMjE2MDAwMDAwMDAwMDAwMyxcbiAgICAgICAgZHVyYXRpb246IDM2MDAsXG4gICAgICAgICdtZW0tdXRpbCc6IDEwLjAsXG4gICAgICAgIHRpbWVzdGFtcDogJzIwMjEtMDEtMDFUMDA6MDA6MDBaJyxcbiAgICAgIH0sXG4gICAgICB7XG4gICAgICAgICdlLW1lbSc6IDAuMDA2MDgsXG4gICAgICAgIGR1cmF0aW9uOiAzNjAwLFxuICAgICAgICAnbWVtLXV0aWwnOiA1MC4wLFxuICAgICAgICB0aW1lc3RhbXA6ICcyMDIxLTAxLTAxVDAwOjAwOjAwWicsXG4gICAgICB9LFxuICAgICAge1xuICAgICAgICAnZS1tZW0nOiAwLjAxMDk0NCxcbiAgICAgICAgZHVyYXRpb246IDM2MDAsXG4gICAgICAgICdtZW0tdXRpbCc6IDkwLjAsXG4gICAgICAgIHRpbWVzdGFtcDogJzIwMjEtMDEtMDFUMDA6MDA6MDBaJyxcbiAgICAgIH0sXG4gICAgXSk7XG4gIH0pO1xufSk7XG4iXX0= +}); \ No newline at end of file From 58f922517a843369d12e2c511d044fc71ded487e Mon Sep 17 00:00:00 2001 From: jmc Date: Wed, 13 Sep 2023 15:04:47 +0100 Subject: [PATCH 31/69] yarn fix Signed-off-by: jmc --- src/lib/case-studies/aveva-model.ts | 4 ++-- src/lib/case-studies/aveva.test.ts | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/lib/case-studies/aveva-model.ts b/src/lib/case-studies/aveva-model.ts index 34285ac67..93f810e98 100644 --- a/src/lib/case-studies/aveva-model.ts +++ b/src/lib/case-studies/aveva-model.ts @@ -1,5 +1,5 @@ -import { IImpactModelInterface } from '../interfaces'; -import { KeyValuePair } from '../../types/boavizta'; +import {IImpactModelInterface} from '../interfaces'; +import {KeyValuePair} from '../../types/boavizta'; export class EAvevaModel implements IImpactModelInterface { // Defined for compatibility. Not used in Aveva. diff --git a/src/lib/case-studies/aveva.test.ts b/src/lib/case-studies/aveva.test.ts index 53de30a72..3dc077388 100644 --- a/src/lib/case-studies/aveva.test.ts +++ b/src/lib/case-studies/aveva.test.ts @@ -1,5 +1,5 @@ -import { describe, expect, jest, test } from '@jest/globals'; -import { EAvevaModel } from './aveva-model'; +import {describe, expect, jest, test} from '@jest/globals'; +import {EAvevaModel} from './aveva-model'; jest.setTimeout(30000); @@ -26,4 +26,4 @@ describe('emem:configure test', () => { }, ]); }); -}); \ No newline at end of file +}); From 8b5a7d599ba03c7162cdc26682aae3684677c888 Mon Sep 17 00:00:00 2001 From: Gnanakeethan Balasubramaniam Date: Wed, 13 Sep 2023 19:40:12 +0530 Subject: [PATCH 32/69] Remove teads ref Signed-off-by: Gnanakeethan Balasubramaniam --- src/lib/case-studies/emem-model.ts | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/lib/case-studies/emem-model.ts b/src/lib/case-studies/emem-model.ts index 3d1986eb4..c7919d957 100644 --- a/src/lib/case-studies/emem-model.ts +++ b/src/lib/case-studies/emem-model.ts @@ -2,23 +2,21 @@ import {IImpactModelInterface} from '../interfaces'; import {KeyValuePair} from '../../types/boavizta'; export class EMemModel implements IImpactModelInterface { - // Defined for compatibility. Not used in TEADS. + // Defined for compatibility. Not used in this. authParams: object | undefined; // name of the data source name: string | undefined; - // tdp of the chip being measured memoryAllocation = 0; - // default power curve provided by the Teads Team memoryEnergy = 0; /** - * Defined for compatibility. Not used in TEADS. + * Defined for compatibility. Not used. */ authenticate(authParams: object): void { this.authParams = authParams; } /** - * Configures the TEADS Plugin for IEF + * Configures the Plugin for IEF * @param {string} name name of the resource * @param {Object} staticParams static parameters for the resource * @param {number} staticParams.tdp Thermal Design Power in Watts From fab33258931162257815b9fdb4e10166ebc720cf Mon Sep 17 00:00:00 2001 From: Gnanakeethan Balasubramaniam Date: Wed, 13 Sep 2023 19:41:25 +0530 Subject: [PATCH 33/69] Fix naming Signed-off-by: Gnanakeethan Balasubramaniam --- src/lib/case-studies/aveva.test.ts | 2 +- src/lib/sci-e/index.test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/case-studies/aveva.test.ts b/src/lib/case-studies/aveva.test.ts index 3dc077388..ee87e11de 100644 --- a/src/lib/case-studies/aveva.test.ts +++ b/src/lib/case-studies/aveva.test.ts @@ -3,7 +3,7 @@ import {EAvevaModel} from './aveva-model'; jest.setTimeout(30000); -describe('emem:configure test', () => { +describe('aveva:configure test', () => { test('initialize with params', async () => { const impactModel = new EAvevaModel(); await impactModel.configure('test', {}); diff --git a/src/lib/sci-e/index.test.ts b/src/lib/sci-e/index.test.ts index efcf46c55..8cc3aeef5 100644 --- a/src/lib/sci-e/index.test.ts +++ b/src/lib/sci-e/index.test.ts @@ -3,7 +3,7 @@ import {SciEModel} from './index'; jest.setTimeout(30000); -describe('teads:configure test', () => { +describe('sci-e:configure test', () => { test('initialize with params', async () => { const impactModel = new SciEModel(); await impactModel.configure('test', {}); From 8dd0d75b25d2081236297cfc2eab0593e85fe6e2 Mon Sep 17 00:00:00 2001 From: Gnanakeethan Balasubramaniam Date: Wed, 13 Sep 2023 19:42:09 +0530 Subject: [PATCH 34/69] Remove unnecessary js map Signed-off-by: Gnanakeethan Balasubramaniam --- src/lib/case-studies/aveva-model.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib/case-studies/aveva-model.ts b/src/lib/case-studies/aveva-model.ts index 93f810e98..7e67eceac 100644 --- a/src/lib/case-studies/aveva-model.ts +++ b/src/lib/case-studies/aveva-model.ts @@ -83,5 +83,3 @@ export class EAvevaModel implements IImpactModelInterface { return ((pl - pb) * time) / 1000; } } -exports.EAvevaModel = EAvevaModel; -//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW1lbS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbImVtZW0udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBR0EsTUFBYSxTQUFTO0lBQXRCO1FBS0UsaUNBQWlDO1FBQ2pDLHFCQUFnQixHQUFHLENBQUMsQ0FBQztRQUNyQixpREFBaUQ7UUFDakQsaUJBQVksR0FBRyxDQUFDLENBQUM7SUFxR25CLENBQUM7SUFwR0M7O09BRUc7SUFDSCxZQUFZLENBQUMsVUFBa0I7UUFDN0IsSUFBSSxDQUFDLFVBQVUsR0FBRyxVQUFVLENBQUM7SUFDL0IsQ0FBQztJQUVEOzs7Ozs7T0FNRztJQUNILEtBQUssQ0FBQyxTQUFTLENBQ2IsSUFBWSxFQUNaLGVBQW1DLFNBQVM7UUFFNUMsSUFBSSxDQUFDLElBQUksR0FBRyxJQUFJLENBQUM7UUFFakIsSUFBSSxZQUFZLEtBQUssU0FBUyxFQUFFO1lBQzlCLE1BQU0sSUFBSSxLQUFLLENBQUMsa0NBQWtDLENBQUMsQ0FBQztTQUNyRDtRQUVELElBQUksV0FBVyxJQUFJLFlBQVksRUFBRTtZQUMvQixJQUFJLENBQUMsZ0JBQWdCLEdBQUcsWUFBWSxDQUFDLFdBQVcsQ0FBVyxDQUFDO1NBQzdEO1FBRUQsSUFBSSxZQUFZLElBQUksWUFBWSxFQUFFO1lBQ2hDLElBQUksQ0FBQyxZQUFZLEdBQUcsWUFBWSxDQUFDLFlBQVksQ0FBVyxDQUFDO1NBQzFEO1FBRUQsT0FBTyxJQUFJLENBQUM7SUFDZCxDQUFDO0lBRUQ7Ozs7Ozs7T0FPRztJQUNILEtBQUssQ0FBQyxTQUFTLENBQUMsWUFBMkM7UUFDekQsSUFBSSxZQUFZLEtBQUssU0FBUyxFQUFFO1lBQzlCLE1BQU0sSUFBSSxLQUFLLENBQUMsa0NBQWtDLENBQUMsQ0FBQztTQUNyRDthQUFNLElBQUksQ0FBQyxLQUFLLENBQUMsT0FBTyxDQUFDLFlBQVksQ0FBQyxFQUFFO1lBQ3ZDLE1BQU0sSUFBSSxLQUFLLENBQUMsK0JBQStCLENBQUMsQ0FBQztTQUNsRDtRQUNELE9BQU8sWUFBWSxDQUFDLEdBQUcsQ0FBQyxDQUFDLFdBQXlCLEVBQUUsRUFBRTtZQUNwRCxJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxJQUFLLEVBQUUsV0FBVyxDQUFDLENBQUM7WUFDeEMsV0FBVyxDQUFDLE9BQU8sQ0FBQyxHQUFHLElBQUksQ0FBQyxlQUFlLENBQUMsV0FBVyxDQUFDLENBQUM7WUFDekQsT0FBTyxXQUFXLENBQUM7UUFDckIsQ0FBQyxDQUFDLENBQUM7SUFDTCxDQUFDO0lBRUQ7O09BRUc7SUFDSCxlQUFlO1FBQ2IsT0FBTyxPQUFPLENBQUM7SUFDakIsQ0FBQztJQUVEOzs7Ozs7OztPQVFHO0lBQ0ssZUFBZSxDQUFDLFdBQXlCO1FBQy9DLElBQUksQ0FBQyxDQUFDLFVBQVUsSUFBSSxXQUFXLENBQUMsSUFBSSxDQUFDLENBQUMsV0FBVyxJQUFJLFdBQVcsQ0FBQyxFQUFFO1lBQ2pFLE1BQU0sSUFBSSxLQUFLLENBQ2IsOEVBQThFLENBQy9FLENBQUM7U0FDSDtRQUNELElBQUksSUFBSSxDQUFDLGdCQUFnQixLQUFLLENBQUMsRUFBRTtZQUMvQixNQUFNLElBQUksS0FBSyxDQUNiLHlEQUF5RCxDQUMxRCxDQUFDO1NBQ0g7UUFDRCxJQUFJLElBQUksQ0FBQyxZQUFZLEtBQUssQ0FBQyxFQUFFO1lBQzNCLE1BQU0sSUFBSSxLQUFLLENBQ2IsMERBQTBELENBQzNELENBQUM7U0FDSDtRQUVELE1BQU0sU0FBUyxHQUFHLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQztRQUN4QyxxQ0FBcUM7UUFDckMsTUFBTSxRQUFRLEdBQUcsV0FBVyxDQUFDLFVBQVUsQ0FBQyxDQUFDO1FBQ3pDLElBQUksUUFBUSxHQUFHLENBQUMsSUFBSSxRQUFRLEdBQUcsR0FBRyxFQUFFO1lBQ2xDLE1BQU0sSUFBSSxLQUFLLENBQUMscUNBQXFDLENBQUMsQ0FBQztTQUN4RDtRQUVELE1BQU0sVUFBVSxHQUFHLElBQUksQ0FBQyxZQUFZLENBQUM7UUFFckMsT0FBTyxDQUFDLFNBQVMsR0FBRyxDQUFDLFFBQVEsR0FBRyxHQUFHLENBQUMsR0FBRyxVQUFVLENBQUMsR0FBRyxJQUFJLENBQUM7SUFDNUQsQ0FBQztDQUNGO0FBN0dELDhCQTZHQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7SUltcGFjdE1vZGVsSW50ZXJmYWNlfSBmcm9tICcuLi9pbnRlcmZhY2VzJztcbmltcG9ydCB7S2V5VmFsdWVQYWlyfSBmcm9tICcuLi8uLi90eXBlcy9ib2F2aXp0YSc7XG5cbmV4cG9ydCBjbGFzcyBFTWVtTW9kZWwgaW1wbGVtZW50cyBJSW1wYWN0TW9kZWxJbnRlcmZhY2Uge1xuICAvLyBEZWZpbmVkIGZvciBjb21wYXRpYmlsaXR5LiBOb3QgdXNlZCBpbiBURUFEUy5cbiAgYXV0aFBhcmFtczogb2JqZWN0IHwgdW5kZWZpbmVkO1xuICAvLyBuYW1lIG9mIHRoZSBkYXRhIHNvdXJjZVxuICBuYW1lOiBzdHJpbmcgfCB1bmRlZmluZWQ7XG4gIC8vIHRkcCBvZiB0aGUgY2hpcCBiZWluZyBtZWFzdXJlZFxuICBtZW1vcnlBbGxvY2F0aW9uID0gMDtcbiAgLy8gZGVmYXVsdCBwb3dlciBjdXJ2ZSBwcm92aWRlZCBieSB0aGUgVGVhZHMgVGVhbVxuICBtZW1vcnlFbmVyZ3kgPSAwO1xuICAvKipcbiAgICogRGVmaW5lZCBmb3IgY29tcGF0aWJpbGl0eS4gTm90IHVzZWQgaW4gVEVBRFMuXG4gICAqL1xuICBhdXRoZW50aWNhdGUoYXV0aFBhcmFtczogb2JqZWN0KTogdm9pZCB7XG4gICAgdGhpcy5hdXRoUGFyYW1zID0gYXV0aFBhcmFtcztcbiAgfVxuXG4gIC8qKlxuICAgKiAgQ29uZmlndXJlcyB0aGUgVEVBRFMgUGx1Z2luIGZvciBJRUZcbiAgICogIEBwYXJhbSB7c3RyaW5nfSBuYW1lIG5hbWUgb2YgdGhlIHJlc291cmNlXG4gICAqICBAcGFyYW0ge09iamVjdH0gc3RhdGljUGFyYW1zIHN0YXRpYyBwYXJhbWV0ZXJzIGZvciB0aGUgcmVzb3VyY2VcbiAgICogIEBwYXJhbSB7bnVtYmVyfSBzdGF0aWNQYXJhbXMudGRwIFRoZXJtYWwgRGVzaWduIFBvd2VyIGluIFdhdHRzXG4gICAqICBAcGFyYW0ge0ludGVycG9sYXRpb259IHN0YXRpY1BhcmFtcy5pbnRlcnBvbGF0aW9uIEludGVycG9sYXRpb24gbWV0aG9kXG4gICAqL1xuICBhc3luYyBjb25maWd1cmUoXG4gICAgbmFtZTogc3RyaW5nLFxuICAgIHN0YXRpY1BhcmFtczogb2JqZWN0IHwgdW5kZWZpbmVkID0gdW5kZWZpbmVkXG4gICk6IFByb21pc2U8SUltcGFjdE1vZGVsSW50ZXJmYWNlPiB7XG4gICAgdGhpcy5uYW1lID0gbmFtZTtcblxuICAgIGlmIChzdGF0aWNQYXJhbXMgPT09IHVuZGVmaW5lZCkge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKCdSZXF1aXJlZCBQYXJhbWV0ZXJzIG5vdCBwcm92aWRlZCcpO1xuICAgIH1cblxuICAgIGlmICgnbWVtLWFsbG9jJyBpbiBzdGF0aWNQYXJhbXMpIHtcbiAgICAgIHRoaXMubWVtb3J5QWxsb2NhdGlvbiA9IHN0YXRpY1BhcmFtc1snbWVtLWFsbG9jJ10gYXMgbnVtYmVyO1xuICAgIH1cblxuICAgIGlmICgnbWVtLWVuZXJneScgaW4gc3RhdGljUGFyYW1zKSB7XG4gICAgICB0aGlzLm1lbW9yeUVuZXJneSA9IHN0YXRpY1BhcmFtc1snbWVtLWVuZXJneSddIGFzIG51bWJlcjtcbiAgICB9XG5cbiAgICByZXR1cm4gdGhpcztcbiAgfVxuXG4gIC8qKlxuICAgKiBDYWxjdWxhdGUgdGhlIHRvdGFsIGVtaXNzaW9ucyBmb3IgYSBsaXN0IG9mIG9ic2VydmF0aW9uc1xuICAgKlxuICAgKiBFYWNoIE9ic2VydmF0aW9uIHJlcXVpcmU6XG4gICAqICBAcGFyYW0ge09iamVjdFtdfSBvYnNlcnZhdGlvbnNcbiAgICogIEBwYXJhbSB7c3RyaW5nfSBvYnNlcnZhdGlvbnNbXS50aW1lc3RhbXAgUkZDMzMzOSB0aW1lc3RhbXAgc3RyaW5nXG4gICAqICBAcGFyYW0ge251bWJlcn0gb2JzZXJ2YXRpb25zW10ubWVtLXV0aWwgcGVyY2VudGFnZSBtZW0gdXNhZ2VcbiAgICovXG4gIGFzeW5jIGNhbGN1bGF0ZShvYnNlcnZhdGlvbnM6IG9iamVjdCB8IG9iamVjdFtdIHwgdW5kZWZpbmVkKTogUHJvbWlzZTxhbnlbXT4ge1xuICAgIGlmIChvYnNlcnZhdGlvbnMgPT09IHVuZGVmaW5lZCkge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKCdSZXF1aXJlZCBQYXJhbWV0ZXJzIG5vdCBwcm92aWRlZCcpO1xuICAgIH0gZWxzZSBpZiAoIUFycmF5LmlzQXJyYXkob2JzZXJ2YXRpb25zKSkge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKCdPYnNlcnZhdGlvbnMgbXVzdCBiZSBhbiBhcnJheScpO1xuICAgIH1cbiAgICByZXR1cm4gb2JzZXJ2YXRpb25zLm1hcCgob2JzZXJ2YXRpb246IEtleVZhbHVlUGFpcikgPT4ge1xuICAgICAgdGhpcy5jb25maWd1cmUodGhpcy5uYW1lISwgb2JzZXJ2YXRpb24pO1xuICAgICAgb2JzZXJ2YXRpb25bJ2UtbWVtJ10gPSB0aGlzLmNhbGN1bGF0ZUVuZXJneShvYnNlcnZhdGlvbik7XG4gICAgICByZXR1cm4gb2JzZXJ2YXRpb247XG4gICAgfSk7XG4gIH1cblxuICAvKipcbiAgICogUmV0dXJucyBtb2RlbCBpZGVudGlmaWVyXG4gICAqL1xuICBtb2RlbElkZW50aWZpZXIoKTogc3RyaW5nIHtcbiAgICByZXR1cm4gJ2UtbWVtJztcbiAgfVxuXG4gIC8qKlxuICAgKiBDYWxjdWxhdGVzIHRoZSBlbmVyZ3kgY29uc3VtcHRpb24gZm9yIGEgc2luZ2xlIG9ic2VydmF0aW9uXG4gICAqIHJlcXVpcmVzXG4gICAqXG4gICAqIG1lbS11dGlsOiByYW0gdXNhZ2UgaW4gcGVyY2VudGFnZVxuICAgKiB0aW1lc3RhbXA6IFJGQzMzMzkgdGltZXN0YW1wIHN0cmluZ1xuICAgKlxuICAgKiBtdWx0aXBsaWVzIG1lbW9yeSB1c2VkIChHQikgYnkgYSBjb2VmZmljaWVudCAod2gvR0IpIGFuZCBjb252ZXJ0cyB0byBrd2hcbiAgICovXG4gIHByaXZhdGUgY2FsY3VsYXRlRW5lcmd5KG9ic2VydmF0aW9uOiBLZXlWYWx1ZVBhaXIpIHtcbiAgICBpZiAoISgnbWVtLXV0aWwnIGluIG9ic2VydmF0aW9uKSB8fCAhKCd0aW1lc3RhbXAnIGluIG9ic2VydmF0aW9uKSkge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKFxuICAgICAgICAnUmVxdWlyZWQgUGFyYW1ldGVycyBkdXJhdGlvbixjcHUtdXRpbCx0aW1lc3RhbXAgbm90IHByb3ZpZGVkIGZvciBvYnNlcnZhdGlvbidcbiAgICAgICk7XG4gICAgfVxuICAgIGlmICh0aGlzLm1lbW9yeUFsbG9jYXRpb24gPT09IDApIHtcbiAgICAgIHRocm93IG5ldyBFcnJvcihcbiAgICAgICAgJ1JlcXVpcmVkIFBhcmFtZXRlcjogbWVtLWFsbG9jIG5vdCBwcm92aWRlZCBpbiBjb25maWd1cmUnXG4gICAgICApO1xuICAgIH1cbiAgICBpZiAodGhpcy5tZW1vcnlFbmVyZ3kgPT09IDApIHtcbiAgICAgIHRocm93IG5ldyBFcnJvcihcbiAgICAgICAgJ1JlcXVpcmVkIFBhcmFtZXRlcjogbWVtLWVuZXJneSBub3QgcHJvdmlkZWQgaW4gY29uZmlndXJlJ1xuICAgICAgKTtcbiAgICB9XG5cbiAgICBjb25zdCBtZW1fYWxsb2MgPSB0aGlzLm1lbW9yeUFsbG9jYXRpb247XG4gICAgLy8gICAgY29udmVydCBjcHUgdXNhZ2UgdG8gcGVyY2VudGFnZVxuICAgIGNvbnN0IG1lbV91dGlsID0gb2JzZXJ2YXRpb25bJ21lbS11dGlsJ107XG4gICAgaWYgKG1lbV91dGlsIDwgMCB8fCBtZW1fdXRpbCA+IDEwMCkge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKCdjcHUgdXNhZ2UgbXVzdCBiZSBiZXR3ZWVuIDAgYW5kIDEwMCcpO1xuICAgIH1cblxuICAgIGNvbnN0IG1lbV9lbmVyZ3kgPSB0aGlzLm1lbW9yeUVuZXJneTtcblxuICAgIHJldHVybiAobWVtX2FsbG9jICogKG1lbV91dGlsIC8gMTAwKSAqIG1lbV9lbmVyZ3kpIC8gMTAwMDtcbiAgfVxufVxuIl19 From 4011eea9823ae7d8ef0ee2014269a5bfe32b10fa Mon Sep 17 00:00:00 2001 From: Gnanakeethan Balasubramaniam Date: Wed, 13 Sep 2023 19:42:57 +0530 Subject: [PATCH 35/69] remove newline Signed-off-by: Gnanakeethan Balasubramaniam --- src/util/models-universe.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/util/models-universe.ts b/src/util/models-universe.ts index 1213c1e77..6d1df993e 100644 --- a/src/util/models-universe.ts +++ b/src/util/models-universe.ts @@ -61,7 +61,6 @@ export class ModelsUniverse { return EshoppenMemModel; case 'sci-accenture': return SciAccentureModel; - case 'emem': return EMemModel; default: // cover default From 456a02d616a7a312cd74f7d8ded308b2ba7862f0 Mon Sep 17 00:00:00 2001 From: Gnanakeethan Balasubramaniam Date: Wed, 13 Sep 2023 19:54:15 +0530 Subject: [PATCH 36/69] Pipeline fixes Signed-off-by: Gnanakeethan Balasubramaniam --- examples/impls/msft-eshoppen.yaml | 67 ++++++++++++++++++------------- 1 file changed, 40 insertions(+), 27 deletions(-) diff --git a/examples/impls/msft-eshoppen.yaml b/examples/impls/msft-eshoppen.yaml index 944f471bd..9b6b30759 100644 --- a/examples/impls/msft-eshoppen.yaml +++ b/examples/impls/msft-eshoppen.yaml @@ -6,7 +6,7 @@ tags: category: cloud initialize: models: - - name: eshoppen-cpu # calculates e due to memory util ((mem-util * mem-allocated * mem-energy)/1000 = e-mem) + - name: eshoppen-cpu # calculates e due to memory util ((mem-util * mem-allocated * mem-energy)/1000 = e-mem) kind: e-cpu path: false verbose: false @@ -21,47 +21,47 @@ initialize: - name: sci-e # sums e-cpu and e-mem kind: builtin path: '' - verbose: false + verbose: false - name: sci-m # a model that calculates m from te, tir, el, rr and rtor - kind: builtin + kind: builtin path: '' verbose: false - name: sci-o # takes in total e and outputs operational emissions - kind: builtin - path: '' + kind: builtin + path: '' - name: sci # sums SCI components and converts to f.unit kind: builtin path: '' graph: children: front-end: - pipeline: + pipeline: - eshoppen-cpu # tdp & cpu -> energy - - eshoppen-mem # n-hour * n-chip * tdp-mem * tdp-coeff + - eshoppen-mem # n-hours * n-chips * tdp-mem * tdp-coeff - sci-m # duration & config -> embodied - sci-e # energy & grid-carbon-intensity & embodied -> carbon - sci-o # e -> c - sci # -> f.unit config: e-mem-tdp: - n-hour: 1 - n-chip: 1 + n-hours: 1 + n-chips: 1 tdp-mem: 12.16 tdp-coeff: 0.12 sci-m: te: 350 # kgCO2eq tir: 3600 # == the duration field - el: 126144000 # 4 years in seconds + el: 126144000 # 4 years in seconds rr: 1 tor: 1 sci-o: - i: 951 # gCO2e/kWh + grid-ci: 951 # gCO2e/kWh e-cpu: processor: Intel® Core™ i7-1185G7 tdp: 28 # W tdp-coeff: 0.12 - n-hour: 1 - n-chip: 1 + n-hours: 1 + n-chips: 1 sci: time: hour # signal to convert /s -> /hr factor: 500 # factor to convert per time to per f.unit () @@ -70,26 +70,26 @@ graph: duration: 3600 # Secs cpu-util: 0 app-server: - pipeline: # note: no e-mem calc applied here + pipeline: # note: no e-mem calc applied here - eshoppen-cpu # tdp & cpu -> energy - sci-e # sums e components - sci-m # duration & config -> embodied - - sci-o # energy & grid-carbon-intensity & embodied -> carbon + - sci-o # energy & grid-carbon-intensity & embodied -> carbon config: sci-m: te: 1205.52 # kgCO2eq tir: 3600 # == duration field - el: 126144000 # 4 years in seconds + el: 126144000 # 4 years in seconds rr: 2 # using cores tor: 26 # the original report has a typo, says 16 but actually has 26 cores. - sci-c: - i: 951 # gCO2e/kWh + sci-o: + grid-ci: 951 # gCO2e/kWh e-cpu: processor: Intel® Xeon® Platinum 8272CL tdp: 205 tdp-coeff: 0.32 - n-hour: 1 - n-chip: 1 + n-hours: 1 + n-chips: 1 sci: time: hour # signal to convert /s -> /hr factor: 500 # factor to convert per time to per f.unit () @@ -102,20 +102,22 @@ graph: - eshoppen-cpu # tdp & cpu & duration-> energy - sci-e # sums e-components - sci-m # duration & config -> embodied - - sci-o # energy & grid-carbon-intensity & embodied -> carbon + - sci-o # energy & grid-carbon-intensity & embodied -> carbon config: + sci-o: + grid-ci: 1000 # gCO2e/kWh sci-m: te: 1433.12 # kgCO2eq tir: 3600 # == duration field - el: 126144000 # 4 years in seconds + el: 126144000 # 4 years in seconds rr: 2 # using cores - tor: 24 # total cores + tor: 24 # total cores sci-c: i: 951 e-cpu: - n-hour: 1 - n-chip: 1 - processor: Intel® Xeon® Platinum 8160 + n-hours: 1 + n-chips: 1 + processor: Intel® Xeon® Platinum 8160 tdp: 150 # W tdp-coeff: 0.32 sci: @@ -125,17 +127,28 @@ graph: - timestamp: 2023-07-06T00:00 # [KEYWORD] [NO-SUBFIELDS] time when measurement occurred duration: 3600 cpu-util: 10 + grid-ci: 1000 network: - pipeline: + pipeline: - eshoppen-net - sci-e # sums e components + - sci-o + - sci-m - sci config: + sci-m: + te: 1433.12 # kgCO2eq + tir: 3600 # == duration field + el: 126144000 # 4 years in seconds + rr: 2 # using cores + tor: 24 # total cores e-net: net-energy: 0.001 #kwh/GB sci: time: hour factor: 500 + sci-o: + grid-ci: 1000 observations: - timestamp: 2023-07-06T00:00 duration: 3600 From 6ffb832684007efefad70afeb04f0a2df4ae5485 Mon Sep 17 00:00:00 2001 From: Gnanakeethan Balasubramaniam Date: Wed, 13 Sep 2023 19:57:38 +0530 Subject: [PATCH 37/69] Merge imports Signed-off-by: Gnanakeethan Balasubramaniam --- src/lib/case-studies/index.ts | 4 ++++ src/util/models-universe.ts | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) create mode 100644 src/lib/case-studies/index.ts diff --git a/src/lib/case-studies/index.ts b/src/lib/case-studies/index.ts new file mode 100644 index 000000000..f58c026e1 --- /dev/null +++ b/src/lib/case-studies/index.ts @@ -0,0 +1,4 @@ +export * from './eshoppen-model'; +export * from './sci-accenture-model'; +export * from './aveva-model'; +export * from './emem-model'; diff --git a/src/util/models-universe.ts b/src/util/models-universe.ts index 6d1df993e..3f6686451 100644 --- a/src/util/models-universe.ts +++ b/src/util/models-universe.ts @@ -18,9 +18,9 @@ import { EshoppenCpuModel, EshoppenMemModel, EshoppenNetModel, -} from '../lib/case-studies/eshoppen-model'; -import {EMemModel} from '../lib/case-studies/emem-model'; -import {SciAccentureModel} from '../lib/case-studies/sci-accenture-model'; + EMemModel, + SciAccentureModel +} from '../lib/case-studies'; import {SciEModel} from '../lib/sci-e'; /** From 603b8133768f285606d4884739f18249c5c3a549 Mon Sep 17 00:00:00 2001 From: Gnanakeethan Balasubramaniam Date: Wed, 13 Sep 2023 19:57:57 +0530 Subject: [PATCH 38/69] Fixing: imports Signed-off-by: Gnanakeethan Balasubramaniam --- src/util/models-universe.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/models-universe.ts b/src/util/models-universe.ts index 3f6686451..7fa1e3909 100644 --- a/src/util/models-universe.ts +++ b/src/util/models-universe.ts @@ -19,7 +19,7 @@ import { EshoppenMemModel, EshoppenNetModel, EMemModel, - SciAccentureModel + SciAccentureModel, } from '../lib/case-studies'; import {SciEModel} from '../lib/sci-e'; From 4671e68ba70d0d9026a7d69da4c3772133011d46 Mon Sep 17 00:00:00 2001 From: Gnanakeethan Balasubramaniam Date: Wed, 13 Sep 2023 20:07:24 +0530 Subject: [PATCH 39/69] naming fix Signed-off-by: Gnanakeethan Balasubramaniam --- src/lib/case-studies/sci-accenture.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/case-studies/sci-accenture.test.ts b/src/lib/case-studies/sci-accenture.test.ts index 689bf8f88..610309f39 100644 --- a/src/lib/case-studies/sci-accenture.test.ts +++ b/src/lib/case-studies/sci-accenture.test.ts @@ -3,7 +3,7 @@ import {SciAccentureModel} from './sci-accenture-model'; jest.setTimeout(30000); -describe('eshoppen:configure test', () => { +describe('accenture:configure test', () => { test('initialize and test', async () => { const model = await new SciAccentureModel().configure('sci-accenture', {}); expect(model).toBeInstanceOf(SciAccentureModel); From 2410f922d6d93d4c58ef82220905e1aac33def07 Mon Sep 17 00:00:00 2001 From: Gnanakeethan Balasubramaniam Date: Wed, 13 Sep 2023 20:16:58 +0530 Subject: [PATCH 40/69] Allow expanded names in sci-m models Signed-off-by: Gnanakeethan Balasubramaniam --- src/lib/sci-m/index.ts | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/src/lib/sci-m/index.ts b/src/lib/sci-m/index.ts index 9d9a7120d..3e430faa4 100644 --- a/src/lib/sci-m/index.ts +++ b/src/lib/sci-m/index.ts @@ -25,30 +25,35 @@ export class SciMModel implements IImpactModelInterface { let el = 0.0; let rr = 0.0; let tor = 0.0; - if (!('te' in observation)) { + if (!('te' in observation || 'total-embodied' in observation)) { throw new Error('te: total-embodied is missing. Provide in gCO2e'); } - if (!('tir' in observation)) { + if (!('tir' in observation || 'time-reserved' in observation)) { throw new Error('tir: time-reserved is missing. Provide in seconds'); } - if (!('el' in observation)) { + if (!('el' in observation || 'expected-lifespan' in observation)) { throw new Error('el: expected-lifespan is missing. Provide in seconds'); } - if (!('rr' in observation)) { + if (!('rr' in observation || 'resources-reserved' in observation)) { throw new Error( 'rr: resources-reserved is missing. Provide as a count' ); } - if (!('tor' in observation)) { + if (!('tor' in observation || 'total-resources' in observation)) { throw new Error('tor: total-resources is missing. Provide as a count'); } if ( - 'te' in observation && - 'tir' in observation && - 'el' in observation && - 'rr' in observation && - 'tor' in observation + ('te' in observation || 'total-embodied' in observation) && + ('tir' in observation || 'time-reserved' in observation) && + ('el' in observation || 'expected-lifespan') && + ('rr' in observation || 'resources-reserved') && + ('tor' in observation || 'total-resources' in observation) ) { + observation['te'] = observation['te'] ?? observation['total-embodied']; + observation['tir'] = observation['tir'] ?? observation['time-reserved']; + observation['el'] = observation['el'] ?? observation['expected-lifespan']; + observation['rr'] = observation['rr'] ?? observation['resources-reserved']; + observation['tor'] = observation['tor'] ?? observation['total-resources']; if (typeof observation['te'] === 'string') { te = parseFloat(observation[observation['te']]); } else if (typeof observation['te'] === 'number') { From f4f26bba6628b3e5427d9310a3d77fa8193c3fdd Mon Sep 17 00:00:00 2001 From: jmc Date: Wed, 13 Sep 2023 17:21:02 +0100 Subject: [PATCH 41/69] adds aveva model Signed-off-by: jmc --- examples/impls/aveva.yaml | 45 +++++++++++++---------------- src/lib/case-studies/aveva-model.ts | 39 +++++-------------------- src/lib/sci-m/index.ts | 9 ++++-- src/util/models-universe.ts | 3 ++ 4 files changed, 37 insertions(+), 59 deletions(-) diff --git a/examples/impls/aveva.yaml b/examples/impls/aveva.yaml index f0402f470..a1bc7ce7a 100644 --- a/examples/impls/aveva.yaml +++ b/examples/impls/aveva.yaml @@ -6,44 +6,39 @@ tags: category: on-premise initialize: models: - - name: e-aveva # a model that takes in power observations and returns e. - kind: plugin - path: '' - verbose: false + - name: aveva # a model that takes in power observations and returns e. + kind: builtin - name: sci-o # a model that given e, i and m calculates a carbon value (e * i) + m kind: builtin - verbose: false - path: '' + - name: sci-e # a model that given e, i and m calculates a carbon value (e * i) + m + kind: builtin - name: sci-m # a model that calculates m from te, tir, el, rr and rtor. kind: builtin - verbose: false - path: '' - name: sci # sums SCI components and converts to f.unit kind: builtin - verbose: false - path: '' graph: children: pc: pipeline: + - aveva + - sci-e + - sci-m + - sci-o + config: + aveva: + sci-e: sci-m: - config: - te: 350 # kgCO2eq - tir: 31536000 # 1 year in seconds - el: 157680000 # 5 years in seconds - rr: 1 - tor: 1 + te: 350000 # kgCO2eq + tir: 1 # 1 year in seconds + el: 5 # 5 years in seconds + rr: 1 + tor: 1 sci-o: - config: - i: 474.8 #gCo2/kWh - sci: - config: - time: '' # don't do any time norm - factor: 1 - observations: - timestamp: 2023-07-06T00:00 + grid-ci: 475 #gCo2/kWh + observations: + - timestamp: 2023-07-06T00:00 pl: 16.009 # average over timespan pb: 11.335 # average over timespan - t: 8322 # (hours in year * average uptime e.g. 95%) + time: 8322 # (hours in year * average uptime e.g. 95%) diff --git a/src/lib/case-studies/aveva-model.ts b/src/lib/case-studies/aveva-model.ts index 7e67eceac..3f5a2cdbe 100644 --- a/src/lib/case-studies/aveva-model.ts +++ b/src/lib/case-studies/aveva-model.ts @@ -1,5 +1,4 @@ import {IImpactModelInterface} from '../interfaces'; -import {KeyValuePair} from '../../types/boavizta'; export class EAvevaModel implements IImpactModelInterface { // Defined for compatibility. Not used in Aveva. @@ -36,8 +35,8 @@ export class EAvevaModel implements IImpactModelInterface { * Each Observation require: * @param {Object[]} observations * @param {number} observations[].time time to normalize to in hours - * @param {number} observations[].pb percentage mem usage - * @param {number} observations[].pl percentage mem usage + * @param {number} observations[].pb baseline power + * @param {number} observations[].pl measured power */ async calculate(observations: object | object[] | undefined): Promise { if (observations === undefined) { @@ -45,41 +44,19 @@ export class EAvevaModel implements IImpactModelInterface { } else if (!Array.isArray(observations)) { throw new Error('Observations must be an array'); } - return observations.map(observation => { + observations.map(observation => { this.configure(this.name!, observation); - observation['e-cpu'] = this.calculateEnergy(observation); + observation['e-cpu'] = + ((observation['pl'] - observation['pb']) * observation['time']) / 1000; return observation; }); + + return Promise.resolve(observations); } /** * Returns model identifier */ modelIdentifier() { - return 'e-aveva'; - } - /** - * Calculates the energy consumption for a single observation - * requires - * - * mem-util: ram usage in percentage - * timestamp: RFC3339 timestamp string - * - * multiplies memory used (GB) by a coefficient (wh/GB) and converts to kwh - */ - calculateEnergy(observation: KeyValuePair) { - if ( - !('pl' in observation) || - !('pb' in observation) || - !('time' in observation) - ) { - throw new Error( - 'Required Parameters pl, pb, time not provided for observation' - ); - } - const pl = observation['pl']; - const pb = observation['pb']; - const time = observation['time']; - - return ((pl - pb) * time) / 1000; + return 'aveva'; } } diff --git a/src/lib/sci-m/index.ts b/src/lib/sci-m/index.ts index 3e430faa4..1a1ff881b 100644 --- a/src/lib/sci-m/index.ts +++ b/src/lib/sci-m/index.ts @@ -51,9 +51,12 @@ export class SciMModel implements IImpactModelInterface { ) { observation['te'] = observation['te'] ?? observation['total-embodied']; observation['tir'] = observation['tir'] ?? observation['time-reserved']; - observation['el'] = observation['el'] ?? observation['expected-lifespan']; - observation['rr'] = observation['rr'] ?? observation['resources-reserved']; - observation['tor'] = observation['tor'] ?? observation['total-resources']; + observation['el'] = + observation['el'] ?? observation['expected-lifespan']; + observation['rr'] = + observation['rr'] ?? observation['resources-reserved']; + observation['tor'] = + observation['tor'] ?? observation['total-resources']; if (typeof observation['te'] === 'string') { te = parseFloat(observation[observation['te']]); } else if (typeof observation['te'] === 'number') { diff --git a/src/util/models-universe.ts b/src/util/models-universe.ts index 7fa1e3909..170fbf1b3 100644 --- a/src/util/models-universe.ts +++ b/src/util/models-universe.ts @@ -20,6 +20,7 @@ import { EshoppenNetModel, EMemModel, SciAccentureModel, + EAvevaModel, } from '../lib/case-studies'; import {SciEModel} from '../lib/sci-e'; @@ -63,6 +64,8 @@ export class ModelsUniverse { return SciAccentureModel; case 'emem': return EMemModel; + case 'aveva': + return EAvevaModel; default: // cover default return BoaviztaCpuImpactModel; } From 434e695018d06f8d4f2a00765d9619070f833fd4 Mon Sep 17 00:00:00 2001 From: jmc Date: Wed, 13 Sep 2023 17:32:04 +0100 Subject: [PATCH 42/69] fix grid-ci value Signed-off-by: jmc --- examples/impls/aveva.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/impls/aveva.yaml b/examples/impls/aveva.yaml index a1bc7ce7a..ee0f39e4e 100644 --- a/examples/impls/aveva.yaml +++ b/examples/impls/aveva.yaml @@ -34,7 +34,7 @@ graph: rr: 1 tor: 1 sci-o: - grid-ci: 475 #gCo2/kWh + grid-ci: 474.8 #gCo2/kWh observations: - timestamp: 2023-07-06T00:00 pl: 16.009 # average over timespan From 00ca9fc0f1f70b9fb21fe25121f42b2a9095976f Mon Sep 17 00:00:00 2001 From: jmc Date: Wed, 13 Sep 2023 16:24:36 +0100 Subject: [PATCH 43/69] unit fix Signed-off-by: jmc --- examples/impls/msft-eshoppen.yaml | 39 +++++++++++++------------- src/lib/case-studies/eshoppen-model.ts | 22 +++++++-------- 2 files changed, 31 insertions(+), 30 deletions(-) diff --git a/examples/impls/msft-eshoppen.yaml b/examples/impls/msft-eshoppen.yaml index 9b6b30759..eba0af7c4 100644 --- a/examples/impls/msft-eshoppen.yaml +++ b/examples/impls/msft-eshoppen.yaml @@ -49,7 +49,7 @@ graph: tdp-mem: 12.16 tdp-coeff: 0.12 sci-m: - te: 350 # kgCO2eq + te: 350000 # kgCO2eq tir: 3600 # == the duration field el: 126144000 # 4 years in seconds rr: 1 @@ -63,8 +63,8 @@ graph: n-hours: 1 n-chips: 1 sci: - time: hour # signal to convert /s -> /hr - factor: 500 # factor to convert per time to per f.unit () + time: '' # signal to convert /s -> /hr + factor: 1 # factor to convert per time to per f.unit () observations: - timestamp: 2023-07-06T00:00 # [KEYWORD] [NO-SUBFIELDS] time when measurement occurred duration: 3600 # Secs @@ -75,13 +75,14 @@ graph: - sci-e # sums e components - sci-m # duration & config -> embodied - sci-o # energy & grid-carbon-intensity & embodied -> carbon + - sci config: sci-m: - te: 1205.52 # kgCO2eq - tir: 3600 # == duration field - el: 126144000 # 4 years in seconds + te: 1205520 # kgCO2eq + tir: 1 # == duration field + el: 35040 # 4 years in seconds rr: 2 # using cores - tor: 26 # the original report has a typo, says 16 but actually has 26 cores. + tor: 16 # the original report has a typo, says 16 but actually has 26 cores. sci-o: grid-ci: 951 # gCO2e/kWh e-cpu: @@ -91,8 +92,8 @@ graph: n-hours: 1 n-chips: 1 sci: - time: hour # signal to convert /s -> /hr - factor: 500 # factor to convert per time to per f.unit () + time: '' # signal to convert /s -> /hr + factor: 1 # factor to convert per time to per f.unit () observations: - timestamp: 2023-07-06T00:00 # [KEYWORD] [NO-SUBFIELDS] time when measurement occurred duration: 3600 @@ -107,13 +108,13 @@ graph: sci-o: grid-ci: 1000 # gCO2e/kWh sci-m: - te: 1433.12 # kgCO2eq - tir: 3600 # == duration field - el: 126144000 # 4 years in seconds + te: 1433120 # kgCO2eq + tir: 1 # == duration field + el: 35040 # 4 years in hours rr: 2 # using cores - tor: 24 # total cores + tor: 16 # total cores sci-c: - i: 951 + grid-ci: 951 e-cpu: n-hours: 1 n-chips: 1 @@ -121,8 +122,8 @@ graph: tdp: 150 # W tdp-coeff: 0.32 sci: - time: hour # signal to convert /s -> /hr - factor: 500 # factor to convert per time to per f.unit () + time: '' # signal to convert /s -> /hr + factor: 1 # factor to convert per time to per f.unit () observations: - timestamp: 2023-07-06T00:00 # [KEYWORD] [NO-SUBFIELDS] time when measurement occurred duration: 3600 @@ -137,7 +138,7 @@ graph: - sci config: sci-m: - te: 1433.12 # kgCO2eq + te: 1433120 # kgCO2eq tir: 3600 # == duration field el: 126144000 # 4 years in seconds rr: 2 # using cores @@ -145,8 +146,8 @@ graph: e-net: net-energy: 0.001 #kwh/GB sci: - time: hour - factor: 500 + time: '' + factor: 1 sci-o: grid-ci: 1000 observations: diff --git a/src/lib/case-studies/eshoppen-model.ts b/src/lib/case-studies/eshoppen-model.ts index 912b231b4..9f2bac835 100644 --- a/src/lib/case-studies/eshoppen-model.ts +++ b/src/lib/case-studies/eshoppen-model.ts @@ -1,5 +1,5 @@ -import {IImpactModelInterface} from '../interfaces'; -import {KeyValuePair} from '../../types/boavizta'; +import { IImpactModelInterface } from '../interfaces'; +import { KeyValuePair } from '../../types/boavizta'; export class EshoppenModel implements IImpactModelInterface { authParams: object | undefined = undefined; @@ -21,11 +21,11 @@ export class EshoppenModel implements IImpactModelInterface { switch (this.modelType) { case 'e-cpu': { // e-cpu = n-hours * n-chips * tdp * tdp-coeff - observation['e-cpu'] = + observation['e-cpu'] = ( observation['n-hours'] * observation['n-chips'] * observation['tdp'] * - observation['tdp-coeff']; + observation['tdp-coeff']) / 1000; if (isNaN(observation['e-cpu'])) { throw new Error('e-cpu not computable'); } @@ -34,10 +34,10 @@ export class EshoppenModel implements IImpactModelInterface { case 'e-mem': { // e-mem-tdp = n-hours * n-chip * tdp-mem * tdp-coeff observation['e-mem'] = - observation['n-hours'] * - observation['n-chips'] * - observation['tdp-mem'] * - observation['tdp-coeff']; + (observation['n-hours'] * + observation['n-chips'] * + observation['tdp-mem'] * + observation['tdp-coeff']) / 1000; if (isNaN(observation['e-mem'])) { throw new Error('e-mem not computable'); } @@ -46,8 +46,8 @@ export class EshoppenModel implements IImpactModelInterface { case 'e-net': { // e-net = data-in + data-out * net-energy observation['e-net'] = - (observation['data-in'] + observation['data-out']) * - observation['net-energy']; + ((observation['data-in'] + observation['data-out']) * + observation['net-energy']) / 1000; if (isNaN(observation['e-net'])) { throw new Error('e-net not computable'); } @@ -56,7 +56,7 @@ export class EshoppenModel implements IImpactModelInterface { case 'e-sum': { // e-sum = e-cpu + e-mem + e-net observation['energy'] = - observation['e-cpu'] + observation['e-mem'] + observation['e-net']; + (observation['e-cpu'] + observation['e-mem'] + observation['e-net']); if (isNaN(observation['energy'])) { throw new Error('energy not computable'); } From 2ee7a85dd051ce99a87894d55993c80f0e468fb8 Mon Sep 17 00:00:00 2001 From: jmc Date: Wed, 13 Sep 2023 16:33:38 +0100 Subject: [PATCH 44/69] update impl Signed-off-by: jmc --- examples/impls/msft-eshoppen.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/examples/impls/msft-eshoppen.yaml b/examples/impls/msft-eshoppen.yaml index eba0af7c4..339c67f61 100644 --- a/examples/impls/msft-eshoppen.yaml +++ b/examples/impls/msft-eshoppen.yaml @@ -133,23 +133,23 @@ graph: pipeline: - eshoppen-net - sci-e # sums e components - - sci-o - sci-m + - sci-o - sci config: sci-m: - te: 1433120 # kgCO2eq - tir: 3600 # == duration field - el: 126144000 # 4 years in seconds - rr: 2 # using cores - tor: 24 # total cores + te: 0 # kgCO2eq + tir: 1 # == duration field + el: 35040 # 4 years in seconds + rr: 1 # using cores + tor: 1 # total cores e-net: net-energy: 0.001 #kwh/GB sci: time: '' factor: 1 sci-o: - grid-ci: 1000 + grid-ci: 951 observations: - timestamp: 2023-07-06T00:00 duration: 3600 From 69874f5dc2413e593faff4392372ed738df78dd2 Mon Sep 17 00:00:00 2001 From: jmc Date: Wed, 13 Sep 2023 16:35:29 +0100 Subject: [PATCH 45/69] yarn fix --- src/lib/case-studies/eshoppen-model.ts | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/src/lib/case-studies/eshoppen-model.ts b/src/lib/case-studies/eshoppen-model.ts index 9f2bac835..83727561a 100644 --- a/src/lib/case-studies/eshoppen-model.ts +++ b/src/lib/case-studies/eshoppen-model.ts @@ -1,5 +1,5 @@ -import { IImpactModelInterface } from '../interfaces'; -import { KeyValuePair } from '../../types/boavizta'; +import {IImpactModelInterface} from '../interfaces'; +import {KeyValuePair} from '../../types/boavizta'; export class EshoppenModel implements IImpactModelInterface { authParams: object | undefined = undefined; @@ -21,11 +21,12 @@ export class EshoppenModel implements IImpactModelInterface { switch (this.modelType) { case 'e-cpu': { // e-cpu = n-hours * n-chips * tdp * tdp-coeff - observation['e-cpu'] = ( - observation['n-hours'] * - observation['n-chips'] * - observation['tdp'] * - observation['tdp-coeff']) / 1000; + observation['e-cpu'] = + (observation['n-hours'] * + observation['n-chips'] * + observation['tdp'] * + observation['tdp-coeff']) / + 1000; if (isNaN(observation['e-cpu'])) { throw new Error('e-cpu not computable'); } @@ -37,7 +38,8 @@ export class EshoppenModel implements IImpactModelInterface { (observation['n-hours'] * observation['n-chips'] * observation['tdp-mem'] * - observation['tdp-coeff']) / 1000; + observation['tdp-coeff']) / + 1000; if (isNaN(observation['e-mem'])) { throw new Error('e-mem not computable'); } @@ -47,7 +49,8 @@ export class EshoppenModel implements IImpactModelInterface { // e-net = data-in + data-out * net-energy observation['e-net'] = ((observation['data-in'] + observation['data-out']) * - observation['net-energy']) / 1000; + observation['net-energy']) / + 1000; if (isNaN(observation['e-net'])) { throw new Error('e-net not computable'); } @@ -56,7 +59,7 @@ export class EshoppenModel implements IImpactModelInterface { case 'e-sum': { // e-sum = e-cpu + e-mem + e-net observation['energy'] = - (observation['e-cpu'] + observation['e-mem'] + observation['e-net']); + observation['e-cpu'] + observation['e-mem'] + observation['e-net']; if (isNaN(observation['energy'])) { throw new Error('energy not computable'); } From 3414bac2ecf35b8b1cda40fb343c18c931222289 Mon Sep 17 00:00:00 2001 From: jmc Date: Wed, 13 Sep 2023 16:43:55 +0100 Subject: [PATCH 46/69] adjust expedcted value in test Signed-off-by: jmc --- src/lib/case-studies/eshoppen.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/case-studies/eshoppen.test.ts b/src/lib/case-studies/eshoppen.test.ts index 204933f25..4e4aeb0a5 100644 --- a/src/lib/case-studies/eshoppen.test.ts +++ b/src/lib/case-studies/eshoppen.test.ts @@ -20,7 +20,7 @@ describe('eshoppen:configure test', () => { ]) ).resolves.toStrictEqual([ { - 'e-cpu': 122.4, + 'e-cpu': 0.12240000000000001, 'n-hours': 1, 'n-chips': 1, tdp: 120, From d12ab509d35194495b9a136ed764b6f2860ded9f Mon Sep 17 00:00:00 2001 From: jmc Date: Fri, 15 Sep 2023 09:55:01 +0100 Subject: [PATCH 47/69] add accenture model Signed-off-by: jmc --- examples/impls/accenture.yaml | 287 +++++++++----------- src/lib/case-studies/sci-accenture-model.ts | 6 +- src/lib/sci/index.ts | 4 +- 3 files changed, 128 insertions(+), 169 deletions(-) diff --git a/examples/impls/accenture.yaml b/examples/impls/accenture.yaml index f0b025097..e149ac508 100644 --- a/examples/impls/accenture.yaml +++ b/examples/impls/accenture.yaml @@ -3,27 +3,10 @@ description: sci calculation for accenture model (note need to add app gateway S tags: initialize: models: - - name: add-obs # a model that just copies some values into every observation. - kind: builtin - path: '' - - name: teads-cpu + - name: sci-e # a model that sums e components kind: builtin verbose: false - path: '' - - name: e-mem # model that calculates e for ram memory usage - kind: builtin - verbose: false - path: '' - - name: pue - kind: builtin - verbose: false - path: '' - config: - pue: 1.125 - - name: sci-m # a model that calculates m from te, tir, el, rr and rtor - kind: builtin - verbose: false - path: '' + path: '' - name: sci-o # a model that given e, i and m calculates a carbon value (e * i) + m kind: builtin verbose: false @@ -32,148 +15,124 @@ initialize: kind: builtin verbose: false path: '' -graph: - vm: - pipeline: - - teads-cpu # converts cpu-util to energy based on a tdp and a built in set of coeff. - - e-mem # converts ram-util to energy based on a tdp and a built in set of coeff. - - pue # multiplies every energy by a pue coeff. - - sci-m # adds embodied to the observation. - - sci-o # calculates carbon for this obervation (energy * grid-ci) + embodied. - - sci # calculates sci by dividing carbon by `r` - - sci-accenture # multiplies sci value by 1.05 to account for the "app-gateway" - config: - sci-m: - te: 458 #kgCo2 @ 4yr lifespan - tir: "duration" - el: 126144000 - rr: 1 - tor: 1 - teads-cpu: - tdp: ??? # what's the TDP for this server - add-obs: - grid-ci: 350.861 # Just copies any values under here to the observation as is. - sci: - time: hour # signal to convert /s -> /hr - factor: 89000 # factor to convert per time to per f.unit - children: - vm1: - observations: - - timestamp: 2023-07-06T00:00 - duration: 2419200 # seconds in a month (7 days * 4 weeks) - cpu-util: 15 - ram-util: 75 - e: 4.26 #kwh/month - vm2: - observations: - - timestamp: 2023-07-06T00:00 - duration: 2419200 # seconds in a month (7 days * 4 weeks) - cpu-util: 12 - ram-util: 72 - e: 4.26 # kwh/month - vm3: - observations: - - timestamp: 2023-07-06T00:00 - duration: 2419200 # seconds in a month (7 days * 4 weeks) - cpu-util: 10 - ram-util: 65 - e: 4.21 # kwh/month - vm4: - observations: - - timestamp: 2023-07-06T00:00 - duration: 2419200 # seconds in a month (7 days * 4 weeks) - cpu-util: 9 - ram-util: 70 - e: 4.21 # kwh/month - vm5: - observations: - - timestamp: 2023-07-06T00:00 - duration: 2419200 # seconds in a month (7 days * 4 weeks) - cpu-util: 9 - ram-util: 70 - e: 4.21 # kwh/month - vm6: - observations: - - timestamp: 2023-07-06T00:00 - duration: 2419200 # seconds in a month (7 days * 4 weeks) - cpu-util: 8 - ram-util: 65 - e: 3.29 # kwh/month - vm7: - observations: - - timestamp: 2023-07-06T00:00 - duration: 2419200 # seconds in a month (7 days * 4 weeks) - cpu-util: 7 - ram-util: 72 - e: 3.29 # kwh/month - vm8: - observations: - - timestamp: 2023-07-06T00:00 - duration: 2419200 # seconds in a month (7 days * 4 weeks) - cpu-util: 6 - ram-util: 70 - e: 3.29 # kwh/month - db: - pipeline: - - add-obs # add common values to every observertion - - teads-cpu # converts cpu-util to energy based on a tdp and a built in set of coeff. - - e-mem # converts ram-util to energy - - pue # multiplies every energy by a pue coeff. - - sci-m # adds embodied to the observeation. - - sci-o # calculates carbon for this obervation (energy * grid-ci) + embodied. - - sci # calculates sci by dividing carbon by `r` - config: - sci-m: - te: 458 #kgCo2 @ 4yr lifespan - tir: "duration" - el: 126144000 - rr: 1 - tor: 1 - teads-cpu: - tdp: ??? # what's the TDP for this server - add-obs: - grid-ci: 350.861 # Just copies any values under here to the observation as is. - sci: - time: hour # signal to convert /s -> /hr - factor: 89000 # factor to convert per time to per f.unit - observations: - - timestamp: 2023-07-06T00:00 - duration: 2419200 # seconds in a month (7 days * 4 weeks) - cpu-util: 4 - ram-util: 40 - e: 2.68 # kwh/month - monitoring: - pipeline: - - add-obs # add common values to every observertion - - teads-cpu # converts cpu-util to energy - - e-mem # conmverts ram-util to energy - - pue # multiplies every energy by a pue coeff. - - sci-m # adds embodied to the observeation. - - sci-o # calculates carbon for this obervation (energy * grid-ci) + embodied. - - sci # calculates sci by dividing carbon by `r` - config: - sci-m: - te: 458 #kgCo2 @ 4yr lifespan - tir: "duration" - el: 126144000 - rr: 1 - tor: 1 - teads-cpu: - tdp: ??? # what's the TDP for this server - add-obs: - grid-ci: 350.861 # Just copies any values under here to the observation as is. - sci: - time: hour # signal to convert /s -> /hr - factor: 89000 # factor to convert per time to per f.unit - observations: - - timestamp: 2023-07-06T00:00 - duration: 2419200 # seconds in a month (7 days * 4 weeks) - cpu-util: 20 - ram-util: 0 - e: 4.62 # kwh/month - app-gateway: # note that the app gateway does not have observations, its SCI is assumed equal to 5% of the total emissions - pipeline: - - sci-accenture - config: - sci_accenture: - factor: 1.05 # multiply sum of other sci components by this value to get overall total SCI in gCO2 + - name: sci-accenture # a model that sums sci-o + sci-m + kind: builtin + verbose: false + path: '' +graph: + children: + vm: + pipeline: + - sci-e # sums e components + - sci-o # calculates carbon for this obervation (energy * grid-ci) + embodied. + - sci # calculates sci by dividing carbon by `r` + - sci-accenture # multiplies sci value by 1.05 to account for the "app-gateway" + config: + sci-o: + grid-ci: 350.861 + sci: + time: '' # signal to convert /s -> /hr + factor: 89000 # factor to convert per time to per f.unit + # children: + # vm1: + observations: + - timestamp: 2023-07-06T00:00 + duration: 2419200 # seconds in a month (7 days * 4 weeks) + cpu-util: 15 + ram-util: 75 + e-cpu: 4.26 #kwh/month + embodied-carbon: 763.33 #gCO2e + # vm2: + # observations: + # - timestamp: 2023-07-06T00:00 + # duration: 2419200 # seconds in a month (7 days * 4 weeks) + # cpu-util: 12 + # ram-util: 72 + # e-cpu: 4.26 # kwh/month + # embodied-carbon: 763.33 #gCO2e + # vm3: + # observations: + # - timestamp: 2023-07-06T00:00 + # duration: 2419200 # seconds in a month (7 days * 4 weeks) + # cpu-util: 10 + # ram-util: 65 + # e-cpu: 4.21 # kwh/month + # vm4: + # observations: + # - timestamp: 2023-07-06T00:00 + # duration: 2419200 # seconds in a month (7 days * 4 weeks) + # cpu-util: 9 + # ram-util: 70 + # e-cpu: 4.21 # kwh/month + # embodied-carbon: 763.33 #gCO2e + # vm5: + # observations: + # - timestamp: 2023-07-06T00:00 + # duration: 2419200 # seconds in a month (7 days * 4 weeks) + # cpu-util: 9 + # ram-util: 70 + # e-cpu: 4.21 # kwh/month + # embodied-carbon: 763.33 #gCO2e + # vm6: + # observations: + # - timestamp: 2023-07-06T00:00 + # duration: 2419200 # seconds in a month (7 days * 4 weeks) + # cpu-util: 8 + # ram-util: 65 + # e-cpu: 3.29 # kwh/month + # embodied-carbon: 763.33 #gCO2e + # vm7: + # observations: + # - timestamp: 2023-07-06T00:00 + # duration: 2419200 # seconds in a month (7 days * 4 weeks) + # cpu-util: 7 + # ram-util: 72 + # e-cpu: 3.29 # kwh/month + # embodied-carbon: 763.33 #gCO2e + # vm8: + # observations: + # - timestamp: 2023-07-06T00:00 + # duration: 2419200 # seconds in a month (7 days * 4 weeks) + # cpu-util: 6 + # ram-util: 70 + # e-cpu: 3.29 # kwh/month + # embodied-carbon: 763.33 #gCO2e + db: + pipeline: + - sci-e # sums e components + - sci-o # calculates carbon for this obervation (energy * grid-ci) + embodied. + - sci # calculates sci by dividing carbon by `r` + - sci-accenture # multiplies sci value by 1.05 to account for the "app-gateway" + config: + sci-o: + grid-ci: 350.86 + sci: + time: '' # signal to convert /s -> /hr + factor: 89000 # factor to convert per time to per f.unit + observations: + - timestamp: 2023-07-06T00:00 + duration: 2419200 # seconds in a month (7 days * 4 weeks) + cpu-util: 4 + ram-util: 40 + e-cpu: 2.68 # kwh/month + embodied-carbon: 763.33 #gCO2e + monitoring: + pipeline: + - sci-e # sums e components + - sci-o # calculates carbon for this obervation (energy * grid-ci) + embodied. + - sci # calculates sci by dividing carbon by `r` + - sci-accenture # multiplies sci value by 1.05 to account for the "app-gateway" + config: + sci-o: + grid-ci: 350.861 + sci: + time: '' # signal to convert /s -> /hr + factor: 89000 # factor to convert per time to per f.unit + observations: + - timestamp: 2023-07-06T00:00 + duration: 2419200 # seconds in a month (7 days * 4 weeks) + cpu-util: 4 + ram-util: 40 + e-cpu: 4.62 # kwh/month + embodied-carbon: 763.33 #gCO2e + diff --git a/src/lib/case-studies/sci-accenture-model.ts b/src/lib/case-studies/sci-accenture-model.ts index f6a809d12..9fbd0c04d 100644 --- a/src/lib/case-studies/sci-accenture-model.ts +++ b/src/lib/case-studies/sci-accenture-model.ts @@ -1,5 +1,5 @@ -import {IImpactModelInterface} from '../interfaces'; -import {KeyValuePair} from '../../types/boavizta'; +import { IImpactModelInterface } from '../interfaces'; +import { KeyValuePair } from '../../types/boavizta'; export class SciAccentureModel implements IImpactModelInterface { authParams: object | undefined = undefined; @@ -17,7 +17,7 @@ export class SciAccentureModel implements IImpactModelInterface { throw new Error('observations should be an array'); } observations.map((observation: KeyValuePair) => { - observation['sci'] = observation['sci-total'] * 1.05; + observation['sci_total'] = observation['sci'] * 1.05; if (isNaN(observation['sci'])) { throw new Error('sci not computable'); } diff --git a/src/lib/sci/index.ts b/src/lib/sci/index.ts index e45de67ab..8558c8315 100644 --- a/src/lib/sci/index.ts +++ b/src/lib/sci/index.ts @@ -1,5 +1,5 @@ -import {IImpactModelInterface} from '../interfaces'; -import {KeyValuePair} from '../../types/boavizta'; +import { IImpactModelInterface } from '../interfaces'; +import { KeyValuePair } from '../../types/boavizta'; export class SciModel implements IImpactModelInterface { authParams: object | undefined = undefined; From a57431bf5a530a232505eea3afa21dbcc82ea185 Mon Sep 17 00:00:00 2001 From: jmc Date: Fri, 15 Sep 2023 09:58:07 +0100 Subject: [PATCH 48/69] fix linter Signed-off-by: jmc --- src/lib/case-studies/sci-accenture-model.ts | 4 ++-- src/lib/sci/index.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib/case-studies/sci-accenture-model.ts b/src/lib/case-studies/sci-accenture-model.ts index 9fbd0c04d..6e109b205 100644 --- a/src/lib/case-studies/sci-accenture-model.ts +++ b/src/lib/case-studies/sci-accenture-model.ts @@ -1,5 +1,5 @@ -import { IImpactModelInterface } from '../interfaces'; -import { KeyValuePair } from '../../types/boavizta'; +import {IImpactModelInterface} from '../interfaces'; +import {KeyValuePair} from '../../types/boavizta'; export class SciAccentureModel implements IImpactModelInterface { authParams: object | undefined = undefined; diff --git a/src/lib/sci/index.ts b/src/lib/sci/index.ts index 8558c8315..e45de67ab 100644 --- a/src/lib/sci/index.ts +++ b/src/lib/sci/index.ts @@ -1,5 +1,5 @@ -import { IImpactModelInterface } from '../interfaces'; -import { KeyValuePair } from '../../types/boavizta'; +import {IImpactModelInterface} from '../interfaces'; +import {KeyValuePair} from '../../types/boavizta'; export class SciModel implements IImpactModelInterface { authParams: object | undefined = undefined; From e6f2574368b263d06cd4796f84262990bd82a293 Mon Sep 17 00:00:00 2001 From: jmc Date: Fri, 15 Sep 2023 10:06:36 +0100 Subject: [PATCH 49/69] fix unit test Signed-off-by: jmc --- src/lib/case-studies/sci-accenture.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/case-studies/sci-accenture.test.ts b/src/lib/case-studies/sci-accenture.test.ts index 610309f39..2870251a9 100644 --- a/src/lib/case-studies/sci-accenture.test.ts +++ b/src/lib/case-studies/sci-accenture.test.ts @@ -10,13 +10,13 @@ describe('accenture:configure test', () => { await expect( model.calculate([ { - 'sci-total': 1, + sci: 1, }, ]) ).resolves.toStrictEqual([ { - 'sci-total': 1, - sci: 1.05, + sci: 1, + sci_total: 1.05, }, ]); await expect(model.calculate([{}])).rejects.toThrowError(); From 1734d6d1ab628834876e90312efefd5c7c5c01a5 Mon Sep 17 00:00:00 2001 From: Gnanakeethan Balasubramaniam Date: Fri, 15 Sep 2023 16:52:41 +0530 Subject: [PATCH 50/69] Fixing e-cpu field on the BoaviztaCpuImpactModel Signed-off-by: Gnanakeethan Balasubramaniam --- src/lib/boavizta/index.ts | 32 +++++++++++++++++--------------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/src/lib/boavizta/index.ts b/src/lib/boavizta/index.ts index 70e0b225c..a0f6f55a0 100644 --- a/src/lib/boavizta/index.ts +++ b/src/lib/boavizta/index.ts @@ -125,7 +125,7 @@ abstract class BoaviztaImpactModel implements IImpactModelInterface { e = data['pe']['use'] / 3.6; } - return {embodied_emission: m, energy: e}; + return {'embodied-carbon': m, energy: e}; } // converts the usage to the format required by Boavizta API. @@ -152,8 +152,7 @@ abstract class BoaviztaImpactModel implements IImpactModelInterface { export class BoaviztaCpuImpactModel extends BoaviztaImpactModel - implements IImpactModelInterface -{ + implements IImpactModelInterface { sharedParams: object | undefined = undefined; public name: string | undefined; public verbose = false; @@ -183,7 +182,11 @@ export class BoaviztaCpuImpactModel dataCast ); - return this.formatResponse(response.data); + const result = this.formatResponse(response.data); + return { + 'e-cpu': result.energy, + 'embodied-carbon': result['embodied-carbon'], + }; } protected async captureStaticParams(staticParams: object): Promise { @@ -211,8 +214,7 @@ export class BoaviztaCpuImpactModel export class BoaviztaCloudImpactModel extends BoaviztaImpactModel - implements IImpactModelInterface -{ + implements IImpactModelInterface { public sharedParams: object | undefined = undefined; public instanceTypes: BoaviztaInstanceTypes = {}; public name: string | undefined; @@ -230,9 +232,9 @@ export class BoaviztaCloudImpactModel if (!countries.includes(location)) { throw new Error( "Improper configure: Invalid location parameter: '" + - location + - "'. Valid values are : " + - countries.join(', ') + location + + "'. Valid values are : " + + countries.join(', ') ); } } @@ -266,9 +268,9 @@ export class BoaviztaCloudImpactModel ) { throw new Error( "Improper configure: Invalid instance_type parameter: '" + - staticParamsCast.instance_type + - "'. Valid values are : " + - this.instanceTypes[provider].join(', ') + staticParamsCast.instance_type + + "'. Valid values are : " + + this.instanceTypes[provider].join(', ') ); } } else { @@ -285,9 +287,9 @@ export class BoaviztaCloudImpactModel if (!supportedProviders.includes(staticParamsCast.provider as string)) { throw new Error( "Improper configure: Invalid provider parameter: '" + - staticParamsCast.provider + - "'. Valid values are : " + - supportedProviders.join(', ') + staticParamsCast.provider + + "'. Valid values are : " + + supportedProviders.join(', ') ); } } From e3420870b3fdabd54706dbbf0950b9adbaa8242a Mon Sep 17 00:00:00 2001 From: Narek Hovhannisyan Date: Fri, 15 Sep 2023 17:03:22 +0400 Subject: [PATCH 51/69] .eslintignore: add src d.ts, js files. --- .eslintignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.eslintignore b/.eslintignore index edd9d60a7..b315253c8 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,2 +1,4 @@ build/ dist/ +src/**/**.d.ts +src/**/**.js From f32734b9e4243e38333dd9575173fdf9e4c554df Mon Sep 17 00:00:00 2001 From: Narek Hovhannisyan Date: Fri, 15 Sep 2023 17:03:42 +0400 Subject: [PATCH 52/69] ccf: apply linter to jsons. --- src/lib/ccf/aws-embodied.json | 5592 +++++++- src/lib/ccf/aws-instances.json | 21117 ++++++++++++++++++++++++++++- src/lib/ccf/azure-embodied.json | 6548 ++++++++- src/lib/ccf/azure-instances.json | 8333 +++++++++++- src/lib/ccf/gcp-embodied.json | 3050 ++++- src/lib/ccf/gcp-instances.json | 3881 +++++- src/lib/ccf/gcp-use.json | 59 +- 7 files changed, 48573 insertions(+), 7 deletions(-) diff --git a/src/lib/ccf/aws-embodied.json b/src/lib/ccf/aws-embodied.json index 97c96a2c1..1a339ad9d 100644 --- a/src/lib/ccf/aws-embodied.json +++ b/src/lib/ccf/aws-embodied.json @@ -1 +1,5591 @@ -[{"": "0", "type": "a1.medium", "additional_memory": "22.21", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1022.21"}, {"": "1", "type": "a1.large", "additional_memory": "22.21", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1022.21"}, {"": "2", "type": "a1.xlarge", "additional_memory": "22.21", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1022.21"}, {"": "3", "type": "a1.2xlarge", "additional_memory": "22.21", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1022.21"}, {"": "4", "type": "a1.4xlarge", "additional_memory": "22.21", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1022.21"}, {"": "5", "type": "a1.metal", "additional_memory": "22.21", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1022.21"}, {"": "6", "type": "c1.medium", "additional_memory": "36.09", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1536.09"}, {"": "7", "type": "c1.xlarge", "additional_memory": "36.09", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1536.09"}, {"": "8", "type": "cr1.8xlarge", "additional_memory": "316.47", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1616.47"}, {"": "9", "type": "cc2.8xlarge", "additional_memory": "61.77", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1561.77"}, {"": "10", "type": "c3.large", "additional_memory": "61.07", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1361.07"}, {"": "11", "type": "c3.xlarge", "additional_memory": "61.07", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1361.07"}, {"": "12", "type": "c3.2xlarge", "additional_memory": "61.07", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1361.07"}, {"": "13", "type": "c3.4xlarge", "additional_memory": "61.07", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1361.07"}, {"": "14", "type": "c3.8xlarge", "additional_memory": "61.07", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1361.07"}, {"": "15", "type": "c4.large", "additional_memory": "61.07", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1161.07"}, {"": "16", "type": "c4.xlarge", "additional_memory": "61.07", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1161.07"}, {"": "17", "type": "c4.2xlarge", "additional_memory": "61.07", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1161.07"}, {"": "18", "type": "c4.4xlarge", "additional_memory": "61.07", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1161.07"}, {"": "19", "type": "c4.8xlarge", "additional_memory": "61.07", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1161.07"}, {"": "20", "type": "c5.large", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1344.29"}, {"": "21", "type": "c5.xlarge", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1344.29"}, {"": "22", "type": "c5.2xlarge", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1344.29"}, {"": "23", "type": "c5.4xlarge", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1344.29"}, {"": "24", "type": "c5.9xlarge", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1344.29"}, {"": "25", "type": "c5.12xlarge", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1344.29"}, {"": "26", "type": "c5.18xlarge", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1344.29"}, {"": "27", "type": "c5.24xlarge", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1344.29"}, {"": "28", "type": "c5.metal", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1344.29"}, {"": "29", "type": "c5a.large", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1244.29"}, {"": "30", "type": "c5a.xlarge", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1244.29"}, {"": "31", "type": "c5a.2xlarge", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1244.29"}, {"": "32", "type": "c5a.4xlarge", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1244.29"}, {"": "33", "type": "c5a.8xlarge", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1244.29"}, {"": "34", "type": "c5a.12xlarge", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1244.29"}, {"": "35", "type": "c5a.16xlarge", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1244.29"}, {"": "36", "type": "c5a.24xlarge", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1244.29"}, {"": "37", "type": "c5ad.large", "additional_memory": "244.29", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1444.29"}, {"": "38", "type": "c5ad.xlarge", "additional_memory": "244.29", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1444.29"}, {"": "39", "type": "c5ad.2xlarge", "additional_memory": "244.29", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1444.29"}, {"": "40", "type": "c5ad.4xlarge", "additional_memory": "244.29", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1444.29"}, {"": "41", "type": "c5ad.8xlarge", "additional_memory": "244.29", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1444.29"}, {"": "42", "type": "c5ad.12xlarge", "additional_memory": "244.29", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1444.29"}, {"": "43", "type": "c5ad.16xlarge", "additional_memory": "244.29", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1444.29"}, {"": "44", "type": "c5ad.24xlarge", "additional_memory": "244.29", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1444.29"}, {"": "45", "type": "c5d.large", "additional_memory": "244.29", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1544.29"}, {"": "46", "type": "c5d.xlarge", "additional_memory": "244.29", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1544.29"}, {"": "47", "type": "c5d.2xlarge", "additional_memory": "244.29", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1544.29"}, {"": "48", "type": "c5d.4xlarge", "additional_memory": "244.29", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1544.29"}, {"": "49", "type": "c5d.9xlarge", "additional_memory": "244.29", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1544.29"}, {"": "50", "type": "c5d.12xlarge", "additional_memory": "244.29", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1744.29"}, {"": "51", "type": "c5d.18xlarge", "additional_memory": "244.29", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1544.29"}, {"": "52", "type": "c5d.24xlarge", "additional_memory": "244.29", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1744.29"}, {"": "53", "type": "c5d.metal", "additional_memory": "244.29", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1744.29"}, {"": "54", "type": "c5n.large", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1344.29"}, {"": "55", "type": "c5n.xlarge", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1344.29"}, {"": "56", "type": "c5n.2xlarge", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1344.29"}, {"": "57", "type": "c5n.4xlarge", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1344.29"}, {"": "58", "type": "c5n.9xlarge", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1344.29"}, {"": "59", "type": "c5n.18xlarge", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1344.29"}, {"": "60", "type": "c5n.metal", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1344.29"}, {"": "61", "type": "c6g.medium", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1155.46"}, {"": "62", "type": "c6g.large", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1155.46"}, {"": "63", "type": "c6g.xlarge", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1155.46"}, {"": "64", "type": "c6g.2xlarge", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1155.46"}, {"": "65", "type": "c6g.4xlarge", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1155.46"}, {"": "66", "type": "c6g.8xlarge", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1155.46"}, {"": "67", "type": "c6g.12xlarge", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1155.46"}, {"": "68", "type": "c6g.16xlarge", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1155.46"}, {"": "69", "type": "c6g.metal", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1155.46"}, {"": "70", "type": "c6gd.medium", "additional_memory": "155.46", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1355.46"}, {"": "71", "type": "c6gd.large", "additional_memory": "155.46", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1355.46"}, {"": "72", "type": "c6gd.xlarge", "additional_memory": "155.46", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1355.46"}, {"": "73", "type": "c6gd.2xlarge", "additional_memory": "155.46", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1355.46"}, {"": "74", "type": "c6gd.4xlarge", "additional_memory": "155.46", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1355.46"}, {"": "75", "type": "c6gd.8xlarge", "additional_memory": "155.46", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1355.46"}, {"": "76", "type": "c6gd.12xlarge", "additional_memory": "155.46", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1355.46"}, {"": "77", "type": "c6gd.16xlarge", "additional_memory": "155.46", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1355.46"}, {"": "78", "type": "c6gd.metal", "additional_memory": "155.46", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1355.46"}, {"": "79", "type": "c6gn.medium", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1155.46"}, {"": "80", "type": "c6gn.large", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1155.46"}, {"": "81", "type": "c6gn.xlarge", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1155.46"}, {"": "82", "type": "c6gn.2xlarge", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1155.46"}, {"": "83", "type": "c6gn.4xlarge", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1155.46"}, {"": "84", "type": "c6gn.8xlarge", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1155.46"}, {"": "85", "type": "c6gn.12xlarge", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1155.46"}, {"": "86", "type": "c6gn.16xlarge", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1155.46"}, {"": "87", "type": "d2.xlarge", "additional_memory": "316.47", "additional_storage": "1200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2616.47"}, {"": "88", "type": "d2.2xlarge", "additional_memory": "316.47", "additional_storage": "1200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2616.47"}, {"": "89", "type": "d2.4xlarge", "additional_memory": "316.47", "additional_storage": "1200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2616.47"}, {"": "90", "type": "d2.8xlarge", "additional_memory": "316.47", "additional_storage": "1200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2616.47"}, {"": "91", "type": "d3.xlarge", "additional_memory": "333.12", "additional_storage": "1200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2633.12"}, {"": "92", "type": "d3.2xlarge", "additional_memory": "333.12", "additional_storage": "1200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2633.12"}, {"": "93", "type": "d3.4xlarge", "additional_memory": "333.12", "additional_storage": "1200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2633.12"}, {"": "94", "type": "d3.8xlarge", "additional_memory": "333.12", "additional_storage": "1200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2633.12"}, {"": "95", "type": "d3en.xlarge", "additional_memory": "244.29", "additional_storage": "1200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2544.29"}, {"": "96", "type": "d3en.2xlarge", "additional_memory": "244.29", "additional_storage": "1200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2544.29"}, {"": "97", "type": "d3en.4xlarge", "additional_memory": "244.29", "additional_storage": "1200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2544.29"}, {"": "98", "type": "d3en.6xlarge", "additional_memory": "244.29", "additional_storage": "1200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2544.29"}, {"": "99", "type": "d3en.8xlarge", "additional_memory": "244.29", "additional_storage": "1200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2544.29"}, {"": "100", "type": "d3en.12xlarge", "additional_memory": "244.29", "additional_storage": "1200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2544.29"}, {"": "101", "type": "dc2.large", "additional_memory": "316.47", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1816.47"}, {"": "102", "type": "dc2.8xlarge", "additional_memory": "316.47", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1816.47"}, {"": "103", "type": "ds2.xlarge", "additional_memory": "316.47", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1816.47"}, {"": "104", "type": "ds2.8xlarge", "additional_memory": "316.47", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1816.47"}, {"": "105", "type": "f1.2xlarge", "additional_memory": "1332.5", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2832.5"}, {"": "106", "type": "f1.4xlarge", "additional_memory": "1332.5", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2832.5"}, {"": "107", "type": "f1.16xlarge", "additional_memory": "1332.5", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2832.5"}, {"": "108", "type": "g2.2xlarge", "additional_memory": "61.07", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "1961.07"}, {"": "109", "type": "g2.8xlarge", "additional_memory": "61.07", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "1961.07"}, {"": "110", "type": "g3s.xlarge", "additional_memory": "655.15", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "2355.15"}, {"": "111", "type": "g3.4xlarge", "additional_memory": "655.15", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "2355.15"}, {"": "112", "type": "g3.8xlarge", "additional_memory": "655.15", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "2355.15"}, {"": "113", "type": "g3.16xlarge", "additional_memory": "655.15", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "2355.15"}, {"": "114", "type": "g4dn.xlarge", "additional_memory": "510.79", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "1200.0", "total": "3010.79"}, {"": "115", "type": "g4dn.2xlarge", "additional_memory": "510.79", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "1200.0", "total": "3010.79"}, {"": "116", "type": "g4dn.4xlarge", "additional_memory": "510.79", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "1200.0", "total": "3010.79"}, {"": "117", "type": "g4dn.8xlarge", "additional_memory": "510.79", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "1200.0", "total": "3010.79"}, {"": "118", "type": "g4dn.16xlarge", "additional_memory": "510.79", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "1200.0", "total": "3010.79"}, {"": "119", "type": "g4dn.12xlarge", "additional_memory": "510.79", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "1200.0", "total": "3010.79"}, {"": "120", "type": "g4dn.metal", "additional_memory": "510.79", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "1200.0", "total": "3010.79"}, {"": "121", "type": "g4ad.4xlarge", "additional_memory": "510.79", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "600.0", "total": "2310.79"}, {"": "122", "type": "g4ad.8xlarge", "additional_memory": "510.79", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "600.0", "total": "2310.79"}, {"": "123", "type": "g4ad.16xlarge", "additional_memory": "510.79", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "600.0", "total": "2310.79"}, {"": "124", "type": "h1.2xlarge", "additional_memory": "333.12", "additional_storage": "1200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2633.12"}, {"": "125", "type": "h1.4xlarge", "additional_memory": "333.12", "additional_storage": "1200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2633.12"}, {"": "126", "type": "h1.8xlarge", "additional_memory": "333.12", "additional_storage": "1200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2633.12"}, {"": "127", "type": "h1.16xlarge", "additional_memory": "333.12", "additional_storage": "1200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2633.12"}, {"": "128", "type": "hs1.8xlarge", "additional_memory": "316.47", "additional_storage": "1200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2616.47"}, {"": "129", "type": "i2.xlarge", "additional_memory": "316.47", "additional_storage": "800.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2216.47"}, {"": "130", "type": "i2.2xlarge", "additional_memory": "316.47", "additional_storage": "800.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2216.47"}, {"": "131", "type": "i2.4xlarge", "additional_memory": "316.47", "additional_storage": "800.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2216.47"}, {"": "132", "type": "i2.8xlarge", "additional_memory": "316.47", "additional_storage": "800.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2216.47"}, {"": "133", "type": "i3.large", "additional_memory": "688.46", "additional_storage": "800.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2588.46"}, {"": "134", "type": "i3.xlarge", "additional_memory": "688.46", "additional_storage": "800.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2588.46"}, {"": "135", "type": "i3.2xlarge", "additional_memory": "688.46", "additional_storage": "800.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2588.46"}, {"": "136", "type": "i3.4xlarge", "additional_memory": "688.46", "additional_storage": "800.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2588.46"}, {"": "137", "type": "i3.8xlarge", "additional_memory": "688.46", "additional_storage": "800.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2588.46"}, {"": "138", "type": "i3.16xlarge", "additional_memory": "688.46", "additional_storage": "800.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2588.46"}, {"": "139", "type": "i3.metal", "additional_memory": "688.46", "additional_storage": "800.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2588.46"}, {"": "140", "type": "i3en.large", "additional_memory": "1043.79", "additional_storage": "800.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2943.79"}, {"": "141", "type": "i3en.xlarge", "additional_memory": "1043.79", "additional_storage": "800.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2943.79"}, {"": "142", "type": "i3en.2xlarge", "additional_memory": "1043.79", "additional_storage": "800.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2943.79"}, {"": "143", "type": "i3en.3xlarge", "additional_memory": "1043.79", "additional_storage": "800.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2943.79"}, {"": "144", "type": "i3en.6xlarge", "additional_memory": "1043.79", "additional_storage": "800.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2943.79"}, {"": "145", "type": "i3en.12xlarge", "additional_memory": "1043.79", "additional_storage": "800.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2943.79"}, {"": "146", "type": "i3en.24xlarge", "additional_memory": "1043.79", "additional_storage": "800.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2943.79"}, {"": "147", "type": "i3en.metal", "additional_memory": "1043.79", "additional_storage": "800.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2943.79"}, {"": "148", "type": "inf1.xlarge", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1344.29"}, {"": "149", "type": "inf1.2xlarge", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1344.29"}, {"": "150", "type": "inf1.6xlarge", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1344.29"}, {"": "151", "type": "inf1.24xlarge", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1344.29"}, {"": "152", "type": "m1.small", "additional_memory": "144.35", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1644.35"}, {"": "153", "type": "m1.medium", "additional_memory": "144.35", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1644.35"}, {"": "154", "type": "m1.large", "additional_memory": "144.35", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1644.35"}, {"": "155", "type": "m1.xlarge", "additional_memory": "144.35", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1644.35"}, {"": "156", "type": "m2.xlarge", "additional_memory": "366.44", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1666.44"}, {"": "157", "type": "m2.2xlarge", "additional_memory": "366.44", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1666.44"}, {"": "158", "type": "m2.4xlarge", "additional_memory": "366.44", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1666.44"}, {"": "159", "type": "m3.medium", "additional_memory": "310.92", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.92"}, {"": "160", "type": "m3.large", "additional_memory": "310.92", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.92"}, {"": "161", "type": "m3.xlarge", "additional_memory": "310.92", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.92"}, {"": "162", "type": "m3.2xlarge", "additional_memory": "310.92", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.92"}, {"": "163", "type": "m4.large", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "164", "type": "m4.xlarge", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "165", "type": "m4.2xlarge", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "166", "type": "m4.4xlarge", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "167", "type": "m4.10xlarge", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "168", "type": "m4.16xlarge", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "169", "type": "m5.large", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "170", "type": "m5.xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "171", "type": "m5.2xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "172", "type": "m5.4xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "173", "type": "m5.8xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "174", "type": "m5.12xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "175", "type": "m5.16xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "176", "type": "m5.24xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "177", "type": "m5.metal", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "178", "type": "m5a.large", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "179", "type": "m5a.xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "180", "type": "m5a.2xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "181", "type": "m5a.4xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "182", "type": "m5a.8xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "183", "type": "m5a.12xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "184", "type": "m5a.16xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "185", "type": "m5a.24xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "186", "type": "m5ad.large", "additional_memory": "510.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.79"}, {"": "187", "type": "m5ad.xlarge", "additional_memory": "510.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.79"}, {"": "188", "type": "m5ad.2xlarge", "additional_memory": "510.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.79"}, {"": "189", "type": "m5ad.4xlarge", "additional_memory": "510.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.79"}, {"": "190", "type": "m5ad.8xlarge", "additional_memory": "510.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.79"}, {"": "191", "type": "m5ad.12xlarge", "additional_memory": "510.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.79"}, {"": "192", "type": "m5ad.16xlarge", "additional_memory": "510.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.79"}, {"": "193", "type": "m5ad.24xlarge", "additional_memory": "510.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.79"}, {"": "194", "type": "m5d.large", "additional_memory": "510.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.79"}, {"": "195", "type": "m5d.xlarge", "additional_memory": "510.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.79"}, {"": "196", "type": "m5d.2xlarge", "additional_memory": "510.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.79"}, {"": "197", "type": "m5d.4xlarge", "additional_memory": "510.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.79"}, {"": "198", "type": "m5d.8xlarge", "additional_memory": "510.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.79"}, {"": "199", "type": "m5d.12xlarge", "additional_memory": "510.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.79"}, {"": "200", "type": "m5d.16xlarge", "additional_memory": "510.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.79"}, {"": "201", "type": "m5d.24xlarge", "additional_memory": "510.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.79"}, {"": "202", "type": "m5d.metal", "additional_memory": "510.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.79"}, {"": "203", "type": "m5dn.large", "additional_memory": "510.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.79"}, {"": "204", "type": "m5dn.xlarge", "additional_memory": "510.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.79"}, {"": "205", "type": "m5dn.2xlarge", "additional_memory": "510.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.79"}, {"": "206", "type": "m5dn.4xlarge", "additional_memory": "510.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.79"}, {"": "207", "type": "m5dn.8xlarge", "additional_memory": "510.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.79"}, {"": "208", "type": "m5dn.12xlarge", "additional_memory": "510.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.79"}, {"": "209", "type": "m5dn.16xlarge", "additional_memory": "510.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.79"}, {"": "210", "type": "m5dn.24xlarge", "additional_memory": "510.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.79"}, {"": "211", "type": "m5dn.metal", "additional_memory": "510.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.79"}, {"": "212", "type": "m5n.large", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "213", "type": "m5n.xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "214", "type": "m5n.2xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "215", "type": "m5n.4xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "216", "type": "m5n.8xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "217", "type": "m5n.12xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "218", "type": "m5n.16xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "219", "type": "m5n.24xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "220", "type": "m5n.metal", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "221", "type": "m5zn.large", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1344.29"}, {"": "222", "type": "m5zn.xlarge", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1344.29"}, {"": "223", "type": "m5zn.2xlarge", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1344.29"}, {"": "224", "type": "m5zn.3xlarge", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1344.29"}, {"": "225", "type": "m5zn.6xlarge", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1344.29"}, {"": "226", "type": "m5zn.12xlarge", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1344.29"}, {"": "227", "type": "m5zn.metal", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1344.29"}, {"": "228", "type": "m6g.medium", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "229", "type": "m6g.large", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "230", "type": "m6g.xlarge", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "231", "type": "m6g.2xlarge", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "232", "type": "m6g.4xlarge", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "233", "type": "m6g.8xlarge", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "234", "type": "m6g.12xlarge", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "235", "type": "m6g.16xlarge", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "236", "type": "m6g.metal", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "237", "type": "m6gd.medium", "additional_memory": "333.12", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1533.12"}, {"": "238", "type": "m6gd.large", "additional_memory": "333.12", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1533.12"}, {"": "239", "type": "m6gd.xlarge", "additional_memory": "333.12", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1533.12"}, {"": "240", "type": "m6gd.2xlarge", "additional_memory": "333.12", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1533.12"}, {"": "241", "type": "m6gd.4xlarge", "additional_memory": "333.12", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1533.12"}, {"": "242", "type": "m6gd.8xlarge", "additional_memory": "333.12", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1533.12"}, {"": "243", "type": "m6gd.12xlarge", "additional_memory": "333.12", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1533.12"}, {"": "244", "type": "m6gd.16xlarge", "additional_memory": "333.12", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1533.12"}, {"": "245", "type": "m6gd.metal", "additional_memory": "333.12", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1533.12"}, {"": "246", "type": "m6i.large", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1788.46"}, {"": "247", "type": "m6i.xlarge", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1788.46"}, {"": "248", "type": "m6i.2xlarge", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1788.46"}, {"": "249", "type": "m6i.4xlarge", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1788.46"}, {"": "250", "type": "m6i.8xlarge", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1788.46"}, {"": "251", "type": "m6i.12xlarge", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1788.46"}, {"": "252", "type": "m6i.16xlarge", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1788.46"}, {"": "253", "type": "m6i.24xlarge", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1788.46"}, {"": "254", "type": "m6i.32xlarge", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1788.46"}, {"": "255", "type": "mac1.metal", "additional_memory": "22.21", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1022.21"}, {"": "256", "type": "p2.xlarge", "additional_memory": "993.82", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "2400.0", "total": "4493.82"}, {"": "257", "type": "p2.8xlarge", "additional_memory": "993.82", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "2400.0", "total": "4493.82"}, {"": "258", "type": "p2.16xlarge", "additional_memory": "993.82", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "2400.0", "total": "4493.82"}, {"": "259", "type": "p3.2xlarge", "additional_memory": "1043.79", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "1200.0", "total": "3543.79"}, {"": "260", "type": "p3.8xlarge", "additional_memory": "1043.79", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "1200.0", "total": "3543.79"}, {"": "261", "type": "p3.16xlarge", "additional_memory": "1043.79", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "1200.0", "total": "3543.79"}, {"": "262", "type": "p3dn.24xlarge", "additional_memory": "1043.79", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "1200.0", "total": "3543.79"}, {"": "263", "type": "p4d.24xlarge", "additional_memory": "1576.79", "additional_storage": "800.0", "additional_cpus": "100.0", "additional_gpus": "1200.0", "total": "4676.79"}, {"": "264", "type": "ra3.4xlarge", "additional_memory": "510.79", "additional_storage": "500.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2110.79"}, {"": "265", "type": "ra3.16xlarge", "additional_memory": "510.79", "additional_storage": "500.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2110.79"}, {"": "266", "type": "r3.large", "additional_memory": "316.47", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1616.47"}, {"": "267", "type": "r3.xlarge", "additional_memory": "316.47", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1616.47"}, {"": "268", "type": "r3.2xlarge", "additional_memory": "316.47", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1616.47"}, {"": "269", "type": "r3.4xlarge", "additional_memory": "316.47", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1616.47"}, {"": "270", "type": "r3.8xlarge", "additional_memory": "316.47", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1616.47"}, {"": "271", "type": "r4.large", "additional_memory": "655.15", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1755.15"}, {"": "272", "type": "r4.xlarge", "additional_memory": "655.15", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1755.15"}, {"": "273", "type": "r4.2xlarge", "additional_memory": "655.15", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1755.15"}, {"": "274", "type": "r4.4xlarge", "additional_memory": "655.15", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1755.15"}, {"": "275", "type": "r4.8xlarge", "additional_memory": "655.15", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1755.15"}, {"": "276", "type": "r4.16xlarge", "additional_memory": "655.15", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1755.15"}, {"": "277", "type": "r5.large", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "278", "type": "r5.xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "279", "type": "r5.2xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "280", "type": "r5.4xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "281", "type": "r5.8xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "282", "type": "r5.12xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "283", "type": "r5.16xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "284", "type": "r5.24xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "285", "type": "r5.metal", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "286", "type": "r5a.large", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "287", "type": "r5a.xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "288", "type": "r5a.2xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "289", "type": "r5a.4xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "290", "type": "r5a.8xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "291", "type": "r5a.12xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "292", "type": "r5a.16xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "293", "type": "r5a.24xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "294", "type": "r5ad.large", "additional_memory": "1043.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2543.79"}, {"": "295", "type": "r5ad.xlarge", "additional_memory": "1043.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2543.79"}, {"": "296", "type": "r5ad.2xlarge", "additional_memory": "1043.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2543.79"}, {"": "297", "type": "r5ad.4xlarge", "additional_memory": "1043.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2543.79"}, {"": "298", "type": "r5ad.8xlarge", "additional_memory": "1043.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2543.79"}, {"": "299", "type": "r5ad.12xlarge", "additional_memory": "1043.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2543.79"}, {"": "300", "type": "r5ad.16xlarge", "additional_memory": "1043.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2543.79"}, {"": "301", "type": "r5ad.24xlarge", "additional_memory": "1043.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2543.79"}, {"": "302", "type": "r5d.large", "additional_memory": "1043.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2543.79"}, {"": "303", "type": "r5d.xlarge", "additional_memory": "1043.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2543.79"}, {"": "304", "type": "r5d.2xlarge", "additional_memory": "1043.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2543.79"}, {"": "305", "type": "r5d.4xlarge", "additional_memory": "1043.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2543.79"}, {"": "306", "type": "r5d.8xlarge", "additional_memory": "1043.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2543.79"}, {"": "307", "type": "r5d.12xlarge", "additional_memory": "1043.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2543.79"}, {"": "308", "type": "r5d.16xlarge", "additional_memory": "1043.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2543.79"}, {"": "309", "type": "r5d.24xlarge", "additional_memory": "1043.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2543.79"}, {"": "310", "type": "r5d.metal", "additional_memory": "1043.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2543.79"}, {"": "311", "type": "r5dn.large", "additional_memory": "1043.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2543.79"}, {"": "312", "type": "r5dn.xlarge", "additional_memory": "1043.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2543.79"}, {"": "313", "type": "r5dn.2xlarge", "additional_memory": "1043.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2543.79"}, {"": "314", "type": "r5dn.4xlarge", "additional_memory": "1043.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2543.79"}, {"": "315", "type": "r5dn.8xlarge", "additional_memory": "1043.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2543.79"}, {"": "316", "type": "r5dn.12xlarge", "additional_memory": "1043.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2543.79"}, {"": "317", "type": "r5dn.16xlarge", "additional_memory": "1043.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2543.79"}, {"": "318", "type": "r5dn.24xlarge", "additional_memory": "1043.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2543.79"}, {"": "319", "type": "r5dn.metal", "additional_memory": "1043.79", "additional_storage": "400.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2543.79"}, {"": "320", "type": "r5n.large", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "321", "type": "r5n.xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "322", "type": "r5n.2xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "323", "type": "r5n.4xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "324", "type": "r5n.8xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "325", "type": "r5n.12xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "326", "type": "r5n.16xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "327", "type": "r5n.24xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "328", "type": "r5n.metal", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "329", "type": "r5b.large", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "330", "type": "r5b.xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "331", "type": "r5b.2xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "332", "type": "r5b.4xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "333", "type": "r5b.8xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "334", "type": "r5b.12xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "335", "type": "r5b.16xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "336", "type": "r5b.24xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "337", "type": "r5b.metal", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "338", "type": "r6g.medium", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1688.46"}, {"": "339", "type": "r6g.large", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1688.46"}, {"": "340", "type": "r6g.xlarge", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1688.46"}, {"": "341", "type": "r6g.2xlarge", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1688.46"}, {"": "342", "type": "r6g.4xlarge", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1688.46"}, {"": "343", "type": "r6g.8xlarge", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1688.46"}, {"": "344", "type": "r6g.12xlarge", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1688.46"}, {"": "345", "type": "r6g.16xlarge", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1688.46"}, {"": "346", "type": "r6g.metal", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1688.46"}, {"": "347", "type": "r6gd.medium", "additional_memory": "688.46", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1888.46"}, {"": "348", "type": "r6gd.large", "additional_memory": "688.46", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1888.46"}, {"": "349", "type": "r6gd.xlarge", "additional_memory": "688.46", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1888.46"}, {"": "350", "type": "r6gd.2xlarge", "additional_memory": "688.46", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1888.46"}, {"": "351", "type": "r6gd.4xlarge", "additional_memory": "688.46", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1888.46"}, {"": "352", "type": "r6gd.8xlarge", "additional_memory": "688.46", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1888.46"}, {"": "353", "type": "r6gd.12xlarge", "additional_memory": "688.46", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1888.46"}, {"": "354", "type": "r6gd.16xlarge", "additional_memory": "688.46", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1888.46"}, {"": "355", "type": "r6gd.metal", "additional_memory": "688.46", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1888.46"}, {"": "356", "type": "t1.micro", "additional_memory": "177.67", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1277.67"}, {"": "357", "type": "t2.nano", "additional_memory": "377.54", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1477.54"}, {"": "358", "type": "t2.micro", "additional_memory": "377.54", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1477.54"}, {"": "359", "type": "t2.small", "additional_memory": "377.54", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1477.54"}, {"": "360", "type": "t2.medium", "additional_memory": "377.54", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1477.54"}, {"": "361", "type": "t2.large", "additional_memory": "377.54", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1477.54"}, {"": "362", "type": "t2.xlarge", "additional_memory": "377.54", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1477.54"}, {"": "363", "type": "t2.2xlarge", "additional_memory": "377.54", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1477.54"}, {"": "364", "type": "t3.nano", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "365", "type": "t3.micro", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "366", "type": "t3.small", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "367", "type": "t3.medium", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "368", "type": "t3.large", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "369", "type": "t3.xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "370", "type": "t3.2xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "371", "type": "t3a.nano", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "372", "type": "t3a.micro", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "373", "type": "t3a.small", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "374", "type": "t3a.medium", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "375", "type": "t3a.large", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "376", "type": "t3a.xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "377", "type": "t3a.2xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "378", "type": "t4g.nano", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "379", "type": "t4g.micro", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "380", "type": "t4g.small", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "381", "type": "t4g.medium", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "382", "type": "t4g.large", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "383", "type": "t4g.xlarge", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "384", "type": "t4g.2xlarge", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "385", "type": "u-6tb1.metal", "additional_memory": "34089.79", "additional_storage": "0.0", "additional_cpus": "700.0", "additional_gpus": "0.0", "total": "35789.79"}, {"": "386", "type": "u-9tb1.metal", "additional_memory": "34089.79", "additional_storage": "0.0", "additional_cpus": "700.0", "additional_gpus": "0.0", "total": "35789.79"}, {"": "387", "type": "u-12tb1.metal", "additional_memory": "34089.79", "additional_storage": "0.0", "additional_cpus": "700.0", "additional_gpus": "0.0", "total": "35789.79"}, {"": "388", "type": "u-18tb1.metal", "additional_memory": "34089.79", "additional_storage": "0.0", "additional_cpus": "700.0", "additional_gpus": "0.0", "total": "35789.79"}, {"": "389", "type": "u-24tb1.metal", "additional_memory": "34089.79", "additional_storage": "0.0", "additional_cpus": "700.0", "additional_gpus": "0.0", "total": "35789.79"}, {"": "390", "type": "x1.16xlarge", "additional_memory": "2687.21", "additional_storage": "200.0", "additional_cpus": "300.0", "additional_gpus": "0.0", "total": "4187.21"}, {"": "391", "type": "x1.32xlarge", "additional_memory": "2687.21", "additional_storage": "200.0", "additional_cpus": "300.0", "additional_gpus": "0.0", "total": "4187.21"}, {"": "392", "type": "x1e.xlarge", "additional_memory": "5396.62", "additional_storage": "200.0", "additional_cpus": "300.0", "additional_gpus": "0.0", "total": "6896.62"}, {"": "393", "type": "x1e.2xlarge", "additional_memory": "5396.62", "additional_storage": "200.0", "additional_cpus": "300.0", "additional_gpus": "0.0", "total": "6896.62"}, {"": "394", "type": "x1e.4xlarge", "additional_memory": "5396.62", "additional_storage": "200.0", "additional_cpus": "300.0", "additional_gpus": "0.0", "total": "6896.62"}, {"": "395", "type": "x1e.8xlarge", "additional_memory": "5396.62", "additional_storage": "200.0", "additional_cpus": "300.0", "additional_gpus": "0.0", "total": "6896.62"}, {"": "396", "type": "x1e.16xlarge", "additional_memory": "5396.62", "additional_storage": "200.0", "additional_cpus": "300.0", "additional_gpus": "0.0", "total": "6896.62"}, {"": "397", "type": "x1e.32xlarge", "additional_memory": "5396.62", "additional_storage": "200.0", "additional_cpus": "300.0", "additional_gpus": "0.0", "total": "6896.62"}, {"": "398", "type": "x2gd.medium", "additional_memory": "1399.12", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2599.12"}, {"": "399", "type": "x2gd.large", "additional_memory": "1399.12", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2599.12"}, {"": "400", "type": "x2gd.xlarge", "additional_memory": "1399.12", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2599.12"}, {"": "401", "type": "x2gd.2xlarge", "additional_memory": "1399.12", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2599.12"}, {"": "402", "type": "x2gd.4xlarge", "additional_memory": "1399.12", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2599.12"}, {"": "403", "type": "x2gd.8xlarge", "additional_memory": "1399.12", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2599.12"}, {"": "404", "type": "x2gd.12xlarge", "additional_memory": "1399.12", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2599.12"}, {"": "405", "type": "x2gd.16xlarge", "additional_memory": "1399.12", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2599.12"}, {"": "406", "type": "x2gd.metal", "additional_memory": "1399.12", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2599.12"}, {"": "407", "type": "z1d.large", "additional_memory": "510.79", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1810.79"}, {"": "408", "type": "z1d.xlarge", "additional_memory": "510.79", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1810.79"}, {"": "409", "type": "z1d.2xlarge", "additional_memory": "510.79", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1810.79"}, {"": "410", "type": "z1d.3xlarge", "additional_memory": "510.79", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1810.79"}, {"": "411", "type": "z1d.6xlarge", "additional_memory": "510.79", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1810.79"}, {"": "412", "type": "z1d.12xlarge", "additional_memory": "510.79", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1810.79"}, {"": "413", "type": "z1d.metal", "additional_memory": "510.79", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1810.79"}, {"": "414", "type": "cache.t2.micro", "additional_memory": "377.54", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1477.54"}, {"": "415", "type": "cache.t2.small", "additional_memory": "377.54", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1477.54"}, {"": "416", "type": "cache.t2.medium", "additional_memory": "377.54", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1477.54"}, {"": "417", "type": "cache.t3.micro", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "418", "type": "cache.t3.small", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "419", "type": "cache.t3.medium", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "420", "type": "cache.m3.medium", "additional_memory": "510.79", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1710.79"}, {"": "421", "type": "cache.m4.large", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "422", "type": "cache.m4.xlarge", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "423", "type": "cache.m4.2xlarge", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "424", "type": "cache.m4.4xlarge", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "425", "type": "cache.m4.10xlarge", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "426", "type": "cache.m5.large", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "427", "type": "cache.m5.xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "428", "type": "cache.m5.2xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "429", "type": "cache.m5.4xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "430", "type": "cache.m5.12xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "431", "type": "cache.m5.24xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "432", "type": "cache.m6g.large", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "433", "type": "cache.m6g.xlarge", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "434", "type": "cache.m6g.2xlarge", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "435", "type": "cache.m6g.4xlarge", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "436", "type": "cache.m6g.8xlarge", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "437", "type": "cache.m6g.12xlarge", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "438", "type": "cache.m6g.16xlarge", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "439", "type": "cache.r3.2xlarge", "additional_memory": "316.47", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1516.47"}, {"": "440", "type": "cache.r4.large", "additional_memory": "655.15", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1755.15"}, {"": "441", "type": "cache.r4.xlarge", "additional_memory": "655.15", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1755.15"}, {"": "442", "type": "cache.r4.2xlarge", "additional_memory": "655.15", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1755.15"}, {"": "443", "type": "cache.r4.4xlarge", "additional_memory": "655.15", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1755.15"}, {"": "444", "type": "cache.r4.8xlarge", "additional_memory": "655.15", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1755.15"}, {"": "445", "type": "cache.r4.16xlarge", "additional_memory": "655.15", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1755.15"}, {"": "446", "type": "cache.r5.large", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "447", "type": "cache.r5.xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "448", "type": "cache.r5.2xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "449", "type": "cache.r5.4xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "450", "type": "cache.r5.12xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "451", "type": "cache.r5.24xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "452", "type": "cache.r6g.large", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1688.46"}, {"": "453", "type": "cache.r6g.xlarge", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1688.46"}, {"": "454", "type": "cache.r6g.2xlarge", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1688.46"}, {"": "455", "type": "cache.r6g.4xlarge", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1688.46"}, {"": "456", "type": "cache.r6g.8xlarge", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1688.46"}, {"": "457", "type": "cache.r6g.12xlarge", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1688.46"}, {"": "458", "type": "cache.r6g.16xlarge", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1688.46"}, {"": "459", "type": "t3.small.elasticsearch", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "460", "type": "t3.medium.elasticsearch", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "461", "type": "t2.micro.elasticsearch", "additional_memory": "377.54", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1477.54"}, {"": "462", "type": "t2.small.elasticsearch", "additional_memory": "377.54", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1477.54"}, {"": "463", "type": "t2.medium.elasticsearch", "additional_memory": "377.54", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1477.54"}, {"": "464", "type": "m5.large.elasticsearch", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "465", "type": "m5.xlarge.elasticsearch", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "466", "type": "m5.2xlarge.elasticsearch", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "467", "type": "m5.4xlarge.elasticsearch", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "468", "type": "m5.12xlarge.elasticsearch", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "469", "type": "m4.large.elasticsearch", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "470", "type": "m4.xlarge.elasticsearch", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "471", "type": "m4.2xlarge.elasticsearch", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "472", "type": "m4.4xlarge.elasticsearch", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "473", "type": "m4.10xlarge.elasticsearch", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "474", "type": "m3.medium.elasticsearch", "additional_memory": "310.92", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.92"}, {"": "475", "type": "m3.large.elasticsearch", "additional_memory": "310.92", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.92"}, {"": "476", "type": "m3.xlarge.elasticsearch", "additional_memory": "310.92", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.92"}, {"": "477", "type": "m3.2xlarge.elasticsearch", "additional_memory": "310.92", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.92"}, {"": "478", "type": "c5.large.elasticsearch", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1344.29"}, {"": "479", "type": "c5.xlarge.elasticsearch", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1344.29"}, {"": "480", "type": "c5.2xlarge.elasticsearch", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1344.29"}, {"": "481", "type": "c5.4xlarge.elasticsearch", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1344.29"}, {"": "482", "type": "c5.9xlarge.elasticsearch", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1344.29"}, {"": "483", "type": "c5.18xlarge.elasticsearch", "additional_memory": "244.29", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1344.29"}, {"": "484", "type": "c4.large.elasticsearch", "additional_memory": "61.07", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1161.07"}, {"": "485", "type": "c4.xlarge.elasticsearch", "additional_memory": "61.07", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1161.07"}, {"": "486", "type": "c4.2xlarge.elasticsearch", "additional_memory": "61.07", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1161.07"}, {"": "487", "type": "c4.4xlarge.elasticsearch", "additional_memory": "61.07", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1161.07"}, {"": "488", "type": "c4.8xlarge.elasticsearch", "additional_memory": "61.07", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1161.07"}, {"": "489", "type": "r5.large.elasticsearch", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "490", "type": "r5.xlarge.elasticsearch", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "491", "type": "r5.2xlarge.elasticsearch", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "492", "type": "r5.4xlarge.elasticsearch", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "493", "type": "r5.12xlarge.elasticsearch", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "494", "type": "r4.large.elasticsearch", "additional_memory": "655.15", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1755.15"}, {"": "495", "type": "r4.xlarge.elasticsearch", "additional_memory": "655.15", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1755.15"}, {"": "496", "type": "r4.2xlarge.elasticsearch", "additional_memory": "655.15", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1755.15"}, {"": "497", "type": "r4.4xlarge.elasticsearch", "additional_memory": "655.15", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1755.15"}, {"": "498", "type": "r4.8xlarge.elasticsearch", "additional_memory": "655.15", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1755.15"}, {"": "499", "type": "r4.16xlarge.elasticsearch", "additional_memory": "655.15", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1755.15"}, {"": "500", "type": "r3.large.elasticsearch", "additional_memory": "316.47", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1616.47"}, {"": "501", "type": "r3.xlarge.elasticsearch", "additional_memory": "316.47", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1616.47"}, {"": "502", "type": "r3.2xlarge.elasticsearch", "additional_memory": "316.47", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1616.47"}, {"": "503", "type": "r3.4xlarge.elasticsearch", "additional_memory": "316.47", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1616.47"}, {"": "504", "type": "r3.8xlarge.elasticsearch", "additional_memory": "316.47", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1616.47"}, {"": "505", "type": "i3.large.elasticsearch", "additional_memory": "688.46", "additional_storage": "800.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2588.46"}, {"": "506", "type": "i3.xlarge.elasticsearch", "additional_memory": "688.46", "additional_storage": "800.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2588.46"}, {"": "507", "type": "i3.2xlarge.elasticsearch", "additional_memory": "688.46", "additional_storage": "800.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2588.46"}, {"": "508", "type": "i3.4xlarge.elasticsearch", "additional_memory": "688.46", "additional_storage": "800.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2588.46"}, {"": "509", "type": "i3.8xlarge.elasticsearch", "additional_memory": "688.46", "additional_storage": "800.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2588.46"}, {"": "510", "type": "i3.16xlarge.elasticsearch", "additional_memory": "688.46", "additional_storage": "800.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2588.46"}, {"": "511", "type": "i2.xlarge.elasticsearch", "additional_memory": "316.47", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1616.47"}, {"": "512", "type": "i2.2xlarge.elasticsearch", "additional_memory": "316.47", "additional_storage": "200.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1616.47"}, {"": "513", "type": "m6g.large.elasticsearch", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "514", "type": "m6g.xlarge.elasticsearch", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "515", "type": "m6g.2xlarge.elasticsearch", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "516", "type": "m6g.4xlarge.elasticsearch", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "517", "type": "m6g.8xlarge.elasticsearch", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "518", "type": "m6g.12xlarge.elasticsearch", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "519", "type": "c6g.large.elasticsearch", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1155.46"}, {"": "520", "type": "c6g.xlarge.elasticsearch", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1155.46"}, {"": "521", "type": "c6g.2xlarge.elasticsearch", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1155.46"}, {"": "522", "type": "c6g.4xlarge.elasticsearch", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1155.46"}, {"": "523", "type": "c6g.8xlarge.elasticsearch", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1155.46"}, {"": "524", "type": "c6g.12xlarge.elasticsearch", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1155.46"}, {"": "525", "type": "r6g.large.elasticsearch", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1688.46"}, {"": "526", "type": "r6g.xlarge.elasticsearch", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1688.46"}, {"": "527", "type": "r6g.2xlarge.elasticsearch", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1688.46"}, {"": "528", "type": "r6g.4xlarge.elasticsearch", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1688.46"}, {"": "529", "type": "r6g.8xlarge.elasticsearch", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1688.46"}, {"": "530", "type": "r6g.12xlarge.elasticsearch", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1688.46"}, {"": "531", "type": "r6gd.large.elasticsearch", "additional_memory": "688.46", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1888.46"}, {"": "532", "type": "r6gd.xlarge.elasticsearch", "additional_memory": "688.46", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1888.46"}, {"": "533", "type": "r6gd.2xlarge.elasticsearch", "additional_memory": "688.46", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1888.46"}, {"": "534", "type": "r6gd.4xlarge.elasticsearch", "additional_memory": "688.46", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1888.46"}, {"": "535", "type": "r6gd.8xlarge.elasticsearch", "additional_memory": "688.46", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1888.46"}, {"": "536", "type": "r6gd.12xlarge.elasticsearch", "additional_memory": "688.46", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1888.46"}, {"": "537", "type": "r6gd.16xlarge.elasticsearch", "additional_memory": "688.46", "additional_storage": "200.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1888.46"}, {"": "538", "type": "db.m6g.large", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "539", "type": "db.m6g.xlarge", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "540", "type": "db.m6g.2xlarge", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "541", "type": "db.m6g.4xlarge", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "542", "type": "db.m6g.8xlarge", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "543", "type": "db.m6g.12xlarge", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "544", "type": "db.m6g.16xlarge", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1333.12"}, {"": "545", "type": "db.m5.large", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "546", "type": "db.m5.xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "547", "type": "db.m5.2xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "548", "type": "db.m5.4xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "549", "type": "db.m5.8xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "550", "type": "db.m5.12xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "551", "type": "db.m5.16xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "552", "type": "db.m5.24xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "553", "type": "db.m4.large", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "554", "type": "db.m4.xlarge", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "555", "type": "db.m4.2xlarge", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "556", "type": "db.m4.4xlarge", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "557", "type": "db.m4.10xlarge", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "558", "type": "db.m4.16xlarge", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "559", "type": "db.m3.medium", "additional_memory": "310.92", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1410.92"}, {"": "560", "type": "db.m3.large", "additional_memory": "310.92", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1410.92"}, {"": "561", "type": "db.m3.xlarge", "additional_memory": "310.92", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1410.92"}, {"": "562", "type": "db.m3.2xlarge", "additional_memory": "310.92", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1410.92"}, {"": "563", "type": "db.m1.small", "additional_memory": "144.35", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1244.35"}, {"": "564", "type": "db.m1.medium", "additional_memory": "144.35", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1244.35"}, {"": "565", "type": "db.m1.large", "additional_memory": "144.35", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1244.35"}, {"": "566", "type": "db.m1.xlarge", "additional_memory": "144.35", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1244.35"}, {"": "567", "type": "db.z1d.12xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "568", "type": "db.z1d.large", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "569", "type": "db.z1d.xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "570", "type": "db.z1d.2xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "571", "type": "db.z1d.3xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "572", "type": "db.z1d.6xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "573", "type": "db.x1e.xlarge", "additional_memory": "5396.62", "additional_storage": "0.0", "additional_cpus": "300.0", "additional_gpus": "0.0", "total": "6696.62"}, {"": "574", "type": "db.x1e.2xlarge", "additional_memory": "5396.62", "additional_storage": "0.0", "additional_cpus": "300.0", "additional_gpus": "0.0", "total": "6696.62"}, {"": "575", "type": "db.x1e.4xlarge", "additional_memory": "5396.62", "additional_storage": "0.0", "additional_cpus": "300.0", "additional_gpus": "0.0", "total": "6696.62"}, {"": "576", "type": "db.x1e.8xlarge", "additional_memory": "5396.62", "additional_storage": "0.0", "additional_cpus": "300.0", "additional_gpus": "0.0", "total": "6696.62"}, {"": "577", "type": "db.x1e.16xlarge", "additional_memory": "5396.62", "additional_storage": "0.0", "additional_cpus": "300.0", "additional_gpus": "0.0", "total": "6696.62"}, {"": "578", "type": "db.x1e.32xlarge", "additional_memory": "5396.62", "additional_storage": "0.0", "additional_cpus": "300.0", "additional_gpus": "0.0", "total": "6696.62"}, {"": "579", "type": "db.x1.32xlarge", "additional_memory": "2687.21", "additional_storage": "0.0", "additional_cpus": "300.0", "additional_gpus": "0.0", "total": "3987.21"}, {"": "580", "type": "db.x1.16xlarge", "additional_memory": "2687.21", "additional_storage": "0.0", "additional_cpus": "300.0", "additional_gpus": "0.0", "total": "3987.21"}, {"": "581", "type": "db.r6g.large", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1688.46"}, {"": "582", "type": "db.r6g.xlarge", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1688.46"}, {"": "583", "type": "db.r6g.2xlarge", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1688.46"}, {"": "584", "type": "db.r6g.4xlarge", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1688.46"}, {"": "585", "type": "db.r6g.12xlarge", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1688.46"}, {"": "586", "type": "db.r6g.16xlarge", "additional_memory": "688.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1688.46"}, {"": "587", "type": "db.r5.large", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "588", "type": "db.r5.xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "589", "type": "db.r5.2xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "590", "type": "db.r5.4xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "591", "type": "db.r5.8xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "592", "type": "db.r5.12xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "593", "type": "db.r5.16xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "594", "type": "db.r5.24xlarge", "additional_memory": "1043.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "595", "type": "db.r4.large", "additional_memory": "655.15", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1755.15"}, {"": "596", "type": "db.r4.xlarge", "additional_memory": "655.15", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1755.15"}, {"": "597", "type": "db.r4.2xlarge", "additional_memory": "655.15", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1755.15"}, {"": "598", "type": "db.r4.4xlarge", "additional_memory": "655.15", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1755.15"}, {"": "599", "type": "db.r4.8xlarge", "additional_memory": "655.15", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1755.15"}, {"": "600", "type": "db.r4.16xlarge", "additional_memory": "655.15", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1755.15"}, {"": "601", "type": "db.r3.large", "additional_memory": "316.47", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1416.47"}, {"": "602", "type": "db.r3.xlarge", "additional_memory": "316.47", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1416.47"}, {"": "603", "type": "db.r3.2xlarge", "additional_memory": "316.47", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1416.47"}, {"": "604", "type": "db.r3.4xlarge", "additional_memory": "316.47", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1416.47"}, {"": "605", "type": "db.r3.8xlarge", "additional_memory": "316.47", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1416.47"}, {"": "606", "type": "db.m2.xlarge", "additional_memory": "366.44", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1466.44"}, {"": "607", "type": "db.m2.2xlarge", "additional_memory": "366.44", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1466.44"}, {"": "608", "type": "db.m2.4xlarge", "additional_memory": "366.44", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1466.44"}, {"": "609", "type": "db.t3.micro", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "610", "type": "db.t3.small", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "611", "type": "db.t3.medium", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "612", "type": "db.t3.large", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "613", "type": "db.t3.xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "614", "type": "db.t3.2xlarge", "additional_memory": "510.79", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1610.79"}, {"": "615", "type": "db.t2.micro", "additional_memory": "377.54", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1477.54"}, {"": "616", "type": "db.t2.small", "additional_memory": "377.54", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1477.54"}, {"": "617", "type": "db.t2.medium", "additional_memory": "377.54", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1477.54"}, {"": "618", "type": "db.t2.large", "additional_memory": "377.54", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1477.54"}, {"": "619", "type": "db.t2.xlarge", "additional_memory": "377.54", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1477.54"}, {"": "620", "type": "db.t2.2xlarge", "additional_memory": "377.54", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1477.54"}] +[ + { + "": "0", + "type": "a1.medium", + "additional_memory": "22.21", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1022.21" + }, + { + "": "1", + "type": "a1.large", + "additional_memory": "22.21", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1022.21" + }, + { + "": "2", + "type": "a1.xlarge", + "additional_memory": "22.21", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1022.21" + }, + { + "": "3", + "type": "a1.2xlarge", + "additional_memory": "22.21", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1022.21" + }, + { + "": "4", + "type": "a1.4xlarge", + "additional_memory": "22.21", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1022.21" + }, + { + "": "5", + "type": "a1.metal", + "additional_memory": "22.21", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1022.21" + }, + { + "": "6", + "type": "c1.medium", + "additional_memory": "36.09", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1536.09" + }, + { + "": "7", + "type": "c1.xlarge", + "additional_memory": "36.09", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1536.09" + }, + { + "": "8", + "type": "cr1.8xlarge", + "additional_memory": "316.47", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1616.47" + }, + { + "": "9", + "type": "cc2.8xlarge", + "additional_memory": "61.77", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1561.77" + }, + { + "": "10", + "type": "c3.large", + "additional_memory": "61.07", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1361.07" + }, + { + "": "11", + "type": "c3.xlarge", + "additional_memory": "61.07", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1361.07" + }, + { + "": "12", + "type": "c3.2xlarge", + "additional_memory": "61.07", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1361.07" + }, + { + "": "13", + "type": "c3.4xlarge", + "additional_memory": "61.07", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1361.07" + }, + { + "": "14", + "type": "c3.8xlarge", + "additional_memory": "61.07", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1361.07" + }, + { + "": "15", + "type": "c4.large", + "additional_memory": "61.07", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1161.07" + }, + { + "": "16", + "type": "c4.xlarge", + "additional_memory": "61.07", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1161.07" + }, + { + "": "17", + "type": "c4.2xlarge", + "additional_memory": "61.07", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1161.07" + }, + { + "": "18", + "type": "c4.4xlarge", + "additional_memory": "61.07", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1161.07" + }, + { + "": "19", + "type": "c4.8xlarge", + "additional_memory": "61.07", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1161.07" + }, + { + "": "20", + "type": "c5.large", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1344.29" + }, + { + "": "21", + "type": "c5.xlarge", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1344.29" + }, + { + "": "22", + "type": "c5.2xlarge", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1344.29" + }, + { + "": "23", + "type": "c5.4xlarge", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1344.29" + }, + { + "": "24", + "type": "c5.9xlarge", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1344.29" + }, + { + "": "25", + "type": "c5.12xlarge", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1344.29" + }, + { + "": "26", + "type": "c5.18xlarge", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1344.29" + }, + { + "": "27", + "type": "c5.24xlarge", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1344.29" + }, + { + "": "28", + "type": "c5.metal", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1344.29" + }, + { + "": "29", + "type": "c5a.large", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1244.29" + }, + { + "": "30", + "type": "c5a.xlarge", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1244.29" + }, + { + "": "31", + "type": "c5a.2xlarge", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1244.29" + }, + { + "": "32", + "type": "c5a.4xlarge", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1244.29" + }, + { + "": "33", + "type": "c5a.8xlarge", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1244.29" + }, + { + "": "34", + "type": "c5a.12xlarge", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1244.29" + }, + { + "": "35", + "type": "c5a.16xlarge", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1244.29" + }, + { + "": "36", + "type": "c5a.24xlarge", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1244.29" + }, + { + "": "37", + "type": "c5ad.large", + "additional_memory": "244.29", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1444.29" + }, + { + "": "38", + "type": "c5ad.xlarge", + "additional_memory": "244.29", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1444.29" + }, + { + "": "39", + "type": "c5ad.2xlarge", + "additional_memory": "244.29", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1444.29" + }, + { + "": "40", + "type": "c5ad.4xlarge", + "additional_memory": "244.29", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1444.29" + }, + { + "": "41", + "type": "c5ad.8xlarge", + "additional_memory": "244.29", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1444.29" + }, + { + "": "42", + "type": "c5ad.12xlarge", + "additional_memory": "244.29", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1444.29" + }, + { + "": "43", + "type": "c5ad.16xlarge", + "additional_memory": "244.29", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1444.29" + }, + { + "": "44", + "type": "c5ad.24xlarge", + "additional_memory": "244.29", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1444.29" + }, + { + "": "45", + "type": "c5d.large", + "additional_memory": "244.29", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1544.29" + }, + { + "": "46", + "type": "c5d.xlarge", + "additional_memory": "244.29", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1544.29" + }, + { + "": "47", + "type": "c5d.2xlarge", + "additional_memory": "244.29", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1544.29" + }, + { + "": "48", + "type": "c5d.4xlarge", + "additional_memory": "244.29", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1544.29" + }, + { + "": "49", + "type": "c5d.9xlarge", + "additional_memory": "244.29", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1544.29" + }, + { + "": "50", + "type": "c5d.12xlarge", + "additional_memory": "244.29", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1744.29" + }, + { + "": "51", + "type": "c5d.18xlarge", + "additional_memory": "244.29", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1544.29" + }, + { + "": "52", + "type": "c5d.24xlarge", + "additional_memory": "244.29", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1744.29" + }, + { + "": "53", + "type": "c5d.metal", + "additional_memory": "244.29", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1744.29" + }, + { + "": "54", + "type": "c5n.large", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1344.29" + }, + { + "": "55", + "type": "c5n.xlarge", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1344.29" + }, + { + "": "56", + "type": "c5n.2xlarge", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1344.29" + }, + { + "": "57", + "type": "c5n.4xlarge", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1344.29" + }, + { + "": "58", + "type": "c5n.9xlarge", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1344.29" + }, + { + "": "59", + "type": "c5n.18xlarge", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1344.29" + }, + { + "": "60", + "type": "c5n.metal", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1344.29" + }, + { + "": "61", + "type": "c6g.medium", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1155.46" + }, + { + "": "62", + "type": "c6g.large", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1155.46" + }, + { + "": "63", + "type": "c6g.xlarge", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1155.46" + }, + { + "": "64", + "type": "c6g.2xlarge", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1155.46" + }, + { + "": "65", + "type": "c6g.4xlarge", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1155.46" + }, + { + "": "66", + "type": "c6g.8xlarge", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1155.46" + }, + { + "": "67", + "type": "c6g.12xlarge", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1155.46" + }, + { + "": "68", + "type": "c6g.16xlarge", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1155.46" + }, + { + "": "69", + "type": "c6g.metal", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1155.46" + }, + { + "": "70", + "type": "c6gd.medium", + "additional_memory": "155.46", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1355.46" + }, + { + "": "71", + "type": "c6gd.large", + "additional_memory": "155.46", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1355.46" + }, + { + "": "72", + "type": "c6gd.xlarge", + "additional_memory": "155.46", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1355.46" + }, + { + "": "73", + "type": "c6gd.2xlarge", + "additional_memory": "155.46", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1355.46" + }, + { + "": "74", + "type": "c6gd.4xlarge", + "additional_memory": "155.46", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1355.46" + }, + { + "": "75", + "type": "c6gd.8xlarge", + "additional_memory": "155.46", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1355.46" + }, + { + "": "76", + "type": "c6gd.12xlarge", + "additional_memory": "155.46", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1355.46" + }, + { + "": "77", + "type": "c6gd.16xlarge", + "additional_memory": "155.46", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1355.46" + }, + { + "": "78", + "type": "c6gd.metal", + "additional_memory": "155.46", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1355.46" + }, + { + "": "79", + "type": "c6gn.medium", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1155.46" + }, + { + "": "80", + "type": "c6gn.large", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1155.46" + }, + { + "": "81", + "type": "c6gn.xlarge", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1155.46" + }, + { + "": "82", + "type": "c6gn.2xlarge", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1155.46" + }, + { + "": "83", + "type": "c6gn.4xlarge", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1155.46" + }, + { + "": "84", + "type": "c6gn.8xlarge", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1155.46" + }, + { + "": "85", + "type": "c6gn.12xlarge", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1155.46" + }, + { + "": "86", + "type": "c6gn.16xlarge", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1155.46" + }, + { + "": "87", + "type": "d2.xlarge", + "additional_memory": "316.47", + "additional_storage": "1200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2616.47" + }, + { + "": "88", + "type": "d2.2xlarge", + "additional_memory": "316.47", + "additional_storage": "1200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2616.47" + }, + { + "": "89", + "type": "d2.4xlarge", + "additional_memory": "316.47", + "additional_storage": "1200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2616.47" + }, + { + "": "90", + "type": "d2.8xlarge", + "additional_memory": "316.47", + "additional_storage": "1200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2616.47" + }, + { + "": "91", + "type": "d3.xlarge", + "additional_memory": "333.12", + "additional_storage": "1200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2633.12" + }, + { + "": "92", + "type": "d3.2xlarge", + "additional_memory": "333.12", + "additional_storage": "1200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2633.12" + }, + { + "": "93", + "type": "d3.4xlarge", + "additional_memory": "333.12", + "additional_storage": "1200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2633.12" + }, + { + "": "94", + "type": "d3.8xlarge", + "additional_memory": "333.12", + "additional_storage": "1200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2633.12" + }, + { + "": "95", + "type": "d3en.xlarge", + "additional_memory": "244.29", + "additional_storage": "1200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2544.29" + }, + { + "": "96", + "type": "d3en.2xlarge", + "additional_memory": "244.29", + "additional_storage": "1200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2544.29" + }, + { + "": "97", + "type": "d3en.4xlarge", + "additional_memory": "244.29", + "additional_storage": "1200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2544.29" + }, + { + "": "98", + "type": "d3en.6xlarge", + "additional_memory": "244.29", + "additional_storage": "1200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2544.29" + }, + { + "": "99", + "type": "d3en.8xlarge", + "additional_memory": "244.29", + "additional_storage": "1200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2544.29" + }, + { + "": "100", + "type": "d3en.12xlarge", + "additional_memory": "244.29", + "additional_storage": "1200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2544.29" + }, + { + "": "101", + "type": "dc2.large", + "additional_memory": "316.47", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1816.47" + }, + { + "": "102", + "type": "dc2.8xlarge", + "additional_memory": "316.47", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1816.47" + }, + { + "": "103", + "type": "ds2.xlarge", + "additional_memory": "316.47", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1816.47" + }, + { + "": "104", + "type": "ds2.8xlarge", + "additional_memory": "316.47", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1816.47" + }, + { + "": "105", + "type": "f1.2xlarge", + "additional_memory": "1332.5", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2832.5" + }, + { + "": "106", + "type": "f1.4xlarge", + "additional_memory": "1332.5", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2832.5" + }, + { + "": "107", + "type": "f1.16xlarge", + "additional_memory": "1332.5", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2832.5" + }, + { + "": "108", + "type": "g2.2xlarge", + "additional_memory": "61.07", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "1961.07" + }, + { + "": "109", + "type": "g2.8xlarge", + "additional_memory": "61.07", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "1961.07" + }, + { + "": "110", + "type": "g3s.xlarge", + "additional_memory": "655.15", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "2355.15" + }, + { + "": "111", + "type": "g3.4xlarge", + "additional_memory": "655.15", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "2355.15" + }, + { + "": "112", + "type": "g3.8xlarge", + "additional_memory": "655.15", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "2355.15" + }, + { + "": "113", + "type": "g3.16xlarge", + "additional_memory": "655.15", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "2355.15" + }, + { + "": "114", + "type": "g4dn.xlarge", + "additional_memory": "510.79", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "1200.0", + "total": "3010.79" + }, + { + "": "115", + "type": "g4dn.2xlarge", + "additional_memory": "510.79", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "1200.0", + "total": "3010.79" + }, + { + "": "116", + "type": "g4dn.4xlarge", + "additional_memory": "510.79", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "1200.0", + "total": "3010.79" + }, + { + "": "117", + "type": "g4dn.8xlarge", + "additional_memory": "510.79", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "1200.0", + "total": "3010.79" + }, + { + "": "118", + "type": "g4dn.16xlarge", + "additional_memory": "510.79", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "1200.0", + "total": "3010.79" + }, + { + "": "119", + "type": "g4dn.12xlarge", + "additional_memory": "510.79", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "1200.0", + "total": "3010.79" + }, + { + "": "120", + "type": "g4dn.metal", + "additional_memory": "510.79", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "1200.0", + "total": "3010.79" + }, + { + "": "121", + "type": "g4ad.4xlarge", + "additional_memory": "510.79", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "600.0", + "total": "2310.79" + }, + { + "": "122", + "type": "g4ad.8xlarge", + "additional_memory": "510.79", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "600.0", + "total": "2310.79" + }, + { + "": "123", + "type": "g4ad.16xlarge", + "additional_memory": "510.79", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "600.0", + "total": "2310.79" + }, + { + "": "124", + "type": "h1.2xlarge", + "additional_memory": "333.12", + "additional_storage": "1200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2633.12" + }, + { + "": "125", + "type": "h1.4xlarge", + "additional_memory": "333.12", + "additional_storage": "1200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2633.12" + }, + { + "": "126", + "type": "h1.8xlarge", + "additional_memory": "333.12", + "additional_storage": "1200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2633.12" + }, + { + "": "127", + "type": "h1.16xlarge", + "additional_memory": "333.12", + "additional_storage": "1200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2633.12" + }, + { + "": "128", + "type": "hs1.8xlarge", + "additional_memory": "316.47", + "additional_storage": "1200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2616.47" + }, + { + "": "129", + "type": "i2.xlarge", + "additional_memory": "316.47", + "additional_storage": "800.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2216.47" + }, + { + "": "130", + "type": "i2.2xlarge", + "additional_memory": "316.47", + "additional_storage": "800.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2216.47" + }, + { + "": "131", + "type": "i2.4xlarge", + "additional_memory": "316.47", + "additional_storage": "800.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2216.47" + }, + { + "": "132", + "type": "i2.8xlarge", + "additional_memory": "316.47", + "additional_storage": "800.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2216.47" + }, + { + "": "133", + "type": "i3.large", + "additional_memory": "688.46", + "additional_storage": "800.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2588.46" + }, + { + "": "134", + "type": "i3.xlarge", + "additional_memory": "688.46", + "additional_storage": "800.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2588.46" + }, + { + "": "135", + "type": "i3.2xlarge", + "additional_memory": "688.46", + "additional_storage": "800.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2588.46" + }, + { + "": "136", + "type": "i3.4xlarge", + "additional_memory": "688.46", + "additional_storage": "800.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2588.46" + }, + { + "": "137", + "type": "i3.8xlarge", + "additional_memory": "688.46", + "additional_storage": "800.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2588.46" + }, + { + "": "138", + "type": "i3.16xlarge", + "additional_memory": "688.46", + "additional_storage": "800.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2588.46" + }, + { + "": "139", + "type": "i3.metal", + "additional_memory": "688.46", + "additional_storage": "800.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2588.46" + }, + { + "": "140", + "type": "i3en.large", + "additional_memory": "1043.79", + "additional_storage": "800.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2943.79" + }, + { + "": "141", + "type": "i3en.xlarge", + "additional_memory": "1043.79", + "additional_storage": "800.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2943.79" + }, + { + "": "142", + "type": "i3en.2xlarge", + "additional_memory": "1043.79", + "additional_storage": "800.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2943.79" + }, + { + "": "143", + "type": "i3en.3xlarge", + "additional_memory": "1043.79", + "additional_storage": "800.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2943.79" + }, + { + "": "144", + "type": "i3en.6xlarge", + "additional_memory": "1043.79", + "additional_storage": "800.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2943.79" + }, + { + "": "145", + "type": "i3en.12xlarge", + "additional_memory": "1043.79", + "additional_storage": "800.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2943.79" + }, + { + "": "146", + "type": "i3en.24xlarge", + "additional_memory": "1043.79", + "additional_storage": "800.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2943.79" + }, + { + "": "147", + "type": "i3en.metal", + "additional_memory": "1043.79", + "additional_storage": "800.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2943.79" + }, + { + "": "148", + "type": "inf1.xlarge", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1344.29" + }, + { + "": "149", + "type": "inf1.2xlarge", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1344.29" + }, + { + "": "150", + "type": "inf1.6xlarge", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1344.29" + }, + { + "": "151", + "type": "inf1.24xlarge", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1344.29" + }, + { + "": "152", + "type": "m1.small", + "additional_memory": "144.35", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1644.35" + }, + { + "": "153", + "type": "m1.medium", + "additional_memory": "144.35", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1644.35" + }, + { + "": "154", + "type": "m1.large", + "additional_memory": "144.35", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1644.35" + }, + { + "": "155", + "type": "m1.xlarge", + "additional_memory": "144.35", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1644.35" + }, + { + "": "156", + "type": "m2.xlarge", + "additional_memory": "366.44", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1666.44" + }, + { + "": "157", + "type": "m2.2xlarge", + "additional_memory": "366.44", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1666.44" + }, + { + "": "158", + "type": "m2.4xlarge", + "additional_memory": "366.44", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1666.44" + }, + { + "": "159", + "type": "m3.medium", + "additional_memory": "310.92", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.92" + }, + { + "": "160", + "type": "m3.large", + "additional_memory": "310.92", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.92" + }, + { + "": "161", + "type": "m3.xlarge", + "additional_memory": "310.92", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.92" + }, + { + "": "162", + "type": "m3.2xlarge", + "additional_memory": "310.92", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.92" + }, + { + "": "163", + "type": "m4.large", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "164", + "type": "m4.xlarge", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "165", + "type": "m4.2xlarge", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "166", + "type": "m4.4xlarge", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "167", + "type": "m4.10xlarge", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "168", + "type": "m4.16xlarge", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "169", + "type": "m5.large", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "170", + "type": "m5.xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "171", + "type": "m5.2xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "172", + "type": "m5.4xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "173", + "type": "m5.8xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "174", + "type": "m5.12xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "175", + "type": "m5.16xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "176", + "type": "m5.24xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "177", + "type": "m5.metal", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "178", + "type": "m5a.large", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "179", + "type": "m5a.xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "180", + "type": "m5a.2xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "181", + "type": "m5a.4xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "182", + "type": "m5a.8xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "183", + "type": "m5a.12xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "184", + "type": "m5a.16xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "185", + "type": "m5a.24xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "186", + "type": "m5ad.large", + "additional_memory": "510.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.79" + }, + { + "": "187", + "type": "m5ad.xlarge", + "additional_memory": "510.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.79" + }, + { + "": "188", + "type": "m5ad.2xlarge", + "additional_memory": "510.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.79" + }, + { + "": "189", + "type": "m5ad.4xlarge", + "additional_memory": "510.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.79" + }, + { + "": "190", + "type": "m5ad.8xlarge", + "additional_memory": "510.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.79" + }, + { + "": "191", + "type": "m5ad.12xlarge", + "additional_memory": "510.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.79" + }, + { + "": "192", + "type": "m5ad.16xlarge", + "additional_memory": "510.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.79" + }, + { + "": "193", + "type": "m5ad.24xlarge", + "additional_memory": "510.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.79" + }, + { + "": "194", + "type": "m5d.large", + "additional_memory": "510.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.79" + }, + { + "": "195", + "type": "m5d.xlarge", + "additional_memory": "510.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.79" + }, + { + "": "196", + "type": "m5d.2xlarge", + "additional_memory": "510.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.79" + }, + { + "": "197", + "type": "m5d.4xlarge", + "additional_memory": "510.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.79" + }, + { + "": "198", + "type": "m5d.8xlarge", + "additional_memory": "510.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.79" + }, + { + "": "199", + "type": "m5d.12xlarge", + "additional_memory": "510.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.79" + }, + { + "": "200", + "type": "m5d.16xlarge", + "additional_memory": "510.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.79" + }, + { + "": "201", + "type": "m5d.24xlarge", + "additional_memory": "510.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.79" + }, + { + "": "202", + "type": "m5d.metal", + "additional_memory": "510.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.79" + }, + { + "": "203", + "type": "m5dn.large", + "additional_memory": "510.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.79" + }, + { + "": "204", + "type": "m5dn.xlarge", + "additional_memory": "510.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.79" + }, + { + "": "205", + "type": "m5dn.2xlarge", + "additional_memory": "510.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.79" + }, + { + "": "206", + "type": "m5dn.4xlarge", + "additional_memory": "510.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.79" + }, + { + "": "207", + "type": "m5dn.8xlarge", + "additional_memory": "510.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.79" + }, + { + "": "208", + "type": "m5dn.12xlarge", + "additional_memory": "510.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.79" + }, + { + "": "209", + "type": "m5dn.16xlarge", + "additional_memory": "510.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.79" + }, + { + "": "210", + "type": "m5dn.24xlarge", + "additional_memory": "510.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.79" + }, + { + "": "211", + "type": "m5dn.metal", + "additional_memory": "510.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.79" + }, + { + "": "212", + "type": "m5n.large", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "213", + "type": "m5n.xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "214", + "type": "m5n.2xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "215", + "type": "m5n.4xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "216", + "type": "m5n.8xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "217", + "type": "m5n.12xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "218", + "type": "m5n.16xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "219", + "type": "m5n.24xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "220", + "type": "m5n.metal", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "221", + "type": "m5zn.large", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1344.29" + }, + { + "": "222", + "type": "m5zn.xlarge", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1344.29" + }, + { + "": "223", + "type": "m5zn.2xlarge", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1344.29" + }, + { + "": "224", + "type": "m5zn.3xlarge", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1344.29" + }, + { + "": "225", + "type": "m5zn.6xlarge", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1344.29" + }, + { + "": "226", + "type": "m5zn.12xlarge", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1344.29" + }, + { + "": "227", + "type": "m5zn.metal", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1344.29" + }, + { + "": "228", + "type": "m6g.medium", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "229", + "type": "m6g.large", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "230", + "type": "m6g.xlarge", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "231", + "type": "m6g.2xlarge", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "232", + "type": "m6g.4xlarge", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "233", + "type": "m6g.8xlarge", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "234", + "type": "m6g.12xlarge", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "235", + "type": "m6g.16xlarge", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "236", + "type": "m6g.metal", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "237", + "type": "m6gd.medium", + "additional_memory": "333.12", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1533.12" + }, + { + "": "238", + "type": "m6gd.large", + "additional_memory": "333.12", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1533.12" + }, + { + "": "239", + "type": "m6gd.xlarge", + "additional_memory": "333.12", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1533.12" + }, + { + "": "240", + "type": "m6gd.2xlarge", + "additional_memory": "333.12", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1533.12" + }, + { + "": "241", + "type": "m6gd.4xlarge", + "additional_memory": "333.12", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1533.12" + }, + { + "": "242", + "type": "m6gd.8xlarge", + "additional_memory": "333.12", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1533.12" + }, + { + "": "243", + "type": "m6gd.12xlarge", + "additional_memory": "333.12", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1533.12" + }, + { + "": "244", + "type": "m6gd.16xlarge", + "additional_memory": "333.12", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1533.12" + }, + { + "": "245", + "type": "m6gd.metal", + "additional_memory": "333.12", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1533.12" + }, + { + "": "246", + "type": "m6i.large", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1788.46" + }, + { + "": "247", + "type": "m6i.xlarge", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1788.46" + }, + { + "": "248", + "type": "m6i.2xlarge", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1788.46" + }, + { + "": "249", + "type": "m6i.4xlarge", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1788.46" + }, + { + "": "250", + "type": "m6i.8xlarge", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1788.46" + }, + { + "": "251", + "type": "m6i.12xlarge", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1788.46" + }, + { + "": "252", + "type": "m6i.16xlarge", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1788.46" + }, + { + "": "253", + "type": "m6i.24xlarge", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1788.46" + }, + { + "": "254", + "type": "m6i.32xlarge", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1788.46" + }, + { + "": "255", + "type": "mac1.metal", + "additional_memory": "22.21", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1022.21" + }, + { + "": "256", + "type": "p2.xlarge", + "additional_memory": "993.82", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "2400.0", + "total": "4493.82" + }, + { + "": "257", + "type": "p2.8xlarge", + "additional_memory": "993.82", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "2400.0", + "total": "4493.82" + }, + { + "": "258", + "type": "p2.16xlarge", + "additional_memory": "993.82", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "2400.0", + "total": "4493.82" + }, + { + "": "259", + "type": "p3.2xlarge", + "additional_memory": "1043.79", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "1200.0", + "total": "3543.79" + }, + { + "": "260", + "type": "p3.8xlarge", + "additional_memory": "1043.79", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "1200.0", + "total": "3543.79" + }, + { + "": "261", + "type": "p3.16xlarge", + "additional_memory": "1043.79", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "1200.0", + "total": "3543.79" + }, + { + "": "262", + "type": "p3dn.24xlarge", + "additional_memory": "1043.79", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "1200.0", + "total": "3543.79" + }, + { + "": "263", + "type": "p4d.24xlarge", + "additional_memory": "1576.79", + "additional_storage": "800.0", + "additional_cpus": "100.0", + "additional_gpus": "1200.0", + "total": "4676.79" + }, + { + "": "264", + "type": "ra3.4xlarge", + "additional_memory": "510.79", + "additional_storage": "500.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2110.79" + }, + { + "": "265", + "type": "ra3.16xlarge", + "additional_memory": "510.79", + "additional_storage": "500.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2110.79" + }, + { + "": "266", + "type": "r3.large", + "additional_memory": "316.47", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1616.47" + }, + { + "": "267", + "type": "r3.xlarge", + "additional_memory": "316.47", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1616.47" + }, + { + "": "268", + "type": "r3.2xlarge", + "additional_memory": "316.47", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1616.47" + }, + { + "": "269", + "type": "r3.4xlarge", + "additional_memory": "316.47", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1616.47" + }, + { + "": "270", + "type": "r3.8xlarge", + "additional_memory": "316.47", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1616.47" + }, + { + "": "271", + "type": "r4.large", + "additional_memory": "655.15", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1755.15" + }, + { + "": "272", + "type": "r4.xlarge", + "additional_memory": "655.15", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1755.15" + }, + { + "": "273", + "type": "r4.2xlarge", + "additional_memory": "655.15", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1755.15" + }, + { + "": "274", + "type": "r4.4xlarge", + "additional_memory": "655.15", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1755.15" + }, + { + "": "275", + "type": "r4.8xlarge", + "additional_memory": "655.15", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1755.15" + }, + { + "": "276", + "type": "r4.16xlarge", + "additional_memory": "655.15", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1755.15" + }, + { + "": "277", + "type": "r5.large", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "278", + "type": "r5.xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "279", + "type": "r5.2xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "280", + "type": "r5.4xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "281", + "type": "r5.8xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "282", + "type": "r5.12xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "283", + "type": "r5.16xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "284", + "type": "r5.24xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "285", + "type": "r5.metal", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "286", + "type": "r5a.large", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "287", + "type": "r5a.xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "288", + "type": "r5a.2xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "289", + "type": "r5a.4xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "290", + "type": "r5a.8xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "291", + "type": "r5a.12xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "292", + "type": "r5a.16xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "293", + "type": "r5a.24xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "294", + "type": "r5ad.large", + "additional_memory": "1043.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2543.79" + }, + { + "": "295", + "type": "r5ad.xlarge", + "additional_memory": "1043.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2543.79" + }, + { + "": "296", + "type": "r5ad.2xlarge", + "additional_memory": "1043.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2543.79" + }, + { + "": "297", + "type": "r5ad.4xlarge", + "additional_memory": "1043.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2543.79" + }, + { + "": "298", + "type": "r5ad.8xlarge", + "additional_memory": "1043.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2543.79" + }, + { + "": "299", + "type": "r5ad.12xlarge", + "additional_memory": "1043.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2543.79" + }, + { + "": "300", + "type": "r5ad.16xlarge", + "additional_memory": "1043.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2543.79" + }, + { + "": "301", + "type": "r5ad.24xlarge", + "additional_memory": "1043.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2543.79" + }, + { + "": "302", + "type": "r5d.large", + "additional_memory": "1043.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2543.79" + }, + { + "": "303", + "type": "r5d.xlarge", + "additional_memory": "1043.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2543.79" + }, + { + "": "304", + "type": "r5d.2xlarge", + "additional_memory": "1043.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2543.79" + }, + { + "": "305", + "type": "r5d.4xlarge", + "additional_memory": "1043.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2543.79" + }, + { + "": "306", + "type": "r5d.8xlarge", + "additional_memory": "1043.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2543.79" + }, + { + "": "307", + "type": "r5d.12xlarge", + "additional_memory": "1043.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2543.79" + }, + { + "": "308", + "type": "r5d.16xlarge", + "additional_memory": "1043.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2543.79" + }, + { + "": "309", + "type": "r5d.24xlarge", + "additional_memory": "1043.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2543.79" + }, + { + "": "310", + "type": "r5d.metal", + "additional_memory": "1043.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2543.79" + }, + { + "": "311", + "type": "r5dn.large", + "additional_memory": "1043.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2543.79" + }, + { + "": "312", + "type": "r5dn.xlarge", + "additional_memory": "1043.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2543.79" + }, + { + "": "313", + "type": "r5dn.2xlarge", + "additional_memory": "1043.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2543.79" + }, + { + "": "314", + "type": "r5dn.4xlarge", + "additional_memory": "1043.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2543.79" + }, + { + "": "315", + "type": "r5dn.8xlarge", + "additional_memory": "1043.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2543.79" + }, + { + "": "316", + "type": "r5dn.12xlarge", + "additional_memory": "1043.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2543.79" + }, + { + "": "317", + "type": "r5dn.16xlarge", + "additional_memory": "1043.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2543.79" + }, + { + "": "318", + "type": "r5dn.24xlarge", + "additional_memory": "1043.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2543.79" + }, + { + "": "319", + "type": "r5dn.metal", + "additional_memory": "1043.79", + "additional_storage": "400.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2543.79" + }, + { + "": "320", + "type": "r5n.large", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "321", + "type": "r5n.xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "322", + "type": "r5n.2xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "323", + "type": "r5n.4xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "324", + "type": "r5n.8xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "325", + "type": "r5n.12xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "326", + "type": "r5n.16xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "327", + "type": "r5n.24xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "328", + "type": "r5n.metal", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "329", + "type": "r5b.large", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "330", + "type": "r5b.xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "331", + "type": "r5b.2xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "332", + "type": "r5b.4xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "333", + "type": "r5b.8xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "334", + "type": "r5b.12xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "335", + "type": "r5b.16xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "336", + "type": "r5b.24xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "337", + "type": "r5b.metal", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "338", + "type": "r6g.medium", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1688.46" + }, + { + "": "339", + "type": "r6g.large", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1688.46" + }, + { + "": "340", + "type": "r6g.xlarge", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1688.46" + }, + { + "": "341", + "type": "r6g.2xlarge", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1688.46" + }, + { + "": "342", + "type": "r6g.4xlarge", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1688.46" + }, + { + "": "343", + "type": "r6g.8xlarge", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1688.46" + }, + { + "": "344", + "type": "r6g.12xlarge", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1688.46" + }, + { + "": "345", + "type": "r6g.16xlarge", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1688.46" + }, + { + "": "346", + "type": "r6g.metal", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1688.46" + }, + { + "": "347", + "type": "r6gd.medium", + "additional_memory": "688.46", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1888.46" + }, + { + "": "348", + "type": "r6gd.large", + "additional_memory": "688.46", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1888.46" + }, + { + "": "349", + "type": "r6gd.xlarge", + "additional_memory": "688.46", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1888.46" + }, + { + "": "350", + "type": "r6gd.2xlarge", + "additional_memory": "688.46", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1888.46" + }, + { + "": "351", + "type": "r6gd.4xlarge", + "additional_memory": "688.46", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1888.46" + }, + { + "": "352", + "type": "r6gd.8xlarge", + "additional_memory": "688.46", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1888.46" + }, + { + "": "353", + "type": "r6gd.12xlarge", + "additional_memory": "688.46", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1888.46" + }, + { + "": "354", + "type": "r6gd.16xlarge", + "additional_memory": "688.46", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1888.46" + }, + { + "": "355", + "type": "r6gd.metal", + "additional_memory": "688.46", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1888.46" + }, + { + "": "356", + "type": "t1.micro", + "additional_memory": "177.67", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1277.67" + }, + { + "": "357", + "type": "t2.nano", + "additional_memory": "377.54", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1477.54" + }, + { + "": "358", + "type": "t2.micro", + "additional_memory": "377.54", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1477.54" + }, + { + "": "359", + "type": "t2.small", + "additional_memory": "377.54", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1477.54" + }, + { + "": "360", + "type": "t2.medium", + "additional_memory": "377.54", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1477.54" + }, + { + "": "361", + "type": "t2.large", + "additional_memory": "377.54", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1477.54" + }, + { + "": "362", + "type": "t2.xlarge", + "additional_memory": "377.54", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1477.54" + }, + { + "": "363", + "type": "t2.2xlarge", + "additional_memory": "377.54", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1477.54" + }, + { + "": "364", + "type": "t3.nano", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "365", + "type": "t3.micro", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "366", + "type": "t3.small", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "367", + "type": "t3.medium", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "368", + "type": "t3.large", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "369", + "type": "t3.xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "370", + "type": "t3.2xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "371", + "type": "t3a.nano", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "372", + "type": "t3a.micro", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "373", + "type": "t3a.small", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "374", + "type": "t3a.medium", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "375", + "type": "t3a.large", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "376", + "type": "t3a.xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "377", + "type": "t3a.2xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "378", + "type": "t4g.nano", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "379", + "type": "t4g.micro", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "380", + "type": "t4g.small", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "381", + "type": "t4g.medium", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "382", + "type": "t4g.large", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "383", + "type": "t4g.xlarge", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "384", + "type": "t4g.2xlarge", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "385", + "type": "u-6tb1.metal", + "additional_memory": "34089.79", + "additional_storage": "0.0", + "additional_cpus": "700.0", + "additional_gpus": "0.0", + "total": "35789.79" + }, + { + "": "386", + "type": "u-9tb1.metal", + "additional_memory": "34089.79", + "additional_storage": "0.0", + "additional_cpus": "700.0", + "additional_gpus": "0.0", + "total": "35789.79" + }, + { + "": "387", + "type": "u-12tb1.metal", + "additional_memory": "34089.79", + "additional_storage": "0.0", + "additional_cpus": "700.0", + "additional_gpus": "0.0", + "total": "35789.79" + }, + { + "": "388", + "type": "u-18tb1.metal", + "additional_memory": "34089.79", + "additional_storage": "0.0", + "additional_cpus": "700.0", + "additional_gpus": "0.0", + "total": "35789.79" + }, + { + "": "389", + "type": "u-24tb1.metal", + "additional_memory": "34089.79", + "additional_storage": "0.0", + "additional_cpus": "700.0", + "additional_gpus": "0.0", + "total": "35789.79" + }, + { + "": "390", + "type": "x1.16xlarge", + "additional_memory": "2687.21", + "additional_storage": "200.0", + "additional_cpus": "300.0", + "additional_gpus": "0.0", + "total": "4187.21" + }, + { + "": "391", + "type": "x1.32xlarge", + "additional_memory": "2687.21", + "additional_storage": "200.0", + "additional_cpus": "300.0", + "additional_gpus": "0.0", + "total": "4187.21" + }, + { + "": "392", + "type": "x1e.xlarge", + "additional_memory": "5396.62", + "additional_storage": "200.0", + "additional_cpus": "300.0", + "additional_gpus": "0.0", + "total": "6896.62" + }, + { + "": "393", + "type": "x1e.2xlarge", + "additional_memory": "5396.62", + "additional_storage": "200.0", + "additional_cpus": "300.0", + "additional_gpus": "0.0", + "total": "6896.62" + }, + { + "": "394", + "type": "x1e.4xlarge", + "additional_memory": "5396.62", + "additional_storage": "200.0", + "additional_cpus": "300.0", + "additional_gpus": "0.0", + "total": "6896.62" + }, + { + "": "395", + "type": "x1e.8xlarge", + "additional_memory": "5396.62", + "additional_storage": "200.0", + "additional_cpus": "300.0", + "additional_gpus": "0.0", + "total": "6896.62" + }, + { + "": "396", + "type": "x1e.16xlarge", + "additional_memory": "5396.62", + "additional_storage": "200.0", + "additional_cpus": "300.0", + "additional_gpus": "0.0", + "total": "6896.62" + }, + { + "": "397", + "type": "x1e.32xlarge", + "additional_memory": "5396.62", + "additional_storage": "200.0", + "additional_cpus": "300.0", + "additional_gpus": "0.0", + "total": "6896.62" + }, + { + "": "398", + "type": "x2gd.medium", + "additional_memory": "1399.12", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2599.12" + }, + { + "": "399", + "type": "x2gd.large", + "additional_memory": "1399.12", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2599.12" + }, + { + "": "400", + "type": "x2gd.xlarge", + "additional_memory": "1399.12", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2599.12" + }, + { + "": "401", + "type": "x2gd.2xlarge", + "additional_memory": "1399.12", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2599.12" + }, + { + "": "402", + "type": "x2gd.4xlarge", + "additional_memory": "1399.12", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2599.12" + }, + { + "": "403", + "type": "x2gd.8xlarge", + "additional_memory": "1399.12", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2599.12" + }, + { + "": "404", + "type": "x2gd.12xlarge", + "additional_memory": "1399.12", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2599.12" + }, + { + "": "405", + "type": "x2gd.16xlarge", + "additional_memory": "1399.12", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2599.12" + }, + { + "": "406", + "type": "x2gd.metal", + "additional_memory": "1399.12", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2599.12" + }, + { + "": "407", + "type": "z1d.large", + "additional_memory": "510.79", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1810.79" + }, + { + "": "408", + "type": "z1d.xlarge", + "additional_memory": "510.79", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1810.79" + }, + { + "": "409", + "type": "z1d.2xlarge", + "additional_memory": "510.79", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1810.79" + }, + { + "": "410", + "type": "z1d.3xlarge", + "additional_memory": "510.79", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1810.79" + }, + { + "": "411", + "type": "z1d.6xlarge", + "additional_memory": "510.79", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1810.79" + }, + { + "": "412", + "type": "z1d.12xlarge", + "additional_memory": "510.79", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1810.79" + }, + { + "": "413", + "type": "z1d.metal", + "additional_memory": "510.79", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1810.79" + }, + { + "": "414", + "type": "cache.t2.micro", + "additional_memory": "377.54", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1477.54" + }, + { + "": "415", + "type": "cache.t2.small", + "additional_memory": "377.54", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1477.54" + }, + { + "": "416", + "type": "cache.t2.medium", + "additional_memory": "377.54", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1477.54" + }, + { + "": "417", + "type": "cache.t3.micro", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "418", + "type": "cache.t3.small", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "419", + "type": "cache.t3.medium", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "420", + "type": "cache.m3.medium", + "additional_memory": "510.79", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1710.79" + }, + { + "": "421", + "type": "cache.m4.large", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "422", + "type": "cache.m4.xlarge", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "423", + "type": "cache.m4.2xlarge", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "424", + "type": "cache.m4.4xlarge", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "425", + "type": "cache.m4.10xlarge", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "426", + "type": "cache.m5.large", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "427", + "type": "cache.m5.xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "428", + "type": "cache.m5.2xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "429", + "type": "cache.m5.4xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "430", + "type": "cache.m5.12xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "431", + "type": "cache.m5.24xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "432", + "type": "cache.m6g.large", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "433", + "type": "cache.m6g.xlarge", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "434", + "type": "cache.m6g.2xlarge", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "435", + "type": "cache.m6g.4xlarge", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "436", + "type": "cache.m6g.8xlarge", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "437", + "type": "cache.m6g.12xlarge", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "438", + "type": "cache.m6g.16xlarge", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "439", + "type": "cache.r3.2xlarge", + "additional_memory": "316.47", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1516.47" + }, + { + "": "440", + "type": "cache.r4.large", + "additional_memory": "655.15", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1755.15" + }, + { + "": "441", + "type": "cache.r4.xlarge", + "additional_memory": "655.15", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1755.15" + }, + { + "": "442", + "type": "cache.r4.2xlarge", + "additional_memory": "655.15", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1755.15" + }, + { + "": "443", + "type": "cache.r4.4xlarge", + "additional_memory": "655.15", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1755.15" + }, + { + "": "444", + "type": "cache.r4.8xlarge", + "additional_memory": "655.15", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1755.15" + }, + { + "": "445", + "type": "cache.r4.16xlarge", + "additional_memory": "655.15", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1755.15" + }, + { + "": "446", + "type": "cache.r5.large", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "447", + "type": "cache.r5.xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "448", + "type": "cache.r5.2xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "449", + "type": "cache.r5.4xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "450", + "type": "cache.r5.12xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "451", + "type": "cache.r5.24xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "452", + "type": "cache.r6g.large", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1688.46" + }, + { + "": "453", + "type": "cache.r6g.xlarge", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1688.46" + }, + { + "": "454", + "type": "cache.r6g.2xlarge", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1688.46" + }, + { + "": "455", + "type": "cache.r6g.4xlarge", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1688.46" + }, + { + "": "456", + "type": "cache.r6g.8xlarge", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1688.46" + }, + { + "": "457", + "type": "cache.r6g.12xlarge", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1688.46" + }, + { + "": "458", + "type": "cache.r6g.16xlarge", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1688.46" + }, + { + "": "459", + "type": "t3.small.elasticsearch", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "460", + "type": "t3.medium.elasticsearch", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "461", + "type": "t2.micro.elasticsearch", + "additional_memory": "377.54", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1477.54" + }, + { + "": "462", + "type": "t2.small.elasticsearch", + "additional_memory": "377.54", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1477.54" + }, + { + "": "463", + "type": "t2.medium.elasticsearch", + "additional_memory": "377.54", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1477.54" + }, + { + "": "464", + "type": "m5.large.elasticsearch", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "465", + "type": "m5.xlarge.elasticsearch", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "466", + "type": "m5.2xlarge.elasticsearch", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "467", + "type": "m5.4xlarge.elasticsearch", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "468", + "type": "m5.12xlarge.elasticsearch", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "469", + "type": "m4.large.elasticsearch", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "470", + "type": "m4.xlarge.elasticsearch", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "471", + "type": "m4.2xlarge.elasticsearch", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "472", + "type": "m4.4xlarge.elasticsearch", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "473", + "type": "m4.10xlarge.elasticsearch", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "474", + "type": "m3.medium.elasticsearch", + "additional_memory": "310.92", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.92" + }, + { + "": "475", + "type": "m3.large.elasticsearch", + "additional_memory": "310.92", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.92" + }, + { + "": "476", + "type": "m3.xlarge.elasticsearch", + "additional_memory": "310.92", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.92" + }, + { + "": "477", + "type": "m3.2xlarge.elasticsearch", + "additional_memory": "310.92", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.92" + }, + { + "": "478", + "type": "c5.large.elasticsearch", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1344.29" + }, + { + "": "479", + "type": "c5.xlarge.elasticsearch", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1344.29" + }, + { + "": "480", + "type": "c5.2xlarge.elasticsearch", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1344.29" + }, + { + "": "481", + "type": "c5.4xlarge.elasticsearch", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1344.29" + }, + { + "": "482", + "type": "c5.9xlarge.elasticsearch", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1344.29" + }, + { + "": "483", + "type": "c5.18xlarge.elasticsearch", + "additional_memory": "244.29", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1344.29" + }, + { + "": "484", + "type": "c4.large.elasticsearch", + "additional_memory": "61.07", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1161.07" + }, + { + "": "485", + "type": "c4.xlarge.elasticsearch", + "additional_memory": "61.07", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1161.07" + }, + { + "": "486", + "type": "c4.2xlarge.elasticsearch", + "additional_memory": "61.07", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1161.07" + }, + { + "": "487", + "type": "c4.4xlarge.elasticsearch", + "additional_memory": "61.07", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1161.07" + }, + { + "": "488", + "type": "c4.8xlarge.elasticsearch", + "additional_memory": "61.07", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1161.07" + }, + { + "": "489", + "type": "r5.large.elasticsearch", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "490", + "type": "r5.xlarge.elasticsearch", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "491", + "type": "r5.2xlarge.elasticsearch", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "492", + "type": "r5.4xlarge.elasticsearch", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "493", + "type": "r5.12xlarge.elasticsearch", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "494", + "type": "r4.large.elasticsearch", + "additional_memory": "655.15", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1755.15" + }, + { + "": "495", + "type": "r4.xlarge.elasticsearch", + "additional_memory": "655.15", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1755.15" + }, + { + "": "496", + "type": "r4.2xlarge.elasticsearch", + "additional_memory": "655.15", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1755.15" + }, + { + "": "497", + "type": "r4.4xlarge.elasticsearch", + "additional_memory": "655.15", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1755.15" + }, + { + "": "498", + "type": "r4.8xlarge.elasticsearch", + "additional_memory": "655.15", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1755.15" + }, + { + "": "499", + "type": "r4.16xlarge.elasticsearch", + "additional_memory": "655.15", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1755.15" + }, + { + "": "500", + "type": "r3.large.elasticsearch", + "additional_memory": "316.47", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1616.47" + }, + { + "": "501", + "type": "r3.xlarge.elasticsearch", + "additional_memory": "316.47", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1616.47" + }, + { + "": "502", + "type": "r3.2xlarge.elasticsearch", + "additional_memory": "316.47", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1616.47" + }, + { + "": "503", + "type": "r3.4xlarge.elasticsearch", + "additional_memory": "316.47", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1616.47" + }, + { + "": "504", + "type": "r3.8xlarge.elasticsearch", + "additional_memory": "316.47", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1616.47" + }, + { + "": "505", + "type": "i3.large.elasticsearch", + "additional_memory": "688.46", + "additional_storage": "800.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2588.46" + }, + { + "": "506", + "type": "i3.xlarge.elasticsearch", + "additional_memory": "688.46", + "additional_storage": "800.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2588.46" + }, + { + "": "507", + "type": "i3.2xlarge.elasticsearch", + "additional_memory": "688.46", + "additional_storage": "800.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2588.46" + }, + { + "": "508", + "type": "i3.4xlarge.elasticsearch", + "additional_memory": "688.46", + "additional_storage": "800.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2588.46" + }, + { + "": "509", + "type": "i3.8xlarge.elasticsearch", + "additional_memory": "688.46", + "additional_storage": "800.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2588.46" + }, + { + "": "510", + "type": "i3.16xlarge.elasticsearch", + "additional_memory": "688.46", + "additional_storage": "800.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2588.46" + }, + { + "": "511", + "type": "i2.xlarge.elasticsearch", + "additional_memory": "316.47", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1616.47" + }, + { + "": "512", + "type": "i2.2xlarge.elasticsearch", + "additional_memory": "316.47", + "additional_storage": "200.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1616.47" + }, + { + "": "513", + "type": "m6g.large.elasticsearch", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "514", + "type": "m6g.xlarge.elasticsearch", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "515", + "type": "m6g.2xlarge.elasticsearch", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "516", + "type": "m6g.4xlarge.elasticsearch", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "517", + "type": "m6g.8xlarge.elasticsearch", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "518", + "type": "m6g.12xlarge.elasticsearch", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "519", + "type": "c6g.large.elasticsearch", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1155.46" + }, + { + "": "520", + "type": "c6g.xlarge.elasticsearch", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1155.46" + }, + { + "": "521", + "type": "c6g.2xlarge.elasticsearch", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1155.46" + }, + { + "": "522", + "type": "c6g.4xlarge.elasticsearch", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1155.46" + }, + { + "": "523", + "type": "c6g.8xlarge.elasticsearch", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1155.46" + }, + { + "": "524", + "type": "c6g.12xlarge.elasticsearch", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1155.46" + }, + { + "": "525", + "type": "r6g.large.elasticsearch", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1688.46" + }, + { + "": "526", + "type": "r6g.xlarge.elasticsearch", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1688.46" + }, + { + "": "527", + "type": "r6g.2xlarge.elasticsearch", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1688.46" + }, + { + "": "528", + "type": "r6g.4xlarge.elasticsearch", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1688.46" + }, + { + "": "529", + "type": "r6g.8xlarge.elasticsearch", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1688.46" + }, + { + "": "530", + "type": "r6g.12xlarge.elasticsearch", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1688.46" + }, + { + "": "531", + "type": "r6gd.large.elasticsearch", + "additional_memory": "688.46", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1888.46" + }, + { + "": "532", + "type": "r6gd.xlarge.elasticsearch", + "additional_memory": "688.46", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1888.46" + }, + { + "": "533", + "type": "r6gd.2xlarge.elasticsearch", + "additional_memory": "688.46", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1888.46" + }, + { + "": "534", + "type": "r6gd.4xlarge.elasticsearch", + "additional_memory": "688.46", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1888.46" + }, + { + "": "535", + "type": "r6gd.8xlarge.elasticsearch", + "additional_memory": "688.46", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1888.46" + }, + { + "": "536", + "type": "r6gd.12xlarge.elasticsearch", + "additional_memory": "688.46", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1888.46" + }, + { + "": "537", + "type": "r6gd.16xlarge.elasticsearch", + "additional_memory": "688.46", + "additional_storage": "200.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1888.46" + }, + { + "": "538", + "type": "db.m6g.large", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "539", + "type": "db.m6g.xlarge", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "540", + "type": "db.m6g.2xlarge", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "541", + "type": "db.m6g.4xlarge", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "542", + "type": "db.m6g.8xlarge", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "543", + "type": "db.m6g.12xlarge", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "544", + "type": "db.m6g.16xlarge", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1333.12" + }, + { + "": "545", + "type": "db.m5.large", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "546", + "type": "db.m5.xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "547", + "type": "db.m5.2xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "548", + "type": "db.m5.4xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "549", + "type": "db.m5.8xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "550", + "type": "db.m5.12xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "551", + "type": "db.m5.16xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "552", + "type": "db.m5.24xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "553", + "type": "db.m4.large", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "554", + "type": "db.m4.xlarge", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "555", + "type": "db.m4.2xlarge", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "556", + "type": "db.m4.4xlarge", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "557", + "type": "db.m4.10xlarge", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "558", + "type": "db.m4.16xlarge", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "559", + "type": "db.m3.medium", + "additional_memory": "310.92", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1410.92" + }, + { + "": "560", + "type": "db.m3.large", + "additional_memory": "310.92", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1410.92" + }, + { + "": "561", + "type": "db.m3.xlarge", + "additional_memory": "310.92", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1410.92" + }, + { + "": "562", + "type": "db.m3.2xlarge", + "additional_memory": "310.92", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1410.92" + }, + { + "": "563", + "type": "db.m1.small", + "additional_memory": "144.35", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1244.35" + }, + { + "": "564", + "type": "db.m1.medium", + "additional_memory": "144.35", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1244.35" + }, + { + "": "565", + "type": "db.m1.large", + "additional_memory": "144.35", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1244.35" + }, + { + "": "566", + "type": "db.m1.xlarge", + "additional_memory": "144.35", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1244.35" + }, + { + "": "567", + "type": "db.z1d.12xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "568", + "type": "db.z1d.large", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "569", + "type": "db.z1d.xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "570", + "type": "db.z1d.2xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "571", + "type": "db.z1d.3xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "572", + "type": "db.z1d.6xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "573", + "type": "db.x1e.xlarge", + "additional_memory": "5396.62", + "additional_storage": "0.0", + "additional_cpus": "300.0", + "additional_gpus": "0.0", + "total": "6696.62" + }, + { + "": "574", + "type": "db.x1e.2xlarge", + "additional_memory": "5396.62", + "additional_storage": "0.0", + "additional_cpus": "300.0", + "additional_gpus": "0.0", + "total": "6696.62" + }, + { + "": "575", + "type": "db.x1e.4xlarge", + "additional_memory": "5396.62", + "additional_storage": "0.0", + "additional_cpus": "300.0", + "additional_gpus": "0.0", + "total": "6696.62" + }, + { + "": "576", + "type": "db.x1e.8xlarge", + "additional_memory": "5396.62", + "additional_storage": "0.0", + "additional_cpus": "300.0", + "additional_gpus": "0.0", + "total": "6696.62" + }, + { + "": "577", + "type": "db.x1e.16xlarge", + "additional_memory": "5396.62", + "additional_storage": "0.0", + "additional_cpus": "300.0", + "additional_gpus": "0.0", + "total": "6696.62" + }, + { + "": "578", + "type": "db.x1e.32xlarge", + "additional_memory": "5396.62", + "additional_storage": "0.0", + "additional_cpus": "300.0", + "additional_gpus": "0.0", + "total": "6696.62" + }, + { + "": "579", + "type": "db.x1.32xlarge", + "additional_memory": "2687.21", + "additional_storage": "0.0", + "additional_cpus": "300.0", + "additional_gpus": "0.0", + "total": "3987.21" + }, + { + "": "580", + "type": "db.x1.16xlarge", + "additional_memory": "2687.21", + "additional_storage": "0.0", + "additional_cpus": "300.0", + "additional_gpus": "0.0", + "total": "3987.21" + }, + { + "": "581", + "type": "db.r6g.large", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1688.46" + }, + { + "": "582", + "type": "db.r6g.xlarge", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1688.46" + }, + { + "": "583", + "type": "db.r6g.2xlarge", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1688.46" + }, + { + "": "584", + "type": "db.r6g.4xlarge", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1688.46" + }, + { + "": "585", + "type": "db.r6g.12xlarge", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1688.46" + }, + { + "": "586", + "type": "db.r6g.16xlarge", + "additional_memory": "688.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1688.46" + }, + { + "": "587", + "type": "db.r5.large", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "588", + "type": "db.r5.xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "589", + "type": "db.r5.2xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "590", + "type": "db.r5.4xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "591", + "type": "db.r5.8xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "592", + "type": "db.r5.12xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "593", + "type": "db.r5.16xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "594", + "type": "db.r5.24xlarge", + "additional_memory": "1043.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "595", + "type": "db.r4.large", + "additional_memory": "655.15", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1755.15" + }, + { + "": "596", + "type": "db.r4.xlarge", + "additional_memory": "655.15", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1755.15" + }, + { + "": "597", + "type": "db.r4.2xlarge", + "additional_memory": "655.15", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1755.15" + }, + { + "": "598", + "type": "db.r4.4xlarge", + "additional_memory": "655.15", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1755.15" + }, + { + "": "599", + "type": "db.r4.8xlarge", + "additional_memory": "655.15", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1755.15" + }, + { + "": "600", + "type": "db.r4.16xlarge", + "additional_memory": "655.15", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1755.15" + }, + { + "": "601", + "type": "db.r3.large", + "additional_memory": "316.47", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1416.47" + }, + { + "": "602", + "type": "db.r3.xlarge", + "additional_memory": "316.47", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1416.47" + }, + { + "": "603", + "type": "db.r3.2xlarge", + "additional_memory": "316.47", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1416.47" + }, + { + "": "604", + "type": "db.r3.4xlarge", + "additional_memory": "316.47", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1416.47" + }, + { + "": "605", + "type": "db.r3.8xlarge", + "additional_memory": "316.47", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1416.47" + }, + { + "": "606", + "type": "db.m2.xlarge", + "additional_memory": "366.44", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1466.44" + }, + { + "": "607", + "type": "db.m2.2xlarge", + "additional_memory": "366.44", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1466.44" + }, + { + "": "608", + "type": "db.m2.4xlarge", + "additional_memory": "366.44", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1466.44" + }, + { + "": "609", + "type": "db.t3.micro", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "610", + "type": "db.t3.small", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "611", + "type": "db.t3.medium", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "612", + "type": "db.t3.large", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "613", + "type": "db.t3.xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "614", + "type": "db.t3.2xlarge", + "additional_memory": "510.79", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1610.79" + }, + { + "": "615", + "type": "db.t2.micro", + "additional_memory": "377.54", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1477.54" + }, + { + "": "616", + "type": "db.t2.small", + "additional_memory": "377.54", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1477.54" + }, + { + "": "617", + "type": "db.t2.medium", + "additional_memory": "377.54", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1477.54" + }, + { + "": "618", + "type": "db.t2.large", + "additional_memory": "377.54", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1477.54" + }, + { + "": "619", + "type": "db.t2.xlarge", + "additional_memory": "377.54", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1477.54" + }, + { + "": "620", + "type": "db.t2.2xlarge", + "additional_memory": "377.54", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1477.54" + } +] diff --git a/src/lib/ccf/aws-instances.json b/src/lib/ccf/aws-instances.json index d50682863..d958a047e 100644 --- a/src/lib/ccf/aws-instances.json +++ b/src/lib/ccf/aws-instances.json @@ -1 +1,21116 @@ -[{"Instance type": "a1.medium", "Release Date": "November 2018", "Instance vCPU": "1", "Platform Total Number of vCPU": "16", "Platform CPU Name": "Graviton", "Instance Memory (in GB)": "2", "Platform Memory (in GB)": "32", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,29", "PkgWatt @ 10%": "0,80", "PkgWatt @ 50%": "1,88", "PkgWatt @ 100%": "2,55", "RAMWatt @ Idle": "0,40", "RAMWatt @ 10%": "0,60", "RAMWatt @ 50%": "0,80", "RAMWatt @ 100%": "1,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "0,5", "Instance @ Idle": "1,2", "Instance @ 10%": "1,9", "Instance @ 50%": "3,2", "Instance @ 100%": "4,2", "Hardware Information on AWS Documentation & Comments": "AWS Graviton (ARM)"}, {"Instance type": "a1.large", "Release Date": "November 2018", "Instance vCPU": "2", "Platform Total Number of vCPU": "16", "Platform CPU Name": "Graviton", "Instance Memory (in GB)": "4", "Platform Memory (in GB)": "32", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,58", "PkgWatt @ 10%": "1,59", "PkgWatt @ 50%": "3,76", "PkgWatt @ 100%": "5,09", "RAMWatt @ Idle": "0,80", "RAMWatt @ 10%": "1,20", "RAMWatt @ 50%": "1,60", "RAMWatt @ 100%": "2,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,0", "Instance @ Idle": "2,4", "Instance @ 10%": "3,8", "Instance @ 50%": "6,4", "Instance @ 100%": "8,5", "Hardware Information on AWS Documentation & Comments": "AWS Graviton (ARM)"}, {"Instance type": "a1.xlarge", "Release Date": "November 2018", "Instance vCPU": "4", "Platform Total Number of vCPU": "16", "Platform CPU Name": "Graviton", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "32", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,16", "PkgWatt @ 10%": "3,18", "PkgWatt @ 50%": "7,52", "PkgWatt @ 100%": "10,19", "RAMWatt @ Idle": "1,60", "RAMWatt @ 10%": "2,40", "RAMWatt @ 50%": "3,20", "RAMWatt @ 100%": "4,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,0", "Instance @ Idle": "4,8", "Instance @ 10%": "7,6", "Instance @ 50%": "12,7", "Instance @ 100%": "17,0", "Hardware Information on AWS Documentation & Comments": "AWS Graviton (ARM)"}, {"Instance type": "a1.2xlarge", "Release Date": "November 2018", "Instance vCPU": "8", "Platform Total Number of vCPU": "16", "Platform CPU Name": "Graviton", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "32", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,32", "PkgWatt @ 10%": "6,37", "PkgWatt @ 50%": "15,05", "PkgWatt @ 100%": "20,37", "RAMWatt @ Idle": "3,20", "RAMWatt @ 10%": "4,80", "RAMWatt @ 50%": "6,40", "RAMWatt @ 100%": "9,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "4,0", "Instance @ Idle": "9,5", "Instance @ 10%": "15,2", "Instance @ 50%": "25,4", "Instance @ 100%": "34,0", "Hardware Information on AWS Documentation & Comments": "AWS Graviton (ARM)"}, {"Instance type": "a1.4xlarge", "Release Date": "November 2018", "Instance vCPU": "16", "Platform Total Number of vCPU": "16", "Platform CPU Name": "Graviton", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "32", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,65", "PkgWatt @ 10%": "12,73", "PkgWatt @ 50%": "30,09", "PkgWatt @ 100%": "40,74", "RAMWatt @ Idle": "6,40", "RAMWatt @ 10%": "9,60", "RAMWatt @ 50%": "12,80", "RAMWatt @ 100%": "19,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "8,0", "Instance @ Idle": "19,0", "Instance @ 10%": "30,3", "Instance @ 50%": "50,9", "Instance @ 100%": "67,9", "Hardware Information on AWS Documentation & Comments": "AWS Graviton (ARM)"}, {"Instance type": "a1.metal", "Release Date": "October 2019", "Instance vCPU": "16", "Platform Total Number of vCPU": "16", "Platform CPU Name": "Graviton", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "32", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,65", "PkgWatt @ 10%": "12,73", "PkgWatt @ 50%": "30,09", "PkgWatt @ 100%": "40,74", "RAMWatt @ Idle": "6,40", "RAMWatt @ 10%": "9,60", "RAMWatt @ 50%": "12,80", "RAMWatt @ 100%": "19,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "8,0", "Instance @ Idle": "19,0", "Instance @ 10%": "30,3", "Instance @ 50%": "50,9", "Instance @ 100%": "67,9", "Hardware Information on AWS Documentation & Comments": "AWS Graviton (ARM)"}, {"Instance type": "c1.medium", "Release Date": "May 2008", "Instance vCPU": "2", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon E5-2651 v2", "Instance Memory (in GB)": "1.7", "Platform Memory (in GB)": "42", "Storage Info (Type and Size in GB)": "1 x SSD 350", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,95", "PkgWatt @ 10%": "2,73", "PkgWatt @ 50%": "5,61", "PkgWatt @ 100%": "7,67", "RAMWatt @ Idle": "0,34", "RAMWatt @ 10%": "0,51", "RAMWatt @ 50%": "0,68", "RAMWatt @ 100%": "1,02", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,6", "Instance @ Idle": "2,9", "Instance @ 10%": "4,8", "Instance @ 50%": "7,9", "Instance @ 100%": "10,3", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "c1.xlarge", "Release Date": "May 2008", "Instance vCPU": "8", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon E5-2651 v2", "Instance Memory (in GB)": "7", "Platform Memory (in GB)": "42", "Storage Info (Type and Size in GB)": "4 x SSD 420", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "3,82", "PkgWatt @ 10%": "10,90", "PkgWatt @ 50%": "22,43", "PkgWatt @ 100%": "30,70", "RAMWatt @ Idle": "1,40", "RAMWatt @ 10%": "2,10", "RAMWatt @ 50%": "2,80", "RAMWatt @ 100%": "4,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "6,3", "Instance @ Idle": "11,6", "Instance @ 10%": "19,3", "Instance @ 50%": "31,6", "Instance @ 100%": "41,2", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "cr1.8xlarge", "Release Date": "January 2013", "Instance vCPU": "32", "Platform Total Number of vCPU": "32", "Platform CPU Name": "Xeon E5-2670", "Instance Memory (in GB)": "244", "Platform Memory (in GB)": "244", "Storage Info (Type and Size in GB)": "2 x 120 (SSD)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "27,74", "PkgWatt @ 10%": "79,20", "PkgWatt @ 50%": "162,90", "PkgWatt @ 100%": "222,97", "RAMWatt @ Idle": "48,80", "RAMWatt @ 10%": "73,20", "RAMWatt @ 50%": "97,60", "RAMWatt @ 100%": "146,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "46,0", "Instance @ Idle": "122,5", "Instance @ 10%": "198,4", "Instance @ 50%": "306,5", "Instance @ 100%": "415,4", "Hardware Information on AWS Documentation & Comments": "dual 2.6 GHz Intel Xeon E5-2670 processors"}, {"Instance type": "cc2.8xlarge", "Release Date": "November 2011", "Instance vCPU": "32", "Platform Total Number of vCPU": "32", "Platform CPU Name": "Xeon E5-2670", "Instance Memory (in GB)": "60.5", "Platform Memory (in GB)": "60.5", "Storage Info (Type and Size in GB)": "4 x SSD 840", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "27,74", "PkgWatt @ 10%": "79,20", "PkgWatt @ 50%": "162,90", "PkgWatt @ 100%": "222,97", "RAMWatt @ Idle": "12,10", "RAMWatt @ 10%": "18,15", "RAMWatt @ 50%": "24,20", "RAMWatt @ 100%": "36,30", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "46,0", "Instance @ Idle": "85,8", "Instance @ 10%": "143,3", "Instance @ 50%": "233,1", "Instance @ 100%": "305,3", "Hardware Information on AWS Documentation & Comments": "dual Intel Xeon processors"}, {"Instance type": "c3.large", "Release Date": "November 2013", "Instance vCPU": "2", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2680 v2", "Instance Memory (in GB)": "3.75", "Platform Memory (in GB)": "60", "Storage Info (Type and Size in GB)": "2 x 16 (SSD)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,39", "PkgWatt @ 10%": "3,96", "PkgWatt @ 50%": "8,14", "PkgWatt @ 100%": "11,15", "RAMWatt @ Idle": "0,75", "RAMWatt @ 10%": "1,13", "RAMWatt @ 50%": "1,50", "RAMWatt @ 100%": "2,25", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,3", "Instance @ Idle": "4,4", "Instance @ 10%": "7,4", "Instance @ 50%": "11,9", "Instance @ 100%": "15,7", "Hardware Information on AWS Documentation & Comments": "2.8 GHz Intel Xeon E5-2680v2 (Ivy Bridge) processor"}, {"Instance type": "c3.xlarge", "Release Date": "November 2013", "Instance vCPU": "4", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2680 v2", "Instance Memory (in GB)": "7.5", "Platform Memory (in GB)": "60", "Storage Info (Type and Size in GB)": "2 x 40 (SSD)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,77", "PkgWatt @ 10%": "7,92", "PkgWatt @ 50%": "16,29", "PkgWatt @ 100%": "22,30", "RAMWatt @ Idle": "1,50", "RAMWatt @ 10%": "2,25", "RAMWatt @ 50%": "3,00", "RAMWatt @ 100%": "4,50", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "4,6", "Instance @ Idle": "8,9", "Instance @ 10%": "14,8", "Instance @ 50%": "23,9", "Instance @ 100%": "31,4", "Hardware Information on AWS Documentation & Comments": "2.8 GHz Intel Xeon E5-2680v2 (Ivy Bridge) processor"}, {"Instance type": "c3.2xlarge", "Release Date": "November 2013", "Instance vCPU": "8", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2680 v2", "Instance Memory (in GB)": "15", "Platform Memory (in GB)": "60", "Storage Info (Type and Size in GB)": "2 x 80 (SSD)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "5,55", "PkgWatt @ 10%": "15,84", "PkgWatt @ 50%": "32,58", "PkgWatt @ 100%": "44,59", "RAMWatt @ Idle": "3,00", "RAMWatt @ 10%": "4,50", "RAMWatt @ 50%": "6,00", "RAMWatt @ 100%": "9,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "9,2", "Instance @ Idle": "17,7", "Instance @ 10%": "29,5", "Instance @ 50%": "47,8", "Instance @ 100%": "62,8", "Hardware Information on AWS Documentation & Comments": "2.8 GHz Intel Xeon E5-2680v2 (Ivy Bridge) processor"}, {"Instance type": "c3.4xlarge", "Release Date": "November 2013", "Instance vCPU": "16", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2680 v2", "Instance Memory (in GB)": "30", "Platform Memory (in GB)": "60", "Storage Info (Type and Size in GB)": "2 x 160 (SSD)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "11,10", "PkgWatt @ 10%": "31,68", "PkgWatt @ 50%": "65,16", "PkgWatt @ 100%": "89,19", "RAMWatt @ Idle": "6,00", "RAMWatt @ 10%": "9,00", "RAMWatt @ 50%": "12,00", "RAMWatt @ 100%": "18,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "18,4", "Instance @ Idle": "35,5", "Instance @ 10%": "59,1", "Instance @ 50%": "95,6", "Instance @ 100%": "125,6", "Hardware Information on AWS Documentation & Comments": "2.8 GHz Intel Xeon E5-2680v2 (Ivy Bridge) processor"}, {"Instance type": "c3.8xlarge", "Release Date": "November 2013", "Instance vCPU": "32", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2680 v2", "Instance Memory (in GB)": "60", "Platform Memory (in GB)": "60", "Storage Info (Type and Size in GB)": "2 x 320 (SSD)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "22,19", "PkgWatt @ 10%": "63,36", "PkgWatt @ 50%": "130,32", "PkgWatt @ 100%": "178,37", "RAMWatt @ Idle": "12,00", "RAMWatt @ 10%": "18,00", "RAMWatt @ 50%": "24,00", "RAMWatt @ 100%": "36,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "36,8", "Instance @ Idle": "71,0", "Instance @ 10%": "118,2", "Instance @ 50%": "191,1", "Instance @ 100%": "251,2", "Hardware Information on AWS Documentation & Comments": "2.8 GHz Intel Xeon E5-2680v2 (Ivy Bridge) processor"}, {"Instance type": "c4.large", "Release Date": "January 2015", "Instance vCPU": "2", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2666 v3", "Instance Memory (in GB)": "3.75", "Platform Memory (in GB)": "60", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,63", "PkgWatt @ 10%": "4,65", "PkgWatt @ 50%": "9,56", "PkgWatt @ 100%": "13,09", "RAMWatt @ Idle": "0,75", "RAMWatt @ 10%": "1,13", "RAMWatt @ 50%": "1,50", "RAMWatt @ 100%": "2,25", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,7", "Instance @ Idle": "5,1", "Instance @ 10%": "8,5", "Instance @ 50%": "13,8", "Instance @ 100%": "18,0", "Hardware Information on AWS Documentation & Comments": "2.9 GHz Intel Xeon E5-2666 v3 Processor"}, {"Instance type": "c4.xlarge", "Release Date": "January 2015", "Instance vCPU": "4", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2666 v3", "Instance Memory (in GB)": "7.5", "Platform Memory (in GB)": "60", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "3,26", "PkgWatt @ 10%": "9,30", "PkgWatt @ 50%": "19,12", "PkgWatt @ 100%": "26,17", "RAMWatt @ Idle": "1,50", "RAMWatt @ 10%": "2,25", "RAMWatt @ 50%": "3,00", "RAMWatt @ 100%": "4,50", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "5,4", "Instance @ Idle": "10,2", "Instance @ 10%": "16,9", "Instance @ 50%": "27,5", "Instance @ 100%": "36,1", "Hardware Information on AWS Documentation & Comments": "2.9 GHz Intel Xeon E5-2666 v3 Processor"}, {"Instance type": "c4.2xlarge", "Release Date": "January 2015", "Instance vCPU": "8", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2666 v3", "Instance Memory (in GB)": "15", "Platform Memory (in GB)": "60", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "6,51", "PkgWatt @ 10%": "18,59", "PkgWatt @ 50%": "38,25", "PkgWatt @ 100%": "52,35", "RAMWatt @ Idle": "3,00", "RAMWatt @ 10%": "4,50", "RAMWatt @ 50%": "6,00", "RAMWatt @ 100%": "9,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "10,8", "Instance @ Idle": "20,3", "Instance @ 10%": "33,9", "Instance @ 50%": "55,0", "Instance @ 100%": "72,1", "Hardware Information on AWS Documentation & Comments": "2.9 GHz Intel Xeon E5-2666 v3 Processor"}, {"Instance type": "c4.4xlarge", "Release Date": "January 2015", "Instance vCPU": "16", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2666 v3", "Instance Memory (in GB)": "30", "Platform Memory (in GB)": "60", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "13,03", "PkgWatt @ 10%": "37,19", "PkgWatt @ 50%": "76,49", "PkgWatt @ 100%": "104,70", "RAMWatt @ Idle": "6,00", "RAMWatt @ 10%": "9,00", "RAMWatt @ 50%": "12,00", "RAMWatt @ 100%": "18,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "21,6", "Instance @ Idle": "40,6", "Instance @ 10%": "67,8", "Instance @ 50%": "110,1", "Instance @ 100%": "144,3", "Hardware Information on AWS Documentation & Comments": "2.9 GHz Intel Xeon E5-2666 v3 Processor"}, {"Instance type": "c4.8xlarge", "Release Date": "January 2015", "Instance vCPU": "36", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2666 v3", "Instance Memory (in GB)": "60", "Platform Memory (in GB)": "60", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "29,31", "PkgWatt @ 10%": "83,68", "PkgWatt @ 50%": "172,10", "PkgWatt @ 100%": "235,57", "RAMWatt @ Idle": "12,00", "RAMWatt @ 10%": "18,00", "RAMWatt @ 50%": "24,00", "RAMWatt @ 100%": "36,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "48,6", "Instance @ Idle": "89,9", "Instance @ 10%": "150,3", "Instance @ 50%": "244,7", "Instance @ 100%": "320,2", "Hardware Information on AWS Documentation & Comments": "2.9 GHz Intel Xeon E5-2666 v3 Processor"}, {"Instance type": "c5.large", "Release Date": "November 2016", "Instance vCPU": "2", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon Platinum 8124M", "Instance Memory (in GB)": "4", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,41", "PkgWatt @ 10%": "3,75", "PkgWatt @ 50%": "8,14", "PkgWatt @ 100%": "11,77", "RAMWatt @ Idle": "0,78", "RAMWatt @ 10%": "1,41", "RAMWatt @ 50%": "2,47", "RAMWatt @ 100%": "3,53", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,7", "Instance @ Idle": "4,9", "Instance @ 10%": "7,8", "Instance @ 50%": "13,3", "Instance @ 100%": "18,0", "Hardware Information on AWS Documentation & Comments": "Up to 3.5GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)"}, {"Instance type": "c5.xlarge", "Release Date": "November 2016", "Instance vCPU": "4", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon Platinum 8124M", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,81", "PkgWatt @ 10%": "7,49", "PkgWatt @ 50%": "16,29", "PkgWatt @ 100%": "23,54", "RAMWatt @ Idle": "1,56", "RAMWatt @ 10%": "2,81", "RAMWatt @ 50%": "4,94", "RAMWatt @ 100%": "7,06", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "5,3", "Instance @ Idle": "9,7", "Instance @ 10%": "15,6", "Instance @ 50%": "26,6", "Instance @ 100%": "35,9", "Hardware Information on AWS Documentation & Comments": "Up to 3.5GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)"}, {"Instance type": "c5.2xlarge", "Release Date": "November 2016", "Instance vCPU": "8", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon Platinum 8124M", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "5,63", "PkgWatt @ 10%": "14,98", "PkgWatt @ 50%": "32,58", "PkgWatt @ 100%": "47,08", "RAMWatt @ Idle": "3,11", "RAMWatt @ 10%": "5,62", "RAMWatt @ 50%": "9,87", "RAMWatt @ 100%": "14,12", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "10,7", "Instance @ Idle": "19,4", "Instance @ 10%": "31,3", "Instance @ 50%": "53,1", "Instance @ 100%": "71,9", "Hardware Information on AWS Documentation & Comments": "Up to 3.5GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)"}, {"Instance type": "c5.4xlarge", "Release Date": "November 2016", "Instance vCPU": "16", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon Platinum 8124M", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "11,26", "PkgWatt @ 10%": "29,97", "PkgWatt @ 50%": "65,16", "PkgWatt @ 100%": "94,15", "RAMWatt @ Idle": "6,22", "RAMWatt @ 10%": "11,24", "RAMWatt @ 50%": "19,74", "RAMWatt @ 100%": "28,24", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "21,3", "Instance @ Idle": "38,8", "Instance @ 10%": "62,5", "Instance @ 50%": "106,2", "Instance @ 100%": "143,7", "Hardware Information on AWS Documentation & Comments": "Up to 3.5GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)"}, {"Instance type": "c5.9xlarge", "Release Date": "November 2019", "Instance vCPU": "36", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon Platinum 8124M", "Instance Memory (in GB)": "72", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "25,33", "PkgWatt @ 10%": "67,43", "PkgWatt @ 50%": "146,61", "PkgWatt @ 100%": "211,84", "RAMWatt @ Idle": "14,00", "RAMWatt @ 10%": "25,29", "RAMWatt @ 50%": "44,42", "RAMWatt @ 100%": "63,54", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "48,0", "Instance @ Idle": "87,3", "Instance @ 10%": "140,7", "Instance @ 50%": "239,0", "Instance @ 100%": "323,4", "Hardware Information on AWS Documentation & Comments": "Up to 3.5GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)"}, {"Instance type": "c5.12xlarge", "Release Date": "June 2019", "Instance vCPU": "48", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8275CL", "Instance Memory (in GB)": "96", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "28,97", "PkgWatt @ 10%": "87,77", "PkgWatt @ 50%": "224,16", "PkgWatt @ 100%": "313,38", "RAMWatt @ Idle": "18,28", "RAMWatt @ 10%": "33,13", "RAMWatt @ 50%": "69,19", "RAMWatt @ 100%": "105,24", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "48,0", "Instance @ Idle": "95,2", "Instance @ 10%": "168,9", "Instance @ 50%": "341,3", "Instance @ 100%": "466,6", "Hardware Information on AWS Documentation & Comments": "Up to 3.9 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "c5.18xlarge", "Release Date": "November 2019", "Instance vCPU": "72", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon Platinum 8124M", "Instance Memory (in GB)": "144", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "50,66", "PkgWatt @ 10%": "134,85", "PkgWatt @ 50%": "293,21", "PkgWatt @ 100%": "423,68", "RAMWatt @ Idle": "28,01", "RAMWatt @ 10%": "50,59", "RAMWatt @ 50%": "88,83", "RAMWatt @ 100%": "127,07", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "96,0", "Instance @ Idle": "174,7", "Instance @ 10%": "281,4", "Instance @ 50%": "478,0", "Instance @ 100%": "646,8", "Hardware Information on AWS Documentation & Comments": "Up to 3.5GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)"}, {"Instance type": "c5.24xlarge", "Release Date": "June 2019", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8275CL", "Instance Memory (in GB)": "192", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "57,93", "PkgWatt @ 10%": "175,53", "PkgWatt @ 50%": "448,31", "PkgWatt @ 100%": "626,76", "RAMWatt @ Idle": "36,55", "RAMWatt @ 10%": "66,26", "RAMWatt @ 50%": "138,37", "RAMWatt @ 100%": "210,48", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "96,0", "Instance @ Idle": "190,5", "Instance @ 10%": "337,8", "Instance @ 50%": "682,7", "Instance @ 100%": "933,2", "Hardware Information on AWS Documentation & Comments": "Up to 3.9 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "c5.metal", "Release Date": "June 2019", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8275CL", "Instance Memory (in GB)": "192", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "57,93", "PkgWatt @ 10%": "175,53", "PkgWatt @ 50%": "448,31", "PkgWatt @ 100%": "626,76", "RAMWatt @ Idle": "36,55", "RAMWatt @ 10%": "66,26", "RAMWatt @ 50%": "138,37", "RAMWatt @ 100%": "210,48", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "96,0", "Instance @ Idle": "190,5", "Instance @ 10%": "337,8", "Instance @ 50%": "682,7", "Instance @ 100%": "933,2", "Hardware Information on AWS Documentation & Comments": "Up to 3.9 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "c5a.large", "Release Date": "June 2020", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7R32", "Instance Memory (in GB)": "4", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,68", "PkgWatt @ 10%": "1,86", "PkgWatt @ 50%": "4,39", "PkgWatt @ 100%": "5,94", "RAMWatt @ Idle": "0,80", "RAMWatt @ 10%": "1,20", "RAMWatt @ 50%": "1,60", "RAMWatt @ 100%": "2,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,2", "Instance @ Idle": "2,6", "Instance @ 10%": "4,2", "Instance @ 50%": "7,2", "Instance @ 100%": "9,5", "Hardware Information on AWS Documentation & Comments": "Up to 3.3 GHz 2nd generation AMD EPYC 7002 Series Processor"}, {"Instance type": "c5a.xlarge", "Release Date": "June 2020", "Instance vCPU": "4", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7R32", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,35", "PkgWatt @ 10%": "3,71", "PkgWatt @ 50%": "8,78", "PkgWatt @ 100%": "11,88", "RAMWatt @ Idle": "1,60", "RAMWatt @ 10%": "2,40", "RAMWatt @ 50%": "3,20", "RAMWatt @ 100%": "4,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,3", "Instance @ Idle": "5,3", "Instance @ 10%": "8,4", "Instance @ 50%": "14,3", "Instance @ 100%": "19,0", "Hardware Information on AWS Documentation & Comments": "Up to 3.3 GHz 2nd generation AMD EPYC 7002 Series Processor"}, {"Instance type": "c5a.2xlarge", "Release Date": "June 2020", "Instance vCPU": "8", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7R32", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,71", "PkgWatt @ 10%": "7,43", "PkgWatt @ 50%": "17,55", "PkgWatt @ 100%": "23,77", "RAMWatt @ Idle": "3,20", "RAMWatt @ 10%": "4,80", "RAMWatt @ 50%": "6,40", "RAMWatt @ 100%": "9,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "4,7", "Instance @ Idle": "10,6", "Instance @ 10%": "16,9", "Instance @ 50%": "28,6", "Instance @ 100%": "38,0", "Hardware Information on AWS Documentation & Comments": "Up to 3.3 GHz 2nd generation AMD EPYC 7002 Series Processor"}, {"Instance type": "c5a.4xlarge", "Release Date": "June 2020", "Instance vCPU": "16", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7R32", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "5,42", "PkgWatt @ 10%": "14,85", "PkgWatt @ 50%": "35,11", "PkgWatt @ 100%": "47,53", "RAMWatt @ Idle": "6,40", "RAMWatt @ 10%": "9,60", "RAMWatt @ 50%": "12,80", "RAMWatt @ 100%": "19,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "9,3", "Instance @ Idle": "21,2", "Instance @ 10%": "33,8", "Instance @ 50%": "57,2", "Instance @ 100%": "76,1", "Hardware Information on AWS Documentation & Comments": "Up to 3.3 GHz 2nd generation AMD EPYC 7002 Series Processor"}, {"Instance type": "c5a.8xlarge", "Release Date": "June 2020", "Instance vCPU": "32", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7R32", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "10,84", "PkgWatt @ 10%": "29,70", "PkgWatt @ 50%": "70,21", "PkgWatt @ 100%": "95,06", "RAMWatt @ Idle": "12,80", "RAMWatt @ 10%": "19,20", "RAMWatt @ 50%": "25,60", "RAMWatt @ 100%": "38,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "18,7", "Instance @ Idle": "42,3", "Instance @ 10%": "67,6", "Instance @ 50%": "114,5", "Instance @ 100%": "152,1", "Hardware Information on AWS Documentation & Comments": "Up to 3.3 GHz 2nd generation AMD EPYC 7002 Series Processor"}, {"Instance type": "c5a.12xlarge", "Release Date": "June 2020", "Instance vCPU": "48", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7R32", "Instance Memory (in GB)": "96", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "16,26", "PkgWatt @ 10%": "44,56", "PkgWatt @ 50%": "105,32", "PkgWatt @ 100%": "142,60", "RAMWatt @ Idle": "19,20", "RAMWatt @ 10%": "28,80", "RAMWatt @ 50%": "38,40", "RAMWatt @ 100%": "57,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "28,0", "Instance @ Idle": "63,5", "Instance @ 10%": "101,4", "Instance @ 50%": "171,7", "Instance @ 100%": "228,2", "Hardware Information on AWS Documentation & Comments": "Up to 3.3 GHz 2nd generation AMD EPYC 7002 Series Processor"}, {"Instance type": "c5a.16xlarge", "Release Date": "June 2020", "Instance vCPU": "64", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7R32", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "21,68", "PkgWatt @ 10%": "59,41", "PkgWatt @ 50%": "140,42", "PkgWatt @ 100%": "190,13", "RAMWatt @ Idle": "25,60", "RAMWatt @ 10%": "38,40", "RAMWatt @ 50%": "51,20", "RAMWatt @ 100%": "76,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "37,3", "Instance @ Idle": "84,6", "Instance @ 10%": "135,1", "Instance @ 50%": "229,0", "Instance @ 100%": "304,3", "Hardware Information on AWS Documentation & Comments": "Up to 3.3 GHz 2nd generation AMD EPYC 7002 Series Processor"}, {"Instance type": "c5a.24xlarge", "Release Date": "June 2020", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7R32", "Instance Memory (in GB)": "192", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "32,52", "PkgWatt @ 10%": "89,11", "PkgWatt @ 50%": "210,63", "PkgWatt @ 100%": "285,19", "RAMWatt @ Idle": "38,40", "RAMWatt @ 10%": "57,60", "RAMWatt @ 50%": "76,80", "RAMWatt @ 100%": "115,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "56,0", "Instance @ Idle": "126,9", "Instance @ 10%": "202,7", "Instance @ 50%": "343,4", "Instance @ 100%": "456,4", "Hardware Information on AWS Documentation & Comments": "Up to 3.3 GHz 2nd generation AMD EPYC 7002 Series Processor"}, {"Instance type": "c5ad.large", "Release Date": "August 2020", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7R32", "Instance Memory (in GB)": "4", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "1 x 75 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,68", "PkgWatt @ 10%": "1,86", "PkgWatt @ 50%": "4,39", "PkgWatt @ 100%": "5,94", "RAMWatt @ Idle": "0,80", "RAMWatt @ 10%": "1,20", "RAMWatt @ 50%": "1,60", "RAMWatt @ 100%": "2,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,2", "Instance @ Idle": "2,6", "Instance @ 10%": "4,2", "Instance @ 50%": "7,2", "Instance @ 100%": "9,5", "Hardware Information on AWS Documentation & Comments": "Up to 3.3 GHz 2nd generation AMD EPYC 7002 Series Processor"}, {"Instance type": "c5ad.xlarge", "Release Date": "August 2020", "Instance vCPU": "4", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7R32", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "1 x 150 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,35", "PkgWatt @ 10%": "3,71", "PkgWatt @ 50%": "8,78", "PkgWatt @ 100%": "11,88", "RAMWatt @ Idle": "1,60", "RAMWatt @ 10%": "2,40", "RAMWatt @ 50%": "3,20", "RAMWatt @ 100%": "4,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,3", "Instance @ Idle": "5,3", "Instance @ 10%": "8,4", "Instance @ 50%": "14,3", "Instance @ 100%": "19,0", "Hardware Information on AWS Documentation & Comments": "Up to 3.3 GHz 2nd generation AMD EPYC 7002 Series Processor"}, {"Instance type": "c5ad.2xlarge", "Release Date": "August 2020", "Instance vCPU": "8", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7R32", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "1 x 300 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,71", "PkgWatt @ 10%": "7,43", "PkgWatt @ 50%": "17,55", "PkgWatt @ 100%": "23,77", "RAMWatt @ Idle": "3,20", "RAMWatt @ 10%": "4,80", "RAMWatt @ 50%": "6,40", "RAMWatt @ 100%": "9,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "4,7", "Instance @ Idle": "10,6", "Instance @ 10%": "16,9", "Instance @ 50%": "28,6", "Instance @ 100%": "38,0", "Hardware Information on AWS Documentation & Comments": "Up to 3.3 GHz 2nd generation AMD EPYC 7002 Series Processor"}, {"Instance type": "c5ad.4xlarge", "Release Date": "August 2020", "Instance vCPU": "16", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7R32", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "2 x 300 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "5,42", "PkgWatt @ 10%": "14,85", "PkgWatt @ 50%": "35,11", "PkgWatt @ 100%": "47,53", "RAMWatt @ Idle": "6,40", "RAMWatt @ 10%": "9,60", "RAMWatt @ 50%": "12,80", "RAMWatt @ 100%": "19,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "9,3", "Instance @ Idle": "21,2", "Instance @ 10%": "33,8", "Instance @ 50%": "57,2", "Instance @ 100%": "76,1", "Hardware Information on AWS Documentation & Comments": "Up to 3.3 GHz 2nd generation AMD EPYC 7002 Series Processor"}, {"Instance type": "c5ad.8xlarge", "Release Date": "August 2020", "Instance vCPU": "32", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7R32", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "2 x 600 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "10,84", "PkgWatt @ 10%": "29,70", "PkgWatt @ 50%": "70,21", "PkgWatt @ 100%": "95,06", "RAMWatt @ Idle": "12,80", "RAMWatt @ 10%": "19,20", "RAMWatt @ 50%": "25,60", "RAMWatt @ 100%": "38,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "18,7", "Instance @ Idle": "42,3", "Instance @ 10%": "67,6", "Instance @ 50%": "114,5", "Instance @ 100%": "152,1", "Hardware Information on AWS Documentation & Comments": "Up to 3.3 GHz 2nd generation AMD EPYC 7002 Series Processor"}, {"Instance type": "c5ad.12xlarge", "Release Date": "August 2020", "Instance vCPU": "48", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7R32", "Instance Memory (in GB)": "96", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "2 x 900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "16,26", "PkgWatt @ 10%": "44,56", "PkgWatt @ 50%": "105,32", "PkgWatt @ 100%": "142,60", "RAMWatt @ Idle": "19,20", "RAMWatt @ 10%": "28,80", "RAMWatt @ 50%": "38,40", "RAMWatt @ 100%": "57,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "28,0", "Instance @ Idle": "63,5", "Instance @ 10%": "101,4", "Instance @ 50%": "171,7", "Instance @ 100%": "228,2", "Hardware Information on AWS Documentation & Comments": "Up to 3.3 GHz 2nd generation AMD EPYC 7002 Series Processor"}, {"Instance type": "c5ad.16xlarge", "Release Date": "August 2020", "Instance vCPU": "64", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7R32", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "2 x 1200 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "21,68", "PkgWatt @ 10%": "59,41", "PkgWatt @ 50%": "140,42", "PkgWatt @ 100%": "190,13", "RAMWatt @ Idle": "25,60", "RAMWatt @ 10%": "38,40", "RAMWatt @ 50%": "51,20", "RAMWatt @ 100%": "76,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "37,3", "Instance @ Idle": "84,6", "Instance @ 10%": "135,1", "Instance @ 50%": "229,0", "Instance @ 100%": "304,3", "Hardware Information on AWS Documentation & Comments": "Up to 3.3 GHz 2nd generation AMD EPYC 7002 Series Processor"}, {"Instance type": "c5ad.24xlarge", "Release Date": "August 2020", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7R32", "Instance Memory (in GB)": "192", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "2 x 1900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "32,52", "PkgWatt @ 10%": "89,11", "PkgWatt @ 50%": "210,63", "PkgWatt @ 100%": "285,19", "RAMWatt @ Idle": "38,40", "RAMWatt @ 10%": "57,60", "RAMWatt @ 50%": "76,80", "RAMWatt @ 100%": "115,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "56,0", "Instance @ Idle": "126,9", "Instance @ 10%": "202,7", "Instance @ 50%": "343,4", "Instance @ 100%": "456,4", "Hardware Information on AWS Documentation & Comments": "Up to 3.3 GHz 2nd generation AMD EPYC 7002 Series Processor"}, {"Instance type": "c5d.large", "Release Date": "May 2018", "Instance vCPU": "2", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon Platinum 8124M", "Instance Memory (in GB)": "4", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "1 x 50 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,41", "PkgWatt @ 10%": "3,75", "PkgWatt @ 50%": "8,14", "PkgWatt @ 100%": "11,77", "RAMWatt @ Idle": "0,78", "RAMWatt @ 10%": "1,41", "RAMWatt @ 50%": "2,47", "RAMWatt @ 100%": "3,53", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,7", "Instance @ Idle": "4,9", "Instance @ 10%": "7,8", "Instance @ 50%": "13,3", "Instance @ 100%": "18,0", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)"}, {"Instance type": "c5d.xlarge", "Release Date": "May 2018", "Instance vCPU": "4", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon Platinum 8124M", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "1 x 100 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,81", "PkgWatt @ 10%": "7,49", "PkgWatt @ 50%": "16,29", "PkgWatt @ 100%": "23,54", "RAMWatt @ Idle": "1,56", "RAMWatt @ 10%": "2,81", "RAMWatt @ 50%": "4,94", "RAMWatt @ 100%": "7,06", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "5,3", "Instance @ Idle": "9,7", "Instance @ 10%": "15,6", "Instance @ 50%": "26,6", "Instance @ 100%": "35,9", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)"}, {"Instance type": "c5d.2xlarge", "Release Date": "May 2018", "Instance vCPU": "8", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon Platinum 8124M", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "1 x 200 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "5,63", "PkgWatt @ 10%": "14,98", "PkgWatt @ 50%": "32,58", "PkgWatt @ 100%": "47,08", "RAMWatt @ Idle": "3,11", "RAMWatt @ 10%": "5,62", "RAMWatt @ 50%": "9,87", "RAMWatt @ 100%": "14,12", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "10,7", "Instance @ Idle": "19,4", "Instance @ 10%": "31,3", "Instance @ 50%": "53,1", "Instance @ 100%": "71,9", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)"}, {"Instance type": "c5d.4xlarge", "Release Date": "May 2018", "Instance vCPU": "16", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon Platinum 8124M", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "1 x 400 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "11,26", "PkgWatt @ 10%": "29,97", "PkgWatt @ 50%": "65,16", "PkgWatt @ 100%": "94,15", "RAMWatt @ Idle": "6,22", "RAMWatt @ 10%": "11,24", "RAMWatt @ 50%": "19,74", "RAMWatt @ 100%": "28,24", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "21,3", "Instance @ Idle": "38,8", "Instance @ 10%": "62,5", "Instance @ 50%": "106,2", "Instance @ 100%": "143,7", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)"}, {"Instance type": "c5d.9xlarge", "Release Date": "May 2018", "Instance vCPU": "36", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon Platinum 8124M", "Instance Memory (in GB)": "72", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "1 x 900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "25,33", "PkgWatt @ 10%": "67,43", "PkgWatt @ 50%": "146,61", "PkgWatt @ 100%": "211,84", "RAMWatt @ Idle": "14,00", "RAMWatt @ 10%": "25,29", "RAMWatt @ 50%": "44,42", "RAMWatt @ 100%": "63,54", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "48,0", "Instance @ Idle": "87,3", "Instance @ 10%": "140,7", "Instance @ 50%": "239,0", "Instance @ 100%": "323,4", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)"}, {"Instance type": "c5d.12xlarge", "Release Date": "November 2019", "Instance vCPU": "48", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8275CL", "Instance Memory (in GB)": "96", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "2 x 900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "28,97", "PkgWatt @ 10%": "87,77", "PkgWatt @ 50%": "224,16", "PkgWatt @ 100%": "313,38", "RAMWatt @ Idle": "18,28", "RAMWatt @ 10%": "33,13", "RAMWatt @ 50%": "69,19", "RAMWatt @ 100%": "105,24", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "48,0", "Instance @ Idle": "95,2", "Instance @ 10%": "168,9", "Instance @ 50%": "341,3", "Instance @ 100%": "466,6", "Hardware Information on AWS Documentation & Comments": "Up to 3.9 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "c5d.18xlarge", "Release Date": "May 2018", "Instance vCPU": "72", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon Platinum 8124M", "Instance Memory (in GB)": "144", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "2 x 900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "50,66", "PkgWatt @ 10%": "134,85", "PkgWatt @ 50%": "293,21", "PkgWatt @ 100%": "423,68", "RAMWatt @ Idle": "28,01", "RAMWatt @ 10%": "50,59", "RAMWatt @ 50%": "88,83", "RAMWatt @ 100%": "127,07", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "96,0", "Instance @ Idle": "174,7", "Instance @ 10%": "281,4", "Instance @ 50%": "478,0", "Instance @ 100%": "646,8", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)"}, {"Instance type": "c5d.24xlarge", "Release Date": "November 2019", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8275CL", "Instance Memory (in GB)": "192", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "4 x 900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "57,93", "PkgWatt @ 10%": "175,53", "PkgWatt @ 50%": "448,31", "PkgWatt @ 100%": "626,76", "RAMWatt @ Idle": "36,55", "RAMWatt @ 10%": "66,26", "RAMWatt @ 50%": "138,37", "RAMWatt @ 100%": "210,48", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "96,0", "Instance @ Idle": "190,5", "Instance @ 10%": "337,8", "Instance @ 50%": "682,7", "Instance @ 100%": "933,2", "Hardware Information on AWS Documentation & Comments": "Up to 3.9 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "c5d.metal", "Release Date": "November 2019", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8275CL", "Instance Memory (in GB)": "192", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "4 x 900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "57,93", "PkgWatt @ 10%": "175,53", "PkgWatt @ 50%": "448,31", "PkgWatt @ 100%": "626,76", "RAMWatt @ Idle": "36,55", "RAMWatt @ 10%": "66,26", "RAMWatt @ 50%": "138,37", "RAMWatt @ 100%": "210,48", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "96,0", "Instance @ Idle": "190,5", "Instance @ 10%": "337,8", "Instance @ 50%": "682,7", "Instance @ 100%": "933,2", "Hardware Information on AWS Documentation & Comments": "Up to 3.9 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "c5n.large", "Release Date": "November 2018", "Instance vCPU": "2", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon Platinum 8124M", "Instance Memory (in GB)": "5.25", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,41", "PkgWatt @ 10%": "3,75", "PkgWatt @ 50%": "8,14", "PkgWatt @ 100%": "11,77", "RAMWatt @ Idle": "1,02", "RAMWatt @ 10%": "1,84", "RAMWatt @ 50%": "3,24", "RAMWatt @ 100%": "4,63", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,7", "Instance @ Idle": "5,1", "Instance @ 10%": "8,3", "Instance @ 50%": "14,0", "Instance @ 100%": "19,1", "Hardware Information on AWS Documentation & Comments": "3.0 GHz Intel Xeon Platinum Processor"}, {"Instance type": "c5n.xlarge", "Release Date": "November 2018", "Instance vCPU": "4", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon Platinum 8124M", "Instance Memory (in GB)": "10.5", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,81", "PkgWatt @ 10%": "7,49", "PkgWatt @ 50%": "16,29", "PkgWatt @ 100%": "23,54", "RAMWatt @ Idle": "2,04", "RAMWatt @ 10%": "3,69", "RAMWatt @ 50%": "6,48", "RAMWatt @ 100%": "9,27", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "5,3", "Instance @ Idle": "10,2", "Instance @ 10%": "16,5", "Instance @ 50%": "28,1", "Instance @ 100%": "38,1", "Hardware Information on AWS Documentation & Comments": "3.0 GHz Intel Xeon Platinum Processor"}, {"Instance type": "c5n.2xlarge", "Release Date": "November 2018", "Instance vCPU": "8", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon Platinum 8124M", "Instance Memory (in GB)": "21", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "5,63", "PkgWatt @ 10%": "14,98", "PkgWatt @ 50%": "32,58", "PkgWatt @ 100%": "47,08", "RAMWatt @ Idle": "4,08", "RAMWatt @ 10%": "7,38", "RAMWatt @ 50%": "12,95", "RAMWatt @ 100%": "18,53", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "10,7", "Instance @ Idle": "20,4", "Instance @ 10%": "33,0", "Instance @ 50%": "56,2", "Instance @ 100%": "76,3", "Hardware Information on AWS Documentation & Comments": "3.0 GHz Intel Xeon Platinum Processor"}, {"Instance type": "c5n.4xlarge", "Release Date": "November 2018", "Instance vCPU": "16", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon Platinum 8124M", "Instance Memory (in GB)": "42", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "11,26", "PkgWatt @ 10%": "29,97", "PkgWatt @ 50%": "65,16", "PkgWatt @ 100%": "94,15", "RAMWatt @ Idle": "8,17", "RAMWatt @ 10%": "14,75", "RAMWatt @ 50%": "25,91", "RAMWatt @ 100%": "37,06", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "21,3", "Instance @ Idle": "40,8", "Instance @ 10%": "66,1", "Instance @ 50%": "112,4", "Instance @ 100%": "152,5", "Hardware Information on AWS Documentation & Comments": "3.0 GHz Intel Xeon Platinum Processor"}, {"Instance type": "c5n.9xlarge", "Release Date": "November 2018", "Instance vCPU": "36", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon Platinum 8124M", "Instance Memory (in GB)": "96", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "25,33", "PkgWatt @ 10%": "67,43", "PkgWatt @ 50%": "146,61", "PkgWatt @ 100%": "211,84", "RAMWatt @ Idle": "18,67", "RAMWatt @ 10%": "33,73", "RAMWatt @ 50%": "59,22", "RAMWatt @ 100%": "84,72", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "48,0", "Instance @ Idle": "92,0", "Instance @ 10%": "149,2", "Instance @ 50%": "253,8", "Instance @ 100%": "344,6", "Hardware Information on AWS Documentation & Comments": "3.0 GHz Intel Xeon Platinum Processor"}, {"Instance type": "c5n.18xlarge", "Release Date": "November 2018", "Instance vCPU": "72", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon Platinum 8124M", "Instance Memory (in GB)": "192", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "50,66", "PkgWatt @ 10%": "134,85", "PkgWatt @ 50%": "293,21", "PkgWatt @ 100%": "423,68", "RAMWatt @ Idle": "37,34", "RAMWatt @ 10%": "67,45", "RAMWatt @ 50%": "118,44", "RAMWatt @ 100%": "169,43", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "96,0", "Instance @ Idle": "184,0", "Instance @ 10%": "298,3", "Instance @ 50%": "507,7", "Instance @ 100%": "689,1", "Hardware Information on AWS Documentation & Comments": "3.0 GHz Intel Xeon Platinum Processor"}, {"Instance type": "c5n.metal", "Release Date": "August 2019", "Instance vCPU": "72", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon Platinum 8124M", "Instance Memory (in GB)": "192", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "50,66", "PkgWatt @ 10%": "134,85", "PkgWatt @ 50%": "293,21", "PkgWatt @ 100%": "423,68", "RAMWatt @ Idle": "37,34", "RAMWatt @ 10%": "67,45", "RAMWatt @ 50%": "118,44", "RAMWatt @ 100%": "169,43", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "96,0", "Instance @ Idle": "184,0", "Instance @ 10%": "298,3", "Instance @ 50%": "507,7", "Instance @ 100%": "689,1", "Hardware Information on AWS Documentation & Comments": "3.0 GHz Intel Xeon Platinum Processor"}, {"Instance type": "c6g.medium", "Release Date": "December 2019", "Instance vCPU": "1", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "2", "Platform Memory (in GB)": "128", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,27", "PkgWatt @ 10%": "0,75", "PkgWatt @ 50%": "1,76", "PkgWatt @ 100%": "2,39", "RAMWatt @ Idle": "0,40", "RAMWatt @ 10%": "0,60", "RAMWatt @ 50%": "0,80", "RAMWatt @ 100%": "1,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "0,5", "Instance @ Idle": "1,1", "Instance @ 10%": "1,8", "Instance @ 50%": "3,0", "Instance @ 100%": "4,1", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "c6g.large", "Release Date": "December 2019", "Instance vCPU": "2", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "4", "Platform Memory (in GB)": "128", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,54", "PkgWatt @ 10%": "1,49", "PkgWatt @ 50%": "3,53", "PkgWatt @ 100%": "4,77", "RAMWatt @ Idle": "0,80", "RAMWatt @ 10%": "1,20", "RAMWatt @ 50%": "1,60", "RAMWatt @ 100%": "2,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "0,9", "Instance @ Idle": "2,3", "Instance @ 10%": "3,6", "Instance @ 50%": "6,1", "Instance @ 100%": "8,1", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "c6g.xlarge", "Release Date": "December 2019", "Instance vCPU": "4", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "128", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,09", "PkgWatt @ 10%": "2,98", "PkgWatt @ 50%": "7,05", "PkgWatt @ 100%": "9,55", "RAMWatt @ Idle": "1,60", "RAMWatt @ 10%": "2,40", "RAMWatt @ 50%": "3,20", "RAMWatt @ 100%": "4,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,9", "Instance @ Idle": "4,6", "Instance @ 10%": "7,3", "Instance @ 50%": "12,1", "Instance @ 100%": "16,2", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "c6g.2xlarge", "Release Date": "December 2019", "Instance vCPU": "8", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "128", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,18", "PkgWatt @ 10%": "5,97", "PkgWatt @ 50%": "14,10", "PkgWatt @ 100%": "19,10", "RAMWatt @ Idle": "3,20", "RAMWatt @ 10%": "4,80", "RAMWatt @ 50%": "6,40", "RAMWatt @ 100%": "9,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,8", "Instance @ Idle": "9,1", "Instance @ 10%": "14,5", "Instance @ 50%": "24,3", "Instance @ 100%": "32,4", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "c6g.4xlarge", "Release Date": "December 2019", "Instance vCPU": "16", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "128", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,35", "PkgWatt @ 10%": "11,93", "PkgWatt @ 50%": "28,21", "PkgWatt @ 100%": "38,20", "RAMWatt @ Idle": "6,40", "RAMWatt @ 10%": "9,60", "RAMWatt @ 50%": "12,80", "RAMWatt @ 100%": "19,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "7,5", "Instance @ Idle": "18,3", "Instance @ 10%": "29,0", "Instance @ 50%": "48,5", "Instance @ 100%": "64,9", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "c6g.8xlarge", "Release Date": "December 2019", "Instance vCPU": "32", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "128", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "8,71", "PkgWatt @ 10%": "23,87", "PkgWatt @ 50%": "56,42", "PkgWatt @ 100%": "76,39", "RAMWatt @ Idle": "12,80", "RAMWatt @ 10%": "19,20", "RAMWatt @ 50%": "25,60", "RAMWatt @ 100%": "38,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "15,0", "Instance @ Idle": "36,5", "Instance @ 10%": "58,1", "Instance @ 50%": "97,0", "Instance @ 100%": "129,8", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "c6g.12xlarge", "Release Date": "December 2019", "Instance vCPU": "48", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "96", "Platform Memory (in GB)": "128", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "13,06", "PkgWatt @ 10%": "35,80", "PkgWatt @ 50%": "84,63", "PkgWatt @ 100%": "114,59", "RAMWatt @ Idle": "19,20", "RAMWatt @ 10%": "28,80", "RAMWatt @ 50%": "38,40", "RAMWatt @ 100%": "57,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "22,5", "Instance @ Idle": "54,8", "Instance @ 10%": "87,1", "Instance @ 50%": "145,5", "Instance @ 100%": "194,7", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "c6g.16xlarge", "Release Date": "December 2019", "Instance vCPU": "64", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "128", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "17,42", "PkgWatt @ 10%": "47,74", "PkgWatt @ 50%": "112,84", "PkgWatt @ 100%": "152,78", "RAMWatt @ Idle": "25,60", "RAMWatt @ 10%": "38,40", "RAMWatt @ 50%": "51,20", "RAMWatt @ 100%": "76,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "30,0", "Instance @ Idle": "73,0", "Instance @ 10%": "116,1", "Instance @ 50%": "194,0", "Instance @ 100%": "259,6", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "c6g.metal", "Release Date": "December 2019", "Instance vCPU": "64", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "128", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "17,42", "PkgWatt @ 10%": "47,74", "PkgWatt @ 50%": "112,84", "PkgWatt @ 100%": "152,78", "RAMWatt @ Idle": "25,60", "RAMWatt @ 10%": "38,40", "RAMWatt @ 50%": "51,20", "RAMWatt @ 100%": "76,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "30,0", "Instance @ Idle": "73,0", "Instance @ 10%": "116,1", "Instance @ 50%": "194,0", "Instance @ 100%": "259,6", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "c6gd.medium", "Release Date": "December 2019", "Instance vCPU": "1", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "2", "Platform Memory (in GB)": "128", "Storage Info (Type and Size in GB)": "1 x 59 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,27", "PkgWatt @ 10%": "0,75", "PkgWatt @ 50%": "1,76", "PkgWatt @ 100%": "2,39", "RAMWatt @ Idle": "0,40", "RAMWatt @ 10%": "0,60", "RAMWatt @ 50%": "0,80", "RAMWatt @ 100%": "1,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "0,5", "Instance @ Idle": "1,1", "Instance @ 10%": "1,8", "Instance @ 50%": "3,0", "Instance @ 100%": "4,1", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "c6gd.large", "Release Date": "December 2019", "Instance vCPU": "2", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "4", "Platform Memory (in GB)": "128", "Storage Info (Type and Size in GB)": "1 x 118 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,54", "PkgWatt @ 10%": "1,49", "PkgWatt @ 50%": "3,53", "PkgWatt @ 100%": "4,77", "RAMWatt @ Idle": "0,80", "RAMWatt @ 10%": "1,20", "RAMWatt @ 50%": "1,60", "RAMWatt @ 100%": "2,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "0,9", "Instance @ Idle": "2,3", "Instance @ 10%": "3,6", "Instance @ 50%": "6,1", "Instance @ 100%": "8,1", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "c6gd.xlarge", "Release Date": "December 2019", "Instance vCPU": "4", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "128", "Storage Info (Type and Size in GB)": "1 x 237 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,09", "PkgWatt @ 10%": "2,98", "PkgWatt @ 50%": "7,05", "PkgWatt @ 100%": "9,55", "RAMWatt @ Idle": "1,60", "RAMWatt @ 10%": "2,40", "RAMWatt @ 50%": "3,20", "RAMWatt @ 100%": "4,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,9", "Instance @ Idle": "4,6", "Instance @ 10%": "7,3", "Instance @ 50%": "12,1", "Instance @ 100%": "16,2", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "c6gd.2xlarge", "Release Date": "December 2019", "Instance vCPU": "8", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "128", "Storage Info (Type and Size in GB)": "1 x 474 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,18", "PkgWatt @ 10%": "5,97", "PkgWatt @ 50%": "14,10", "PkgWatt @ 100%": "19,10", "RAMWatt @ Idle": "3,20", "RAMWatt @ 10%": "4,80", "RAMWatt @ 50%": "6,40", "RAMWatt @ 100%": "9,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,8", "Instance @ Idle": "9,1", "Instance @ 10%": "14,5", "Instance @ 50%": "24,3", "Instance @ 100%": "32,4", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "c6gd.4xlarge", "Release Date": "December 2019", "Instance vCPU": "16", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "128", "Storage Info (Type and Size in GB)": "1 x 950 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,35", "PkgWatt @ 10%": "11,93", "PkgWatt @ 50%": "28,21", "PkgWatt @ 100%": "38,20", "RAMWatt @ Idle": "6,40", "RAMWatt @ 10%": "9,60", "RAMWatt @ 50%": "12,80", "RAMWatt @ 100%": "19,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "7,5", "Instance @ Idle": "18,3", "Instance @ 10%": "29,0", "Instance @ 50%": "48,5", "Instance @ 100%": "64,9", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "c6gd.8xlarge", "Release Date": "December 2019", "Instance vCPU": "32", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "128", "Storage Info (Type and Size in GB)": "1 x 1900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "8,71", "PkgWatt @ 10%": "23,87", "PkgWatt @ 50%": "56,42", "PkgWatt @ 100%": "76,39", "RAMWatt @ Idle": "12,80", "RAMWatt @ 10%": "19,20", "RAMWatt @ 50%": "25,60", "RAMWatt @ 100%": "38,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "15,0", "Instance @ Idle": "36,5", "Instance @ 10%": "58,1", "Instance @ 50%": "97,0", "Instance @ 100%": "129,8", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "c6gd.12xlarge", "Release Date": "December 2019", "Instance vCPU": "48", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "96", "Platform Memory (in GB)": "128", "Storage Info (Type and Size in GB)": "2 x 1425 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "13,06", "PkgWatt @ 10%": "35,80", "PkgWatt @ 50%": "84,63", "PkgWatt @ 100%": "114,59", "RAMWatt @ Idle": "19,20", "RAMWatt @ 10%": "28,80", "RAMWatt @ 50%": "38,40", "RAMWatt @ 100%": "57,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "22,5", "Instance @ Idle": "54,8", "Instance @ 10%": "87,1", "Instance @ 50%": "145,5", "Instance @ 100%": "194,7", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "c6gd.16xlarge", "Release Date": "December 2019", "Instance vCPU": "64", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "128", "Storage Info (Type and Size in GB)": "2 x 1900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "17,42", "PkgWatt @ 10%": "47,74", "PkgWatt @ 50%": "112,84", "PkgWatt @ 100%": "152,78", "RAMWatt @ Idle": "25,60", "RAMWatt @ 10%": "38,40", "RAMWatt @ 50%": "51,20", "RAMWatt @ 100%": "76,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "30,0", "Instance @ Idle": "73,0", "Instance @ 10%": "116,1", "Instance @ 50%": "194,0", "Instance @ 100%": "259,6", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "c6gd.metal", "Release Date": "December 2019", "Instance vCPU": "64", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "128", "Storage Info (Type and Size in GB)": "2 x 1900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "17,42", "PkgWatt @ 10%": "47,74", "PkgWatt @ 50%": "112,84", "PkgWatt @ 100%": "152,78", "RAMWatt @ Idle": "25,60", "RAMWatt @ 10%": "38,40", "RAMWatt @ 50%": "51,20", "RAMWatt @ 100%": "76,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "30,0", "Instance @ Idle": "73,0", "Instance @ 10%": "116,1", "Instance @ 50%": "194,0", "Instance @ 100%": "259,6", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "c6gn.medium", "Release Date": "December 2019", "Instance vCPU": "1", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "2", "Platform Memory (in GB)": "128", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,27", "PkgWatt @ 10%": "0,75", "PkgWatt @ 50%": "1,76", "PkgWatt @ 100%": "2,39", "RAMWatt @ Idle": "0,40", "RAMWatt @ 10%": "0,60", "RAMWatt @ 50%": "0,80", "RAMWatt @ 100%": "1,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "0,5", "Instance @ Idle": "1,1", "Instance @ 10%": "1,8", "Instance @ 50%": "3,0", "Instance @ 100%": "4,1", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "c6gn.large", "Release Date": "December 2019", "Instance vCPU": "2", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "4", "Platform Memory (in GB)": "128", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,54", "PkgWatt @ 10%": "1,49", "PkgWatt @ 50%": "3,53", "PkgWatt @ 100%": "4,77", "RAMWatt @ Idle": "0,80", "RAMWatt @ 10%": "1,20", "RAMWatt @ 50%": "1,60", "RAMWatt @ 100%": "2,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "0,9", "Instance @ Idle": "2,3", "Instance @ 10%": "3,6", "Instance @ 50%": "6,1", "Instance @ 100%": "8,1", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "c6gn.xlarge", "Release Date": "December 2019", "Instance vCPU": "4", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "128", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,09", "PkgWatt @ 10%": "2,98", "PkgWatt @ 50%": "7,05", "PkgWatt @ 100%": "9,55", "RAMWatt @ Idle": "1,60", "RAMWatt @ 10%": "2,40", "RAMWatt @ 50%": "3,20", "RAMWatt @ 100%": "4,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,9", "Instance @ Idle": "4,6", "Instance @ 10%": "7,3", "Instance @ 50%": "12,1", "Instance @ 100%": "16,2", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "c6gn.2xlarge", "Release Date": "December 2019", "Instance vCPU": "8", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "128", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,18", "PkgWatt @ 10%": "5,97", "PkgWatt @ 50%": "14,10", "PkgWatt @ 100%": "19,10", "RAMWatt @ Idle": "3,20", "RAMWatt @ 10%": "4,80", "RAMWatt @ 50%": "6,40", "RAMWatt @ 100%": "9,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,8", "Instance @ Idle": "9,1", "Instance @ 10%": "14,5", "Instance @ 50%": "24,3", "Instance @ 100%": "32,4", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "c6gn.4xlarge", "Release Date": "December 2019", "Instance vCPU": "16", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "128", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,35", "PkgWatt @ 10%": "11,93", "PkgWatt @ 50%": "28,21", "PkgWatt @ 100%": "38,20", "RAMWatt @ Idle": "6,40", "RAMWatt @ 10%": "9,60", "RAMWatt @ 50%": "12,80", "RAMWatt @ 100%": "19,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "7,5", "Instance @ Idle": "18,3", "Instance @ 10%": "29,0", "Instance @ 50%": "48,5", "Instance @ 100%": "64,9", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "c6gn.8xlarge", "Release Date": "December 2019", "Instance vCPU": "32", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "128", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "8,71", "PkgWatt @ 10%": "23,87", "PkgWatt @ 50%": "56,42", "PkgWatt @ 100%": "76,39", "RAMWatt @ Idle": "12,80", "RAMWatt @ 10%": "19,20", "RAMWatt @ 50%": "25,60", "RAMWatt @ 100%": "38,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "15,0", "Instance @ Idle": "36,5", "Instance @ 10%": "58,1", "Instance @ 50%": "97,0", "Instance @ 100%": "129,8", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "c6gn.12xlarge", "Release Date": "December 2019", "Instance vCPU": "48", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "96", "Platform Memory (in GB)": "128", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "13,06", "PkgWatt @ 10%": "35,80", "PkgWatt @ 50%": "84,63", "PkgWatt @ 100%": "114,59", "RAMWatt @ Idle": "19,20", "RAMWatt @ 10%": "28,80", "RAMWatt @ 50%": "38,40", "RAMWatt @ 100%": "57,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "22,5", "Instance @ Idle": "54,8", "Instance @ 10%": "87,1", "Instance @ 50%": "145,5", "Instance @ 100%": "194,7", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "c6gn.16xlarge", "Release Date": "December 2019", "Instance vCPU": "64", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "128", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "17,42", "PkgWatt @ 10%": "47,74", "PkgWatt @ 50%": "112,84", "PkgWatt @ 100%": "152,78", "RAMWatt @ Idle": "25,60", "RAMWatt @ 10%": "38,40", "RAMWatt @ 50%": "51,20", "RAMWatt @ 100%": "76,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "30,0", "Instance @ Idle": "73,0", "Instance @ 10%": "116,1", "Instance @ 50%": "194,0", "Instance @ 100%": "259,6", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "d2.xlarge", "Release Date": "March 2015", "Instance vCPU": "4", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon E5-2676 v3", "Instance Memory (in GB)": "30.5", "Platform Memory (in GB)": "244", "Storage Info (Type and Size in GB)": "3 x 2000 HDD", "Storage Type": "HDD", "Platform Storage Drive Quantity": "24", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,41", "PkgWatt @ 10%": "6,89", "PkgWatt @ 50%": "14,16", "PkgWatt @ 100%": "19,39", "RAMWatt @ Idle": "6,10", "RAMWatt @ 10%": "9,15", "RAMWatt @ 50%": "12,20", "RAMWatt @ 100%": "18,30", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "4,0", "Instance @ Idle": "12,5", "Instance @ 10%": "20,0", "Instance @ 50%": "30,4", "Instance @ 100%": "41,7", "Hardware Information on AWS Documentation & Comments": "2.4 GHz Intel Xeon E5-2676 v3 Processor (Haswell)"}, {"Instance type": "d2.2xlarge", "Release Date": "March 2015", "Instance vCPU": "8", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon E5-2676 v3", "Instance Memory (in GB)": "61", "Platform Memory (in GB)": "244", "Storage Info (Type and Size in GB)": "6 x 2000 HDD", "Storage Type": "HDD", "Platform Storage Drive Quantity": "24", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,82", "PkgWatt @ 10%": "13,77", "PkgWatt @ 50%": "28,33", "PkgWatt @ 100%": "38,78", "RAMWatt @ Idle": "12,20", "RAMWatt @ 10%": "18,30", "RAMWatt @ 50%": "24,40", "RAMWatt @ 100%": "36,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "8,0", "Instance @ Idle": "25,0", "Instance @ 10%": "40,1", "Instance @ 50%": "60,7", "Instance @ 100%": "83,4", "Hardware Information on AWS Documentation & Comments": "2.4 GHz Intel Xeon E5-2676 v3 Processor (Haswell)"}, {"Instance type": "d2.4xlarge", "Release Date": "March 2015", "Instance vCPU": "16", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon E5-2676 v3", "Instance Memory (in GB)": "122", "Platform Memory (in GB)": "244", "Storage Info (Type and Size in GB)": "12 x 2000 HDD", "Storage Type": "HDD", "Platform Storage Drive Quantity": "24", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "9,65", "PkgWatt @ 10%": "27,55", "PkgWatt @ 50%": "56,66", "PkgWatt @ 100%": "77,55", "RAMWatt @ Idle": "24,40", "RAMWatt @ 10%": "36,60", "RAMWatt @ 50%": "48,80", "RAMWatt @ 100%": "73,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "16,0", "Instance @ Idle": "50,0", "Instance @ 10%": "80,1", "Instance @ 50%": "121,5", "Instance @ 100%": "166,8", "Hardware Information on AWS Documentation & Comments": "2.4 GHz Intel Xeon E5-2676 v3 Processor (Haswell)"}, {"Instance type": "d2.8xlarge", "Release Date": "March 2015", "Instance vCPU": "36", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon E5-2676 v3", "Instance Memory (in GB)": "244", "Platform Memory (in GB)": "244", "Storage Info (Type and Size in GB)": "24 x 2000 HDD", "Storage Type": "HDD", "Platform Storage Drive Quantity": "24", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "21,71", "PkgWatt @ 10%": "61,98", "PkgWatt @ 50%": "127,48", "PkgWatt @ 100%": "174,50", "RAMWatt @ Idle": "48,80", "RAMWatt @ 10%": "73,20", "RAMWatt @ 50%": "97,60", "RAMWatt @ 100%": "146,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "36,0", "Instance @ Idle": "106,5", "Instance @ 10%": "171,2", "Instance @ 50%": "261,1", "Instance @ 100%": "356,9", "Hardware Information on AWS Documentation & Comments": "2.4 GHz Intel Xeon E5-2676 v3 Processor (Haswell)"}, {"Instance type": "d3.xlarge", "Release Date": "December 2020", "Instance vCPU": "4", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "3 x 2 HDD", "Storage Type": "HDD", "Platform Storage Drive Quantity": "24", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,28", "PkgWatt @ 10%": "5,75", "PkgWatt @ 50%": "12,79", "PkgWatt @ 100%": "18,56", "RAMWatt @ Idle": "4,98", "RAMWatt @ 10%": "8,24", "RAMWatt @ 50%": "14,74", "RAMWatt @ 100%": "21,25", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,5", "Instance @ Idle": "10,8", "Instance @ 10%": "17,5", "Instance @ 50%": "31,0", "Instance @ 100%": "43,3", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "d3.2xlarge", "Release Date": "December 2020", "Instance vCPU": "8", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "6 x 2 HDD", "Storage Type": "HDD", "Platform Storage Drive Quantity": "24", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,56", "PkgWatt @ 10%": "11,49", "PkgWatt @ 50%": "25,58", "PkgWatt @ 100%": "37,12", "RAMWatt @ Idle": "9,95", "RAMWatt @ 10%": "16,47", "RAMWatt @ 50%": "29,48", "RAMWatt @ 100%": "42,49", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "7,0", "Instance @ Idle": "21,5", "Instance @ 10%": "35,0", "Instance @ 50%": "62,1", "Instance @ 100%": "86,6", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "d3.4xlarge", "Release Date": "December 2020", "Instance vCPU": "16", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "12 x 2 HDD", "Storage Type": "HDD", "Platform Storage Drive Quantity": "24", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "9,12", "PkgWatt @ 10%": "22,99", "PkgWatt @ 50%": "51,16", "PkgWatt @ 100%": "74,23", "RAMWatt @ Idle": "19,91", "RAMWatt @ 10%": "32,94", "RAMWatt @ 50%": "58,96", "RAMWatt @ 100%": "84,98", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "14,0", "Instance @ Idle": "43,0", "Instance @ 10%": "69,9", "Instance @ 50%": "124,1", "Instance @ 100%": "173,2", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "d3.8xlarge", "Release Date": "December 2020", "Instance vCPU": "32", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "256", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "24 x 2 HDD", "Storage Type": "HDD", "Platform Storage Drive Quantity": "24", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "18,24", "PkgWatt @ 10%": "45,97", "PkgWatt @ 50%": "102,31", "PkgWatt @ 100%": "148,46", "RAMWatt @ Idle": "39,81", "RAMWatt @ 10%": "65,89", "RAMWatt @ 50%": "117,93", "RAMWatt @ 100%": "169,97", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "28,0", "Instance @ Idle": "86,0", "Instance @ 10%": "139,9", "Instance @ 50%": "248,2", "Instance @ 100%": "346,4", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "d3en.xlarge", "Release Date": "December 2020", "Instance vCPU": "4", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "2 x 14 HDD", "Storage Type": "HDD", "Platform Storage Drive Quantity": "24", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,28", "PkgWatt @ 10%": "5,75", "PkgWatt @ 50%": "12,79", "PkgWatt @ 100%": "18,56", "RAMWatt @ Idle": "2,49", "RAMWatt @ 10%": "4,12", "RAMWatt @ 50%": "7,37", "RAMWatt @ 100%": "10,62", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,5", "Instance @ Idle": "8,3", "Instance @ 10%": "13,4", "Instance @ 50%": "23,7", "Instance @ 100%": "32,7", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "d3en.2xlarge", "Release Date": "December 2020", "Instance vCPU": "8", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "4 x 14 HDD", "Storage Type": "HDD", "Platform Storage Drive Quantity": "24", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,56", "PkgWatt @ 10%": "11,49", "PkgWatt @ 50%": "25,58", "PkgWatt @ 100%": "37,12", "RAMWatt @ Idle": "4,98", "RAMWatt @ 10%": "8,24", "RAMWatt @ 50%": "14,74", "RAMWatt @ 100%": "21,25", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "7,0", "Instance @ Idle": "16,5", "Instance @ 10%": "26,7", "Instance @ 50%": "47,3", "Instance @ 100%": "65,4", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "d3en.4xlarge", "Release Date": "December 2020", "Instance vCPU": "16", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "8 x 14 HDD", "Storage Type": "HDD", "Platform Storage Drive Quantity": "24", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "9,12", "PkgWatt @ 10%": "22,99", "PkgWatt @ 50%": "51,16", "PkgWatt @ 100%": "74,23", "RAMWatt @ Idle": "9,95", "RAMWatt @ 10%": "16,47", "RAMWatt @ 50%": "29,48", "RAMWatt @ 100%": "42,49", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "14,0", "Instance @ Idle": "33,1", "Instance @ 10%": "53,5", "Instance @ 50%": "94,6", "Instance @ 100%": "130,7", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "d3en.6xlarge", "Release Date": "December 2020", "Instance vCPU": "24", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "96", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "12 x 14 HDD", "Storage Type": "HDD", "Platform Storage Drive Quantity": "24", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "13,68", "PkgWatt @ 10%": "34,48", "PkgWatt @ 50%": "76,73", "PkgWatt @ 100%": "111,35", "RAMWatt @ Idle": "14,93", "RAMWatt @ 10%": "24,71", "RAMWatt @ 50%": "44,22", "RAMWatt @ 100%": "63,74", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "21,0", "Instance @ Idle": "49,6", "Instance @ 10%": "80,2", "Instance @ 50%": "142,0", "Instance @ 100%": "196,1", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "d3en.8xlarge", "Release Date": "December 2020", "Instance vCPU": "32", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "16 x 14 HDD", "Storage Type": "HDD", "Platform Storage Drive Quantity": "24", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "18,24", "PkgWatt @ 10%": "45,97", "PkgWatt @ 50%": "102,31", "PkgWatt @ 100%": "148,46", "RAMWatt @ Idle": "19,91", "RAMWatt @ 10%": "32,94", "RAMWatt @ 50%": "58,96", "RAMWatt @ 100%": "84,98", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "28,0", "Instance @ Idle": "66,1", "Instance @ 10%": "106,9", "Instance @ 50%": "189,3", "Instance @ 100%": "261,4", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "d3en.12xlarge", "Release Date": "December 2020", "Instance vCPU": "48", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "192", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "24 x 14 HDD", "Storage Type": "HDD", "Platform Storage Drive Quantity": "24", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "27,36", "PkgWatt @ 10%": "68,96", "PkgWatt @ 50%": "153,47", "PkgWatt @ 100%": "222,69", "RAMWatt @ Idle": "29,86", "RAMWatt @ 10%": "49,42", "RAMWatt @ 50%": "88,45", "RAMWatt @ 100%": "127,48", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "42,0", "Instance @ Idle": "99,2", "Instance @ 10%": "160,4", "Instance @ 50%": "283,9", "Instance @ 100%": "392,2", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "dc2.large", "Release Date": "October 2017", "Instance vCPU": "2", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2670 v2", "Instance Memory (in GB)": "15", "Platform Memory (in GB)": "244", "Storage Info (Type and Size in GB)": "160 SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,39", "PkgWatt @ 10%": "3,96", "PkgWatt @ 50%": "8,14", "PkgWatt @ 100%": "11,15", "RAMWatt @ Idle": "3,00", "RAMWatt @ 10%": "4,50", "RAMWatt @ 50%": "6,00", "RAMWatt @ 100%": "9,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,3", "Instance @ Idle": "6,7", "Instance @ 10%": "10,8", "Instance @ 50%": "16,4", "Instance @ 100%": "22,4", "Hardware Information on AWS Documentation & Comments": "N/A"}, {"Instance type": "dc2.8xlarge", "Release Date": "October 2017", "Instance vCPU": "32", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2670 v2", "Instance Memory (in GB)": "244", "Platform Memory (in GB)": "244", "Storage Info (Type and Size in GB)": "2560 SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "22,19", "PkgWatt @ 10%": "63,36", "PkgWatt @ 50%": "130,32", "PkgWatt @ 100%": "178,37", "RAMWatt @ Idle": "48,80", "RAMWatt @ 10%": "73,20", "RAMWatt @ 50%": "97,60", "RAMWatt @ 100%": "146,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "36,8", "Instance @ Idle": "107,8", "Instance @ 10%": "173,4", "Instance @ 50%": "264,7", "Instance @ 100%": "361,6", "Hardware Information on AWS Documentation & Comments": "N/A"}, {"Instance type": "ds2.xlarge", "Release Date": "June 2015", "Instance vCPU": "4", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon E5-2676 v3", "Instance Memory (in GB)": "31", "Platform Memory (in GB)": "244", "Storage Info (Type and Size in GB)": "2000 HDD", "Storage Type": "HDD", "Platform Storage Drive Quantity": "8", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,41", "PkgWatt @ 10%": "6,89", "PkgWatt @ 50%": "14,16", "PkgWatt @ 100%": "19,39", "RAMWatt @ Idle": "6,20", "RAMWatt @ 10%": "9,30", "RAMWatt @ 50%": "12,40", "RAMWatt @ 100%": "18,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "4,0", "Instance @ Idle": "12,6", "Instance @ 10%": "20,2", "Instance @ 50%": "30,6", "Instance @ 100%": "42,0", "Hardware Information on AWS Documentation & Comments": "N/A"}, {"Instance type": "ds2.8xlarge", "Release Date": "June 2015", "Instance vCPU": "36", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon E5-2676 v3", "Instance Memory (in GB)": "244", "Platform Memory (in GB)": "244", "Storage Info (Type and Size in GB)": "16000 HDD", "Storage Type": "HDD", "Platform Storage Drive Quantity": "8", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "21,71", "PkgWatt @ 10%": "61,98", "PkgWatt @ 50%": "127,48", "PkgWatt @ 100%": "174,50", "RAMWatt @ Idle": "48,80", "RAMWatt @ 10%": "73,20", "RAMWatt @ 50%": "97,60", "RAMWatt @ 100%": "146,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "36,0", "Instance @ Idle": "106,5", "Instance @ 10%": "171,2", "Instance @ 50%": "261,1", "Instance @ 100%": "356,9", "Hardware Information on AWS Documentation & Comments": "N/A"}, {"Instance type": "f1.2xlarge", "Release Date": "November 2016", "Instance vCPU": "8", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "122", "Platform Memory (in GB)": "976", "Storage Info (Type and Size in GB)": "SSD 470", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "3,89", "PkgWatt @ 10%": "11,10", "PkgWatt @ 50%": "22,82", "PkgWatt @ 100%": "31,24", "RAMWatt @ Idle": "24,40", "RAMWatt @ 10%": "36,60", "RAMWatt @ 50%": "48,80", "RAMWatt @ 100%": "73,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "6,4", "Instance @ Idle": "34,7", "Instance @ 10%": "54,1", "Instance @ 50%": "78,1", "Instance @ 100%": "110,9", "Hardware Information on AWS Documentation & Comments": "1 FPGA - Comment: the estimated Scope 3 does not include the FPGA(s)"}, {"Instance type": "f1.4xlarge", "Release Date": "November 2016", "Instance vCPU": "16", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "244", "Platform Memory (in GB)": "976", "Storage Info (Type and Size in GB)": "SSD 940", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "7,77", "PkgWatt @ 10%": "22,19", "PkgWatt @ 50%": "45,64", "PkgWatt @ 100%": "62,47", "RAMWatt @ Idle": "48,80", "RAMWatt @ 10%": "73,20", "RAMWatt @ 50%": "97,60", "RAMWatt @ 100%": "146,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "12,9", "Instance @ Idle": "69,5", "Instance @ 10%": "108,3", "Instance @ 50%": "156,1", "Instance @ 100%": "221,8", "Hardware Information on AWS Documentation & Comments": "2 FPGA - Comment: the estimated Scope 3 does not include the FPGA(s)"}, {"Instance type": "f1.16xlarge", "Release Date": "November 2016", "Instance vCPU": "64", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "976", "Platform Memory (in GB)": "976", "Storage Info (Type and Size in GB)": "SSD 4 x 940", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "31,09", "PkgWatt @ 10%": "88,76", "PkgWatt @ 50%": "182,57", "PkgWatt @ 100%": "249,90", "RAMWatt @ Idle": "195,20", "RAMWatt @ 10%": "292,80", "RAMWatt @ 50%": "390,40", "RAMWatt @ 100%": "585,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "51,6", "Instance @ Idle": "277,8", "Instance @ 10%": "433,1", "Instance @ 50%": "624,5", "Instance @ 100%": "887,1", "Hardware Information on AWS Documentation & Comments": "8 FPGA - Comment: the estimated Scope 3 does not include the FPGA(s)"}, {"Instance type": "g2.2xlarge", "Release Date": "November 2013", "Instance vCPU": "8", "Platform Total Number of vCPU": "32", "Platform CPU Name": "Xeon E5-2670", "Instance Memory (in GB)": "15", "Platform Memory (in GB)": "60", "Storage Info (Type and Size in GB)": "1 x 60 (SSD)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "4", "Platform GPU Name": "K520", "Instance Number of GPU": "1", "Instance GPU memory (in GB)": "4", "PkgWatt @ Idle": "6,94", "PkgWatt @ 10%": "19,80", "PkgWatt @ 50%": "40,72", "PkgWatt @ 100%": "55,74", "RAMWatt @ Idle": "3,00", "RAMWatt @ 10%": "4,50", "RAMWatt @ 50%": "6,00", "RAMWatt @ 100%": "9,00", "GPUWatt @ Idle": "26,1", "GPUWatt @ 10%": "71,6", "GPUWatt @ 50%": "169,3", "GPUWatt @ 100%": "229,2", "Delta Full Machine": "11,5", "Instance @ Idle": "47,6", "Instance @ 10%": "107,4", "Instance @ 50%": "227,5", "Instance @ 100%": "305,4", "Hardware Information on AWS Documentation & Comments": "1 GPU NVIDIA GRID K520"}, {"Instance type": "g2.8xlarge", "Release Date": "April 2015", "Instance vCPU": "32", "Platform Total Number of vCPU": "32", "Platform CPU Name": "Xeon E5-2670", "Instance Memory (in GB)": "60", "Platform Memory (in GB)": "60", "Storage Info (Type and Size in GB)": "2 x 120 (SSD)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "4", "Platform GPU Name": "K520", "Instance Number of GPU": "4", "Instance GPU memory (in GB)": "16", "PkgWatt @ Idle": "27,74", "PkgWatt @ 10%": "79,20", "PkgWatt @ 50%": "162,90", "PkgWatt @ 100%": "222,97", "RAMWatt @ Idle": "12,00", "RAMWatt @ 10%": "18,00", "RAMWatt @ 50%": "24,00", "RAMWatt @ 100%": "36,00", "GPUWatt @ Idle": "104,5", "GPUWatt @ 10%": "286,4", "GPUWatt @ 50%": "677,0", "GPUWatt @ 100%": "916,7", "Delta Full Machine": "46,0", "Instance @ Idle": "190,3", "Instance @ 10%": "429,6", "Instance @ 50%": "909,9", "Instance @ 100%": "1221,7", "Hardware Information on AWS Documentation & Comments": "4 GPU NVIDIA GRID K520"}, {"Instance type": "g3s.xlarge", "Release Date": "October 2018", "Instance vCPU": "4", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "30.5", "Platform Memory (in GB)": "488", "Storage Info (Type and Size in GB)": "", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "4", "Platform GPU Name": "Tesla M60", "Instance Number of GPU": "1", "Instance GPU memory (in GB)": "8", "PkgWatt @ Idle": "1,94", "PkgWatt @ 10%": "5,55", "PkgWatt @ 50%": "11,41", "PkgWatt @ 100%": "15,62", "RAMWatt @ Idle": "6,10", "RAMWatt @ 10%": "9,15", "RAMWatt @ 50%": "12,20", "RAMWatt @ 100%": "18,30", "GPUWatt @ Idle": "34,8", "GPUWatt @ 10%": "95,5", "GPUWatt @ 50%": "225,7", "GPUWatt @ 100%": "305,6", "Delta Full Machine": "3,2", "Instance @ Idle": "46,1", "Instance @ 10%": "113,4", "Instance @ 50%": "252,5", "Instance @ 100%": "342,7", "Hardware Information on AWS Documentation & Comments": "1*GPU NVIDIA Tesla M60"}, {"Instance type": "g3.4xlarge", "Release Date": "July 2017", "Instance vCPU": "16", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "122", "Platform Memory (in GB)": "488", "Storage Info (Type and Size in GB)": "", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "4", "Platform GPU Name": "Tesla M60", "Instance Number of GPU": "1", "Instance GPU memory (in GB)": "8", "PkgWatt @ Idle": "7,77", "PkgWatt @ 10%": "22,19", "PkgWatt @ 50%": "45,64", "PkgWatt @ 100%": "62,47", "RAMWatt @ Idle": "24,40", "RAMWatt @ 10%": "36,60", "RAMWatt @ 50%": "48,80", "RAMWatt @ 100%": "73,20", "GPUWatt @ Idle": "34,8", "GPUWatt @ 10%": "95,5", "GPUWatt @ 50%": "225,7", "GPUWatt @ 100%": "305,6", "Delta Full Machine": "12,9", "Instance @ Idle": "79,9", "Instance @ 10%": "167,2", "Instance @ 50%": "333,0", "Instance @ 100%": "454,1", "Hardware Information on AWS Documentation & Comments": "1*GPU NVIDIA Tesla M60"}, {"Instance type": "g3.8xlarge", "Release Date": "July 2017", "Instance vCPU": "32", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "244", "Platform Memory (in GB)": "488", "Storage Info (Type and Size in GB)": "", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "4", "Platform GPU Name": "Tesla M60", "Instance Number of GPU": "2", "Instance GPU memory (in GB)": "16", "PkgWatt @ Idle": "15,55", "PkgWatt @ 10%": "44,38", "PkgWatt @ 50%": "91,28", "PkgWatt @ 100%": "124,95", "RAMWatt @ Idle": "48,80", "RAMWatt @ 10%": "73,20", "RAMWatt @ 50%": "97,60", "RAMWatt @ 100%": "146,40", "GPUWatt @ Idle": "69,7", "GPUWatt @ 10%": "191,0", "GPUWatt @ 50%": "451,4", "GPUWatt @ 100%": "611,1", "Delta Full Machine": "25,8", "Instance @ Idle": "159,8", "Instance @ 10%": "334,3", "Instance @ 50%": "666,0", "Instance @ 100%": "908,3", "Hardware Information on AWS Documentation & Comments": "2*GPU NVIDIA Tesla M60"}, {"Instance type": "g3.16xlarge", "Release Date": "July 2017", "Instance vCPU": "64", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "488", "Platform Memory (in GB)": "488", "Storage Info (Type and Size in GB)": "", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "4", "Platform GPU Name": "Tesla M60", "Instance Number of GPU": "4", "Instance GPU memory (in GB)": "32", "PkgWatt @ Idle": "31,09", "PkgWatt @ 10%": "88,76", "PkgWatt @ 50%": "182,57", "PkgWatt @ 100%": "249,90", "RAMWatt @ Idle": "97,60", "RAMWatt @ 10%": "146,40", "RAMWatt @ 50%": "195,20", "RAMWatt @ 100%": "292,80", "GPUWatt @ Idle": "139,4", "GPUWatt @ 10%": "381,9", "GPUWatt @ 50%": "902,7", "GPUWatt @ 100%": "1222,3", "Delta Full Machine": "51,6", "Instance @ Idle": "319,6", "Instance @ 10%": "668,6", "Instance @ 50%": "1332,0", "Instance @ 100%": "1816,5", "Hardware Information on AWS Documentation & Comments": "4*GPU NVIDIA Tesla M60"}, {"Instance type": "g4dn.xlarge", "Release Date": "March 2019", "Instance vCPU": "4", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "125", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "8", "Platform GPU Name": "T4", "Instance Number of GPU": "1", "Instance GPU memory (in GB)": "16", "PkgWatt @ Idle": "2,28", "PkgWatt @ 10%": "5,75", "PkgWatt @ 50%": "12,79", "PkgWatt @ 100%": "18,56", "RAMWatt @ Idle": "2,49", "RAMWatt @ 10%": "4,12", "RAMWatt @ 50%": "7,37", "RAMWatt @ 100%": "10,62", "GPUWatt @ Idle": "8,1", "GPUWatt @ 10%": "22,3", "GPUWatt @ 50%": "52,7", "GPUWatt @ 100%": "71,3", "Delta Full Machine": "3,5", "Instance @ Idle": "16,4", "Instance @ 10%": "35,6", "Instance @ 50%": "76,3", "Instance @ 100%": "104,0", "Hardware Information on AWS Documentation & Comments": "NVIDIA T4 GPU and custom Intel Cascade Lake CPUs"}, {"Instance type": "g4dn.2xlarge", "Release Date": "March 2019", "Instance vCPU": "8", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "225", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "8", "Platform GPU Name": "T4", "Instance Number of GPU": "1", "Instance GPU memory (in GB)": "16", "PkgWatt @ Idle": "4,56", "PkgWatt @ 10%": "11,49", "PkgWatt @ 50%": "25,58", "PkgWatt @ 100%": "37,12", "RAMWatt @ Idle": "4,98", "RAMWatt @ 10%": "8,24", "RAMWatt @ 50%": "14,74", "RAMWatt @ 100%": "21,25", "GPUWatt @ Idle": "8,1", "GPUWatt @ 10%": "22,3", "GPUWatt @ 50%": "52,7", "GPUWatt @ 100%": "71,3", "Delta Full Machine": "7,0", "Instance @ Idle": "24,7", "Instance @ 10%": "49,0", "Instance @ 50%": "100,0", "Instance @ 100%": "136,7", "Hardware Information on AWS Documentation & Comments": "NVIDIA T4 GPU and custom Intel Cascade Lake CPUs"}, {"Instance type": "g4dn.4xlarge", "Release Date": "March 2019", "Instance vCPU": "16", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "225", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "8", "Platform GPU Name": "T4", "Instance Number of GPU": "1", "Instance GPU memory (in GB)": "16", "PkgWatt @ Idle": "9,12", "PkgWatt @ 10%": "22,99", "PkgWatt @ 50%": "51,16", "PkgWatt @ 100%": "74,23", "RAMWatt @ Idle": "9,95", "RAMWatt @ 10%": "16,47", "RAMWatt @ 50%": "29,48", "RAMWatt @ 100%": "42,49", "GPUWatt @ Idle": "8,1", "GPUWatt @ 10%": "22,3", "GPUWatt @ 50%": "52,7", "GPUWatt @ 100%": "71,3", "Delta Full Machine": "14,0", "Instance @ Idle": "41,2", "Instance @ 10%": "75,7", "Instance @ 50%": "147,3", "Instance @ 100%": "202,0", "Hardware Information on AWS Documentation & Comments": "NVIDIA T4 GPU and custom Intel Cascade Lake CPUs"}, {"Instance type": "g4dn.8xlarge", "Release Date": "March 2019", "Instance vCPU": "32", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "1x900", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "8", "Platform GPU Name": "T4", "Instance Number of GPU": "1", "Instance GPU memory (in GB)": "16", "PkgWatt @ Idle": "18,24", "PkgWatt @ 10%": "45,97", "PkgWatt @ 50%": "102,31", "PkgWatt @ 100%": "148,46", "RAMWatt @ Idle": "19,91", "RAMWatt @ 10%": "32,94", "RAMWatt @ 50%": "58,96", "RAMWatt @ 100%": "84,98", "GPUWatt @ Idle": "8,1", "GPUWatt @ 10%": "22,3", "GPUWatt @ 50%": "52,7", "GPUWatt @ 100%": "71,3", "Delta Full Machine": "28,0", "Instance @ Idle": "74,3", "Instance @ 10%": "129,2", "Instance @ 50%": "241,9", "Instance @ 100%": "332,7", "Hardware Information on AWS Documentation & Comments": "NVIDIA T4 GPU and custom Intel Cascade Lake CPUs"}, {"Instance type": "g4dn.16xlarge", "Release Date": "March 2019", "Instance vCPU": "64", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "256", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "1x900", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "8", "Platform GPU Name": "T4", "Instance Number of GPU": "1", "Instance GPU memory (in GB)": "16", "PkgWatt @ Idle": "36,47", "PkgWatt @ 10%": "91,95", "PkgWatt @ 50%": "204,62", "PkgWatt @ 100%": "296,92", "RAMWatt @ Idle": "39,81", "RAMWatt @ 10%": "65,89", "RAMWatt @ 50%": "117,93", "RAMWatt @ 100%": "169,97", "GPUWatt @ Idle": "8,1", "GPUWatt @ 10%": "22,3", "GPUWatt @ 50%": "52,7", "GPUWatt @ 100%": "71,3", "Delta Full Machine": "56,0", "Instance @ Idle": "140,4", "Instance @ 10%": "236,1", "Instance @ 50%": "431,2", "Instance @ 100%": "594,2", "Hardware Information on AWS Documentation & Comments": "NVIDIA T4 GPU and custom Intel Cascade Lake CPUs"}, {"Instance type": "g4dn.12xlarge", "Release Date": "March 2019", "Instance vCPU": "48", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "192", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "1x900", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "8", "Platform GPU Name": "T4", "Instance Number of GPU": "4", "Instance GPU memory (in GB)": "64", "PkgWatt @ Idle": "27,36", "PkgWatt @ 10%": "68,96", "PkgWatt @ 50%": "153,47", "PkgWatt @ 100%": "222,69", "RAMWatt @ Idle": "29,86", "RAMWatt @ 10%": "49,42", "RAMWatt @ 50%": "88,45", "RAMWatt @ 100%": "127,48", "GPUWatt @ Idle": "32,5", "GPUWatt @ 10%": "89,1", "GPUWatt @ 50%": "210,6", "GPUWatt @ 100%": "285,2", "Delta Full Machine": "42,0", "Instance @ Idle": "131,7", "Instance @ 10%": "249,5", "Instance @ 50%": "494,5", "Instance @ 100%": "677,4", "Hardware Information on AWS Documentation & Comments": "NVIDIA T4 GPU and custom Intel Cascade Lake CPUs"}, {"Instance type": "g4dn.metal", "Release Date": "March 2019", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "384", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "2x900", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "8", "Platform GPU Name": "T4", "Instance Number of GPU": "8", "Instance GPU memory (in GB)": "128", "PkgWatt @ Idle": "54,71", "PkgWatt @ 10%": "137,92", "PkgWatt @ 50%": "306,93", "PkgWatt @ 100%": "445,38", "RAMWatt @ Idle": "59,72", "RAMWatt @ 10%": "98,83", "RAMWatt @ 50%": "176,89", "RAMWatt @ 100%": "254,95", "GPUWatt @ Idle": "65,0", "GPUWatt @ 10%": "178,2", "GPUWatt @ 50%": "421,3", "GPUWatt @ 100%": "570,4", "Delta Full Machine": "84,0", "Instance @ Idle": "263,5", "Instance @ 10%": "499,0", "Instance @ 50%": "989,1", "Instance @ 100%": "1354,7", "Hardware Information on AWS Documentation & Comments": "NVIDIA T4 GPU and custom Intel Cascade Lake CPUs"}, {"Instance type": "g4ad.4xlarge", "Release Date": "March 2019", "Instance vCPU": "16", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7R32", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "600", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "4", "Platform GPU Name": "Radeon Pro V520", "Instance Number of GPU": "1", "Instance GPU memory (in GB)": "8", "PkgWatt @ Idle": "5,42", "PkgWatt @ 10%": "14,85", "PkgWatt @ 50%": "35,11", "PkgWatt @ 100%": "47,53", "RAMWatt @ Idle": "12,80", "RAMWatt @ 10%": "19,20", "RAMWatt @ 50%": "25,60", "RAMWatt @ 100%": "38,40", "GPUWatt @ Idle": "26,1", "GPUWatt @ 10%": "71,6", "GPUWatt @ 50%": "169,3", "GPUWatt @ 100%": "229,2", "Delta Full Machine": "9,3", "Instance @ Idle": "53,7", "Instance @ 10%": "115,0", "Instance @ 50%": "239,3", "Instance @ 100%": "324,4", "Hardware Information on AWS Documentation & Comments": "AMD Radeon Pro V520 GPUs and 2nd generation AMD EPYC processors"}, {"Instance type": "g4ad.8xlarge", "Release Date": "March 2019", "Instance vCPU": "32", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7R32", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "1200", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "4", "Platform GPU Name": "Radeon Pro V520", "Instance Number of GPU": "2", "Instance GPU memory (in GB)": "16", "PkgWatt @ Idle": "10,84", "PkgWatt @ 10%": "29,70", "PkgWatt @ 50%": "70,21", "PkgWatt @ 100%": "95,06", "RAMWatt @ Idle": "25,60", "RAMWatt @ 10%": "38,40", "RAMWatt @ 50%": "51,20", "RAMWatt @ 100%": "76,80", "GPUWatt @ Idle": "52,3", "GPUWatt @ 10%": "143,2", "GPUWatt @ 50%": "338,5", "GPUWatt @ 100%": "458,3", "Delta Full Machine": "18,7", "Instance @ Idle": "107,4", "Instance @ 10%": "230,0", "Instance @ 50%": "478,6", "Instance @ 100%": "648,9", "Hardware Information on AWS Documentation & Comments": "AMD Radeon Pro V520 GPUs and 2nd generation AMD EPYC processors"}, {"Instance type": "g4ad.16xlarge", "Release Date": "March 2019", "Instance vCPU": "64", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7R32", "Instance Memory (in GB)": "256", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "2400", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "4", "Platform GPU Name": "Radeon Pro V520", "Instance Number of GPU": "4", "Instance GPU memory (in GB)": "32", "PkgWatt @ Idle": "21,68", "PkgWatt @ 10%": "59,41", "PkgWatt @ 50%": "140,42", "PkgWatt @ 100%": "190,13", "RAMWatt @ Idle": "51,20", "RAMWatt @ 10%": "76,80", "RAMWatt @ 50%": "102,40", "RAMWatt @ 100%": "153,60", "GPUWatt @ Idle": "104,5", "GPUWatt @ 10%": "286,4", "GPUWatt @ 50%": "677,0", "GPUWatt @ 100%": "916,7", "Delta Full Machine": "37,3", "Instance @ Idle": "214,7", "Instance @ 10%": "460,0", "Instance @ 50%": "957,2", "Instance @ 100%": "1297,8", "Hardware Information on AWS Documentation & Comments": "AMD Radeon Pro V520 GPUs and 2nd generation AMD EPYC processors"}, {"Instance type": "h1.2xlarge", "Release Date": "November 2017", "Instance vCPU": "8", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "1 x 2.000 HDD", "Storage Type": "HDD", "Platform Storage Drive Quantity": "24", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "3,89", "PkgWatt @ 10%": "11,10", "PkgWatt @ 50%": "22,82", "PkgWatt @ 100%": "31,24", "RAMWatt @ Idle": "6,40", "RAMWatt @ 10%": "9,60", "RAMWatt @ 50%": "12,80", "RAMWatt @ 100%": "19,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "6,4", "Instance @ Idle": "16,7", "Instance @ 10%": "27,1", "Instance @ 50%": "42,1", "Instance @ 100%": "56,9", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5 2686 v4 Processor (Broadwell)"}, {"Instance type": "h1.4xlarge", "Release Date": "November 2017", "Instance vCPU": "16", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "2 x 2.000 HDD", "Storage Type": "HDD", "Platform Storage Drive Quantity": "24", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "7,77", "PkgWatt @ 10%": "22,19", "PkgWatt @ 50%": "45,64", "PkgWatt @ 100%": "62,47", "RAMWatt @ Idle": "12,80", "RAMWatt @ 10%": "19,20", "RAMWatt @ 50%": "25,60", "RAMWatt @ 100%": "38,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "12,9", "Instance @ Idle": "33,5", "Instance @ 10%": "54,3", "Instance @ 50%": "84,1", "Instance @ 100%": "113,8", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5 2686 v4 Processor (Broadwell)"}, {"Instance type": "h1.8xlarge", "Release Date": "November 2017", "Instance vCPU": "32", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "4 x 2.000 HDD", "Storage Type": "HDD", "Platform Storage Drive Quantity": "24", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "15,55", "PkgWatt @ 10%": "44,38", "PkgWatt @ 50%": "91,28", "PkgWatt @ 100%": "124,95", "RAMWatt @ Idle": "25,60", "RAMWatt @ 10%": "38,40", "RAMWatt @ 50%": "51,20", "RAMWatt @ 100%": "76,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "25,8", "Instance @ Idle": "66,9", "Instance @ 10%": "108,6", "Instance @ 50%": "168,3", "Instance @ 100%": "227,5", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5 2686 v4 Processor (Broadwell)"}, {"Instance type": "h1.16xlarge", "Release Date": "November 2017", "Instance vCPU": "64", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "256", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "8 x 2.000 HDD", "Storage Type": "HDD", "Platform Storage Drive Quantity": "24", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "31,09", "PkgWatt @ 10%": "88,76", "PkgWatt @ 50%": "182,57", "PkgWatt @ 100%": "249,90", "RAMWatt @ Idle": "51,20", "RAMWatt @ 10%": "76,80", "RAMWatt @ 50%": "102,40", "RAMWatt @ 100%": "153,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "51,6", "Instance @ Idle": "133,8", "Instance @ 10%": "217,1", "Instance @ 50%": "336,5", "Instance @ 100%": "455,1", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5 2686 v4 Processor (Broadwell)"}, {"Instance type": "hs1.8xlarge", "Release Date": "December 2012", "Instance vCPU": "16", "Platform Total Number of vCPU": "32", "Platform CPU Name": "Xeon E5-2670", "Instance Memory (in GB)": "117", "Platform Memory (in GB)": "244", "Storage Info (Type and Size in GB)": "24 x 2 000 (HDD)", "Storage Type": "HDD", "Platform Storage Drive Quantity": "24", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "13,87", "PkgWatt @ 10%": "39,60", "PkgWatt @ 50%": "81,45", "PkgWatt @ 100%": "111,48", "RAMWatt @ Idle": "23,40", "RAMWatt @ 10%": "35,10", "RAMWatt @ 50%": "46,80", "RAMWatt @ 100%": "70,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "23,0", "Instance @ Idle": "60,3", "Instance @ 10%": "97,7", "Instance @ 50%": "151,2", "Instance @ 100%": "204,7", "Hardware Information on AWS Documentation & Comments": "Intel E5-2650 processor"}, {"Instance type": "i2.xlarge", "Release Date": "December 2013", "Instance vCPU": "4", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2670 v2", "Instance Memory (in GB)": "30.5", "Platform Memory (in GB)": "244", "Storage Info (Type and Size in GB)": "1 x 800 (SSD)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "8", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,77", "PkgWatt @ 10%": "7,92", "PkgWatt @ 50%": "16,29", "PkgWatt @ 100%": "22,30", "RAMWatt @ Idle": "6,10", "RAMWatt @ 10%": "9,15", "RAMWatt @ 50%": "12,20", "RAMWatt @ 100%": "18,30", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "4,6", "Instance @ Idle": "13,5", "Instance @ 10%": "21,7", "Instance @ 50%": "33,1", "Instance @ 100%": "45,2", "Hardware Information on AWS Documentation & Comments": "Intel E5-2670 v2 (Ivy Bridge) processor"}, {"Instance type": "i2.2xlarge", "Release Date": "December 2013", "Instance vCPU": "8", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2670 v2", "Instance Memory (in GB)": "61", "Platform Memory (in GB)": "244", "Storage Info (Type and Size in GB)": "2 x 800 (SSD)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "8", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "5,55", "PkgWatt @ 10%": "15,84", "PkgWatt @ 50%": "32,58", "PkgWatt @ 100%": "44,59", "RAMWatt @ Idle": "12,20", "RAMWatt @ 10%": "18,30", "RAMWatt @ 50%": "24,40", "RAMWatt @ 100%": "36,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "9,2", "Instance @ Idle": "26,9", "Instance @ 10%": "43,3", "Instance @ 50%": "66,2", "Instance @ 100%": "90,4", "Hardware Information on AWS Documentation & Comments": "Intel E5-2670 v2 (Ivy Bridge) processor"}, {"Instance type": "i2.4xlarge", "Release Date": "December 2013", "Instance vCPU": "16", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2670 v2", "Instance Memory (in GB)": "122", "Platform Memory (in GB)": "244", "Storage Info (Type and Size in GB)": "4 x 800 (SSD)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "8", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "11,10", "PkgWatt @ 10%": "31,68", "PkgWatt @ 50%": "65,16", "PkgWatt @ 100%": "89,19", "RAMWatt @ Idle": "24,40", "RAMWatt @ 10%": "36,60", "RAMWatt @ 50%": "48,80", "RAMWatt @ 100%": "73,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "18,4", "Instance @ Idle": "53,9", "Instance @ 10%": "86,7", "Instance @ 50%": "132,4", "Instance @ 100%": "180,8", "Hardware Information on AWS Documentation & Comments": "Intel E5-2670 v2 (Ivy Bridge) processor"}, {"Instance type": "i2.8xlarge", "Release Date": "December 2013", "Instance vCPU": "32", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2670 v2", "Instance Memory (in GB)": "244", "Platform Memory (in GB)": "244", "Storage Info (Type and Size in GB)": "8 x 800 (SSD)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "8", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "22,19", "PkgWatt @ 10%": "63,36", "PkgWatt @ 50%": "130,32", "PkgWatt @ 100%": "178,37", "RAMWatt @ Idle": "48,80", "RAMWatt @ 10%": "73,20", "RAMWatt @ 50%": "97,60", "RAMWatt @ 100%": "146,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "36,8", "Instance @ Idle": "107,8", "Instance @ 10%": "173,4", "Instance @ 50%": "264,7", "Instance @ 100%": "361,6", "Hardware Information on AWS Documentation & Comments": "Intel E5-2670 v2 (Ivy Bridge) processor"}, {"Instance type": "i3.large", "Release Date": "November 2016", "Instance vCPU": "2", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "15.25", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "1 x 475 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "8", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,97", "PkgWatt @ 10%": "2,77", "PkgWatt @ 50%": "5,71", "PkgWatt @ 100%": "7,81", "RAMWatt @ Idle": "3,05", "RAMWatt @ 10%": "4,58", "RAMWatt @ 50%": "6,10", "RAMWatt @ 100%": "9,15", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,6", "Instance @ Idle": "5,6", "Instance @ 10%": "9,0", "Instance @ 50%": "13,4", "Instance @ 100%": "18,6", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5 2686 v4 Processor (Broadwell)"}, {"Instance type": "i3.xlarge", "Release Date": "November 2016", "Instance vCPU": "4", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "30.5", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "1 x 950 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "8", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,94", "PkgWatt @ 10%": "5,55", "PkgWatt @ 50%": "11,41", "PkgWatt @ 100%": "15,62", "RAMWatt @ Idle": "6,10", "RAMWatt @ 10%": "9,15", "RAMWatt @ 50%": "12,20", "RAMWatt @ 100%": "18,30", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,2", "Instance @ Idle": "11,3", "Instance @ 10%": "17,9", "Instance @ 50%": "26,8", "Instance @ 100%": "37,1", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5 2686 v4 Processor (Broadwell)"}, {"Instance type": "i3.2xlarge", "Release Date": "November 2016", "Instance vCPU": "8", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "61", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "1 x 1.900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "8", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "3,89", "PkgWatt @ 10%": "11,10", "PkgWatt @ 50%": "22,82", "PkgWatt @ 100%": "31,24", "RAMWatt @ Idle": "12,20", "RAMWatt @ 10%": "18,30", "RAMWatt @ 50%": "24,40", "RAMWatt @ 100%": "36,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "6,4", "Instance @ Idle": "22,5", "Instance @ 10%": "35,8", "Instance @ 50%": "53,7", "Instance @ 100%": "74,3", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5 2686 v4 Processor (Broadwell)"}, {"Instance type": "i3.4xlarge", "Release Date": "November 2016", "Instance vCPU": "16", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "122", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "2 x 1.900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "8", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "7,77", "PkgWatt @ 10%": "22,19", "PkgWatt @ 50%": "45,64", "PkgWatt @ 100%": "62,47", "RAMWatt @ Idle": "24,40", "RAMWatt @ 10%": "36,60", "RAMWatt @ 50%": "48,80", "RAMWatt @ 100%": "73,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "12,9", "Instance @ Idle": "45,1", "Instance @ 10%": "71,7", "Instance @ 50%": "107,3", "Instance @ 100%": "148,6", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5 2686 v4 Processor (Broadwell)"}, {"Instance type": "i3.8xlarge", "Release Date": "November 2016", "Instance vCPU": "32", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "244", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "4 x 1.900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "8", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "15,55", "PkgWatt @ 10%": "44,38", "PkgWatt @ 50%": "91,28", "PkgWatt @ 100%": "124,95", "RAMWatt @ Idle": "48,80", "RAMWatt @ 10%": "73,20", "RAMWatt @ 50%": "97,60", "RAMWatt @ 100%": "146,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "25,8", "Instance @ Idle": "90,1", "Instance @ 10%": "143,4", "Instance @ 50%": "214,7", "Instance @ 100%": "297,1", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5 2686 v4 Processor (Broadwell)"}, {"Instance type": "i3.16xlarge", "Release Date": "November 2016", "Instance vCPU": "64", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "488", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "8 x 1.900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "8", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "31,09", "PkgWatt @ 10%": "88,76", "PkgWatt @ 50%": "182,57", "PkgWatt @ 100%": "249,90", "RAMWatt @ Idle": "97,60", "RAMWatt @ 10%": "146,40", "RAMWatt @ 50%": "195,20", "RAMWatt @ 100%": "292,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "51,6", "Instance @ Idle": "180,2", "Instance @ 10%": "286,7", "Instance @ 50%": "429,3", "Instance @ 100%": "594,3", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5 2686 v4 Processor (Broadwell)"}, {"Instance type": "i3.metal", "Release Date": "November 2017", "Instance vCPU": "72", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "512", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "8 x 1.900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "8", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "34,98", "PkgWatt @ 10%": "99,86", "PkgWatt @ 50%": "205,39", "PkgWatt @ 100%": "281,13", "RAMWatt @ Idle": "102,40", "RAMWatt @ 10%": "153,60", "RAMWatt @ 50%": "204,80", "RAMWatt @ 100%": "307,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "58,0", "Instance @ Idle": "195,4", "Instance @ 10%": "311,5", "Instance @ 50%": "468,2", "Instance @ 100%": "646,3", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5 2686 v4 Processor (Broadwell)"}, {"Instance type": "i3en.large", "Release Date": "May 2019", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "1 x 1.250 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "8", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,21", "PkgWatt @ 10%": "3,05", "PkgWatt @ 50%": "7,16", "PkgWatt @ 100%": "9,96", "RAMWatt @ Idle": "2,41", "RAMWatt @ 10%": "3,85", "RAMWatt @ 50%": "9,92", "RAMWatt @ 100%": "15,99", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,0", "Instance @ Idle": "5,6", "Instance @ 10%": "8,9", "Instance @ 50%": "19,1", "Instance @ 100%": "27,9", "Hardware Information on AWS Documentation & Comments": "3.1 GHz all core turbo Intel Xeon Scalable (Skylake) processors"}, {"Instance type": "i3en.xlarge", "Release Date": "May 2019", "Instance vCPU": "4", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "1 x 2.500 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "8", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,41", "PkgWatt @ 10%": "6,11", "PkgWatt @ 50%": "14,32", "PkgWatt @ 100%": "19,92", "RAMWatt @ Idle": "4,82", "RAMWatt @ 10%": "7,70", "RAMWatt @ 50%": "19,84", "RAMWatt @ 100%": "31,98", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "4,0", "Instance @ Idle": "11,2", "Instance @ 10%": "17,8", "Instance @ 50%": "38,2", "Instance @ 100%": "55,9", "Hardware Information on AWS Documentation & Comments": "3.1 GHz all core turbo Intel Xeon Scalable (Skylake) processors"}, {"Instance type": "i3en.2xlarge", "Release Date": "May 2019", "Instance vCPU": "8", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "2 x 2.500 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "8", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,82", "PkgWatt @ 10%": "12,22", "PkgWatt @ 50%": "28,64", "PkgWatt @ 100%": "39,83", "RAMWatt @ Idle": "9,64", "RAMWatt @ 10%": "15,40", "RAMWatt @ 50%": "39,68", "RAMWatt @ 100%": "63,97", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "8,0", "Instance @ Idle": "22,5", "Instance @ 10%": "35,6", "Instance @ 50%": "76,3", "Instance @ 100%": "111,8", "Hardware Information on AWS Documentation & Comments": "3.1 GHz all core turbo Intel Xeon Scalable (Skylake) processors"}, {"Instance type": "i3en.3xlarge", "Release Date": "May 2019", "Instance vCPU": "12", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "96", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "1 x 7.500 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "8", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "7,24", "PkgWatt @ 10%": "18,33", "PkgWatt @ 50%": "42,96", "PkgWatt @ 100%": "59,75", "RAMWatt @ Idle": "14,45", "RAMWatt @ 10%": "23,10", "RAMWatt @ 50%": "59,53", "RAMWatt @ 100%": "95,95", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "12,0", "Instance @ Idle": "33,7", "Instance @ 10%": "53,4", "Instance @ 50%": "114,5", "Instance @ 100%": "167,7", "Hardware Information on AWS Documentation & Comments": "3.1 GHz all core turbo Intel Xeon Scalable (Skylake) processors"}, {"Instance type": "i3en.6xlarge", "Release Date": "May 2019", "Instance vCPU": "24", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "192", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "2 x 7.500 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "8", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "14,47", "PkgWatt @ 10%": "36,66", "PkgWatt @ 50%": "85,93", "PkgWatt @ 100%": "119,49", "RAMWatt @ Idle": "28,91", "RAMWatt @ 10%": "46,20", "RAMWatt @ 50%": "119,05", "RAMWatt @ 100%": "191,91", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "24,0", "Instance @ Idle": "67,4", "Instance @ 10%": "106,9", "Instance @ 50%": "229,0", "Instance @ 100%": "335,4", "Hardware Information on AWS Documentation & Comments": "3.1 GHz all core turbo Intel Xeon Scalable (Skylake) processors"}, {"Instance type": "i3en.12xlarge", "Release Date": "May 2019", "Instance vCPU": "48", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "384", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "4 x 7.500 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "8", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "28,94", "PkgWatt @ 10%": "73,32", "PkgWatt @ 50%": "171,85", "PkgWatt @ 100%": "238,99", "RAMWatt @ Idle": "57,81", "RAMWatt @ 10%": "92,39", "RAMWatt @ 50%": "238,10", "RAMWatt @ 100%": "383,81", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "48,0", "Instance @ Idle": "134,8", "Instance @ 10%": "213,7", "Instance @ 50%": "458,0", "Instance @ 100%": "670,8", "Hardware Information on AWS Documentation & Comments": "3.1 GHz all core turbo Intel Xeon Scalable (Skylake) processors"}, {"Instance type": "i3en.24xlarge", "Release Date": "May 2019", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "768", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "8 x 7.500 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "8", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "57,88", "PkgWatt @ 10%": "146,63", "PkgWatt @ 50%": "343,70", "PkgWatt @ 100%": "477,98", "RAMWatt @ Idle": "115,62", "RAMWatt @ 10%": "184,78", "RAMWatt @ 50%": "476,20", "RAMWatt @ 100%": "767,62", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "96,0", "Instance @ Idle": "269,5", "Instance @ 10%": "427,4", "Instance @ 50%": "915,9", "Instance @ 100%": "1341,6", "Hardware Information on AWS Documentation & Comments": "3.1 GHz all core turbo Intel Xeon Scalable (Skylake) processors"}, {"Instance type": "i3en.metal", "Release Date": "August 2019", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "768", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "8 x 7.500 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "8", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "57,88", "PkgWatt @ 10%": "146,63", "PkgWatt @ 50%": "343,70", "PkgWatt @ 100%": "477,98", "RAMWatt @ Idle": "115,62", "RAMWatt @ 10%": "184,78", "RAMWatt @ 50%": "476,20", "RAMWatt @ 100%": "767,62", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "96,0", "Instance @ Idle": "269,5", "Instance @ 10%": "427,4", "Instance @ 50%": "915,9", "Instance @ 100%": "1341,6", "Hardware Information on AWS Documentation & Comments": "3.1 GHz all core turbo Intel Xeon Scalable (Skylake) processors"}, {"Instance type": "inf1.xlarge", "Release Date": "December 2019", "Instance vCPU": "4", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8275CL", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,41", "PkgWatt @ 10%": "7,31", "PkgWatt @ 50%": "18,68", "PkgWatt @ 100%": "26,11", "RAMWatt @ Idle": "1,52", "RAMWatt @ 10%": "2,76", "RAMWatt @ 50%": "5,77", "RAMWatt @ 100%": "8,77", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "4,0", "Instance @ Idle": "7,9", "Instance @ 10%": "14,1", "Instance @ 50%": "28,4", "Instance @ 100%": "38,9", "Hardware Information on AWS Documentation & Comments": "1 Inferencia chip - Comment: the estimated Scope 3 does not include the Inferencia chips"}, {"Instance type": "inf1.2xlarge", "Release Date": "December 2019", "Instance vCPU": "8", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8275CL", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,83", "PkgWatt @ 10%": "14,63", "PkgWatt @ 50%": "37,36", "PkgWatt @ 100%": "52,23", "RAMWatt @ Idle": "3,05", "RAMWatt @ 10%": "5,52", "RAMWatt @ 50%": "11,53", "RAMWatt @ 100%": "17,54", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "8,0", "Instance @ Idle": "15,9", "Instance @ 10%": "28,1", "Instance @ 50%": "56,9", "Instance @ 100%": "77,8", "Hardware Information on AWS Documentation & Comments": "1 Inferencia chip - Comment: the estimated Scope 3 does not include the Inferencia chips"}, {"Instance type": "inf1.6xlarge", "Release Date": "December 2019", "Instance vCPU": "24", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8275CL", "Instance Memory (in GB)": "48", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "14,48", "PkgWatt @ 10%": "43,88", "PkgWatt @ 50%": "112,08", "PkgWatt @ 100%": "156,69", "RAMWatt @ Idle": "9,14", "RAMWatt @ 10%": "16,57", "RAMWatt @ 50%": "34,59", "RAMWatt @ 100%": "52,62", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "24,0", "Instance @ Idle": "47,6", "Instance @ 10%": "84,4", "Instance @ 50%": "170,7", "Instance @ 100%": "233,3", "Hardware Information on AWS Documentation & Comments": "4 Inferencia chips - Comment: the estimated Scope 3 does not include the Inferencia chips"}, {"Instance type": "inf1.24xlarge", "Release Date": "December 2019", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8275CL", "Instance Memory (in GB)": "192", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "57,93", "PkgWatt @ 10%": "175,53", "PkgWatt @ 50%": "448,31", "PkgWatt @ 100%": "626,76", "RAMWatt @ Idle": "36,55", "RAMWatt @ 10%": "66,26", "RAMWatt @ 50%": "138,37", "RAMWatt @ 100%": "210,48", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "96,0", "Instance @ Idle": "190,5", "Instance @ 10%": "337,8", "Instance @ 50%": "682,7", "Instance @ 100%": "933,2", "Hardware Information on AWS Documentation & Comments": "16 Inferencia chips - Comment: the estimated Scope 3 does not include the Inferencia chips"}, {"Instance type": "m1.small", "Release Date": "August 2006", "Instance vCPU": "1", "Platform Total Number of vCPU": "32", "Platform CPU Name": "Xeon E5-2650", "Instance Memory (in GB)": "1.7", "Platform Memory (in GB)": "120", "Storage Info (Type and Size in GB)": "1 x 160 (SSD)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,72", "PkgWatt @ 10%": "2,04", "PkgWatt @ 50%": "4,21", "PkgWatt @ 100%": "5,76", "RAMWatt @ Idle": "0,34", "RAMWatt @ 10%": "0,51", "RAMWatt @ 50%": "0,68", "RAMWatt @ 100%": "1,02", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,2", "Instance @ Idle": "2,2", "Instance @ 10%": "3,7", "Instance @ 50%": "6,1", "Instance @ 100%": "8,0", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "m1.medium", "Release Date": "March 2012", "Instance vCPU": "1", "Platform Total Number of vCPU": "32", "Platform CPU Name": "Xeon E5-2650", "Instance Memory (in GB)": "3.75", "Platform Memory (in GB)": "120", "Storage Info (Type and Size in GB)": "1 x SSD 410", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,72", "PkgWatt @ 10%": "2,04", "PkgWatt @ 50%": "4,21", "PkgWatt @ 100%": "5,76", "RAMWatt @ Idle": "0,75", "RAMWatt @ 10%": "1,13", "RAMWatt @ 50%": "1,50", "RAMWatt @ 100%": "2,25", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,2", "Instance @ Idle": "2,7", "Instance @ 10%": "4,4", "Instance @ 50%": "6,9", "Instance @ 100%": "9,2", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "m1.large", "Release Date": "October 2007", "Instance vCPU": "2", "Platform Total Number of vCPU": "32", "Platform CPU Name": "Xeon E5-2650", "Instance Memory (in GB)": "7.5", "Platform Memory (in GB)": "120", "Storage Info (Type and Size in GB)": "2 x SSD 420", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,43", "PkgWatt @ 10%": "4,09", "PkgWatt @ 50%": "8,41", "PkgWatt @ 100%": "11,51", "RAMWatt @ Idle": "1,50", "RAMWatt @ 10%": "2,25", "RAMWatt @ 50%": "3,00", "RAMWatt @ 100%": "4,50", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,4", "Instance @ Idle": "5,3", "Instance @ 10%": "8,7", "Instance @ 50%": "13,8", "Instance @ 100%": "18,4", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "m1.xlarge", "Release Date": "October 2007", "Instance vCPU": "4", "Platform Total Number of vCPU": "32", "Platform CPU Name": "Xeon E5-2650", "Instance Memory (in GB)": "15", "Platform Memory (in GB)": "120", "Storage Info (Type and Size in GB)": "4 x SSD 420", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,86", "PkgWatt @ 10%": "8,18", "PkgWatt @ 50%": "16,82", "PkgWatt @ 100%": "23,02", "RAMWatt @ Idle": "3,00", "RAMWatt @ 10%": "4,50", "RAMWatt @ 50%": "6,00", "RAMWatt @ 100%": "9,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "4,8", "Instance @ Idle": "10,6", "Instance @ 10%": "17,4", "Instance @ 50%": "27,6", "Instance @ 100%": "36,8", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "m2.xlarge", "Release Date": "February 2010", "Instance vCPU": "2", "Platform Total Number of vCPU": "32", "Platform CPU Name": "Xeon E5-2665", "Instance Memory (in GB)": "17.1", "Platform Memory (in GB)": "280", "Storage Info (Type and Size in GB)": "1 x SSD 420", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,73", "PkgWatt @ 10%": "4,95", "PkgWatt @ 50%": "10,18", "PkgWatt @ 100%": "13,94", "RAMWatt @ Idle": "3,42", "RAMWatt @ 10%": "5,13", "RAMWatt @ 50%": "6,84", "RAMWatt @ 100%": "10,26", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,9", "Instance @ Idle": "8,0", "Instance @ 10%": "13,0", "Instance @ 50%": "19,9", "Instance @ 100%": "27,1", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "m2.2xlarge", "Release Date": "October 2009", "Instance vCPU": "4", "Platform Total Number of vCPU": "32", "Platform CPU Name": "Xeon E5-2665", "Instance Memory (in GB)": "34.2", "Platform Memory (in GB)": "280", "Storage Info (Type and Size in GB)": "1 x SSD 850", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "3,47", "PkgWatt @ 10%": "9,90", "PkgWatt @ 50%": "20,36", "PkgWatt @ 100%": "27,87", "RAMWatt @ Idle": "6,84", "RAMWatt @ 10%": "10,26", "RAMWatt @ 50%": "13,68", "RAMWatt @ 100%": "20,52", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "5,8", "Instance @ Idle": "16,1", "Instance @ 10%": "25,9", "Instance @ 50%": "39,8", "Instance @ 100%": "54,1", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "m2.4xlarge", "Release Date": "October 2009", "Instance vCPU": "8", "Platform Total Number of vCPU": "32", "Platform CPU Name": "Xeon E5-2665", "Instance Memory (in GB)": "68.4", "Platform Memory (in GB)": "280", "Storage Info (Type and Size in GB)": "2 x SSD 840", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "6,94", "PkgWatt @ 10%": "19,80", "PkgWatt @ 50%": "40,72", "PkgWatt @ 100%": "55,74", "RAMWatt @ Idle": "13,68", "RAMWatt @ 10%": "20,52", "RAMWatt @ 50%": "27,36", "RAMWatt @ 100%": "41,04", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "11,5", "Instance @ Idle": "32,1", "Instance @ 10%": "51,8", "Instance @ 50%": "79,6", "Instance @ 100%": "108,3", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "m3.medium", "Release Date": "January 2014", "Instance vCPU": "1", "Platform Total Number of vCPU": "32", "Platform CPU Name": "Xeon E5-2670", "Instance Memory (in GB)": "3.75", "Platform Memory (in GB)": "240", "Storage Info (Type and Size in GB)": "1 x 4 (SSD)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,87", "PkgWatt @ 10%": "2,47", "PkgWatt @ 50%": "5,09", "PkgWatt @ 100%": "6,97", "RAMWatt @ Idle": "0,75", "RAMWatt @ 10%": "1,13", "RAMWatt @ 50%": "1,50", "RAMWatt @ 100%": "2,25", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,4", "Instance @ Idle": "3,1", "Instance @ 10%": "5,0", "Instance @ 50%": "8,0", "Instance @ 100%": "10,7", "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2670 (Sandy Bridge or Ivy Bridge) processors"}, {"Instance type": "m3.large", "Release Date": "January 2014", "Instance vCPU": "2", "Platform Total Number of vCPU": "32", "Platform CPU Name": "Xeon E5-2670", "Instance Memory (in GB)": "7.5", "Platform Memory (in GB)": "240", "Storage Info (Type and Size in GB)": "1 x 32 (SSD)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,73", "PkgWatt @ 10%": "4,95", "PkgWatt @ 50%": "10,18", "PkgWatt @ 100%": "13,94", "RAMWatt @ Idle": "1,50", "RAMWatt @ 10%": "2,25", "RAMWatt @ 50%": "3,00", "RAMWatt @ 100%": "4,50", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,9", "Instance @ Idle": "6,1", "Instance @ 10%": "10,1", "Instance @ 50%": "16,1", "Instance @ 100%": "21,3", "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2670 (Sandy Bridge or Ivy Bridge) processors"}, {"Instance type": "m3.xlarge", "Release Date": "October 2012", "Instance vCPU": "4", "Platform Total Number of vCPU": "32", "Platform CPU Name": "Xeon E5-2670", "Instance Memory (in GB)": "15", "Platform Memory (in GB)": "240", "Storage Info (Type and Size in GB)": "2 x 40 (SSD)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "3,47", "PkgWatt @ 10%": "9,90", "PkgWatt @ 50%": "20,36", "PkgWatt @ 100%": "27,87", "RAMWatt @ Idle": "3,00", "RAMWatt @ 10%": "4,50", "RAMWatt @ 50%": "6,00", "RAMWatt @ 100%": "9,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "5,8", "Instance @ Idle": "12,2", "Instance @ 10%": "20,1", "Instance @ 50%": "32,1", "Instance @ 100%": "42,6", "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2670 (Sandy Bridge or Ivy Bridge) processors"}, {"Instance type": "m3.2xlarge", "Release Date": "October 2012", "Instance vCPU": "8", "Platform Total Number of vCPU": "32", "Platform CPU Name": "Xeon E5-2670", "Instance Memory (in GB)": "30", "Platform Memory (in GB)": "240", "Storage Info (Type and Size in GB)": "2 x 80 (SSD)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "6,94", "PkgWatt @ 10%": "19,80", "PkgWatt @ 50%": "40,72", "PkgWatt @ 100%": "55,74", "RAMWatt @ Idle": "6,00", "RAMWatt @ 10%": "9,00", "RAMWatt @ 50%": "12,00", "RAMWatt @ 100%": "18,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "11,5", "Instance @ Idle": "24,4", "Instance @ 10%": "40,3", "Instance @ 50%": "64,2", "Instance @ 100%": "85,2", "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2670 (Sandy Bridge or Ivy Bridge) processors"}, {"Instance type": "m4.large", "Release Date": "June 2015", "Instance vCPU": "2", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,97", "PkgWatt @ 10%": "2,77", "PkgWatt @ 50%": "5,71", "PkgWatt @ 100%": "7,81", "RAMWatt @ Idle": "1,60", "RAMWatt @ 10%": "2,40", "RAMWatt @ 50%": "3,20", "RAMWatt @ 100%": "4,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,6", "Instance @ Idle": "4,2", "Instance @ 10%": "6,8", "Instance @ 50%": "10,5", "Instance @ 100%": "14,2", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)"}, {"Instance type": "m4.xlarge", "Release Date": "June 2015", "Instance vCPU": "4", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,94", "PkgWatt @ 10%": "5,55", "PkgWatt @ 50%": "11,41", "PkgWatt @ 100%": "15,62", "RAMWatt @ Idle": "3,20", "RAMWatt @ 10%": "4,80", "RAMWatt @ 50%": "6,40", "RAMWatt @ 100%": "9,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,2", "Instance @ Idle": "8,4", "Instance @ 10%": "13,6", "Instance @ 50%": "21,0", "Instance @ 100%": "28,4", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)"}, {"Instance type": "m4.2xlarge", "Release Date": "June 2015", "Instance vCPU": "8", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "3,89", "PkgWatt @ 10%": "11,10", "PkgWatt @ 50%": "22,82", "PkgWatt @ 100%": "31,24", "RAMWatt @ Idle": "6,40", "RAMWatt @ 10%": "9,60", "RAMWatt @ 50%": "12,80", "RAMWatt @ 100%": "19,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "6,4", "Instance @ Idle": "16,7", "Instance @ 10%": "27,1", "Instance @ 50%": "42,1", "Instance @ 100%": "56,9", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)"}, {"Instance type": "m4.4xlarge", "Release Date": "June 2015", "Instance vCPU": "16", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "7,77", "PkgWatt @ 10%": "22,19", "PkgWatt @ 50%": "45,64", "PkgWatt @ 100%": "62,47", "RAMWatt @ Idle": "12,80", "RAMWatt @ 10%": "19,20", "RAMWatt @ 50%": "25,60", "RAMWatt @ 100%": "38,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "12,9", "Instance @ Idle": "33,5", "Instance @ 10%": "54,3", "Instance @ 50%": "84,1", "Instance @ 100%": "113,8", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)"}, {"Instance type": "m4.10xlarge", "Release Date": "June 2015", "Instance vCPU": "40", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon E5-2676 v3", "Instance Memory (in GB)": "160", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "24,12", "PkgWatt @ 10%": "68,87", "PkgWatt @ 50%": "141,65", "PkgWatt @ 100%": "193,88", "RAMWatt @ Idle": "32,00", "RAMWatt @ 10%": "48,00", "RAMWatt @ 50%": "64,00", "RAMWatt @ 100%": "96,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "40,0", "Instance @ Idle": "96,1", "Instance @ 10%": "156,9", "Instance @ 50%": "245,6", "Instance @ 100%": "329,9", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)"}, {"Instance type": "m4.16xlarge", "Release Date": "September 2016", "Instance vCPU": "64", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "256", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "31,09", "PkgWatt @ 10%": "88,76", "PkgWatt @ 50%": "182,57", "PkgWatt @ 100%": "249,90", "RAMWatt @ Idle": "51,20", "RAMWatt @ 10%": "76,80", "RAMWatt @ 50%": "102,40", "RAMWatt @ 100%": "153,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "51,6", "Instance @ Idle": "133,8", "Instance @ 10%": "217,1", "Instance @ 50%": "336,5", "Instance @ 100%": "455,1", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)"}, {"Instance type": "m5.large", "Release Date": "November 2017", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,21", "PkgWatt @ 10%": "3,05", "PkgWatt @ 50%": "7,16", "PkgWatt @ 100%": "9,96", "RAMWatt @ Idle": "1,20", "RAMWatt @ 10%": "1,92", "RAMWatt @ 50%": "4,96", "RAMWatt @ 100%": "8,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,0", "Instance @ Idle": "4,4", "Instance @ 10%": "7,0", "Instance @ 50%": "14,1", "Instance @ 100%": "20,0", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "m5.xlarge", "Release Date": "November 2017", "Instance vCPU": "4", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,41", "PkgWatt @ 10%": "6,11", "PkgWatt @ 50%": "14,32", "PkgWatt @ 100%": "19,92", "RAMWatt @ Idle": "2,41", "RAMWatt @ 10%": "3,85", "RAMWatt @ 50%": "9,92", "RAMWatt @ 100%": "15,99", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "4,0", "Instance @ Idle": "8,8", "Instance @ 10%": "14,0", "Instance @ 50%": "28,2", "Instance @ 100%": "39,9", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "m5.2xlarge", "Release Date": "November 2017", "Instance vCPU": "8", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,82", "PkgWatt @ 10%": "12,22", "PkgWatt @ 50%": "28,64", "PkgWatt @ 100%": "39,83", "RAMWatt @ Idle": "4,82", "RAMWatt @ 10%": "7,70", "RAMWatt @ 50%": "19,84", "RAMWatt @ 100%": "31,98", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "8,0", "Instance @ Idle": "17,6", "Instance @ 10%": "27,9", "Instance @ 50%": "56,5", "Instance @ 100%": "79,8", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "m5.4xlarge", "Release Date": "November 2017", "Instance vCPU": "16", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "9,65", "PkgWatt @ 10%": "24,44", "PkgWatt @ 50%": "57,28", "PkgWatt @ 100%": "79,66", "RAMWatt @ Idle": "9,64", "RAMWatt @ 10%": "15,40", "RAMWatt @ 50%": "39,68", "RAMWatt @ 100%": "63,97", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "16,0", "Instance @ Idle": "35,3", "Instance @ 10%": "55,8", "Instance @ 50%": "113,0", "Instance @ 100%": "159,6", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "m5.8xlarge", "Release Date": "June 2019", "Instance vCPU": "32", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "19,29", "PkgWatt @ 10%": "48,88", "PkgWatt @ 50%": "114,57", "PkgWatt @ 100%": "159,33", "RAMWatt @ Idle": "19,27", "RAMWatt @ 10%": "30,80", "RAMWatt @ 50%": "79,37", "RAMWatt @ 100%": "127,94", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "32,0", "Instance @ Idle": "70,6", "Instance @ 10%": "111,7", "Instance @ 50%": "225,9", "Instance @ 100%": "319,3", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "m5.12xlarge", "Release Date": "November 2017", "Instance vCPU": "48", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "192", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "28,94", "PkgWatt @ 10%": "73,32", "PkgWatt @ 50%": "171,85", "PkgWatt @ 100%": "238,99", "RAMWatt @ Idle": "28,91", "RAMWatt @ 10%": "46,20", "RAMWatt @ 50%": "119,05", "RAMWatt @ 100%": "191,91", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "48,0", "Instance @ Idle": "105,8", "Instance @ 10%": "167,5", "Instance @ 50%": "338,9", "Instance @ 100%": "478,9", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "m5.16xlarge", "Release Date": "June 2019", "Instance vCPU": "64", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "256", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "38,59", "PkgWatt @ 10%": "97,75", "PkgWatt @ 50%": "229,13", "PkgWatt @ 100%": "318,65", "RAMWatt @ Idle": "38,54", "RAMWatt @ 10%": "61,59", "RAMWatt @ 50%": "158,73", "RAMWatt @ 100%": "255,87", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "64,0", "Instance @ Idle": "141,1", "Instance @ 10%": "223,3", "Instance @ 50%": "451,9", "Instance @ 100%": "638,5", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "m5.24xlarge", "Release Date": "November 2017", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "384", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "57,88", "PkgWatt @ 10%": "146,63", "PkgWatt @ 50%": "343,70", "PkgWatt @ 100%": "477,98", "RAMWatt @ Idle": "57,81", "RAMWatt @ 10%": "92,39", "RAMWatt @ 50%": "238,10", "RAMWatt @ 100%": "383,81", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "96,0", "Instance @ Idle": "211,7", "Instance @ 10%": "335,0", "Instance @ 50%": "677,8", "Instance @ 100%": "957,8", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "m5.metal", "Release Date": "February 2019", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "384", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "57,88", "PkgWatt @ 10%": "146,63", "PkgWatt @ 50%": "343,70", "PkgWatt @ 100%": "477,98", "RAMWatt @ Idle": "57,81", "RAMWatt @ 10%": "92,39", "RAMWatt @ 50%": "238,10", "RAMWatt @ 100%": "383,81", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "96,0", "Instance @ Idle": "211,7", "Instance @ 10%": "335,0", "Instance @ 50%": "677,8", "Instance @ 100%": "957,8", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "m5a.large", "Release Date": "November 2018", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,97", "PkgWatt @ 10%": "2,65", "PkgWatt @ 50%": "6,27", "PkgWatt @ 100%": "8,49", "RAMWatt @ Idle": "1,60", "RAMWatt @ 10%": "2,40", "RAMWatt @ 50%": "3,20", "RAMWatt @ 100%": "4,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,7", "Instance @ Idle": "4,2", "Instance @ 10%": "6,7", "Instance @ 50%": "11,1", "Instance @ 100%": "15,0", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor"}, {"Instance type": "m5a.xlarge", "Release Date": "November 2018", "Instance vCPU": "4", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,94", "PkgWatt @ 10%": "5,30", "PkgWatt @ 50%": "12,54", "PkgWatt @ 100%": "16,98", "RAMWatt @ Idle": "3,20", "RAMWatt @ 10%": "4,80", "RAMWatt @ 50%": "6,40", "RAMWatt @ 100%": "9,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,3", "Instance @ Idle": "8,5", "Instance @ 10%": "13,4", "Instance @ 50%": "22,3", "Instance @ 100%": "29,9", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor"}, {"Instance type": "m5a.2xlarge", "Release Date": "November 2018", "Instance vCPU": "8", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "3,87", "PkgWatt @ 10%": "10,61", "PkgWatt @ 50%": "25,08", "PkgWatt @ 100%": "33,95", "RAMWatt @ Idle": "6,40", "RAMWatt @ 10%": "9,60", "RAMWatt @ 50%": "12,80", "RAMWatt @ 100%": "19,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "6,7", "Instance @ Idle": "16,9", "Instance @ 10%": "26,9", "Instance @ 50%": "44,5", "Instance @ 100%": "59,8", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor"}, {"Instance type": "m5a.4xlarge", "Release Date": "November 2018", "Instance vCPU": "16", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "7,74", "PkgWatt @ 10%": "21,22", "PkgWatt @ 50%": "50,15", "PkgWatt @ 100%": "67,90", "RAMWatt @ Idle": "12,80", "RAMWatt @ 10%": "19,20", "RAMWatt @ 50%": "25,60", "RAMWatt @ 100%": "38,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "13,3", "Instance @ Idle": "33,9", "Instance @ 10%": "53,8", "Instance @ 50%": "89,1", "Instance @ 100%": "119,6", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor"}, {"Instance type": "m5a.8xlarge", "Release Date": "June 2019", "Instance vCPU": "32", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "15,48", "PkgWatt @ 10%": "42,43", "PkgWatt @ 50%": "100,30", "PkgWatt @ 100%": "135,81", "RAMWatt @ Idle": "25,60", "RAMWatt @ 10%": "38,40", "RAMWatt @ 50%": "51,20", "RAMWatt @ 100%": "76,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "26,7", "Instance @ Idle": "67,8", "Instance @ 10%": "107,5", "Instance @ 50%": "178,2", "Instance @ 100%": "239,3", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor"}, {"Instance type": "m5a.12xlarge", "Release Date": "November 2018", "Instance vCPU": "48", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "192", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "23,23", "PkgWatt @ 10%": "63,65", "PkgWatt @ 50%": "150,45", "PkgWatt @ 100%": "203,71", "RAMWatt @ Idle": "38,40", "RAMWatt @ 10%": "57,60", "RAMWatt @ 50%": "76,80", "RAMWatt @ 100%": "115,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "40,0", "Instance @ Idle": "101,6", "Instance @ 10%": "161,3", "Instance @ 50%": "267,3", "Instance @ 100%": "358,9", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor"}, {"Instance type": "m5a.16xlarge", "Release Date": "June 2019", "Instance vCPU": "64", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "256", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "30,97", "PkgWatt @ 10%": "84,87", "PkgWatt @ 50%": "200,60", "PkgWatt @ 100%": "271,61", "RAMWatt @ Idle": "51,20", "RAMWatt @ 10%": "76,80", "RAMWatt @ 50%": "102,40", "RAMWatt @ 100%": "153,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "53,3", "Instance @ Idle": "135,5", "Instance @ 10%": "215,0", "Instance @ 50%": "356,3", "Instance @ 100%": "478,5", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor"}, {"Instance type": "m5a.24xlarge", "Release Date": "November 2018", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "384", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "46,45", "PkgWatt @ 10%": "127,30", "PkgWatt @ 50%": "300,91", "PkgWatt @ 100%": "407,42", "RAMWatt @ Idle": "76,80", "RAMWatt @ 10%": "115,20", "RAMWatt @ 50%": "153,60", "RAMWatt @ 100%": "230,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "80,0", "Instance @ Idle": "203,3", "Instance @ 10%": "322,5", "Instance @ 50%": "534,5", "Instance @ 100%": "717,8", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor"}, {"Instance type": "m5ad.large", "Release Date": "March 2019", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "1 x 75 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,97", "PkgWatt @ 10%": "2,65", "PkgWatt @ 50%": "6,27", "PkgWatt @ 100%": "8,49", "RAMWatt @ Idle": "1,60", "RAMWatt @ 10%": "2,40", "RAMWatt @ 50%": "3,20", "RAMWatt @ 100%": "4,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,7", "Instance @ Idle": "4,2", "Instance @ 10%": "6,7", "Instance @ 50%": "11,1", "Instance @ 100%": "15,0", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor"}, {"Instance type": "m5ad.xlarge", "Release Date": "March 2019", "Instance vCPU": "4", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "1 x 150 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,94", "PkgWatt @ 10%": "5,30", "PkgWatt @ 50%": "12,54", "PkgWatt @ 100%": "16,98", "RAMWatt @ Idle": "3,20", "RAMWatt @ 10%": "4,80", "RAMWatt @ 50%": "6,40", "RAMWatt @ 100%": "9,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,3", "Instance @ Idle": "8,5", "Instance @ 10%": "13,4", "Instance @ 50%": "22,3", "Instance @ 100%": "29,9", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor"}, {"Instance type": "m5ad.2xlarge", "Release Date": "March 2019", "Instance vCPU": "8", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "1 x 300 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "3,87", "PkgWatt @ 10%": "10,61", "PkgWatt @ 50%": "25,08", "PkgWatt @ 100%": "33,95", "RAMWatt @ Idle": "6,40", "RAMWatt @ 10%": "9,60", "RAMWatt @ 50%": "12,80", "RAMWatt @ 100%": "19,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "6,7", "Instance @ Idle": "16,9", "Instance @ 10%": "26,9", "Instance @ 50%": "44,5", "Instance @ 100%": "59,8", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor"}, {"Instance type": "m5ad.4xlarge", "Release Date": "March 2019", "Instance vCPU": "16", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "2 x 300 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "7,74", "PkgWatt @ 10%": "21,22", "PkgWatt @ 50%": "50,15", "PkgWatt @ 100%": "67,90", "RAMWatt @ Idle": "12,80", "RAMWatt @ 10%": "19,20", "RAMWatt @ 50%": "25,60", "RAMWatt @ 100%": "38,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "13,3", "Instance @ Idle": "33,9", "Instance @ 10%": "53,8", "Instance @ 50%": "89,1", "Instance @ 100%": "119,6", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor"}, {"Instance type": "m5ad.8xlarge", "Release Date": "March 2019", "Instance vCPU": "32", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "2 x 600 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "15,48", "PkgWatt @ 10%": "42,43", "PkgWatt @ 50%": "100,30", "PkgWatt @ 100%": "135,81", "RAMWatt @ Idle": "25,60", "RAMWatt @ 10%": "38,40", "RAMWatt @ 50%": "51,20", "RAMWatt @ 100%": "76,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "26,7", "Instance @ Idle": "67,8", "Instance @ 10%": "107,5", "Instance @ 50%": "178,2", "Instance @ 100%": "239,3", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor"}, {"Instance type": "m5ad.12xlarge", "Release Date": "March 2019", "Instance vCPU": "48", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "192", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "2 x 900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "23,23", "PkgWatt @ 10%": "63,65", "PkgWatt @ 50%": "150,45", "PkgWatt @ 100%": "203,71", "RAMWatt @ Idle": "38,40", "RAMWatt @ 10%": "57,60", "RAMWatt @ 50%": "76,80", "RAMWatt @ 100%": "115,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "40,0", "Instance @ Idle": "101,6", "Instance @ 10%": "161,3", "Instance @ 50%": "267,3", "Instance @ 100%": "358,9", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor"}, {"Instance type": "m5ad.16xlarge", "Release Date": "March 2019", "Instance vCPU": "64", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "256", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "4 x 600 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "30,97", "PkgWatt @ 10%": "84,87", "PkgWatt @ 50%": "200,60", "PkgWatt @ 100%": "271,61", "RAMWatt @ Idle": "51,20", "RAMWatt @ 10%": "76,80", "RAMWatt @ 50%": "102,40", "RAMWatt @ 100%": "153,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "53,3", "Instance @ Idle": "135,5", "Instance @ 10%": "215,0", "Instance @ 50%": "356,3", "Instance @ 100%": "478,5", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor"}, {"Instance type": "m5ad.24xlarge", "Release Date": "March 2019", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "384", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "4 x 900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "46,45", "PkgWatt @ 10%": "127,30", "PkgWatt @ 50%": "300,91", "PkgWatt @ 100%": "407,42", "RAMWatt @ Idle": "76,80", "RAMWatt @ 10%": "115,20", "RAMWatt @ 50%": "153,60", "RAMWatt @ 100%": "230,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "80,0", "Instance @ Idle": "203,3", "Instance @ 10%": "322,5", "Instance @ 50%": "534,5", "Instance @ 100%": "717,8", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor"}, {"Instance type": "m5d.large", "Release Date": "June 2018", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "1 x 75 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,21", "PkgWatt @ 10%": "3,05", "PkgWatt @ 50%": "7,16", "PkgWatt @ 100%": "9,96", "RAMWatt @ Idle": "1,20", "RAMWatt @ 10%": "1,92", "RAMWatt @ 50%": "4,96", "RAMWatt @ 100%": "8,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,0", "Instance @ Idle": "4,4", "Instance @ 10%": "7,0", "Instance @ 50%": "14,1", "Instance @ 100%": "20,0", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "m5d.xlarge", "Release Date": "June 2018", "Instance vCPU": "4", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "1 x 150 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,41", "PkgWatt @ 10%": "6,11", "PkgWatt @ 50%": "14,32", "PkgWatt @ 100%": "19,92", "RAMWatt @ Idle": "2,41", "RAMWatt @ 10%": "3,85", "RAMWatt @ 50%": "9,92", "RAMWatt @ 100%": "15,99", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "4,0", "Instance @ Idle": "8,8", "Instance @ 10%": "14,0", "Instance @ 50%": "28,2", "Instance @ 100%": "39,9", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "m5d.2xlarge", "Release Date": "June 2018", "Instance vCPU": "8", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "1 x 300 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,82", "PkgWatt @ 10%": "12,22", "PkgWatt @ 50%": "28,64", "PkgWatt @ 100%": "39,83", "RAMWatt @ Idle": "4,82", "RAMWatt @ 10%": "7,70", "RAMWatt @ 50%": "19,84", "RAMWatt @ 100%": "31,98", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "8,0", "Instance @ Idle": "17,6", "Instance @ 10%": "27,9", "Instance @ 50%": "56,5", "Instance @ 100%": "79,8", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "m5d.4xlarge", "Release Date": "June 2018", "Instance vCPU": "16", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "2 x 300 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "9,65", "PkgWatt @ 10%": "24,44", "PkgWatt @ 50%": "57,28", "PkgWatt @ 100%": "79,66", "RAMWatt @ Idle": "9,64", "RAMWatt @ 10%": "15,40", "RAMWatt @ 50%": "39,68", "RAMWatt @ 100%": "63,97", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "16,0", "Instance @ Idle": "35,3", "Instance @ 10%": "55,8", "Instance @ 50%": "113,0", "Instance @ 100%": "159,6", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "m5d.8xlarge", "Release Date": "June 2019", "Instance vCPU": "32", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "2 x 600 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "19,29", "PkgWatt @ 10%": "48,88", "PkgWatt @ 50%": "114,57", "PkgWatt @ 100%": "159,33", "RAMWatt @ Idle": "19,27", "RAMWatt @ 10%": "30,80", "RAMWatt @ 50%": "79,37", "RAMWatt @ 100%": "127,94", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "32,0", "Instance @ Idle": "70,6", "Instance @ 10%": "111,7", "Instance @ 50%": "225,9", "Instance @ 100%": "319,3", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "m5d.12xlarge", "Release Date": "June 2018", "Instance vCPU": "48", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "192", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "2 x 900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "28,94", "PkgWatt @ 10%": "73,32", "PkgWatt @ 50%": "171,85", "PkgWatt @ 100%": "238,99", "RAMWatt @ Idle": "28,91", "RAMWatt @ 10%": "46,20", "RAMWatt @ 50%": "119,05", "RAMWatt @ 100%": "191,91", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "48,0", "Instance @ Idle": "105,8", "Instance @ 10%": "167,5", "Instance @ 50%": "338,9", "Instance @ 100%": "478,9", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "m5d.16xlarge", "Release Date": "June 2019", "Instance vCPU": "64", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "256", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "4 x 600 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "38,59", "PkgWatt @ 10%": "97,75", "PkgWatt @ 50%": "229,13", "PkgWatt @ 100%": "318,65", "RAMWatt @ Idle": "38,54", "RAMWatt @ 10%": "61,59", "RAMWatt @ 50%": "158,73", "RAMWatt @ 100%": "255,87", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "64,0", "Instance @ Idle": "141,1", "Instance @ 10%": "223,3", "Instance @ 50%": "451,9", "Instance @ 100%": "638,5", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "m5d.24xlarge", "Release Date": "June 2018", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "384", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "4 x 900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "57,88", "PkgWatt @ 10%": "146,63", "PkgWatt @ 50%": "343,70", "PkgWatt @ 100%": "477,98", "RAMWatt @ Idle": "57,81", "RAMWatt @ 10%": "92,39", "RAMWatt @ 50%": "238,10", "RAMWatt @ 100%": "383,81", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "96,0", "Instance @ Idle": "211,7", "Instance @ 10%": "335,0", "Instance @ 50%": "677,8", "Instance @ 100%": "957,8", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "m5d.metal", "Release Date": "February 2019", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "384", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "4 x 900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "57,88", "PkgWatt @ 10%": "146,63", "PkgWatt @ 50%": "343,70", "PkgWatt @ 100%": "477,98", "RAMWatt @ Idle": "57,81", "RAMWatt @ 10%": "92,39", "RAMWatt @ 50%": "238,10", "RAMWatt @ 100%": "383,81", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "96,0", "Instance @ Idle": "211,7", "Instance @ 10%": "335,0", "Instance @ 50%": "677,8", "Instance @ 100%": "957,8", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "m5dn.large", "Release Date": "October 2019", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "1 x 75 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,14", "PkgWatt @ 10%": "2,87", "PkgWatt @ 50%": "6,39", "PkgWatt @ 100%": "9,28", "RAMWatt @ Idle": "1,24", "RAMWatt @ 10%": "2,06", "RAMWatt @ 50%": "3,69", "RAMWatt @ 100%": "5,31", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,8", "Instance @ Idle": "4,1", "Instance @ 10%": "6,7", "Instance @ 50%": "11,8", "Instance @ 100%": "16,3", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "m5dn.xlarge", "Release Date": "October 2019", "Instance vCPU": "4", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "1 x 150 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,28", "PkgWatt @ 10%": "5,75", "PkgWatt @ 50%": "12,79", "PkgWatt @ 100%": "18,56", "RAMWatt @ Idle": "2,49", "RAMWatt @ 10%": "4,12", "RAMWatt @ 50%": "7,37", "RAMWatt @ 100%": "10,62", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,5", "Instance @ Idle": "8,3", "Instance @ 10%": "13,4", "Instance @ 50%": "23,7", "Instance @ 100%": "32,7", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "m5dn.2xlarge", "Release Date": "October 2019", "Instance vCPU": "8", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "1 x 300 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,56", "PkgWatt @ 10%": "11,49", "PkgWatt @ 50%": "25,58", "PkgWatt @ 100%": "37,12", "RAMWatt @ Idle": "4,98", "RAMWatt @ 10%": "8,24", "RAMWatt @ 50%": "14,74", "RAMWatt @ 100%": "21,25", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "7,0", "Instance @ Idle": "16,5", "Instance @ 10%": "26,7", "Instance @ 50%": "47,3", "Instance @ 100%": "65,4", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "m5dn.4xlarge", "Release Date": "October 2019", "Instance vCPU": "16", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "2 x 300 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "9,12", "PkgWatt @ 10%": "22,99", "PkgWatt @ 50%": "51,16", "PkgWatt @ 100%": "74,23", "RAMWatt @ Idle": "9,95", "RAMWatt @ 10%": "16,47", "RAMWatt @ 50%": "29,48", "RAMWatt @ 100%": "42,49", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "14,0", "Instance @ Idle": "33,1", "Instance @ 10%": "53,5", "Instance @ 50%": "94,6", "Instance @ 100%": "130,7", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "m5dn.8xlarge", "Release Date": "October 2019", "Instance vCPU": "32", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "2 x 600 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "18,24", "PkgWatt @ 10%": "45,97", "PkgWatt @ 50%": "102,31", "PkgWatt @ 100%": "148,46", "RAMWatt @ Idle": "19,91", "RAMWatt @ 10%": "32,94", "RAMWatt @ 50%": "58,96", "RAMWatt @ 100%": "84,98", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "28,0", "Instance @ Idle": "66,1", "Instance @ 10%": "106,9", "Instance @ 50%": "189,3", "Instance @ 100%": "261,4", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "m5dn.12xlarge", "Release Date": "October 2019", "Instance vCPU": "48", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "192", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "2 x 900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "27,36", "PkgWatt @ 10%": "68,96", "PkgWatt @ 50%": "153,47", "PkgWatt @ 100%": "222,69", "RAMWatt @ Idle": "29,86", "RAMWatt @ 10%": "49,42", "RAMWatt @ 50%": "88,45", "RAMWatt @ 100%": "127,48", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "42,0", "Instance @ Idle": "99,2", "Instance @ 10%": "160,4", "Instance @ 50%": "283,9", "Instance @ 100%": "392,2", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "m5dn.16xlarge", "Release Date": "October 2019", "Instance vCPU": "64", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "256", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "4 x 600 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "36,47", "PkgWatt @ 10%": "91,95", "PkgWatt @ 50%": "204,62", "PkgWatt @ 100%": "296,92", "RAMWatt @ Idle": "39,81", "RAMWatt @ 10%": "65,89", "RAMWatt @ 50%": "117,93", "RAMWatt @ 100%": "169,97", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "56,0", "Instance @ Idle": "132,3", "Instance @ 10%": "213,8", "Instance @ 50%": "378,5", "Instance @ 100%": "522,9", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "m5dn.24xlarge", "Release Date": "October 2019", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "384", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "4 x 900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "54,71", "PkgWatt @ 10%": "137,92", "PkgWatt @ 50%": "306,93", "PkgWatt @ 100%": "445,38", "RAMWatt @ Idle": "59,72", "RAMWatt @ 10%": "98,83", "RAMWatt @ 50%": "176,89", "RAMWatt @ 100%": "254,95", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "84,0", "Instance @ Idle": "198,4", "Instance @ 10%": "320,8", "Instance @ 50%": "567,8", "Instance @ 100%": "784,3", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "m5dn.metal", "Release Date": "February 2021", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "384", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "4 x 900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "54,71", "PkgWatt @ 10%": "137,92", "PkgWatt @ 50%": "306,93", "PkgWatt @ 100%": "445,38", "RAMWatt @ Idle": "59,72", "RAMWatt @ 10%": "98,83", "RAMWatt @ 50%": "176,89", "RAMWatt @ 100%": "254,95", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "84,0", "Instance @ Idle": "198,4", "Instance @ 10%": "320,8", "Instance @ 50%": "567,8", "Instance @ 100%": "784,3", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "m5n.large", "Release Date": "October 2019", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,14", "PkgWatt @ 10%": "2,87", "PkgWatt @ 50%": "6,39", "PkgWatt @ 100%": "9,28", "RAMWatt @ Idle": "1,24", "RAMWatt @ 10%": "2,06", "RAMWatt @ 50%": "3,69", "RAMWatt @ 100%": "5,31", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,8", "Instance @ Idle": "4,1", "Instance @ 10%": "6,7", "Instance @ 50%": "11,8", "Instance @ 100%": "16,3", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "m5n.xlarge", "Release Date": "October 2019", "Instance vCPU": "4", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,28", "PkgWatt @ 10%": "5,75", "PkgWatt @ 50%": "12,79", "PkgWatt @ 100%": "18,56", "RAMWatt @ Idle": "2,49", "RAMWatt @ 10%": "4,12", "RAMWatt @ 50%": "7,37", "RAMWatt @ 100%": "10,62", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,5", "Instance @ Idle": "8,3", "Instance @ 10%": "13,4", "Instance @ 50%": "23,7", "Instance @ 100%": "32,7", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "m5n.2xlarge", "Release Date": "October 2019", "Instance vCPU": "8", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,56", "PkgWatt @ 10%": "11,49", "PkgWatt @ 50%": "25,58", "PkgWatt @ 100%": "37,12", "RAMWatt @ Idle": "4,98", "RAMWatt @ 10%": "8,24", "RAMWatt @ 50%": "14,74", "RAMWatt @ 100%": "21,25", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "7,0", "Instance @ Idle": "16,5", "Instance @ 10%": "26,7", "Instance @ 50%": "47,3", "Instance @ 100%": "65,4", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "m5n.4xlarge", "Release Date": "October 2019", "Instance vCPU": "16", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "9,12", "PkgWatt @ 10%": "22,99", "PkgWatt @ 50%": "51,16", "PkgWatt @ 100%": "74,23", "RAMWatt @ Idle": "9,95", "RAMWatt @ 10%": "16,47", "RAMWatt @ 50%": "29,48", "RAMWatt @ 100%": "42,49", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "14,0", "Instance @ Idle": "33,1", "Instance @ 10%": "53,5", "Instance @ 50%": "94,6", "Instance @ 100%": "130,7", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "m5n.8xlarge", "Release Date": "October 2019", "Instance vCPU": "32", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "18,24", "PkgWatt @ 10%": "45,97", "PkgWatt @ 50%": "102,31", "PkgWatt @ 100%": "148,46", "RAMWatt @ Idle": "19,91", "RAMWatt @ 10%": "32,94", "RAMWatt @ 50%": "58,96", "RAMWatt @ 100%": "84,98", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "28,0", "Instance @ Idle": "66,1", "Instance @ 10%": "106,9", "Instance @ 50%": "189,3", "Instance @ 100%": "261,4", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "m5n.12xlarge", "Release Date": "October 2019", "Instance vCPU": "48", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "192", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "27,36", "PkgWatt @ 10%": "68,96", "PkgWatt @ 50%": "153,47", "PkgWatt @ 100%": "222,69", "RAMWatt @ Idle": "29,86", "RAMWatt @ 10%": "49,42", "RAMWatt @ 50%": "88,45", "RAMWatt @ 100%": "127,48", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "42,0", "Instance @ Idle": "99,2", "Instance @ 10%": "160,4", "Instance @ 50%": "283,9", "Instance @ 100%": "392,2", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "m5n.16xlarge", "Release Date": "October 2019", "Instance vCPU": "64", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "256", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "36,47", "PkgWatt @ 10%": "91,95", "PkgWatt @ 50%": "204,62", "PkgWatt @ 100%": "296,92", "RAMWatt @ Idle": "39,81", "RAMWatt @ 10%": "65,89", "RAMWatt @ 50%": "117,93", "RAMWatt @ 100%": "169,97", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "56,0", "Instance @ Idle": "132,3", "Instance @ 10%": "213,8", "Instance @ 50%": "378,5", "Instance @ 100%": "522,9", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "m5n.24xlarge", "Release Date": "October 2019", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "384", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "54,71", "PkgWatt @ 10%": "137,92", "PkgWatt @ 50%": "306,93", "PkgWatt @ 100%": "445,38", "RAMWatt @ Idle": "59,72", "RAMWatt @ 10%": "98,83", "RAMWatt @ 50%": "176,89", "RAMWatt @ 100%": "254,95", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "84,0", "Instance @ Idle": "198,4", "Instance @ 10%": "320,8", "Instance @ 50%": "567,8", "Instance @ 100%": "784,3", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "m5n.metal", "Release Date": "February 2021", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "384", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "54,71", "PkgWatt @ 10%": "137,92", "PkgWatt @ 50%": "306,93", "PkgWatt @ 100%": "445,38", "RAMWatt @ Idle": "59,72", "RAMWatt @ 10%": "98,83", "RAMWatt @ 50%": "176,89", "RAMWatt @ 100%": "254,95", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "84,0", "Instance @ Idle": "198,4", "Instance @ 10%": "320,8", "Instance @ 50%": "567,8", "Instance @ 100%": "784,3", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "m5zn.large", "Release Date": "December 2020", "Instance vCPU": "2", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon Platinum 8252C", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,38", "PkgWatt @ 10%": "6,13", "PkgWatt @ 50%": "15,88", "PkgWatt @ 100%": "19,66", "RAMWatt @ Idle": "2,00", "RAMWatt @ 10%": "2,88", "RAMWatt @ 50%": "5,27", "RAMWatt @ 100%": "7,67", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "4,0", "Instance @ Idle": "8,4", "Instance @ 10%": "13,0", "Instance @ 50%": "25,1", "Instance @ 100%": "31,3", "Hardware Information on AWS Documentation & Comments": "Fastest Intel Xeon Scalable processors in the cloud with an all-core turbo frequency up to 4.5 GHz"}, {"Instance type": "m5zn.xlarge", "Release Date": "December 2020", "Instance vCPU": "4", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon Platinum 8252C", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,75", "PkgWatt @ 10%": "12,25", "PkgWatt @ 50%": "31,75", "PkgWatt @ 100%": "39,31", "RAMWatt @ Idle": "4,00", "RAMWatt @ 10%": "5,75", "RAMWatt @ 50%": "10,54", "RAMWatt @ 100%": "15,33", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "8,0", "Instance @ Idle": "16,8", "Instance @ 10%": "26,0", "Instance @ 50%": "50,3", "Instance @ 100%": "62,6", "Hardware Information on AWS Documentation & Comments": "Fastest Intel Xeon Scalable processors in the cloud with an all-core turbo frequency up to 4.5 GHz"}, {"Instance type": "m5zn.2xlarge", "Release Date": "December 2020", "Instance vCPU": "8", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon Platinum 8252C", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "9,50", "PkgWatt @ 10%": "24,50", "PkgWatt @ 50%": "63,50", "PkgWatt @ 100%": "78,63", "RAMWatt @ Idle": "8,00", "RAMWatt @ 10%": "11,50", "RAMWatt @ 50%": "21,08", "RAMWatt @ 100%": "30,67", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "16,0", "Instance @ Idle": "33,5", "Instance @ 10%": "52,0", "Instance @ 50%": "100,6", "Instance @ 100%": "125,3", "Hardware Information on AWS Documentation & Comments": "Fastest Intel Xeon Scalable processors in the cloud with an all-core turbo frequency up to 4.5 GHz"}, {"Instance type": "m5zn.3xlarge", "Release Date": "December 2020", "Instance vCPU": "12", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon Platinum 8252C", "Instance Memory (in GB)": "48", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "14,25", "PkgWatt @ 10%": "36,75", "PkgWatt @ 50%": "95,25", "PkgWatt @ 100%": "117,94", "RAMWatt @ Idle": "12,00", "RAMWatt @ 10%": "17,25", "RAMWatt @ 50%": "31,63", "RAMWatt @ 100%": "46,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "24,0", "Instance @ Idle": "50,3", "Instance @ 10%": "78,0", "Instance @ 50%": "150,9", "Instance @ 100%": "187,9", "Hardware Information on AWS Documentation & Comments": "Fastest Intel Xeon Scalable processors in the cloud with an all-core turbo frequency up to 4.5 GHz"}, {"Instance type": "m5zn.6xlarge", "Release Date": "December 2020", "Instance vCPU": "24", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon Platinum 8252C", "Instance Memory (in GB)": "96", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "28,50", "PkgWatt @ 10%": "73,50", "PkgWatt @ 50%": "190,50", "PkgWatt @ 100%": "235,88", "RAMWatt @ Idle": "24,00", "RAMWatt @ 10%": "34,50", "RAMWatt @ 50%": "63,25", "RAMWatt @ 100%": "92,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "48,0", "Instance @ Idle": "100,5", "Instance @ 10%": "156,0", "Instance @ 50%": "301,8", "Instance @ 100%": "375,9", "Hardware Information on AWS Documentation & Comments": "Fastest Intel Xeon Scalable processors in the cloud with an all-core turbo frequency up to 4.5 GHz"}, {"Instance type": "m5zn.12xlarge", "Release Date": "December 2020", "Instance vCPU": "48", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon Platinum 8252C", "Instance Memory (in GB)": "192", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "57,00", "PkgWatt @ 10%": "147,00", "PkgWatt @ 50%": "381,00", "PkgWatt @ 100%": "471,75", "RAMWatt @ Idle": "48,00", "RAMWatt @ 10%": "69,00", "RAMWatt @ 50%": "126,50", "RAMWatt @ 100%": "184,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "96,0", "Instance @ Idle": "201,0", "Instance @ 10%": "312,0", "Instance @ 50%": "603,5", "Instance @ 100%": "751,8", "Hardware Information on AWS Documentation & Comments": "Fastest Intel Xeon Scalable processors in the cloud with an all-core turbo frequency up to 4.5 GHz"}, {"Instance type": "m5zn.metal", "Release Date": "December 2020", "Instance vCPU": "48", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon Platinum 8252C", "Instance Memory (in GB)": "192", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "57,00", "PkgWatt @ 10%": "147,00", "PkgWatt @ 50%": "381,00", "PkgWatt @ 100%": "471,75", "RAMWatt @ Idle": "48,00", "RAMWatt @ 10%": "69,00", "RAMWatt @ 50%": "126,50", "RAMWatt @ 100%": "184,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "96,0", "Instance @ Idle": "201,0", "Instance @ 10%": "312,0", "Instance @ 50%": "603,5", "Instance @ 100%": "751,8", "Hardware Information on AWS Documentation & Comments": "Fastest Intel Xeon Scalable processors in the cloud with an all-core turbo frequency up to 4.5 GHz"}, {"Instance type": "m6g.medium", "Release Date": "December 2019", "Instance vCPU": "1", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "4", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,27", "PkgWatt @ 10%": "0,75", "PkgWatt @ 50%": "1,76", "PkgWatt @ 100%": "2,39", "RAMWatt @ Idle": "0,80", "RAMWatt @ 10%": "1,20", "RAMWatt @ 50%": "1,60", "RAMWatt @ 100%": "2,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "0,5", "Instance @ Idle": "1,5", "Instance @ 10%": "2,4", "Instance @ 50%": "3,8", "Instance @ 100%": "5,3", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "m6g.large", "Release Date": "December 2019", "Instance vCPU": "2", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,54", "PkgWatt @ 10%": "1,49", "PkgWatt @ 50%": "3,53", "PkgWatt @ 100%": "4,77", "RAMWatt @ Idle": "1,60", "RAMWatt @ 10%": "2,40", "RAMWatt @ 50%": "3,20", "RAMWatt @ 100%": "4,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "0,9", "Instance @ Idle": "3,1", "Instance @ 10%": "4,8", "Instance @ 50%": "7,7", "Instance @ 100%": "10,5", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "m6g.xlarge", "Release Date": "December 2019", "Instance vCPU": "4", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,09", "PkgWatt @ 10%": "2,98", "PkgWatt @ 50%": "7,05", "PkgWatt @ 100%": "9,55", "RAMWatt @ Idle": "3,20", "RAMWatt @ 10%": "4,80", "RAMWatt @ 50%": "6,40", "RAMWatt @ 100%": "9,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,9", "Instance @ Idle": "6,2", "Instance @ 10%": "9,7", "Instance @ 50%": "15,3", "Instance @ 100%": "21,0", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "m6g.2xlarge", "Release Date": "December 2019", "Instance vCPU": "8", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,18", "PkgWatt @ 10%": "5,97", "PkgWatt @ 50%": "14,10", "PkgWatt @ 100%": "19,10", "RAMWatt @ Idle": "6,40", "RAMWatt @ 10%": "9,60", "RAMWatt @ 50%": "12,80", "RAMWatt @ 100%": "19,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,8", "Instance @ Idle": "12,3", "Instance @ 10%": "19,3", "Instance @ 50%": "30,7", "Instance @ 100%": "42,0", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "m6g.4xlarge", "Release Date": "December 2019", "Instance vCPU": "16", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,35", "PkgWatt @ 10%": "11,93", "PkgWatt @ 50%": "28,21", "PkgWatt @ 100%": "38,20", "RAMWatt @ Idle": "12,80", "RAMWatt @ 10%": "19,20", "RAMWatt @ 50%": "25,60", "RAMWatt @ 100%": "38,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "7,5", "Instance @ Idle": "24,7", "Instance @ 10%": "38,6", "Instance @ 50%": "61,3", "Instance @ 100%": "84,1", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "m6g.8xlarge", "Release Date": "December 2019", "Instance vCPU": "32", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "8,71", "PkgWatt @ 10%": "23,87", "PkgWatt @ 50%": "56,42", "PkgWatt @ 100%": "76,39", "RAMWatt @ Idle": "25,60", "RAMWatt @ 10%": "38,40", "RAMWatt @ 50%": "51,20", "RAMWatt @ 100%": "76,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "15,0", "Instance @ Idle": "49,3", "Instance @ 10%": "77,3", "Instance @ 50%": "122,6", "Instance @ 100%": "168,2", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "m6g.12xlarge", "Release Date": "December 2019", "Instance vCPU": "48", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "192", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "13,06", "PkgWatt @ 10%": "35,80", "PkgWatt @ 50%": "84,63", "PkgWatt @ 100%": "114,59", "RAMWatt @ Idle": "38,40", "RAMWatt @ 10%": "57,60", "RAMWatt @ 50%": "76,80", "RAMWatt @ 100%": "115,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "22,5", "Instance @ Idle": "74,0", "Instance @ 10%": "115,9", "Instance @ 50%": "183,9", "Instance @ 100%": "252,3", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "m6g.16xlarge", "Release Date": "December 2019", "Instance vCPU": "64", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "256", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "17,42", "PkgWatt @ 10%": "47,74", "PkgWatt @ 50%": "112,84", "PkgWatt @ 100%": "152,78", "RAMWatt @ Idle": "51,20", "RAMWatt @ 10%": "76,80", "RAMWatt @ 50%": "102,40", "RAMWatt @ 100%": "153,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "30,0", "Instance @ Idle": "98,6", "Instance @ 10%": "154,5", "Instance @ 50%": "245,2", "Instance @ 100%": "336,4", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "m6g.metal", "Release Date": "December 2019", "Instance vCPU": "64", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "256", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "17,42", "PkgWatt @ 10%": "47,74", "PkgWatt @ 50%": "112,84", "PkgWatt @ 100%": "152,78", "RAMWatt @ Idle": "51,20", "RAMWatt @ 10%": "76,80", "RAMWatt @ 50%": "102,40", "RAMWatt @ 100%": "153,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "30,0", "Instance @ Idle": "98,6", "Instance @ 10%": "154,5", "Instance @ 50%": "245,2", "Instance @ 100%": "336,4", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "m6gd.medium", "Release Date": "December 2019", "Instance vCPU": "1", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "4", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "1 x 59 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,27", "PkgWatt @ 10%": "0,75", "PkgWatt @ 50%": "1,76", "PkgWatt @ 100%": "2,39", "RAMWatt @ Idle": "0,80", "RAMWatt @ 10%": "1,20", "RAMWatt @ 50%": "1,60", "RAMWatt @ 100%": "2,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "0,5", "Instance @ Idle": "1,5", "Instance @ 10%": "2,4", "Instance @ 50%": "3,8", "Instance @ 100%": "5,3", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "m6gd.large", "Release Date": "December 2019", "Instance vCPU": "2", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "1 x 118 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,54", "PkgWatt @ 10%": "1,49", "PkgWatt @ 50%": "3,53", "PkgWatt @ 100%": "4,77", "RAMWatt @ Idle": "1,60", "RAMWatt @ 10%": "2,40", "RAMWatt @ 50%": "3,20", "RAMWatt @ 100%": "4,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "0,9", "Instance @ Idle": "3,1", "Instance @ 10%": "4,8", "Instance @ 50%": "7,7", "Instance @ 100%": "10,5", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "m6gd.xlarge", "Release Date": "December 2019", "Instance vCPU": "4", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "1 x 237 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,09", "PkgWatt @ 10%": "2,98", "PkgWatt @ 50%": "7,05", "PkgWatt @ 100%": "9,55", "RAMWatt @ Idle": "3,20", "RAMWatt @ 10%": "4,80", "RAMWatt @ 50%": "6,40", "RAMWatt @ 100%": "9,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,9", "Instance @ Idle": "6,2", "Instance @ 10%": "9,7", "Instance @ 50%": "15,3", "Instance @ 100%": "21,0", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "m6gd.2xlarge", "Release Date": "December 2019", "Instance vCPU": "8", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "1 x 474 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,18", "PkgWatt @ 10%": "5,97", "PkgWatt @ 50%": "14,10", "PkgWatt @ 100%": "19,10", "RAMWatt @ Idle": "6,40", "RAMWatt @ 10%": "9,60", "RAMWatt @ 50%": "12,80", "RAMWatt @ 100%": "19,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,8", "Instance @ Idle": "12,3", "Instance @ 10%": "19,3", "Instance @ 50%": "30,7", "Instance @ 100%": "42,0", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "m6gd.4xlarge", "Release Date": "December 2019", "Instance vCPU": "16", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "1 x 950 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,35", "PkgWatt @ 10%": "11,93", "PkgWatt @ 50%": "28,21", "PkgWatt @ 100%": "38,20", "RAMWatt @ Idle": "12,80", "RAMWatt @ 10%": "19,20", "RAMWatt @ 50%": "25,60", "RAMWatt @ 100%": "38,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "7,5", "Instance @ Idle": "24,7", "Instance @ 10%": "38,6", "Instance @ 50%": "61,3", "Instance @ 100%": "84,1", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "m6gd.8xlarge", "Release Date": "December 2019", "Instance vCPU": "32", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "1 x 1900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "8,71", "PkgWatt @ 10%": "23,87", "PkgWatt @ 50%": "56,42", "PkgWatt @ 100%": "76,39", "RAMWatt @ Idle": "25,60", "RAMWatt @ 10%": "38,40", "RAMWatt @ 50%": "51,20", "RAMWatt @ 100%": "76,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "15,0", "Instance @ Idle": "49,3", "Instance @ 10%": "77,3", "Instance @ 50%": "122,6", "Instance @ 100%": "168,2", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "m6gd.12xlarge", "Release Date": "December 2019", "Instance vCPU": "48", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "192", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "2 x 1425 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "13,06", "PkgWatt @ 10%": "35,80", "PkgWatt @ 50%": "84,63", "PkgWatt @ 100%": "114,59", "RAMWatt @ Idle": "38,40", "RAMWatt @ 10%": "57,60", "RAMWatt @ 50%": "76,80", "RAMWatt @ 100%": "115,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "22,5", "Instance @ Idle": "74,0", "Instance @ 10%": "115,9", "Instance @ 50%": "183,9", "Instance @ 100%": "252,3", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "m6gd.16xlarge", "Release Date": "December 2019", "Instance vCPU": "64", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "256", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "2 x 1900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "17,42", "PkgWatt @ 10%": "47,74", "PkgWatt @ 50%": "112,84", "PkgWatt @ 100%": "152,78", "RAMWatt @ Idle": "51,20", "RAMWatt @ 10%": "76,80", "RAMWatt @ 50%": "102,40", "RAMWatt @ 100%": "153,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "30,0", "Instance @ Idle": "98,6", "Instance @ 10%": "154,5", "Instance @ 50%": "245,2", "Instance @ 100%": "336,4", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "m6gd.metal", "Release Date": "December 2019", "Instance vCPU": "64", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "256", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "2 x 1900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "17,42", "PkgWatt @ 10%": "47,74", "PkgWatt @ 50%": "112,84", "PkgWatt @ 100%": "152,78", "RAMWatt @ Idle": "51,20", "RAMWatt @ 10%": "76,80", "RAMWatt @ 50%": "102,40", "RAMWatt @ 100%": "153,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "30,0", "Instance @ Idle": "98,6", "Instance @ 10%": "154,5", "Instance @ 50%": "245,2", "Instance @ 100%": "336,4", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "m6i.large", "Release Date": "August 2021", "Instance vCPU": "2", "Platform Total Number of vCPU": "128", "Platform CPU Name": "Xeon Platinum 8375C", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,09", "PkgWatt @ 10%": "2,98", "PkgWatt @ 50%": "7,05", "PkgWatt @ 100%": "9,55", "RAMWatt @ Idle": "1,60", "RAMWatt @ 10%": "2,40", "RAMWatt @ 50%": "3,20", "RAMWatt @ 100%": "4,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,9", "Instance @ Idle": "4,6", "Instance @ 10%": "7,3", "Instance @ 50%": "12,1", "Instance @ 100%": "16,2", "Hardware Information on AWS Documentation & Comments": "3rd generation Intel Xeon Scalable processors"}, {"Instance type": "m6i.xlarge", "Release Date": "August 2021", "Instance vCPU": "4", "Platform Total Number of vCPU": "128", "Platform CPU Name": "Xeon Platinum 8375C", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,18", "PkgWatt @ 10%": "5,97", "PkgWatt @ 50%": "14,10", "PkgWatt @ 100%": "19,10", "RAMWatt @ Idle": "3,20", "RAMWatt @ 10%": "4,80", "RAMWatt @ 50%": "6,40", "RAMWatt @ 100%": "9,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,8", "Instance @ Idle": "9,1", "Instance @ 10%": "14,5", "Instance @ 50%": "24,3", "Instance @ 100%": "32,4", "Hardware Information on AWS Documentation & Comments": "3rd generation Intel Xeon Scalable processors"}, {"Instance type": "m6i.2xlarge", "Release Date": "August 2021", "Instance vCPU": "8", "Platform Total Number of vCPU": "128", "Platform CPU Name": "Xeon Platinum 8375C", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,35", "PkgWatt @ 10%": "11,93", "PkgWatt @ 50%": "28,21", "PkgWatt @ 100%": "38,20", "RAMWatt @ Idle": "6,40", "RAMWatt @ 10%": "9,60", "RAMWatt @ 50%": "12,80", "RAMWatt @ 100%": "19,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "7,5", "Instance @ Idle": "18,3", "Instance @ 10%": "29,0", "Instance @ 50%": "48,5", "Instance @ 100%": "64,9", "Hardware Information on AWS Documentation & Comments": "3rd generation Intel Xeon Scalable processors"}, {"Instance type": "m6i.4xlarge", "Release Date": "August 2021", "Instance vCPU": "16", "Platform Total Number of vCPU": "128", "Platform CPU Name": "Xeon Platinum 8375C", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "8,71", "PkgWatt @ 10%": "23,87", "PkgWatt @ 50%": "56,42", "PkgWatt @ 100%": "76,39", "RAMWatt @ Idle": "12,80", "RAMWatt @ 10%": "19,20", "RAMWatt @ 50%": "25,60", "RAMWatt @ 100%": "38,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "15,0", "Instance @ Idle": "36,5", "Instance @ 10%": "58,1", "Instance @ 50%": "97,0", "Instance @ 100%": "129,8", "Hardware Information on AWS Documentation & Comments": "3rd generation Intel Xeon Scalable processors"}, {"Instance type": "m6i.8xlarge", "Release Date": "August 2021", "Instance vCPU": "32", "Platform Total Number of vCPU": "128", "Platform CPU Name": "Xeon Platinum 8375C", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "17,42", "PkgWatt @ 10%": "47,74", "PkgWatt @ 50%": "112,84", "PkgWatt @ 100%": "152,78", "RAMWatt @ Idle": "25,60", "RAMWatt @ 10%": "38,40", "RAMWatt @ 50%": "51,20", "RAMWatt @ 100%": "76,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "30,0", "Instance @ Idle": "73,0", "Instance @ 10%": "116,1", "Instance @ 50%": "194,0", "Instance @ 100%": "259,6", "Hardware Information on AWS Documentation & Comments": "3rd generation Intel Xeon Scalable processors"}, {"Instance type": "m6i.12xlarge", "Release Date": "August 2021", "Instance vCPU": "48", "Platform Total Number of vCPU": "128", "Platform CPU Name": "Xeon Platinum 8375C", "Instance Memory (in GB)": "192", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "26,13", "PkgWatt @ 10%": "71,61", "PkgWatt @ 50%": "169,26", "PkgWatt @ 100%": "229,17", "RAMWatt @ Idle": "38,40", "RAMWatt @ 10%": "57,60", "RAMWatt @ 50%": "76,80", "RAMWatt @ 100%": "115,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "45,0", "Instance @ Idle": "109,5", "Instance @ 10%": "174,2", "Instance @ 50%": "291,1", "Instance @ 100%": "389,4", "Hardware Information on AWS Documentation & Comments": "3rd generation Intel Xeon Scalable processors"}, {"Instance type": "m6i.16xlarge", "Release Date": "August 2021", "Instance vCPU": "64", "Platform Total Number of vCPU": "128", "Platform CPU Name": "Xeon Platinum 8375C", "Instance Memory (in GB)": "256", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "34,84", "PkgWatt @ 10%": "95,48", "PkgWatt @ 50%": "225,68", "PkgWatt @ 100%": "305,56", "RAMWatt @ Idle": "51,20", "RAMWatt @ 10%": "76,80", "RAMWatt @ 50%": "102,40", "RAMWatt @ 100%": "153,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "60,0", "Instance @ Idle": "146,0", "Instance @ 10%": "232,3", "Instance @ 50%": "388,1", "Instance @ 100%": "519,2", "Hardware Information on AWS Documentation & Comments": "3rd generation Intel Xeon Scalable processors"}, {"Instance type": "m6i.24xlarge", "Release Date": "August 2021", "Instance vCPU": "96", "Platform Total Number of vCPU": "128", "Platform CPU Name": "Xeon Platinum 8375C", "Instance Memory (in GB)": "384", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "52,26", "PkgWatt @ 10%": "143,22", "PkgWatt @ 50%": "338,52", "PkgWatt @ 100%": "458,35", "RAMWatt @ Idle": "76,80", "RAMWatt @ 10%": "115,20", "RAMWatt @ 50%": "153,60", "RAMWatt @ 100%": "230,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "90,0", "Instance @ Idle": "219,1", "Instance @ 10%": "348,4", "Instance @ 50%": "582,1", "Instance @ 100%": "778,7", "Hardware Information on AWS Documentation & Comments": "3rd generation Intel Xeon Scalable processors"}, {"Instance type": "m6i.32xlarge", "Release Date": "August 2021", "Instance vCPU": "128", "Platform Total Number of vCPU": "128", "Platform CPU Name": "Xeon Platinum 8375C", "Instance Memory (in GB)": "512", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "69,68", "PkgWatt @ 10%": "190,96", "PkgWatt @ 50%": "451,36", "PkgWatt @ 100%": "611,13", "RAMWatt @ Idle": "102,40", "RAMWatt @ 10%": "153,60", "RAMWatt @ 50%": "204,80", "RAMWatt @ 100%": "307,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "120,0", "Instance @ Idle": "292,1", "Instance @ 10%": "464,6", "Instance @ 50%": "776,2", "Instance @ 100%": "1038,3", "Hardware Information on AWS Documentation & Comments": "3rd generation Intel Xeon Scalable processors"}, {"Instance type": "mac1.metal", "Release Date": "November 2020", "Instance vCPU": "12", "Platform Total Number of vCPU": "12", "Platform CPU Name": "Core i7-8700B", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "32", "Storage Info (Type and Size in GB)": "N/A", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "7,55", "PkgWatt @ 10%": "20,69", "PkgWatt @ 50%": "48,90", "PkgWatt @ 100%": "66,21", "RAMWatt @ Idle": "6,40", "RAMWatt @ 10%": "9,60", "RAMWatt @ 50%": "12,80", "RAMWatt @ 100%": "19,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "13,0", "Instance @ Idle": "26,9", "Instance @ 10%": "43,3", "Instance @ 50%": "74,7", "Instance @ 100%": "98,4", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "p2.xlarge", "Release Date": "September 2016", "Instance vCPU": "4", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "61", "Platform Memory (in GB)": "732", "Storage Info (Type and Size in GB)": "N/A", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "16", "Platform GPU Name": "Tesla K80", "Instance Number of GPU": "1", "Instance GPU memory (in GB)": "24", "PkgWatt @ Idle": "1,94", "PkgWatt @ 10%": "5,55", "PkgWatt @ 50%": "11,41", "PkgWatt @ 100%": "15,62", "RAMWatt @ Idle": "12,20", "RAMWatt @ 10%": "18,30", "RAMWatt @ 50%": "24,40", "RAMWatt @ 100%": "36,60", "GPUWatt @ Idle": "34,8", "GPUWatt @ 10%": "95,5", "GPUWatt @ 50%": "225,7", "GPUWatt @ 100%": "305,6", "Delta Full Machine": "3,2", "Instance @ Idle": "52,2", "Instance @ 10%": "122,5", "Instance @ 50%": "264,7", "Instance @ 100%": "361,0", "Hardware Information on AWS Documentation & Comments": "1 GPU NVIDIA Tesla K80"}, {"Instance type": "p2.8xlarge", "Release Date": "September 2016", "Instance vCPU": "32", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "488", "Platform Memory (in GB)": "732", "Storage Info (Type and Size in GB)": "N/A", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "16", "Platform GPU Name": "Tesla K80", "Instance Number of GPU": "8", "Instance GPU memory (in GB)": "192", "PkgWatt @ Idle": "15,55", "PkgWatt @ 10%": "44,38", "PkgWatt @ 50%": "91,28", "PkgWatt @ 100%": "124,95", "RAMWatt @ Idle": "97,60", "RAMWatt @ 10%": "146,40", "RAMWatt @ 50%": "195,20", "RAMWatt @ 100%": "292,80", "GPUWatt @ Idle": "278,7", "GPUWatt @ 10%": "763,8", "GPUWatt @ 50%": "1805,4", "GPUWatt @ 100%": "2444,5", "Delta Full Machine": "25,8", "Instance @ Idle": "417,6", "Instance @ 10%": "980,4", "Instance @ 50%": "2117,7", "Instance @ 100%": "2888,0", "Hardware Information on AWS Documentation & Comments": "8 GPU NVIDIA Tesla K80"}, {"Instance type": "p2.16xlarge", "Release Date": "September 2016", "Instance vCPU": "64", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "732", "Platform Memory (in GB)": "732", "Storage Info (Type and Size in GB)": "N/A", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "16", "Platform GPU Name": "Tesla K80", "Instance Number of GPU": "16", "Instance GPU memory (in GB)": "384", "PkgWatt @ Idle": "31,09", "PkgWatt @ 10%": "88,76", "PkgWatt @ 50%": "182,57", "PkgWatt @ 100%": "249,90", "RAMWatt @ Idle": "146,40", "RAMWatt @ 10%": "219,60", "RAMWatt @ 50%": "292,80", "RAMWatt @ 100%": "439,20", "GPUWatt @ Idle": "557,4", "GPUWatt @ 10%": "1527,7", "GPUWatt @ 50%": "3610,9", "GPUWatt @ 100%": "4889,0", "Delta Full Machine": "51,6", "Instance @ Idle": "786,5", "Instance @ 10%": "1887,6", "Instance @ 50%": "4137,8", "Instance @ 100%": "5629,7", "Hardware Information on AWS Documentation & Comments": "16 GPU NVIDIA Tesla K80"}, {"Instance type": "p3.2xlarge", "Release Date": "October 2017", "Instance vCPU": "8", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "61", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "N/A", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "8", "Platform GPU Name": "Tesla V100", "Instance Number of GPU": "1", "Instance GPU memory (in GB)": "16", "PkgWatt @ Idle": "3,89", "PkgWatt @ 10%": "11,10", "PkgWatt @ 50%": "22,82", "PkgWatt @ 100%": "31,24", "RAMWatt @ Idle": "12,20", "RAMWatt @ 10%": "18,30", "RAMWatt @ 50%": "24,40", "RAMWatt @ 100%": "36,60", "GPUWatt @ Idle": "34,8", "GPUWatt @ 10%": "95,5", "GPUWatt @ 50%": "225,7", "GPUWatt @ 100%": "305,6", "Delta Full Machine": "6,4", "Instance @ Idle": "57,4", "Instance @ 10%": "131,3", "Instance @ 50%": "279,3", "Instance @ 100%": "379,8", "Hardware Information on AWS Documentation & Comments": "1 NVIDIA Tesla V100"}, {"Instance type": "p3.8xlarge", "Release Date": "October 2017", "Instance vCPU": "32", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "244", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "N/A", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "8", "Platform GPU Name": "Tesla V100", "Instance Number of GPU": "4", "Instance GPU memory (in GB)": "64", "PkgWatt @ Idle": "15,55", "PkgWatt @ 10%": "44,38", "PkgWatt @ 50%": "91,28", "PkgWatt @ 100%": "124,95", "RAMWatt @ Idle": "48,80", "RAMWatt @ 10%": "73,20", "RAMWatt @ 50%": "97,60", "RAMWatt @ 100%": "146,40", "GPUWatt @ Idle": "139,4", "GPUWatt @ 10%": "381,9", "GPUWatt @ 50%": "902,7", "GPUWatt @ 100%": "1222,3", "Delta Full Machine": "25,8", "Instance @ Idle": "229,5", "Instance @ 10%": "525,3", "Instance @ 50%": "1117,4", "Instance @ 100%": "1519,4", "Hardware Information on AWS Documentation & Comments": "4 NVIDIA Tesla V100"}, {"Instance type": "p3.16xlarge", "Release Date": "October 2017", "Instance vCPU": "64", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "488", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "N/A", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "8", "Platform GPU Name": "Tesla V100", "Instance Number of GPU": "8", "Instance GPU memory (in GB)": "128", "PkgWatt @ Idle": "31,09", "PkgWatt @ 10%": "88,76", "PkgWatt @ 50%": "182,57", "PkgWatt @ 100%": "249,90", "RAMWatt @ Idle": "97,60", "RAMWatt @ 10%": "146,40", "RAMWatt @ 50%": "195,20", "RAMWatt @ 100%": "292,80", "GPUWatt @ Idle": "278,7", "GPUWatt @ 10%": "763,8", "GPUWatt @ 50%": "1805,4", "GPUWatt @ 100%": "2444,5", "Delta Full Machine": "51,6", "Instance @ Idle": "459,0", "Instance @ 10%": "1050,5", "Instance @ 50%": "2234,8", "Instance @ 100%": "3038,8", "Hardware Information on AWS Documentation & Comments": "8 NVIDIA Tesla V100"}, {"Instance type": "p3dn.24xlarge", "Release Date": "December 2018", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "768", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "2 x 900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "8", "Platform GPU Name": "Tesla V100", "Instance Number of GPU": "8", "Instance GPU memory (in GB)": "256", "PkgWatt @ Idle": "57,88", "PkgWatt @ 10%": "146,63", "PkgWatt @ 50%": "343,70", "PkgWatt @ 100%": "477,98", "RAMWatt @ Idle": "115,62", "RAMWatt @ 10%": "184,78", "RAMWatt @ 50%": "476,20", "RAMWatt @ 100%": "767,62", "GPUWatt @ Idle": "278,7", "GPUWatt @ 10%": "763,8", "GPUWatt @ 50%": "1805,4", "GPUWatt @ 100%": "2444,5", "Delta Full Machine": "96,0", "Instance @ Idle": "548,2", "Instance @ 10%": "1191,2", "Instance @ 50%": "2721,3", "Instance @ 100%": "3786,1", "Hardware Information on AWS Documentation & Comments": "8 NVIDIA Tesla V100"}, {"Instance type": "p4d.24xlarge", "Release Date": "November 2020", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8275CL", "Instance Memory (in GB)": "1152", "Platform Memory (in GB)": "1152", "Storage Info (Type and Size in GB)": "8TB NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "8", "Platform GPU Quantity": "8", "Platform GPU Name": "Tesla A100", "Instance Number of GPU": "8", "Instance GPU memory (in GB)": "320", "PkgWatt @ Idle": "57,93", "PkgWatt @ 10%": "175,53", "PkgWatt @ 50%": "448,31", "PkgWatt @ 100%": "626,76", "RAMWatt @ Idle": "219,30", "RAMWatt @ 10%": "397,56", "RAMWatt @ 50%": "830,22", "RAMWatt @ 100%": "1262,88", "GPUWatt @ Idle": "371,6", "GPUWatt @ 10%": "1018,4", "GPUWatt @ 50%": "2407,2", "GPUWatt @ 100%": "3259,3", "Delta Full Machine": "96,0", "Instance @ Idle": "744,8", "Instance @ 10%": "1687,5", "Instance @ 50%": "3781,8", "Instance @ 100%": "5245,0", "Hardware Information on AWS Documentation & Comments": "8 NVIDIA A100 Tensor Core GPU"}, {"Instance type": "ra3.4xlarge", "Release Date": "December 2019", "Instance vCPU": "12", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon E5-2676 v3", "Instance Memory (in GB)": "96", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "64000 RMS", "Storage Type": "RMS", "Platform Storage Drive Quantity": "10", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "7,24", "PkgWatt @ 10%": "20,66", "PkgWatt @ 50%": "42,49", "PkgWatt @ 100%": "58,17", "RAMWatt @ Idle": "19,20", "RAMWatt @ 10%": "28,80", "RAMWatt @ 50%": "38,40", "RAMWatt @ 100%": "57,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "12,0", "Instance @ Idle": "38,4", "Instance @ 10%": "61,5", "Instance @ 50%": "92,9", "Instance @ 100%": "127,8", "Hardware Information on AWS Documentation & Comments": "Comment: CPU platform assumed to be the same as ds2 instances"}, {"Instance type": "ra3.16xlarge", "Release Date": "December 2019", "Instance vCPU": "48", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon E5-2676 v3", "Instance Memory (in GB)": "384", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "64000 RMS", "Storage Type": "RMS", "Platform Storage Drive Quantity": "10", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "28,95", "PkgWatt @ 10%": "82,64", "PkgWatt @ 50%": "169,98", "PkgWatt @ 100%": "232,66", "RAMWatt @ Idle": "76,80", "RAMWatt @ 10%": "115,20", "RAMWatt @ 50%": "153,60", "RAMWatt @ 100%": "230,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "48,0", "Instance @ Idle": "153,7", "Instance @ 10%": "245,8", "Instance @ 50%": "371,6", "Instance @ 100%": "511,1", "Hardware Information on AWS Documentation & Comments": "Comment: CPU platform assumed to be the same as ds2 instances"}, {"Instance type": "r3.large", "Release Date": "April 2014", "Instance vCPU": "2", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2670 v2", "Instance Memory (in GB)": "15.25", "Platform Memory (in GB)": "244", "Storage Info (Type and Size in GB)": "1 x 32 (SSD)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,39", "PkgWatt @ 10%": "3,96", "PkgWatt @ 50%": "8,14", "PkgWatt @ 100%": "11,15", "RAMWatt @ Idle": "3,05", "RAMWatt @ 10%": "4,58", "RAMWatt @ 50%": "6,10", "RAMWatt @ 100%": "9,15", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,3", "Instance @ Idle": "6,7", "Instance @ 10%": "10,8", "Instance @ 50%": "16,5", "Instance @ 100%": "22,6", "Hardware Information on AWS Documentation & Comments": "Intel Xeon Ivy Bridge Processors"}, {"Instance type": "r3.xlarge", "Release Date": "April 2014", "Instance vCPU": "4", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2670 v2", "Instance Memory (in GB)": "30.5", "Platform Memory (in GB)": "244", "Storage Info (Type and Size in GB)": "1 x 80 (SSD)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,77", "PkgWatt @ 10%": "7,92", "PkgWatt @ 50%": "16,29", "PkgWatt @ 100%": "22,30", "RAMWatt @ Idle": "6,10", "RAMWatt @ 10%": "9,15", "RAMWatt @ 50%": "12,20", "RAMWatt @ 100%": "18,30", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "4,6", "Instance @ Idle": "13,5", "Instance @ 10%": "21,7", "Instance @ 50%": "33,1", "Instance @ 100%": "45,2", "Hardware Information on AWS Documentation & Comments": "Intel Xeon Ivy Bridge Processors"}, {"Instance type": "r3.2xlarge", "Release Date": "April 2014", "Instance vCPU": "8", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2670 v2", "Instance Memory (in GB)": "61", "Platform Memory (in GB)": "244", "Storage Info (Type and Size in GB)": "1 x 160 (SSD)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "5,55", "PkgWatt @ 10%": "15,84", "PkgWatt @ 50%": "32,58", "PkgWatt @ 100%": "44,59", "RAMWatt @ Idle": "12,20", "RAMWatt @ 10%": "18,30", "RAMWatt @ 50%": "24,40", "RAMWatt @ 100%": "36,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "9,2", "Instance @ Idle": "26,9", "Instance @ 10%": "43,3", "Instance @ 50%": "66,2", "Instance @ 100%": "90,4", "Hardware Information on AWS Documentation & Comments": "Intel Xeon Ivy Bridge Processors"}, {"Instance type": "r3.4xlarge", "Release Date": "April 2014", "Instance vCPU": "16", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2670 v2", "Instance Memory (in GB)": "122", "Platform Memory (in GB)": "244", "Storage Info (Type and Size in GB)": "1 x 320 (SSD)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "11,10", "PkgWatt @ 10%": "31,68", "PkgWatt @ 50%": "65,16", "PkgWatt @ 100%": "89,19", "RAMWatt @ Idle": "24,40", "RAMWatt @ 10%": "36,60", "RAMWatt @ 50%": "48,80", "RAMWatt @ 100%": "73,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "18,4", "Instance @ Idle": "53,9", "Instance @ 10%": "86,7", "Instance @ 50%": "132,4", "Instance @ 100%": "180,8", "Hardware Information on AWS Documentation & Comments": "Intel Xeon Ivy Bridge Processors"}, {"Instance type": "r3.8xlarge", "Release Date": "April 2014", "Instance vCPU": "32", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2670 v2", "Instance Memory (in GB)": "244", "Platform Memory (in GB)": "244", "Storage Info (Type and Size in GB)": "2 x 320 (SSD)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "22,19", "PkgWatt @ 10%": "63,36", "PkgWatt @ 50%": "130,32", "PkgWatt @ 100%": "178,37", "RAMWatt @ Idle": "48,80", "RAMWatt @ 10%": "73,20", "RAMWatt @ 50%": "97,60", "RAMWatt @ 100%": "146,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "36,8", "Instance @ Idle": "107,8", "Instance @ 10%": "173,4", "Instance @ 50%": "264,7", "Instance @ 100%": "361,6", "Hardware Information on AWS Documentation & Comments": "Intel Xeon Ivy Bridge Processors"}, {"Instance type": "r4.large", "Release Date": "November 2016", "Instance vCPU": "2", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "15.25", "Platform Memory (in GB)": "488", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,97", "PkgWatt @ 10%": "2,77", "PkgWatt @ 50%": "5,71", "PkgWatt @ 100%": "7,81", "RAMWatt @ Idle": "3,05", "RAMWatt @ 10%": "4,58", "RAMWatt @ 50%": "6,10", "RAMWatt @ 100%": "9,15", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,6", "Instance @ Idle": "5,6", "Instance @ 10%": "9,0", "Instance @ 50%": "13,4", "Instance @ 100%": "18,6", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor"}, {"Instance type": "r4.xlarge", "Release Date": "November 2016", "Instance vCPU": "4", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "30.5", "Platform Memory (in GB)": "488", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,94", "PkgWatt @ 10%": "5,55", "PkgWatt @ 50%": "11,41", "PkgWatt @ 100%": "15,62", "RAMWatt @ Idle": "6,10", "RAMWatt @ 10%": "9,15", "RAMWatt @ 50%": "12,20", "RAMWatt @ 100%": "18,30", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,2", "Instance @ Idle": "11,3", "Instance @ 10%": "17,9", "Instance @ 50%": "26,8", "Instance @ 100%": "37,1", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor"}, {"Instance type": "r4.2xlarge", "Release Date": "November 2016", "Instance vCPU": "8", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "61", "Platform Memory (in GB)": "488", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "3,89", "PkgWatt @ 10%": "11,10", "PkgWatt @ 50%": "22,82", "PkgWatt @ 100%": "31,24", "RAMWatt @ Idle": "12,20", "RAMWatt @ 10%": "18,30", "RAMWatt @ 50%": "24,40", "RAMWatt @ 100%": "36,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "6,4", "Instance @ Idle": "22,5", "Instance @ 10%": "35,8", "Instance @ 50%": "53,7", "Instance @ 100%": "74,3", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor"}, {"Instance type": "r4.4xlarge", "Release Date": "November 2016", "Instance vCPU": "16", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "122", "Platform Memory (in GB)": "488", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "7,77", "PkgWatt @ 10%": "22,19", "PkgWatt @ 50%": "45,64", "PkgWatt @ 100%": "62,47", "RAMWatt @ Idle": "24,40", "RAMWatt @ 10%": "36,60", "RAMWatt @ 50%": "48,80", "RAMWatt @ 100%": "73,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "12,9", "Instance @ Idle": "45,1", "Instance @ 10%": "71,7", "Instance @ 50%": "107,3", "Instance @ 100%": "148,6", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor"}, {"Instance type": "r4.8xlarge", "Release Date": "November 2016", "Instance vCPU": "32", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "244", "Platform Memory (in GB)": "488", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "15,55", "PkgWatt @ 10%": "44,38", "PkgWatt @ 50%": "91,28", "PkgWatt @ 100%": "124,95", "RAMWatt @ Idle": "48,80", "RAMWatt @ 10%": "73,20", "RAMWatt @ 50%": "97,60", "RAMWatt @ 100%": "146,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "25,8", "Instance @ Idle": "90,1", "Instance @ 10%": "143,4", "Instance @ 50%": "214,7", "Instance @ 100%": "297,1", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor"}, {"Instance type": "r4.16xlarge", "Release Date": "November 2016", "Instance vCPU": "64", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "488", "Platform Memory (in GB)": "488", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "31,09", "PkgWatt @ 10%": "88,76", "PkgWatt @ 50%": "182,57", "PkgWatt @ 100%": "249,90", "RAMWatt @ Idle": "97,60", "RAMWatt @ 10%": "146,40", "RAMWatt @ 50%": "195,20", "RAMWatt @ 100%": "292,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "51,6", "Instance @ Idle": "180,2", "Instance @ 10%": "286,7", "Instance @ 50%": "429,3", "Instance @ 100%": "594,3", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor"}, {"Instance type": "r5.large", "Release Date": "July 2018", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,21", "PkgWatt @ 10%": "3,05", "PkgWatt @ 50%": "7,16", "PkgWatt @ 100%": "9,96", "RAMWatt @ Idle": "2,41", "RAMWatt @ 10%": "3,85", "RAMWatt @ 50%": "9,92", "RAMWatt @ 100%": "15,99", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,0", "Instance @ Idle": "5,6", "Instance @ 10%": "8,9", "Instance @ 50%": "19,1", "Instance @ 100%": "27,9", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "r5.xlarge", "Release Date": "July 2018", "Instance vCPU": "4", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,41", "PkgWatt @ 10%": "6,11", "PkgWatt @ 50%": "14,32", "PkgWatt @ 100%": "19,92", "RAMWatt @ Idle": "4,82", "RAMWatt @ 10%": "7,70", "RAMWatt @ 50%": "19,84", "RAMWatt @ 100%": "31,98", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "4,0", "Instance @ Idle": "11,2", "Instance @ 10%": "17,8", "Instance @ 50%": "38,2", "Instance @ 100%": "55,9", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "r5.2xlarge", "Release Date": "July 2018", "Instance vCPU": "8", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,82", "PkgWatt @ 10%": "12,22", "PkgWatt @ 50%": "28,64", "PkgWatt @ 100%": "39,83", "RAMWatt @ Idle": "9,64", "RAMWatt @ 10%": "15,40", "RAMWatt @ 50%": "39,68", "RAMWatt @ 100%": "63,97", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "8,0", "Instance @ Idle": "22,5", "Instance @ 10%": "35,6", "Instance @ 50%": "76,3", "Instance @ 100%": "111,8", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "r5.4xlarge", "Release Date": "July 2018", "Instance vCPU": "16", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "9,65", "PkgWatt @ 10%": "24,44", "PkgWatt @ 50%": "57,28", "PkgWatt @ 100%": "79,66", "RAMWatt @ Idle": "19,27", "RAMWatt @ 10%": "30,80", "RAMWatt @ 50%": "79,37", "RAMWatt @ 100%": "127,94", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "16,0", "Instance @ Idle": "44,9", "Instance @ 10%": "71,2", "Instance @ 50%": "152,7", "Instance @ 100%": "223,6", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "r5.8xlarge", "Release Date": "June 2019", "Instance vCPU": "32", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "256", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "19,29", "PkgWatt @ 10%": "48,88", "PkgWatt @ 50%": "114,57", "PkgWatt @ 100%": "159,33", "RAMWatt @ Idle": "38,54", "RAMWatt @ 10%": "61,59", "RAMWatt @ 50%": "158,73", "RAMWatt @ 100%": "255,87", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "32,0", "Instance @ Idle": "89,8", "Instance @ 10%": "142,5", "Instance @ 50%": "305,3", "Instance @ 100%": "447,2", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "r5.12xlarge", "Release Date": "July 2018", "Instance vCPU": "48", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "384", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "28,94", "PkgWatt @ 10%": "73,32", "PkgWatt @ 50%": "171,85", "PkgWatt @ 100%": "238,99", "RAMWatt @ Idle": "57,81", "RAMWatt @ 10%": "92,39", "RAMWatt @ 50%": "238,10", "RAMWatt @ 100%": "383,81", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "48,0", "Instance @ Idle": "134,8", "Instance @ 10%": "213,7", "Instance @ 50%": "458,0", "Instance @ 100%": "670,8", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "r5.16xlarge", "Release Date": "June 2019", "Instance vCPU": "64", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "512", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "38,59", "PkgWatt @ 10%": "97,75", "PkgWatt @ 50%": "229,13", "PkgWatt @ 100%": "318,65", "RAMWatt @ Idle": "77,08", "RAMWatt @ 10%": "123,19", "RAMWatt @ 50%": "317,47", "RAMWatt @ 100%": "511,75", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "64,0", "Instance @ Idle": "179,7", "Instance @ 10%": "284,9", "Instance @ 50%": "610,6", "Instance @ 100%": "894,4", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "r5.24xlarge", "Release Date": "July 2018", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "768", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "57,88", "PkgWatt @ 10%": "146,63", "PkgWatt @ 50%": "343,70", "PkgWatt @ 100%": "477,98", "RAMWatt @ Idle": "115,62", "RAMWatt @ 10%": "184,78", "RAMWatt @ 50%": "476,20", "RAMWatt @ 100%": "767,62", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "96,0", "Instance @ Idle": "269,5", "Instance @ 10%": "427,4", "Instance @ 50%": "915,9", "Instance @ 100%": "1341,6", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "r5.metal", "Release Date": "July 2018", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "768", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "57,88", "PkgWatt @ 10%": "146,63", "PkgWatt @ 50%": "343,70", "PkgWatt @ 100%": "477,98", "RAMWatt @ Idle": "115,62", "RAMWatt @ 10%": "184,78", "RAMWatt @ 50%": "476,20", "RAMWatt @ 100%": "767,62", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "96,0", "Instance @ Idle": "269,5", "Instance @ 10%": "427,4", "Instance @ 50%": "915,9", "Instance @ 100%": "1341,6", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "r5a.large", "Release Date": "November 2018", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,97", "PkgWatt @ 10%": "2,65", "PkgWatt @ 50%": "6,27", "PkgWatt @ 100%": "8,49", "RAMWatt @ Idle": "3,20", "RAMWatt @ 10%": "4,80", "RAMWatt @ 50%": "6,40", "RAMWatt @ 100%": "9,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,7", "Instance @ Idle": "5,8", "Instance @ 10%": "9,1", "Instance @ 50%": "14,3", "Instance @ 100%": "19,8", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 series processors"}, {"Instance type": "r5a.xlarge", "Release Date": "November 2018", "Instance vCPU": "4", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,94", "PkgWatt @ 10%": "5,30", "PkgWatt @ 50%": "12,54", "PkgWatt @ 100%": "16,98", "RAMWatt @ Idle": "6,40", "RAMWatt @ 10%": "9,60", "RAMWatt @ 50%": "12,80", "RAMWatt @ 100%": "19,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,3", "Instance @ Idle": "11,7", "Instance @ 10%": "18,2", "Instance @ 50%": "28,7", "Instance @ 100%": "39,5", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 series processors"}, {"Instance type": "r5a.2xlarge", "Release Date": "November 2018", "Instance vCPU": "8", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "3,87", "PkgWatt @ 10%": "10,61", "PkgWatt @ 50%": "25,08", "PkgWatt @ 100%": "33,95", "RAMWatt @ Idle": "12,80", "RAMWatt @ 10%": "19,20", "RAMWatt @ 50%": "25,60", "RAMWatt @ 100%": "38,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "6,7", "Instance @ Idle": "23,3", "Instance @ 10%": "36,5", "Instance @ 50%": "57,3", "Instance @ 100%": "79,0", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 series processors"}, {"Instance type": "r5a.4xlarge", "Release Date": "November 2018", "Instance vCPU": "16", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "7,74", "PkgWatt @ 10%": "21,22", "PkgWatt @ 50%": "50,15", "PkgWatt @ 100%": "67,90", "RAMWatt @ Idle": "25,60", "RAMWatt @ 10%": "38,40", "RAMWatt @ 50%": "51,20", "RAMWatt @ 100%": "76,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "13,3", "Instance @ Idle": "46,7", "Instance @ 10%": "73,0", "Instance @ 50%": "114,7", "Instance @ 100%": "158,0", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 series processors"}, {"Instance type": "r5a.8xlarge", "Release Date": "June 2019", "Instance vCPU": "32", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "256", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "15,48", "PkgWatt @ 10%": "42,43", "PkgWatt @ 50%": "100,30", "PkgWatt @ 100%": "135,81", "RAMWatt @ Idle": "51,20", "RAMWatt @ 10%": "76,80", "RAMWatt @ 50%": "102,40", "RAMWatt @ 100%": "153,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "26,7", "Instance @ Idle": "93,4", "Instance @ 10%": "145,9", "Instance @ 50%": "229,4", "Instance @ 100%": "316,1", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 series processors"}, {"Instance type": "r5a.12xlarge", "Release Date": "November 2018", "Instance vCPU": "48", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "384", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "23,23", "PkgWatt @ 10%": "63,65", "PkgWatt @ 50%": "150,45", "PkgWatt @ 100%": "203,71", "RAMWatt @ Idle": "76,80", "RAMWatt @ 10%": "115,20", "RAMWatt @ 50%": "153,60", "RAMWatt @ 100%": "230,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "40,0", "Instance @ Idle": "140,0", "Instance @ 10%": "218,9", "Instance @ 50%": "344,1", "Instance @ 100%": "474,1", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 series processors"}, {"Instance type": "r5a.16xlarge", "Release Date": "June 2019", "Instance vCPU": "64", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "512", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "30,97", "PkgWatt @ 10%": "84,87", "PkgWatt @ 50%": "200,60", "PkgWatt @ 100%": "271,61", "RAMWatt @ Idle": "102,40", "RAMWatt @ 10%": "153,60", "RAMWatt @ 50%": "204,80", "RAMWatt @ 100%": "307,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "53,3", "Instance @ Idle": "186,7", "Instance @ 10%": "291,8", "Instance @ 50%": "458,7", "Instance @ 100%": "632,1", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 series processors"}, {"Instance type": "r5a.24xlarge", "Release Date": "November 2018", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "768", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "46,45", "PkgWatt @ 10%": "127,30", "PkgWatt @ 50%": "300,91", "PkgWatt @ 100%": "407,42", "RAMWatt @ Idle": "153,60", "RAMWatt @ 10%": "230,40", "RAMWatt @ 50%": "307,20", "RAMWatt @ 100%": "460,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "80,0", "Instance @ Idle": "280,1", "Instance @ 10%": "437,7", "Instance @ 50%": "688,1", "Instance @ 100%": "948,2", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 series processors"}, {"Instance type": "r5ad.large", "Release Date": "March 2019", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "1 x 75 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,97", "PkgWatt @ 10%": "2,65", "PkgWatt @ 50%": "6,27", "PkgWatt @ 100%": "8,49", "RAMWatt @ Idle": "3,20", "RAMWatt @ 10%": "4,80", "RAMWatt @ 50%": "6,40", "RAMWatt @ 100%": "9,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,7", "Instance @ Idle": "5,8", "Instance @ 10%": "9,1", "Instance @ 50%": "14,3", "Instance @ 100%": "19,8", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 series processors"}, {"Instance type": "r5ad.xlarge", "Release Date": "March 2019", "Instance vCPU": "4", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "1 x 150 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,94", "PkgWatt @ 10%": "5,30", "PkgWatt @ 50%": "12,54", "PkgWatt @ 100%": "16,98", "RAMWatt @ Idle": "6,40", "RAMWatt @ 10%": "9,60", "RAMWatt @ 50%": "12,80", "RAMWatt @ 100%": "19,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,3", "Instance @ Idle": "11,7", "Instance @ 10%": "18,2", "Instance @ 50%": "28,7", "Instance @ 100%": "39,5", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 series processors"}, {"Instance type": "r5ad.2xlarge", "Release Date": "March 2019", "Instance vCPU": "8", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "1 x 300 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "3,87", "PkgWatt @ 10%": "10,61", "PkgWatt @ 50%": "25,08", "PkgWatt @ 100%": "33,95", "RAMWatt @ Idle": "12,80", "RAMWatt @ 10%": "19,20", "RAMWatt @ 50%": "25,60", "RAMWatt @ 100%": "38,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "6,7", "Instance @ Idle": "23,3", "Instance @ 10%": "36,5", "Instance @ 50%": "57,3", "Instance @ 100%": "79,0", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 series processors"}, {"Instance type": "r5ad.4xlarge", "Release Date": "March 2019", "Instance vCPU": "16", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "2 x 300 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "7,74", "PkgWatt @ 10%": "21,22", "PkgWatt @ 50%": "50,15", "PkgWatt @ 100%": "67,90", "RAMWatt @ Idle": "25,60", "RAMWatt @ 10%": "38,40", "RAMWatt @ 50%": "51,20", "RAMWatt @ 100%": "76,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "13,3", "Instance @ Idle": "46,7", "Instance @ 10%": "73,0", "Instance @ 50%": "114,7", "Instance @ 100%": "158,0", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 series processors"}, {"Instance type": "r5ad.8xlarge", "Release Date": "March 2019", "Instance vCPU": "32", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "256", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "2 x 600 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "15,48", "PkgWatt @ 10%": "42,43", "PkgWatt @ 50%": "100,30", "PkgWatt @ 100%": "135,81", "RAMWatt @ Idle": "51,20", "RAMWatt @ 10%": "76,80", "RAMWatt @ 50%": "102,40", "RAMWatt @ 100%": "153,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "26,7", "Instance @ Idle": "93,4", "Instance @ 10%": "145,9", "Instance @ 50%": "229,4", "Instance @ 100%": "316,1", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 series processors"}, {"Instance type": "r5ad.12xlarge", "Release Date": "March 2019", "Instance vCPU": "48", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "384", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "2 x 900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "23,23", "PkgWatt @ 10%": "63,65", "PkgWatt @ 50%": "150,45", "PkgWatt @ 100%": "203,71", "RAMWatt @ Idle": "76,80", "RAMWatt @ 10%": "115,20", "RAMWatt @ 50%": "153,60", "RAMWatt @ 100%": "230,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "40,0", "Instance @ Idle": "140,0", "Instance @ 10%": "218,9", "Instance @ 50%": "344,1", "Instance @ 100%": "474,1", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 series processors"}, {"Instance type": "r5ad.16xlarge", "Release Date": "March 2019", "Instance vCPU": "64", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "512", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "4 x 600 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "30,97", "PkgWatt @ 10%": "84,87", "PkgWatt @ 50%": "200,60", "PkgWatt @ 100%": "271,61", "RAMWatt @ Idle": "102,40", "RAMWatt @ 10%": "153,60", "RAMWatt @ 50%": "204,80", "RAMWatt @ 100%": "307,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "53,3", "Instance @ Idle": "186,7", "Instance @ 10%": "291,8", "Instance @ 50%": "458,7", "Instance @ 100%": "632,1", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 series processors"}, {"Instance type": "r5ad.24xlarge", "Release Date": "March 2019", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "768", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "4 x 900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "46,45", "PkgWatt @ 10%": "127,30", "PkgWatt @ 50%": "300,91", "PkgWatt @ 100%": "407,42", "RAMWatt @ Idle": "153,60", "RAMWatt @ 10%": "230,40", "RAMWatt @ 50%": "307,20", "RAMWatt @ 100%": "460,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "80,0", "Instance @ Idle": "280,1", "Instance @ 10%": "437,7", "Instance @ 50%": "688,1", "Instance @ 100%": "948,2", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 series processors"}, {"Instance type": "r5d.large", "Release Date": "July 2018", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "1 x 75 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,14", "PkgWatt @ 10%": "2,87", "PkgWatt @ 50%": "6,39", "PkgWatt @ 100%": "9,28", "RAMWatt @ Idle": "2,49", "RAMWatt @ 10%": "4,12", "RAMWatt @ 50%": "7,37", "RAMWatt @ 100%": "10,62", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,8", "Instance @ Idle": "5,4", "Instance @ 10%": "8,7", "Instance @ 50%": "15,5", "Instance @ 100%": "21,7", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "r5d.xlarge", "Release Date": "July 2018", "Instance vCPU": "4", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "1 x 150 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,28", "PkgWatt @ 10%": "5,75", "PkgWatt @ 50%": "12,79", "PkgWatt @ 100%": "18,56", "RAMWatt @ Idle": "4,98", "RAMWatt @ 10%": "8,24", "RAMWatt @ 50%": "14,74", "RAMWatt @ 100%": "21,25", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,5", "Instance @ Idle": "10,8", "Instance @ 10%": "17,5", "Instance @ 50%": "31,0", "Instance @ 100%": "43,3", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "r5d.2xlarge", "Release Date": "July 2018", "Instance vCPU": "8", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "1 x 300 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,56", "PkgWatt @ 10%": "11,49", "PkgWatt @ 50%": "25,58", "PkgWatt @ 100%": "37,12", "RAMWatt @ Idle": "9,95", "RAMWatt @ 10%": "16,47", "RAMWatt @ 50%": "29,48", "RAMWatt @ 100%": "42,49", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "7,0", "Instance @ Idle": "21,5", "Instance @ 10%": "35,0", "Instance @ 50%": "62,1", "Instance @ 100%": "86,6", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "r5d.4xlarge", "Release Date": "July 2018", "Instance vCPU": "16", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "2 x 300 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "9,12", "PkgWatt @ 10%": "22,99", "PkgWatt @ 50%": "51,16", "PkgWatt @ 100%": "74,23", "RAMWatt @ Idle": "19,91", "RAMWatt @ 10%": "32,94", "RAMWatt @ 50%": "58,96", "RAMWatt @ 100%": "84,98", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "14,0", "Instance @ Idle": "43,0", "Instance @ 10%": "69,9", "Instance @ 50%": "124,1", "Instance @ 100%": "173,2", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "r5d.8xlarge", "Release Date": "June 2019", "Instance vCPU": "32", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "256", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "2 x 600 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "18,24", "PkgWatt @ 10%": "45,97", "PkgWatt @ 50%": "102,31", "PkgWatt @ 100%": "148,46", "RAMWatt @ Idle": "39,81", "RAMWatt @ 10%": "65,89", "RAMWatt @ 50%": "117,93", "RAMWatt @ 100%": "169,97", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "28,0", "Instance @ Idle": "86,0", "Instance @ 10%": "139,9", "Instance @ 50%": "248,2", "Instance @ 100%": "346,4", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "r5d.12xlarge", "Release Date": "July 2018", "Instance vCPU": "48", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "384", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "2 x 900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "27,36", "PkgWatt @ 10%": "68,96", "PkgWatt @ 50%": "153,47", "PkgWatt @ 100%": "222,69", "RAMWatt @ Idle": "59,72", "RAMWatt @ 10%": "98,83", "RAMWatt @ 50%": "176,89", "RAMWatt @ 100%": "254,95", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "42,0", "Instance @ Idle": "129,1", "Instance @ 10%": "209,8", "Instance @ 50%": "372,4", "Instance @ 100%": "519,6", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "r5d.16xlarge", "Release Date": "June 2019", "Instance vCPU": "64", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "512", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "4 x 600 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "36,47", "PkgWatt @ 10%": "91,95", "PkgWatt @ 50%": "204,62", "PkgWatt @ 100%": "296,92", "RAMWatt @ Idle": "79,62", "RAMWatt @ 10%": "131,77", "RAMWatt @ 50%": "235,85", "RAMWatt @ 100%": "339,93", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "56,0", "Instance @ Idle": "172,1", "Instance @ 10%": "279,7", "Instance @ 50%": "496,5", "Instance @ 100%": "692,9", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "r5d.24xlarge", "Release Date": "July 2018", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "768", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "4 x 900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "54,71", "PkgWatt @ 10%": "137,92", "PkgWatt @ 50%": "306,93", "PkgWatt @ 100%": "445,38", "RAMWatt @ Idle": "119,43", "RAMWatt @ 10%": "197,66", "RAMWatt @ 50%": "353,78", "RAMWatt @ 100%": "509,90", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "84,0", "Instance @ Idle": "258,1", "Instance @ 10%": "419,6", "Instance @ 50%": "744,7", "Instance @ 100%": "1039,3", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "r5d.metal", "Release Date": "July 2018", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "768", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "4 x 900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "54,71", "PkgWatt @ 10%": "137,92", "PkgWatt @ 50%": "306,93", "PkgWatt @ 100%": "445,38", "RAMWatt @ Idle": "119,43", "RAMWatt @ 10%": "197,66", "RAMWatt @ 50%": "353,78", "RAMWatt @ 100%": "509,90", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "84,0", "Instance @ Idle": "258,1", "Instance @ 10%": "419,6", "Instance @ 50%": "744,7", "Instance @ 100%": "1039,3", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "r5dn.large", "Release Date": "October 2019", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "1 x 75 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,14", "PkgWatt @ 10%": "2,87", "PkgWatt @ 50%": "6,39", "PkgWatt @ 100%": "9,28", "RAMWatt @ Idle": "2,49", "RAMWatt @ 10%": "4,12", "RAMWatt @ 50%": "7,37", "RAMWatt @ 100%": "10,62", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,8", "Instance @ Idle": "5,4", "Instance @ 10%": "8,7", "Instance @ 50%": "15,5", "Instance @ 100%": "21,7", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "r5dn.xlarge", "Release Date": "October 2019", "Instance vCPU": "4", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "1 x 150 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,28", "PkgWatt @ 10%": "5,75", "PkgWatt @ 50%": "12,79", "PkgWatt @ 100%": "18,56", "RAMWatt @ Idle": "4,98", "RAMWatt @ 10%": "8,24", "RAMWatt @ 50%": "14,74", "RAMWatt @ 100%": "21,25", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,5", "Instance @ Idle": "10,8", "Instance @ 10%": "17,5", "Instance @ 50%": "31,0", "Instance @ 100%": "43,3", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "r5dn.2xlarge", "Release Date": "October 2019", "Instance vCPU": "8", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "1 x 300 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,56", "PkgWatt @ 10%": "11,49", "PkgWatt @ 50%": "25,58", "PkgWatt @ 100%": "37,12", "RAMWatt @ Idle": "9,95", "RAMWatt @ 10%": "16,47", "RAMWatt @ 50%": "29,48", "RAMWatt @ 100%": "42,49", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "7,0", "Instance @ Idle": "21,5", "Instance @ 10%": "35,0", "Instance @ 50%": "62,1", "Instance @ 100%": "86,6", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "r5dn.4xlarge", "Release Date": "October 2019", "Instance vCPU": "16", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "2 x 300 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "9,12", "PkgWatt @ 10%": "22,99", "PkgWatt @ 50%": "51,16", "PkgWatt @ 100%": "74,23", "RAMWatt @ Idle": "19,91", "RAMWatt @ 10%": "32,94", "RAMWatt @ 50%": "58,96", "RAMWatt @ 100%": "84,98", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "14,0", "Instance @ Idle": "43,0", "Instance @ 10%": "69,9", "Instance @ 50%": "124,1", "Instance @ 100%": "173,2", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "r5dn.8xlarge", "Release Date": "October 2019", "Instance vCPU": "32", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "256", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "2 x 600 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "18,24", "PkgWatt @ 10%": "45,97", "PkgWatt @ 50%": "102,31", "PkgWatt @ 100%": "148,46", "RAMWatt @ Idle": "39,81", "RAMWatt @ 10%": "65,89", "RAMWatt @ 50%": "117,93", "RAMWatt @ 100%": "169,97", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "28,0", "Instance @ Idle": "86,0", "Instance @ 10%": "139,9", "Instance @ 50%": "248,2", "Instance @ 100%": "346,4", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "r5dn.12xlarge", "Release Date": "October 2019", "Instance vCPU": "48", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "384", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "2 x 900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "27,36", "PkgWatt @ 10%": "68,96", "PkgWatt @ 50%": "153,47", "PkgWatt @ 100%": "222,69", "RAMWatt @ Idle": "59,72", "RAMWatt @ 10%": "98,83", "RAMWatt @ 50%": "176,89", "RAMWatt @ 100%": "254,95", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "42,0", "Instance @ Idle": "129,1", "Instance @ 10%": "209,8", "Instance @ 50%": "372,4", "Instance @ 100%": "519,6", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "r5dn.16xlarge", "Release Date": "October 2019", "Instance vCPU": "64", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "512", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "4 x 600 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "36,47", "PkgWatt @ 10%": "91,95", "PkgWatt @ 50%": "204,62", "PkgWatt @ 100%": "296,92", "RAMWatt @ Idle": "79,62", "RAMWatt @ 10%": "131,77", "RAMWatt @ 50%": "235,85", "RAMWatt @ 100%": "339,93", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "56,0", "Instance @ Idle": "172,1", "Instance @ 10%": "279,7", "Instance @ 50%": "496,5", "Instance @ 100%": "692,9", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "r5dn.24xlarge", "Release Date": "October 2019", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "768", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "4 x 900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "54,71", "PkgWatt @ 10%": "137,92", "PkgWatt @ 50%": "306,93", "PkgWatt @ 100%": "445,38", "RAMWatt @ Idle": "119,43", "RAMWatt @ 10%": "197,66", "RAMWatt @ 50%": "353,78", "RAMWatt @ 100%": "509,90", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "84,0", "Instance @ Idle": "258,1", "Instance @ 10%": "419,6", "Instance @ 50%": "744,7", "Instance @ 100%": "1039,3", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "r5dn.metal", "Release Date": "February 2021", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "768", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "4 x 900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "4", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "54,71", "PkgWatt @ 10%": "137,92", "PkgWatt @ 50%": "306,93", "PkgWatt @ 100%": "445,38", "RAMWatt @ Idle": "119,43", "RAMWatt @ 10%": "197,66", "RAMWatt @ 50%": "353,78", "RAMWatt @ 100%": "509,90", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "84,0", "Instance @ Idle": "258,1", "Instance @ 10%": "419,6", "Instance @ 50%": "744,7", "Instance @ 100%": "1039,3", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "r5n.large", "Release Date": "October 2019", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,14", "PkgWatt @ 10%": "2,87", "PkgWatt @ 50%": "6,39", "PkgWatt @ 100%": "9,28", "RAMWatt @ Idle": "2,49", "RAMWatt @ 10%": "4,12", "RAMWatt @ 50%": "7,37", "RAMWatt @ 100%": "10,62", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,8", "Instance @ Idle": "5,4", "Instance @ 10%": "8,7", "Instance @ 50%": "15,5", "Instance @ 100%": "21,7", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "r5n.xlarge", "Release Date": "October 2019", "Instance vCPU": "4", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,28", "PkgWatt @ 10%": "5,75", "PkgWatt @ 50%": "12,79", "PkgWatt @ 100%": "18,56", "RAMWatt @ Idle": "4,98", "RAMWatt @ 10%": "8,24", "RAMWatt @ 50%": "14,74", "RAMWatt @ 100%": "21,25", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,5", "Instance @ Idle": "10,8", "Instance @ 10%": "17,5", "Instance @ 50%": "31,0", "Instance @ 100%": "43,3", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "r5n.2xlarge", "Release Date": "October 2019", "Instance vCPU": "8", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,56", "PkgWatt @ 10%": "11,49", "PkgWatt @ 50%": "25,58", "PkgWatt @ 100%": "37,12", "RAMWatt @ Idle": "9,95", "RAMWatt @ 10%": "16,47", "RAMWatt @ 50%": "29,48", "RAMWatt @ 100%": "42,49", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "7,0", "Instance @ Idle": "21,5", "Instance @ 10%": "35,0", "Instance @ 50%": "62,1", "Instance @ 100%": "86,6", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "r5n.4xlarge", "Release Date": "October 2019", "Instance vCPU": "16", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "9,12", "PkgWatt @ 10%": "22,99", "PkgWatt @ 50%": "51,16", "PkgWatt @ 100%": "74,23", "RAMWatt @ Idle": "19,91", "RAMWatt @ 10%": "32,94", "RAMWatt @ 50%": "58,96", "RAMWatt @ 100%": "84,98", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "14,0", "Instance @ Idle": "43,0", "Instance @ 10%": "69,9", "Instance @ 50%": "124,1", "Instance @ 100%": "173,2", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "r5n.8xlarge", "Release Date": "October 2019", "Instance vCPU": "32", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "256", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "18,24", "PkgWatt @ 10%": "45,97", "PkgWatt @ 50%": "102,31", "PkgWatt @ 100%": "148,46", "RAMWatt @ Idle": "39,81", "RAMWatt @ 10%": "65,89", "RAMWatt @ 50%": "117,93", "RAMWatt @ 100%": "169,97", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "28,0", "Instance @ Idle": "86,0", "Instance @ 10%": "139,9", "Instance @ 50%": "248,2", "Instance @ 100%": "346,4", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "r5n.12xlarge", "Release Date": "October 2019", "Instance vCPU": "48", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "384", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "27,36", "PkgWatt @ 10%": "68,96", "PkgWatt @ 50%": "153,47", "PkgWatt @ 100%": "222,69", "RAMWatt @ Idle": "59,72", "RAMWatt @ 10%": "98,83", "RAMWatt @ 50%": "176,89", "RAMWatt @ 100%": "254,95", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "42,0", "Instance @ Idle": "129,1", "Instance @ 10%": "209,8", "Instance @ 50%": "372,4", "Instance @ 100%": "519,6", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "r5n.16xlarge", "Release Date": "October 2019", "Instance vCPU": "64", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "512", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "36,47", "PkgWatt @ 10%": "91,95", "PkgWatt @ 50%": "204,62", "PkgWatt @ 100%": "296,92", "RAMWatt @ Idle": "79,62", "RAMWatt @ 10%": "131,77", "RAMWatt @ 50%": "235,85", "RAMWatt @ 100%": "339,93", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "56,0", "Instance @ Idle": "172,1", "Instance @ 10%": "279,7", "Instance @ 50%": "496,5", "Instance @ 100%": "692,9", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "r5n.24xlarge", "Release Date": "October 2019", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "768", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "54,71", "PkgWatt @ 10%": "137,92", "PkgWatt @ 50%": "306,93", "PkgWatt @ 100%": "445,38", "RAMWatt @ Idle": "119,43", "RAMWatt @ 10%": "197,66", "RAMWatt @ 50%": "353,78", "RAMWatt @ 100%": "509,90", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "84,0", "Instance @ Idle": "258,1", "Instance @ 10%": "419,6", "Instance @ 50%": "744,7", "Instance @ 100%": "1039,3", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "r5n.metal", "Release Date": "February 2021", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "768", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "54,71", "PkgWatt @ 10%": "137,92", "PkgWatt @ 50%": "306,93", "PkgWatt @ 100%": "445,38", "RAMWatt @ Idle": "119,43", "RAMWatt @ 10%": "197,66", "RAMWatt @ 50%": "353,78", "RAMWatt @ 100%": "509,90", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "84,0", "Instance @ Idle": "258,1", "Instance @ 10%": "419,6", "Instance @ 50%": "744,7", "Instance @ 100%": "1039,3", "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)"}, {"Instance type": "r5b.large", "Release Date": "December 2020", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,14", "PkgWatt @ 10%": "2,87", "PkgWatt @ 50%": "6,39", "PkgWatt @ 100%": "9,28", "RAMWatt @ Idle": "2,49", "RAMWatt @ 10%": "4,12", "RAMWatt @ 50%": "7,37", "RAMWatt @ 100%": "10,62", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,8", "Instance @ Idle": "5,4", "Instance @ 10%": "8,7", "Instance @ 50%": "15,5", "Instance @ 100%": "21,7", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "r5b.xlarge", "Release Date": "December 2020", "Instance vCPU": "4", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,28", "PkgWatt @ 10%": "5,75", "PkgWatt @ 50%": "12,79", "PkgWatt @ 100%": "18,56", "RAMWatt @ Idle": "4,98", "RAMWatt @ 10%": "8,24", "RAMWatt @ 50%": "14,74", "RAMWatt @ 100%": "21,25", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,5", "Instance @ Idle": "10,8", "Instance @ 10%": "17,5", "Instance @ 50%": "31,0", "Instance @ 100%": "43,3", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "r5b.2xlarge", "Release Date": "December 2020", "Instance vCPU": "8", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,56", "PkgWatt @ 10%": "11,49", "PkgWatt @ 50%": "25,58", "PkgWatt @ 100%": "37,12", "RAMWatt @ Idle": "9,95", "RAMWatt @ 10%": "16,47", "RAMWatt @ 50%": "29,48", "RAMWatt @ 100%": "42,49", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "7,0", "Instance @ Idle": "21,5", "Instance @ 10%": "35,0", "Instance @ 50%": "62,1", "Instance @ 100%": "86,6", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "r5b.4xlarge", "Release Date": "December 2020", "Instance vCPU": "16", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "9,12", "PkgWatt @ 10%": "22,99", "PkgWatt @ 50%": "51,16", "PkgWatt @ 100%": "74,23", "RAMWatt @ Idle": "19,91", "RAMWatt @ 10%": "32,94", "RAMWatt @ 50%": "58,96", "RAMWatt @ 100%": "84,98", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "14,0", "Instance @ Idle": "43,0", "Instance @ 10%": "69,9", "Instance @ 50%": "124,1", "Instance @ 100%": "173,2", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "r5b.8xlarge", "Release Date": "December 2020", "Instance vCPU": "32", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "256", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "18,24", "PkgWatt @ 10%": "45,97", "PkgWatt @ 50%": "102,31", "PkgWatt @ 100%": "148,46", "RAMWatt @ Idle": "39,81", "RAMWatt @ 10%": "65,89", "RAMWatt @ 50%": "117,93", "RAMWatt @ 100%": "169,97", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "28,0", "Instance @ Idle": "86,0", "Instance @ 10%": "139,9", "Instance @ 50%": "248,2", "Instance @ 100%": "346,4", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "r5b.12xlarge", "Release Date": "December 2020", "Instance vCPU": "48", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "384", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "27,36", "PkgWatt @ 10%": "68,96", "PkgWatt @ 50%": "153,47", "PkgWatt @ 100%": "222,69", "RAMWatt @ Idle": "59,72", "RAMWatt @ 10%": "98,83", "RAMWatt @ 50%": "176,89", "RAMWatt @ 100%": "254,95", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "42,0", "Instance @ Idle": "129,1", "Instance @ 10%": "209,8", "Instance @ 50%": "372,4", "Instance @ 100%": "519,6", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "r5b.16xlarge", "Release Date": "December 2020", "Instance vCPU": "64", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "512", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "36,47", "PkgWatt @ 10%": "91,95", "PkgWatt @ 50%": "204,62", "PkgWatt @ 100%": "296,92", "RAMWatt @ Idle": "79,62", "RAMWatt @ 10%": "131,77", "RAMWatt @ 50%": "235,85", "RAMWatt @ 100%": "339,93", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "56,0", "Instance @ Idle": "172,1", "Instance @ 10%": "279,7", "Instance @ 50%": "496,5", "Instance @ 100%": "692,9", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "r5b.24xlarge", "Release Date": "December 2020", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "768", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "54,71", "PkgWatt @ 10%": "137,92", "PkgWatt @ 50%": "306,93", "PkgWatt @ 100%": "445,38", "RAMWatt @ Idle": "119,43", "RAMWatt @ 10%": "197,66", "RAMWatt @ 50%": "353,78", "RAMWatt @ 100%": "509,90", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "84,0", "Instance @ Idle": "258,1", "Instance @ 10%": "419,6", "Instance @ 50%": "744,7", "Instance @ 100%": "1039,3", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "r5b.metal", "Release Date": "December 2020", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "768", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "54,71", "PkgWatt @ 10%": "137,92", "PkgWatt @ 50%": "306,93", "PkgWatt @ 100%": "445,38", "RAMWatt @ Idle": "119,43", "RAMWatt @ 10%": "197,66", "RAMWatt @ 50%": "353,78", "RAMWatt @ 100%": "509,90", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "84,0", "Instance @ Idle": "258,1", "Instance @ 10%": "419,6", "Instance @ 50%": "744,7", "Instance @ 100%": "1039,3", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "r6g.medium", "Release Date": "December 2019", "Instance vCPU": "1", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,27", "PkgWatt @ 10%": "0,75", "PkgWatt @ 50%": "1,76", "PkgWatt @ 100%": "2,39", "RAMWatt @ Idle": "1,60", "RAMWatt @ 10%": "2,40", "RAMWatt @ 50%": "3,20", "RAMWatt @ 100%": "4,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "0,5", "Instance @ Idle": "2,3", "Instance @ 10%": "3,6", "Instance @ 50%": "5,4", "Instance @ 100%": "7,7", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "r6g.large", "Release Date": "December 2019", "Instance vCPU": "2", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,54", "PkgWatt @ 10%": "1,49", "PkgWatt @ 50%": "3,53", "PkgWatt @ 100%": "4,77", "RAMWatt @ Idle": "3,20", "RAMWatt @ 10%": "4,80", "RAMWatt @ 50%": "6,40", "RAMWatt @ 100%": "9,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "0,9", "Instance @ Idle": "4,7", "Instance @ 10%": "7,2", "Instance @ 50%": "10,9", "Instance @ 100%": "15,3", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "r6g.xlarge", "Release Date": "December 2019", "Instance vCPU": "4", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,09", "PkgWatt @ 10%": "2,98", "PkgWatt @ 50%": "7,05", "PkgWatt @ 100%": "9,55", "RAMWatt @ Idle": "6,40", "RAMWatt @ 10%": "9,60", "RAMWatt @ 50%": "12,80", "RAMWatt @ 100%": "19,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,9", "Instance @ Idle": "9,4", "Instance @ 10%": "14,5", "Instance @ 50%": "21,7", "Instance @ 100%": "30,6", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "r6g.2xlarge", "Release Date": "December 2019", "Instance vCPU": "8", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,18", "PkgWatt @ 10%": "5,97", "PkgWatt @ 50%": "14,10", "PkgWatt @ 100%": "19,10", "RAMWatt @ Idle": "12,80", "RAMWatt @ 10%": "19,20", "RAMWatt @ 50%": "25,60", "RAMWatt @ 100%": "38,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,8", "Instance @ Idle": "18,7", "Instance @ 10%": "28,9", "Instance @ 50%": "43,5", "Instance @ 100%": "61,2", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "r6g.4xlarge", "Release Date": "December 2019", "Instance vCPU": "16", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,35", "PkgWatt @ 10%": "11,93", "PkgWatt @ 50%": "28,21", "PkgWatt @ 100%": "38,20", "RAMWatt @ Idle": "25,60", "RAMWatt @ 10%": "38,40", "RAMWatt @ 50%": "51,20", "RAMWatt @ 100%": "76,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "7,5", "Instance @ Idle": "37,5", "Instance @ 10%": "57,8", "Instance @ 50%": "86,9", "Instance @ 100%": "122,5", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "r6g.8xlarge", "Release Date": "December 2019", "Instance vCPU": "32", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "256", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "8,71", "PkgWatt @ 10%": "23,87", "PkgWatt @ 50%": "56,42", "PkgWatt @ 100%": "76,39", "RAMWatt @ Idle": "51,20", "RAMWatt @ 10%": "76,80", "RAMWatt @ 50%": "102,40", "RAMWatt @ 100%": "153,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "15,0", "Instance @ Idle": "74,9", "Instance @ 10%": "115,7", "Instance @ 50%": "173,8", "Instance @ 100%": "245,0", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "r6g.12xlarge", "Release Date": "December 2019", "Instance vCPU": "48", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "384", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "13,06", "PkgWatt @ 10%": "35,80", "PkgWatt @ 50%": "84,63", "PkgWatt @ 100%": "114,59", "RAMWatt @ Idle": "76,80", "RAMWatt @ 10%": "115,20", "RAMWatt @ 50%": "153,60", "RAMWatt @ 100%": "230,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "22,5", "Instance @ Idle": "112,4", "Instance @ 10%": "173,5", "Instance @ 50%": "260,7", "Instance @ 100%": "367,5", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "r6g.16xlarge", "Release Date": "December 2019", "Instance vCPU": "64", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "512", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "17,42", "PkgWatt @ 10%": "47,74", "PkgWatt @ 50%": "112,84", "PkgWatt @ 100%": "152,78", "RAMWatt @ Idle": "102,40", "RAMWatt @ 10%": "153,60", "RAMWatt @ 50%": "204,80", "RAMWatt @ 100%": "307,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "30,0", "Instance @ Idle": "149,8", "Instance @ 10%": "231,3", "Instance @ 50%": "347,6", "Instance @ 100%": "490,0", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "r6g.metal", "Release Date": "December 2019", "Instance vCPU": "64", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "512", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "17,42", "PkgWatt @ 10%": "47,74", "PkgWatt @ 50%": "112,84", "PkgWatt @ 100%": "152,78", "RAMWatt @ Idle": "102,40", "RAMWatt @ 10%": "153,60", "RAMWatt @ 50%": "204,80", "RAMWatt @ 100%": "307,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "30,0", "Instance @ Idle": "149,8", "Instance @ 10%": "231,3", "Instance @ 50%": "347,6", "Instance @ 100%": "490,0", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "r6gd.medium", "Release Date": "December 2019", "Instance vCPU": "1", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "1 x 59 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,27", "PkgWatt @ 10%": "0,75", "PkgWatt @ 50%": "1,76", "PkgWatt @ 100%": "2,39", "RAMWatt @ Idle": "1,60", "RAMWatt @ 10%": "2,40", "RAMWatt @ 50%": "3,20", "RAMWatt @ 100%": "4,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "0,5", "Instance @ Idle": "2,3", "Instance @ 10%": "3,6", "Instance @ 50%": "5,4", "Instance @ 100%": "7,7", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "r6gd.large", "Release Date": "December 2019", "Instance vCPU": "2", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "1 x 118 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,54", "PkgWatt @ 10%": "1,49", "PkgWatt @ 50%": "3,53", "PkgWatt @ 100%": "4,77", "RAMWatt @ Idle": "3,20", "RAMWatt @ 10%": "4,80", "RAMWatt @ 50%": "6,40", "RAMWatt @ 100%": "9,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "0,9", "Instance @ Idle": "4,7", "Instance @ 10%": "7,2", "Instance @ 50%": "10,9", "Instance @ 100%": "15,3", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "r6gd.xlarge", "Release Date": "December 2019", "Instance vCPU": "4", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "1 x 237 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,09", "PkgWatt @ 10%": "2,98", "PkgWatt @ 50%": "7,05", "PkgWatt @ 100%": "9,55", "RAMWatt @ Idle": "6,40", "RAMWatt @ 10%": "9,60", "RAMWatt @ 50%": "12,80", "RAMWatt @ 100%": "19,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,9", "Instance @ Idle": "9,4", "Instance @ 10%": "14,5", "Instance @ 50%": "21,7", "Instance @ 100%": "30,6", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "r6gd.2xlarge", "Release Date": "December 2019", "Instance vCPU": "8", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "1 x 474 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,18", "PkgWatt @ 10%": "5,97", "PkgWatt @ 50%": "14,10", "PkgWatt @ 100%": "19,10", "RAMWatt @ Idle": "12,80", "RAMWatt @ 10%": "19,20", "RAMWatt @ 50%": "25,60", "RAMWatt @ 100%": "38,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,8", "Instance @ Idle": "18,7", "Instance @ 10%": "28,9", "Instance @ 50%": "43,5", "Instance @ 100%": "61,2", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "r6gd.4xlarge", "Release Date": "December 2019", "Instance vCPU": "16", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "1 x 950 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,35", "PkgWatt @ 10%": "11,93", "PkgWatt @ 50%": "28,21", "PkgWatt @ 100%": "38,20", "RAMWatt @ Idle": "25,60", "RAMWatt @ 10%": "38,40", "RAMWatt @ 50%": "51,20", "RAMWatt @ 100%": "76,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "7,5", "Instance @ Idle": "37,5", "Instance @ 10%": "57,8", "Instance @ 50%": "86,9", "Instance @ 100%": "122,5", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "r6gd.8xlarge", "Release Date": "December 2019", "Instance vCPU": "32", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "256", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "1 x 1900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "8,71", "PkgWatt @ 10%": "23,87", "PkgWatt @ 50%": "56,42", "PkgWatt @ 100%": "76,39", "RAMWatt @ Idle": "51,20", "RAMWatt @ 10%": "76,80", "RAMWatt @ 50%": "102,40", "RAMWatt @ 100%": "153,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "15,0", "Instance @ Idle": "74,9", "Instance @ 10%": "115,7", "Instance @ 50%": "173,8", "Instance @ 100%": "245,0", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "r6gd.12xlarge", "Release Date": "December 2019", "Instance vCPU": "48", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "384", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "2 x 1425 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "13,06", "PkgWatt @ 10%": "35,80", "PkgWatt @ 50%": "84,63", "PkgWatt @ 100%": "114,59", "RAMWatt @ Idle": "76,80", "RAMWatt @ 10%": "115,20", "RAMWatt @ 50%": "153,60", "RAMWatt @ 100%": "230,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "22,5", "Instance @ Idle": "112,4", "Instance @ 10%": "173,5", "Instance @ 50%": "260,7", "Instance @ 100%": "367,5", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "r6gd.16xlarge", "Release Date": "December 2019", "Instance vCPU": "64", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "512", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "2 x 1900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "17,42", "PkgWatt @ 10%": "47,74", "PkgWatt @ 50%": "112,84", "PkgWatt @ 100%": "152,78", "RAMWatt @ Idle": "102,40", "RAMWatt @ 10%": "153,60", "RAMWatt @ 50%": "204,80", "RAMWatt @ 100%": "307,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "30,0", "Instance @ Idle": "149,8", "Instance @ 10%": "231,3", "Instance @ 50%": "347,6", "Instance @ 100%": "490,0", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "r6gd.metal", "Release Date": "December 2019", "Instance vCPU": "64", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "512", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "2 x 1900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "17,42", "PkgWatt @ 10%": "47,74", "PkgWatt @ 50%": "112,84", "PkgWatt @ 100%": "152,78", "RAMWatt @ Idle": "102,40", "RAMWatt @ 10%": "153,60", "RAMWatt @ 50%": "204,80", "RAMWatt @ 100%": "307,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "30,0", "Instance @ Idle": "149,8", "Instance @ 10%": "231,3", "Instance @ 50%": "347,6", "Instance @ 100%": "490,0", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "t1.micro", "Release Date": "September 2010", "Instance vCPU": "1", "Platform Total Number of vCPU": "32", "Platform CPU Name": "Xeon E5-2670", "Instance Memory (in GB)": "613", "Platform Memory (in GB)": "144", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,87", "PkgWatt @ 10%": "2,47", "PkgWatt @ 50%": "5,09", "PkgWatt @ 100%": "6,97", "RAMWatt @ Idle": "0,12", "RAMWatt @ 10%": "0,18", "RAMWatt @ 50%": "0,25", "RAMWatt @ 100%": "0,37", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,4", "Instance @ Idle": "2,4", "Instance @ 10%": "4,1", "Instance @ 50%": "6,8", "Instance @ 100%": "8,8", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "t2.nano", "Release Date": "December 2015", "Instance vCPU": "1", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon E5-2676 v3", "Instance Memory (in GB)": "0.5", "Platform Memory (in GB)": "288", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,60", "PkgWatt @ 10%": "1,72", "PkgWatt @ 50%": "3,54", "PkgWatt @ 100%": "4,85", "RAMWatt @ Idle": "0,10", "RAMWatt @ 10%": "0,15", "RAMWatt @ 50%": "0,20", "RAMWatt @ 100%": "0,30", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,0", "Instance @ Idle": "1,7", "Instance @ 10%": "2,9", "Instance @ 50%": "4,7", "Instance @ 100%": "6,1", "Hardware Information on AWS Documentation & Comments": "3.3 GHz Intel Scalable Processor"}, {"Instance type": "t2.micro", "Release Date": "July 2014", "Instance vCPU": "1", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon E5-2676 v3", "Instance Memory (in GB)": "1", "Platform Memory (in GB)": "288", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,60", "PkgWatt @ 10%": "1,72", "PkgWatt @ 50%": "3,54", "PkgWatt @ 100%": "4,85", "RAMWatt @ Idle": "0,20", "RAMWatt @ 10%": "0,30", "RAMWatt @ 50%": "0,40", "RAMWatt @ 100%": "0,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,0", "Instance @ Idle": "1,8", "Instance @ 10%": "3,0", "Instance @ 50%": "4,9", "Instance @ 100%": "6,4", "Hardware Information on AWS Documentation & Comments": "3.3 GHz Intel Scalable Processor"}, {"Instance type": "t2.small", "Release Date": "July 2014", "Instance vCPU": "1", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon E5-2676 v3", "Instance Memory (in GB)": "2", "Platform Memory (in GB)": "288", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,60", "PkgWatt @ 10%": "1,72", "PkgWatt @ 50%": "3,54", "PkgWatt @ 100%": "4,85", "RAMWatt @ Idle": "0,40", "RAMWatt @ 10%": "0,60", "RAMWatt @ 50%": "0,80", "RAMWatt @ 100%": "1,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,0", "Instance @ Idle": "2,0", "Instance @ 10%": "3,3", "Instance @ 50%": "5,3", "Instance @ 100%": "7,0", "Hardware Information on AWS Documentation & Comments": "3.3 GHz Intel Scalable Processor"}, {"Instance type": "t2.medium", "Release Date": "July 2014", "Instance vCPU": "2", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon E5-2676 v3", "Instance Memory (in GB)": "4", "Platform Memory (in GB)": "288", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,21", "PkgWatt @ 10%": "3,44", "PkgWatt @ 50%": "7,08", "PkgWatt @ 100%": "9,69", "RAMWatt @ Idle": "0,80", "RAMWatt @ 10%": "1,20", "RAMWatt @ 50%": "1,60", "RAMWatt @ 100%": "2,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,0", "Instance @ Idle": "4,0", "Instance @ 10%": "6,6", "Instance @ 50%": "10,7", "Instance @ 100%": "14,1", "Hardware Information on AWS Documentation & Comments": "3.3 GHz Intel Scalable Processor"}, {"Instance type": "t2.large", "Release Date": "June 2015", "Instance vCPU": "2", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "288", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,97", "PkgWatt @ 10%": "2,77", "PkgWatt @ 50%": "5,71", "PkgWatt @ 100%": "7,81", "RAMWatt @ Idle": "1,60", "RAMWatt @ 10%": "2,40", "RAMWatt @ 50%": "3,20", "RAMWatt @ 100%": "4,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,6", "Instance @ Idle": "4,2", "Instance @ 10%": "6,8", "Instance @ 50%": "10,5", "Instance @ 100%": "14,2", "Hardware Information on AWS Documentation & Comments": "3.0 GHz Intel Scalable Processor"}, {"Instance type": "t2.xlarge", "Release Date": "November 2016", "Instance vCPU": "4", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "288", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,94", "PkgWatt @ 10%": "5,55", "PkgWatt @ 50%": "11,41", "PkgWatt @ 100%": "15,62", "RAMWatt @ Idle": "3,20", "RAMWatt @ 10%": "4,80", "RAMWatt @ 50%": "6,40", "RAMWatt @ 100%": "9,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,2", "Instance @ Idle": "8,4", "Instance @ 10%": "13,6", "Instance @ 50%": "21,0", "Instance @ 100%": "28,4", "Hardware Information on AWS Documentation & Comments": "3.0 GHz Intel Scalable Processor"}, {"Instance type": "t2.2xlarge", "Release Date": "November 2016", "Instance vCPU": "8", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "288", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "3,89", "PkgWatt @ 10%": "11,10", "PkgWatt @ 50%": "22,82", "PkgWatt @ 100%": "31,24", "RAMWatt @ Idle": "6,40", "RAMWatt @ 10%": "9,60", "RAMWatt @ 50%": "12,80", "RAMWatt @ 100%": "19,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "6,4", "Instance @ Idle": "16,7", "Instance @ 10%": "27,1", "Instance @ 50%": "42,1", "Instance @ 100%": "56,9", "Hardware Information on AWS Documentation & Comments": "3.0 GHz Intel Scalable Processor"}, {"Instance type": "t3.nano", "Release Date": "August 2018", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "0.5", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,21", "PkgWatt @ 10%": "3,05", "PkgWatt @ 50%": "7,16", "PkgWatt @ 100%": "9,96", "RAMWatt @ Idle": "0,08", "RAMWatt @ 10%": "0,12", "RAMWatt @ 50%": "0,31", "RAMWatt @ 100%": "0,50", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,0", "Instance @ Idle": "3,3", "Instance @ 10%": "5,2", "Instance @ 50%": "9,5", "Instance @ 100%": "12,5", "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor"}, {"Instance type": "t3.micro", "Release Date": "August 2018", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "1", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,21", "PkgWatt @ 10%": "3,05", "PkgWatt @ 50%": "7,16", "PkgWatt @ 100%": "9,96", "RAMWatt @ Idle": "0,15", "RAMWatt @ 10%": "0,24", "RAMWatt @ 50%": "0,62", "RAMWatt @ 100%": "1,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,0", "Instance @ Idle": "3,4", "Instance @ 10%": "5,3", "Instance @ 50%": "9,8", "Instance @ 100%": "13,0", "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor"}, {"Instance type": "t3.small", "Release Date": "August 2018", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "2", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,21", "PkgWatt @ 10%": "3,05", "PkgWatt @ 50%": "7,16", "PkgWatt @ 100%": "9,96", "RAMWatt @ Idle": "0,30", "RAMWatt @ 10%": "0,48", "RAMWatt @ 50%": "1,24", "RAMWatt @ 100%": "2,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,0", "Instance @ Idle": "3,5", "Instance @ 10%": "5,5", "Instance @ 50%": "10,4", "Instance @ 100%": "14,0", "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor"}, {"Instance type": "t3.medium", "Release Date": "August 2018", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "4", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,21", "PkgWatt @ 10%": "3,05", "PkgWatt @ 50%": "7,16", "PkgWatt @ 100%": "9,96", "RAMWatt @ Idle": "0,60", "RAMWatt @ 10%": "0,96", "RAMWatt @ 50%": "2,48", "RAMWatt @ 100%": "4,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,0", "Instance @ Idle": "3,8", "Instance @ 10%": "6,0", "Instance @ 50%": "11,6", "Instance @ 100%": "16,0", "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor"}, {"Instance type": "t3.large", "Release Date": "August 2018", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,21", "PkgWatt @ 10%": "3,05", "PkgWatt @ 50%": "7,16", "PkgWatt @ 100%": "9,96", "RAMWatt @ Idle": "1,20", "RAMWatt @ 10%": "1,92", "RAMWatt @ 50%": "4,96", "RAMWatt @ 100%": "8,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,0", "Instance @ Idle": "4,4", "Instance @ 10%": "7,0", "Instance @ 50%": "14,1", "Instance @ 100%": "20,0", "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor"}, {"Instance type": "t3.xlarge", "Release Date": "August 2018", "Instance vCPU": "4", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,41", "PkgWatt @ 10%": "6,11", "PkgWatt @ 50%": "14,32", "PkgWatt @ 100%": "19,92", "RAMWatt @ Idle": "2,41", "RAMWatt @ 10%": "3,85", "RAMWatt @ 50%": "9,92", "RAMWatt @ 100%": "15,99", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "4,0", "Instance @ Idle": "8,8", "Instance @ 10%": "14,0", "Instance @ 50%": "28,2", "Instance @ 100%": "39,9", "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor"}, {"Instance type": "t3.2xlarge", "Release Date": "August 2018", "Instance vCPU": "8", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,82", "PkgWatt @ 10%": "12,22", "PkgWatt @ 50%": "28,64", "PkgWatt @ 100%": "39,83", "RAMWatt @ Idle": "4,82", "RAMWatt @ 10%": "7,70", "RAMWatt @ 50%": "19,84", "RAMWatt @ 100%": "31,98", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "8,0", "Instance @ Idle": "17,6", "Instance @ 10%": "27,9", "Instance @ 50%": "56,5", "Instance @ 100%": "79,8", "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor"}, {"Instance type": "t3a.nano", "Release Date": "April 2019", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "0.5", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,97", "PkgWatt @ 10%": "2,65", "PkgWatt @ 50%": "6,27", "PkgWatt @ 100%": "8,49", "RAMWatt @ Idle": "0,10", "RAMWatt @ 10%": "0,15", "RAMWatt @ 50%": "0,20", "RAMWatt @ 100%": "0,30", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,7", "Instance @ Idle": "2,7", "Instance @ 10%": "4,5", "Instance @ 50%": "8,1", "Instance @ 100%": "10,5", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor"}, {"Instance type": "t3a.micro", "Release Date": "April 2019", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "1", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,97", "PkgWatt @ 10%": "2,65", "PkgWatt @ 50%": "6,27", "PkgWatt @ 100%": "8,49", "RAMWatt @ Idle": "0,20", "RAMWatt @ 10%": "0,30", "RAMWatt @ 50%": "0,40", "RAMWatt @ 100%": "0,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,7", "Instance @ Idle": "2,8", "Instance @ 10%": "4,6", "Instance @ 50%": "8,3", "Instance @ 100%": "10,8", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor"}, {"Instance type": "t3a.small", "Release Date": "April 2019", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "2", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,97", "PkgWatt @ 10%": "2,65", "PkgWatt @ 50%": "6,27", "PkgWatt @ 100%": "8,49", "RAMWatt @ Idle": "0,40", "RAMWatt @ 10%": "0,60", "RAMWatt @ 50%": "0,80", "RAMWatt @ 100%": "1,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,7", "Instance @ Idle": "3,0", "Instance @ 10%": "4,9", "Instance @ 50%": "8,7", "Instance @ 100%": "11,4", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor"}, {"Instance type": "t3a.medium", "Release Date": "April 2019", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "4", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,97", "PkgWatt @ 10%": "2,65", "PkgWatt @ 50%": "6,27", "PkgWatt @ 100%": "8,49", "RAMWatt @ Idle": "0,80", "RAMWatt @ 10%": "1,20", "RAMWatt @ 50%": "1,60", "RAMWatt @ 100%": "2,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,7", "Instance @ Idle": "3,4", "Instance @ 10%": "5,5", "Instance @ 50%": "9,5", "Instance @ 100%": "12,6", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor"}, {"Instance type": "t3a.large", "Release Date": "April 2019", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,97", "PkgWatt @ 10%": "2,65", "PkgWatt @ 50%": "6,27", "PkgWatt @ 100%": "8,49", "RAMWatt @ Idle": "1,60", "RAMWatt @ 10%": "2,40", "RAMWatt @ 50%": "3,20", "RAMWatt @ 100%": "4,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,7", "Instance @ Idle": "4,2", "Instance @ 10%": "6,7", "Instance @ 50%": "11,1", "Instance @ 100%": "15,0", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor"}, {"Instance type": "t3a.xlarge", "Release Date": "April 2019", "Instance vCPU": "4", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,94", "PkgWatt @ 10%": "5,30", "PkgWatt @ 50%": "12,54", "PkgWatt @ 100%": "16,98", "RAMWatt @ Idle": "3,20", "RAMWatt @ 10%": "4,80", "RAMWatt @ 50%": "6,40", "RAMWatt @ 100%": "9,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,3", "Instance @ Idle": "8,5", "Instance @ 10%": "13,4", "Instance @ 50%": "22,3", "Instance @ 100%": "29,9", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor"}, {"Instance type": "t3a.2xlarge", "Release Date": "April 2019", "Instance vCPU": "8", "Platform Total Number of vCPU": "96", "Platform CPU Name": "EPYC 7571", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "3,87", "PkgWatt @ 10%": "10,61", "PkgWatt @ 50%": "25,08", "PkgWatt @ 100%": "33,95", "RAMWatt @ Idle": "6,40", "RAMWatt @ 10%": "9,60", "RAMWatt @ 50%": "12,80", "RAMWatt @ 100%": "19,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "6,7", "Instance @ Idle": "16,9", "Instance @ 10%": "26,9", "Instance @ 50%": "44,5", "Instance @ 100%": "59,8", "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor"}, {"Instance type": "t4g.nano", "Release Date": "September 2020", "Instance vCPU": "2", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "0.5", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,54", "PkgWatt @ 10%": "1,49", "PkgWatt @ 50%": "3,53", "PkgWatt @ 100%": "4,77", "RAMWatt @ Idle": "0,10", "RAMWatt @ 10%": "0,15", "RAMWatt @ 50%": "0,20", "RAMWatt @ 100%": "0,30", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "0,9", "Instance @ Idle": "1,6", "Instance @ 10%": "2,6", "Instance @ 50%": "4,7", "Instance @ 100%": "6,0", "Hardware Information on AWS Documentation & Comments": "Baseline Performance / vCPU 5%"}, {"Instance type": "t4g.micro", "Release Date": "September 2020", "Instance vCPU": "2", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "1", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,54", "PkgWatt @ 10%": "1,49", "PkgWatt @ 50%": "3,53", "PkgWatt @ 100%": "4,77", "RAMWatt @ Idle": "0,20", "RAMWatt @ 10%": "0,30", "RAMWatt @ 50%": "0,40", "RAMWatt @ 100%": "0,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "0,9", "Instance @ Idle": "1,7", "Instance @ 10%": "2,7", "Instance @ 50%": "4,9", "Instance @ 100%": "6,3", "Hardware Information on AWS Documentation & Comments": "Baseline Performance / vCPU 10%"}, {"Instance type": "t4g.small", "Release Date": "September 2020", "Instance vCPU": "2", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "2", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,54", "PkgWatt @ 10%": "1,49", "PkgWatt @ 50%": "3,53", "PkgWatt @ 100%": "4,77", "RAMWatt @ Idle": "0,40", "RAMWatt @ 10%": "0,60", "RAMWatt @ 50%": "0,80", "RAMWatt @ 100%": "1,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "0,9", "Instance @ Idle": "1,9", "Instance @ 10%": "3,0", "Instance @ 50%": "5,3", "Instance @ 100%": "6,9", "Hardware Information on AWS Documentation & Comments": "Baseline Performance / vCPU 20%"}, {"Instance type": "t4g.medium", "Release Date": "September 2020", "Instance vCPU": "2", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "4", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,54", "PkgWatt @ 10%": "1,49", "PkgWatt @ 50%": "3,53", "PkgWatt @ 100%": "4,77", "RAMWatt @ Idle": "0,80", "RAMWatt @ 10%": "1,20", "RAMWatt @ 50%": "1,60", "RAMWatt @ 100%": "2,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "0,9", "Instance @ Idle": "2,3", "Instance @ 10%": "3,6", "Instance @ 50%": "6,1", "Instance @ 100%": "8,1", "Hardware Information on AWS Documentation & Comments": "Baseline Performance / vCPU 20%"}, {"Instance type": "t4g.large", "Release Date": "September 2020", "Instance vCPU": "2", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,54", "PkgWatt @ 10%": "1,49", "PkgWatt @ 50%": "3,53", "PkgWatt @ 100%": "4,77", "RAMWatt @ Idle": "1,60", "RAMWatt @ 10%": "2,40", "RAMWatt @ 50%": "3,20", "RAMWatt @ 100%": "4,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "0,9", "Instance @ Idle": "3,1", "Instance @ 10%": "4,8", "Instance @ 50%": "7,7", "Instance @ 100%": "10,5", "Hardware Information on AWS Documentation & Comments": "Baseline Performance / vCPU 30%"}, {"Instance type": "t4g.xlarge", "Release Date": "September 2020", "Instance vCPU": "4", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,09", "PkgWatt @ 10%": "2,98", "PkgWatt @ 50%": "7,05", "PkgWatt @ 100%": "9,55", "RAMWatt @ Idle": "3,20", "RAMWatt @ 10%": "4,80", "RAMWatt @ 50%": "6,40", "RAMWatt @ 100%": "9,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,9", "Instance @ Idle": "6,2", "Instance @ 10%": "9,7", "Instance @ 50%": "15,3", "Instance @ 100%": "21,0", "Hardware Information on AWS Documentation & Comments": "Baseline Performance / vCPU 40%"}, {"Instance type": "t4g.2xlarge", "Release Date": "September 2020", "Instance vCPU": "8", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,18", "PkgWatt @ 10%": "5,97", "PkgWatt @ 50%": "14,10", "PkgWatt @ 100%": "19,10", "RAMWatt @ Idle": "6,40", "RAMWatt @ 10%": "9,60", "RAMWatt @ 50%": "12,80", "RAMWatt @ 100%": "19,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,8", "Instance @ Idle": "12,3", "Instance @ 10%": "19,3", "Instance @ 50%": "30,7", "Instance @ 100%": "42,0", "Hardware Information on AWS Documentation & Comments": "Baseline Performance / vCPU 40%"}, {"Instance type": "u-6tb1.metal", "Release Date": "September 2018", "Instance vCPU": "448", "Platform Total Number of vCPU": "448", "Platform CPU Name": "Xeon Platinum 8176M", "Instance Memory (in GB)": "6144", "Platform Memory (in GB)": "24576", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "159,17", "PkgWatt @ 10%": "403,23", "PkgWatt @ 50%": "945,18", "PkgWatt @ 100%": "1314,43", "RAMWatt @ Idle": "1228,80", "RAMWatt @ 10%": "1843,20", "RAMWatt @ 50%": "2457,60", "RAMWatt @ 100%": "3686,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "264,0", "Instance @ Idle": "1652,0", "Instance @ 10%": "2510,4", "Instance @ 50%": "3666,8", "Instance @ 100%": "5264,8", "Hardware Information on AWS Documentation & Comments": "Intel Xeon Platinum 8176M (Skylake) processors"}, {"Instance type": "u-9tb1.metal", "Release Date": "September 2018", "Instance vCPU": "448", "Platform Total Number of vCPU": "448", "Platform CPU Name": "Xeon Platinum 8176M", "Instance Memory (in GB)": "9216", "Platform Memory (in GB)": "24576", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "159,17", "PkgWatt @ 10%": "403,23", "PkgWatt @ 50%": "945,18", "PkgWatt @ 100%": "1314,43", "RAMWatt @ Idle": "1843,20", "RAMWatt @ 10%": "2764,80", "RAMWatt @ 50%": "3686,40", "RAMWatt @ 100%": "5529,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "264,0", "Instance @ Idle": "2266,4", "Instance @ 10%": "3432,0", "Instance @ 50%": "4895,6", "Instance @ 100%": "7108,0", "Hardware Information on AWS Documentation & Comments": "Intel Xeon Platinum 8176M (Skylake) processors"}, {"Instance type": "u-12tb1.metal", "Release Date": "September 2018", "Instance vCPU": "448", "Platform Total Number of vCPU": "448", "Platform CPU Name": "Xeon Platinum 8176M", "Instance Memory (in GB)": "12288", "Platform Memory (in GB)": "24576", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "159,17", "PkgWatt @ 10%": "403,23", "PkgWatt @ 50%": "945,18", "PkgWatt @ 100%": "1314,43", "RAMWatt @ Idle": "2457,60", "RAMWatt @ 10%": "3686,40", "RAMWatt @ 50%": "4915,20", "RAMWatt @ 100%": "7372,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "264,0", "Instance @ Idle": "2880,8", "Instance @ 10%": "4353,6", "Instance @ 50%": "6124,4", "Instance @ 100%": "8951,2", "Hardware Information on AWS Documentation & Comments": "Intel Xeon Platinum 8176M (Skylake) processors"}, {"Instance type": "u-18tb1.metal", "Release Date": "May 2019", "Instance vCPU": "448", "Platform Total Number of vCPU": "448", "Platform CPU Name": "Xeon Platinum 8176M", "Instance Memory (in GB)": "18432", "Platform Memory (in GB)": "24576", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "159,17", "PkgWatt @ 10%": "403,23", "PkgWatt @ 50%": "945,18", "PkgWatt @ 100%": "1314,43", "RAMWatt @ Idle": "3686,40", "RAMWatt @ 10%": "5529,60", "RAMWatt @ 50%": "7372,80", "RAMWatt @ 100%": "11059,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "264,0", "Instance @ Idle": "4109,6", "Instance @ 10%": "6196,8", "Instance @ 50%": "8582,0", "Instance @ 100%": "12637,6", "Hardware Information on AWS Documentation & Comments": "Intel Xeon Platinum 8176M (Skylake) processors"}, {"Instance type": "u-24tb1.metal", "Release Date": "May 2019", "Instance vCPU": "448", "Platform Total Number of vCPU": "448", "Platform CPU Name": "Xeon Platinum 8176M", "Instance Memory (in GB)": "24576", "Platform Memory (in GB)": "24576", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "159,17", "PkgWatt @ 10%": "403,23", "PkgWatt @ 50%": "945,18", "PkgWatt @ 100%": "1314,43", "RAMWatt @ Idle": "4915,20", "RAMWatt @ 10%": "7372,80", "RAMWatt @ 50%": "9830,40", "RAMWatt @ 100%": "14745,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "264,0", "Instance @ Idle": "5338,4", "Instance @ 10%": "8040,0", "Instance @ 50%": "11039,6", "Instance @ 100%": "16324,0", "Hardware Information on AWS Documentation & Comments": "Intel Xeon Platinum 8176M (Skylake) processors"}, {"Instance type": "x1.16xlarge", "Release Date": "October 2016", "Instance vCPU": "64", "Platform Total Number of vCPU": "128", "Platform CPU Name": "Xeon E7-8880 v3", "Instance Memory (in GB)": "976", "Platform Memory (in GB)": "1952", "Storage Info (Type and Size in GB)": "1 x 1.920 SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "36,19", "PkgWatt @ 10%": "103,30", "PkgWatt @ 50%": "212,47", "PkgWatt @ 100%": "290,83", "RAMWatt @ Idle": "195,20", "RAMWatt @ 10%": "292,80", "RAMWatt @ 50%": "390,40", "RAMWatt @ 100%": "585,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "60,0", "Instance @ Idle": "291,4", "Instance @ 10%": "456,1", "Instance @ 50%": "662,9", "Instance @ 100%": "936,4", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E7-8880 v3 Processor (Haswell)"}, {"Instance type": "x1.32xlarge", "Release Date": "May 2016", "Instance vCPU": "128", "Platform Total Number of vCPU": "128", "Platform CPU Name": "Xeon E7-8880 v3", "Instance Memory (in GB)": "1952", "Platform Memory (in GB)": "1952", "Storage Info (Type and Size in GB)": "2 x 1.920 SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "72,37", "PkgWatt @ 10%": "206,61", "PkgWatt @ 50%": "424,94", "PkgWatt @ 100%": "581,65", "RAMWatt @ Idle": "390,40", "RAMWatt @ 10%": "585,60", "RAMWatt @ 50%": "780,80", "RAMWatt @ 100%": "1171,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "120,0", "Instance @ Idle": "582,8", "Instance @ 10%": "912,2", "Instance @ 50%": "1325,7", "Instance @ 100%": "1872,9", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E7-8880 v3 Processor (Haswell)"}, {"Instance type": "x1e.xlarge", "Release Date": "November 2017", "Instance vCPU": "4", "Platform Total Number of vCPU": "128", "Platform CPU Name": "Xeon E7-8880 v3", "Instance Memory (in GB)": "122", "Platform Memory (in GB)": "3904", "Storage Info (Type and Size in GB)": "1 x 120 SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,26", "PkgWatt @ 10%": "6,46", "PkgWatt @ 50%": "13,28", "PkgWatt @ 100%": "18,18", "RAMWatt @ Idle": "24,40", "RAMWatt @ 10%": "36,60", "RAMWatt @ 50%": "48,80", "RAMWatt @ 100%": "73,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,8", "Instance @ Idle": "30,4", "Instance @ 10%": "46,8", "Instance @ 50%": "65,8", "Instance @ 100%": "95,1", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E7-8880 v3 Processor (Haswell)"}, {"Instance type": "x1e.2xlarge", "Release Date": "November 2017", "Instance vCPU": "8", "Platform Total Number of vCPU": "128", "Platform CPU Name": "Xeon E7-8880 v3", "Instance Memory (in GB)": "244", "Platform Memory (in GB)": "3904", "Storage Info (Type and Size in GB)": "1 x 240 SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,52", "PkgWatt @ 10%": "12,91", "PkgWatt @ 50%": "26,56", "PkgWatt @ 100%": "36,35", "RAMWatt @ Idle": "48,80", "RAMWatt @ 10%": "73,20", "RAMWatt @ 50%": "97,60", "RAMWatt @ 100%": "146,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "7,5", "Instance @ Idle": "60,8", "Instance @ 10%": "93,6", "Instance @ 50%": "131,7", "Instance @ 100%": "190,3", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E7-8880 v3 Processor (Haswell)"}, {"Instance type": "x1e.4xlarge", "Release Date": "November 2017", "Instance vCPU": "16", "Platform Total Number of vCPU": "128", "Platform CPU Name": "Xeon E7-8880 v3", "Instance Memory (in GB)": "488", "Platform Memory (in GB)": "3904", "Storage Info (Type and Size in GB)": "1 x 480 SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "9,05", "PkgWatt @ 10%": "25,83", "PkgWatt @ 50%": "53,12", "PkgWatt @ 100%": "72,71", "RAMWatt @ Idle": "97,60", "RAMWatt @ 10%": "146,40", "RAMWatt @ 50%": "195,20", "RAMWatt @ 100%": "292,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "15,0", "Instance @ Idle": "121,6", "Instance @ 10%": "187,2", "Instance @ 50%": "263,3", "Instance @ 100%": "380,5", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E7-8880 v3 Processor (Haswell)"}, {"Instance type": "x1e.8xlarge", "Release Date": "November 2017", "Instance vCPU": "32", "Platform Total Number of vCPU": "128", "Platform CPU Name": "Xeon E7-8880 v3", "Instance Memory (in GB)": "976", "Platform Memory (in GB)": "3904", "Storage Info (Type and Size in GB)": "1 x 960 SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "18,09", "PkgWatt @ 10%": "51,65", "PkgWatt @ 50%": "106,24", "PkgWatt @ 100%": "145,41", "RAMWatt @ Idle": "195,20", "RAMWatt @ 10%": "292,80", "RAMWatt @ 50%": "390,40", "RAMWatt @ 100%": "585,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "30,0", "Instance @ Idle": "243,3", "Instance @ 10%": "374,5", "Instance @ 50%": "526,6", "Instance @ 100%": "761,0", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E7-8880 v3 Processor (Haswell)"}, {"Instance type": "x1e.16xlarge", "Release Date": "November 2017", "Instance vCPU": "64", "Platform Total Number of vCPU": "128", "Platform CPU Name": "Xeon E7-8880 v3", "Instance Memory (in GB)": "1952", "Platform Memory (in GB)": "3904", "Storage Info (Type and Size in GB)": "1 x 1.920 SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "36,19", "PkgWatt @ 10%": "103,30", "PkgWatt @ 50%": "212,47", "PkgWatt @ 100%": "290,83", "RAMWatt @ Idle": "390,40", "RAMWatt @ 10%": "585,60", "RAMWatt @ 50%": "780,80", "RAMWatt @ 100%": "1171,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "60,0", "Instance @ Idle": "486,6", "Instance @ 10%": "748,9", "Instance @ 50%": "1053,3", "Instance @ 100%": "1522,0", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E7-8880 v3 Processor (Haswell)"}, {"Instance type": "x1e.32xlarge", "Release Date": "September 2017", "Instance vCPU": "128", "Platform Total Number of vCPU": "128", "Platform CPU Name": "Xeon E7-8880 v3", "Instance Memory (in GB)": "3904", "Platform Memory (in GB)": "3904", "Storage Info (Type and Size in GB)": "2 x 1.920 SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "72,37", "PkgWatt @ 10%": "206,61", "PkgWatt @ 50%": "424,94", "PkgWatt @ 100%": "581,65", "RAMWatt @ Idle": "780,80", "RAMWatt @ 10%": "1171,20", "RAMWatt @ 50%": "1561,60", "RAMWatt @ 100%": "2342,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "120,0", "Instance @ Idle": "973,2", "Instance @ 10%": "1497,8", "Instance @ 50%": "2106,5", "Instance @ 100%": "3044,1", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E7-8880 v3 Processor (Haswell)"}, {"Instance type": "x2gd.medium", "Release Date": "March 2021", "Instance vCPU": "1", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "1024", "Storage Info (Type and Size in GB)": "1x59 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,27", "PkgWatt @ 10%": "0,75", "PkgWatt @ 50%": "1,76", "PkgWatt @ 100%": "2,39", "RAMWatt @ Idle": "3,20", "RAMWatt @ 10%": "4,80", "RAMWatt @ 50%": "6,40", "RAMWatt @ 100%": "9,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "0,5", "Instance @ Idle": "3,9", "Instance @ 10%": "6,0", "Instance @ 50%": "8,6", "Instance @ 100%": "12,5", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "x2gd.large", "Release Date": "March 2021", "Instance vCPU": "2", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "1024", "Storage Info (Type and Size in GB)": "1x118 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,54", "PkgWatt @ 10%": "1,49", "PkgWatt @ 50%": "3,53", "PkgWatt @ 100%": "4,77", "RAMWatt @ Idle": "6,40", "RAMWatt @ 10%": "9,60", "RAMWatt @ 50%": "12,80", "RAMWatt @ 100%": "19,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "0,9", "Instance @ Idle": "7,9", "Instance @ 10%": "12,0", "Instance @ 50%": "17,3", "Instance @ 100%": "24,9", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "x2gd.xlarge", "Release Date": "March 2021", "Instance vCPU": "4", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "1024", "Storage Info (Type and Size in GB)": "1x237 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,09", "PkgWatt @ 10%": "2,98", "PkgWatt @ 50%": "7,05", "PkgWatt @ 100%": "9,55", "RAMWatt @ Idle": "12,80", "RAMWatt @ 10%": "19,20", "RAMWatt @ 50%": "25,60", "RAMWatt @ 100%": "38,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,9", "Instance @ Idle": "15,8", "Instance @ 10%": "24,1", "Instance @ 50%": "34,5", "Instance @ 100%": "49,8", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "x2gd.2xlarge", "Release Date": "March 2021", "Instance vCPU": "8", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "1024", "Storage Info (Type and Size in GB)": "1x475 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,18", "PkgWatt @ 10%": "5,97", "PkgWatt @ 50%": "14,10", "PkgWatt @ 100%": "19,10", "RAMWatt @ Idle": "25,60", "RAMWatt @ 10%": "38,40", "RAMWatt @ 50%": "51,20", "RAMWatt @ 100%": "76,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,8", "Instance @ Idle": "31,5", "Instance @ 10%": "48,1", "Instance @ 50%": "69,1", "Instance @ 100%": "99,6", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "x2gd.4xlarge", "Release Date": "March 2021", "Instance vCPU": "16", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "256", "Platform Memory (in GB)": "1024", "Storage Info (Type and Size in GB)": "1x950 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,35", "PkgWatt @ 10%": "11,93", "PkgWatt @ 50%": "28,21", "PkgWatt @ 100%": "38,20", "RAMWatt @ Idle": "51,20", "RAMWatt @ 10%": "76,80", "RAMWatt @ 50%": "102,40", "RAMWatt @ 100%": "153,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "7,5", "Instance @ Idle": "63,1", "Instance @ 10%": "96,2", "Instance @ 50%": "138,1", "Instance @ 100%": "199,3", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "x2gd.8xlarge", "Release Date": "March 2021", "Instance vCPU": "32", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "512", "Platform Memory (in GB)": "1024", "Storage Info (Type and Size in GB)": "1x1900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "8,71", "PkgWatt @ 10%": "23,87", "PkgWatt @ 50%": "56,42", "PkgWatt @ 100%": "76,39", "RAMWatt @ Idle": "102,40", "RAMWatt @ 10%": "153,60", "RAMWatt @ 50%": "204,80", "RAMWatt @ 100%": "307,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "15,0", "Instance @ Idle": "126,1", "Instance @ 10%": "192,5", "Instance @ 50%": "276,2", "Instance @ 100%": "398,6", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "x2gd.12xlarge", "Release Date": "March 2021", "Instance vCPU": "48", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "768", "Platform Memory (in GB)": "1024", "Storage Info (Type and Size in GB)": "2x1425 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "13,06", "PkgWatt @ 10%": "35,80", "PkgWatt @ 50%": "84,63", "PkgWatt @ 100%": "114,59", "RAMWatt @ Idle": "153,60", "RAMWatt @ 10%": "230,40", "RAMWatt @ 50%": "307,20", "RAMWatt @ 100%": "460,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "22,5", "Instance @ Idle": "189,2", "Instance @ 10%": "288,7", "Instance @ 50%": "414,3", "Instance @ 100%": "597,9", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "x2gd.16xlarge", "Release Date": "March 2021", "Instance vCPU": "64", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "1024", "Platform Memory (in GB)": "1024", "Storage Info (Type and Size in GB)": "2x1900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "17,42", "PkgWatt @ 10%": "47,74", "PkgWatt @ 50%": "112,84", "PkgWatt @ 100%": "152,78", "RAMWatt @ Idle": "204,80", "RAMWatt @ 10%": "307,20", "RAMWatt @ 50%": "409,60", "RAMWatt @ 100%": "614,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "30,0", "Instance @ Idle": "252,2", "Instance @ 10%": "384,9", "Instance @ 50%": "552,4", "Instance @ 100%": "797,2", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "x2gd.metal", "Release Date": "March 2021", "Instance vCPU": "64", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "1024", "Platform Memory (in GB)": "1024", "Storage Info (Type and Size in GB)": "2x1900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "17,42", "PkgWatt @ 10%": "47,74", "PkgWatt @ 50%": "112,84", "PkgWatt @ 100%": "152,78", "RAMWatt @ Idle": "204,80", "RAMWatt @ 10%": "307,20", "RAMWatt @ 50%": "409,60", "RAMWatt @ 100%": "614,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "30,0", "Instance @ Idle": "252,2", "Instance @ 10%": "384,9", "Instance @ 50%": "552,4", "Instance @ 100%": "797,2", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "z1d.large", "Release Date": "July 2018", "Instance vCPU": "2", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon Platinum 8151", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "1 x 75 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,00", "PkgWatt @ 10%": "6,17", "PkgWatt @ 50%": "15,04", "PkgWatt @ 100%": "18,38", "RAMWatt @ Idle": "2,08", "RAMWatt @ 10%": "3,83", "RAMWatt @ 50%": "7,25", "RAMWatt @ 100%": "10,67", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "4,0", "Instance @ Idle": "8,1", "Instance @ 10%": "14,0", "Instance @ 50%": "26,3", "Instance @ 100%": "33,0", "Hardware Information on AWS Documentation & Comments": "Up to 4.0 GHz Intel Xeon Scalable Processors"}, {"Instance type": "z1d.xlarge", "Release Date": "July 2018", "Instance vCPU": "4", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon Platinum 8151", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "1 x 150 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,00", "PkgWatt @ 10%": "12,33", "PkgWatt @ 50%": "30,08", "PkgWatt @ 100%": "36,75", "RAMWatt @ Idle": "4,17", "RAMWatt @ 10%": "7,67", "RAMWatt @ 50%": "14,50", "RAMWatt @ 100%": "21,33", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "8,0", "Instance @ Idle": "16,2", "Instance @ 10%": "28,0", "Instance @ 50%": "52,6", "Instance @ 100%": "66,1", "Hardware Information on AWS Documentation & Comments": "Up to 4.0 GHz Intel Xeon Scalable Processors"}, {"Instance type": "z1d.2xlarge", "Release Date": "July 2018", "Instance vCPU": "8", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon Platinum 8151", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "1 x 300 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "8,00", "PkgWatt @ 10%": "24,67", "PkgWatt @ 50%": "60,17", "PkgWatt @ 100%": "73,50", "RAMWatt @ Idle": "8,33", "RAMWatt @ 10%": "15,33", "RAMWatt @ 50%": "29,00", "RAMWatt @ 100%": "42,67", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "16,0", "Instance @ Idle": "32,3", "Instance @ 10%": "56,0", "Instance @ 50%": "105,2", "Instance @ 100%": "132,2", "Hardware Information on AWS Documentation & Comments": "Up to 4.0 GHz Intel Xeon Scalable Processors"}, {"Instance type": "z1d.3xlarge", "Release Date": "July 2018", "Instance vCPU": "12", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon Platinum 8151", "Instance Memory (in GB)": "96", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "1 x 450 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "12,00", "PkgWatt @ 10%": "37,00", "PkgWatt @ 50%": "90,25", "PkgWatt @ 100%": "110,25", "RAMWatt @ Idle": "12,50", "RAMWatt @ 10%": "23,00", "RAMWatt @ 50%": "43,50", "RAMWatt @ 100%": "64,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "24,0", "Instance @ Idle": "48,5", "Instance @ 10%": "84,0", "Instance @ 50%": "157,8", "Instance @ 100%": "198,3", "Hardware Information on AWS Documentation & Comments": "Up to 4.0 GHz Intel Xeon Scalable Processors"}, {"Instance type": "z1d.6xlarge", "Release Date": "July 2018", "Instance vCPU": "24", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon Platinum 8151", "Instance Memory (in GB)": "192", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "1 x 900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "24,00", "PkgWatt @ 10%": "74,00", "PkgWatt @ 50%": "180,50", "PkgWatt @ 100%": "220,50", "RAMWatt @ Idle": "25,00", "RAMWatt @ 10%": "46,00", "RAMWatt @ 50%": "87,00", "RAMWatt @ 100%": "128,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "48,0", "Instance @ Idle": "97,0", "Instance @ 10%": "168,0", "Instance @ 50%": "315,5", "Instance @ 100%": "396,5", "Hardware Information on AWS Documentation & Comments": "Up to 4.0 GHz Intel Xeon Scalable Processors"}, {"Instance type": "z1d.12xlarge", "Release Date": "July 2018", "Instance vCPU": "48", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon Platinum 8151", "Instance Memory (in GB)": "384", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "2 x 900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "48,00", "PkgWatt @ 10%": "148,00", "PkgWatt @ 50%": "361,00", "PkgWatt @ 100%": "441,00", "RAMWatt @ Idle": "50,00", "RAMWatt @ 10%": "92,00", "RAMWatt @ 50%": "174,00", "RAMWatt @ 100%": "256,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "96,0", "Instance @ Idle": "194,0", "Instance @ 10%": "336,0", "Instance @ 50%": "631,0", "Instance @ 100%": "793,0", "Hardware Information on AWS Documentation & Comments": "Up to 4.0 GHz Intel Xeon Scalable Processors"}, {"Instance type": "z1d.metal", "Release Date": "July 2018", "Instance vCPU": "48", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon Platinum 8151", "Instance Memory (in GB)": "384", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "2 x 900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "48,00", "PkgWatt @ 10%": "148,00", "PkgWatt @ 50%": "361,00", "PkgWatt @ 100%": "441,00", "RAMWatt @ Idle": "50,00", "RAMWatt @ 10%": "92,00", "RAMWatt @ 50%": "174,00", "RAMWatt @ 100%": "256,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "96,0", "Instance @ Idle": "194,0", "Instance @ 10%": "336,0", "Instance @ 50%": "631,0", "Instance @ 100%": "793,0", "Hardware Information on AWS Documentation & Comments": "Up to 4.0 GHz Intel Xeon Scalable Processors"}, {"Instance type": "cache.t2.micro", "Release Date": "July 2014", "Instance vCPU": "1", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon E5-2676 v3", "Instance Memory (in GB)": "555", "Platform Memory (in GB)": "288", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,60", "PkgWatt @ 10%": "1,72", "PkgWatt @ 50%": "3,54", "PkgWatt @ 100%": "4,85", "RAMWatt @ Idle": "0,11", "RAMWatt @ 10%": "0,17", "RAMWatt @ 50%": "0,22", "RAMWatt @ 100%": "0,33", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,0", "Instance @ Idle": "1,7", "Instance @ 10%": "2,9", "Instance @ 50%": "4,8", "Instance @ 100%": "6,2", "Hardware Information on AWS Documentation & Comments": "3.3 GHz Intel Scalable Processor"}, {"Instance type": "cache.t2.small", "Release Date": "July 2014", "Instance vCPU": "1", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon E5-2676 v3", "Instance Memory (in GB)": "1.55", "Platform Memory (in GB)": "288", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,60", "PkgWatt @ 10%": "1,72", "PkgWatt @ 50%": "3,54", "PkgWatt @ 100%": "4,85", "RAMWatt @ Idle": "0,31", "RAMWatt @ 10%": "0,47", "RAMWatt @ 50%": "0,62", "RAMWatt @ 100%": "0,93", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,0", "Instance @ Idle": "1,9", "Instance @ 10%": "3,2", "Instance @ 50%": "5,2", "Instance @ 100%": "6,8", "Hardware Information on AWS Documentation & Comments": "3.3 GHz Intel Scalable Processor"}, {"Instance type": "cache.t2.medium", "Release Date": "July 2014", "Instance vCPU": "2", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon E5-2676 v3", "Instance Memory (in GB)": "3.22", "Platform Memory (in GB)": "288", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,21", "PkgWatt @ 10%": "3,44", "PkgWatt @ 50%": "7,08", "PkgWatt @ 100%": "9,69", "RAMWatt @ Idle": "0,64", "RAMWatt @ 10%": "0,97", "RAMWatt @ 50%": "1,29", "RAMWatt @ 100%": "1,93", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,0", "Instance @ Idle": "3,9", "Instance @ 10%": "6,4", "Instance @ 50%": "10,4", "Instance @ 100%": "13,6", "Hardware Information on AWS Documentation & Comments": "3.3 GHz Intel Scalable Processor"}, {"Instance type": "cache.t3.micro", "Release Date": "August 2018", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "0.5", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,21", "PkgWatt @ 10%": "3,05", "PkgWatt @ 50%": "7,16", "PkgWatt @ 100%": "9,96", "RAMWatt @ Idle": "0,08", "RAMWatt @ 10%": "0,12", "RAMWatt @ 50%": "0,31", "RAMWatt @ 100%": "0,50", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,0", "Instance @ Idle": "3,3", "Instance @ 10%": "5,2", "Instance @ 50%": "9,5", "Instance @ 100%": "12,5", "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor"}, {"Instance type": "cache.t3.small", "Release Date": "August 2018", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "1.37", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,21", "PkgWatt @ 10%": "3,05", "PkgWatt @ 50%": "7,16", "PkgWatt @ 100%": "9,96", "RAMWatt @ Idle": "0,21", "RAMWatt @ 10%": "0,33", "RAMWatt @ 50%": "0,85", "RAMWatt @ 100%": "1,37", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,0", "Instance @ Idle": "3,4", "Instance @ 10%": "5,4", "Instance @ 50%": "10,0", "Instance @ 100%": "13,3", "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor"}, {"Instance type": "cache.t3.medium", "Release Date": "August 2018", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "3.09", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,21", "PkgWatt @ 10%": "3,05", "PkgWatt @ 50%": "7,16", "PkgWatt @ 100%": "9,96", "RAMWatt @ Idle": "0,47", "RAMWatt @ 10%": "0,74", "RAMWatt @ 50%": "1,92", "RAMWatt @ 100%": "3,09", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,0", "Instance @ Idle": "3,7", "Instance @ 10%": "5,8", "Instance @ 50%": "11,1", "Instance @ 100%": "15,0", "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor"}, {"Instance type": "cache.m3.medium", "Release Date": "January 2014", "Instance vCPU": "1", "Platform Total Number of vCPU": "32", "Platform CPU Name": "Xeon E5-2670", "Instance Memory (in GB)": "3.75", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "1 x 4 (SSD)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "1", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,87", "PkgWatt @ 10%": "2,47", "PkgWatt @ 50%": "5,09", "PkgWatt @ 100%": "6,97", "RAMWatt @ Idle": "0,75", "RAMWatt @ 10%": "1,13", "RAMWatt @ 50%": "1,50", "RAMWatt @ 100%": "2,25", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,4", "Instance @ Idle": "3,1", "Instance @ 10%": "5,0", "Instance @ 50%": "8,0", "Instance @ 100%": "10,7", "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2670 (Sandy Bridge or Ivy Bridge) processors"}, {"Instance type": "cache.m4.large", "Release Date": "June 2015", "Instance vCPU": "2", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "6.42", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,97", "PkgWatt @ 10%": "2,77", "PkgWatt @ 50%": "5,71", "PkgWatt @ 100%": "7,81", "RAMWatt @ Idle": "1,28", "RAMWatt @ 10%": "1,93", "RAMWatt @ 50%": "2,57", "RAMWatt @ 100%": "3,85", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,6", "Instance @ Idle": "3,9", "Instance @ 10%": "6,3", "Instance @ 50%": "9,9", "Instance @ 100%": "13,3", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)"}, {"Instance type": "cache.m4.xlarge", "Release Date": "June 2015", "Instance vCPU": "4", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "14.28", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,94", "PkgWatt @ 10%": "5,55", "PkgWatt @ 50%": "11,41", "PkgWatt @ 100%": "15,62", "RAMWatt @ Idle": "2,86", "RAMWatt @ 10%": "4,28", "RAMWatt @ 50%": "5,71", "RAMWatt @ 100%": "8,57", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,2", "Instance @ Idle": "8,0", "Instance @ 10%": "13,1", "Instance @ 50%": "20,3", "Instance @ 100%": "27,4", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)"}, {"Instance type": "cache.m4.2xlarge", "Release Date": "June 2015", "Instance vCPU": "8", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "29.7", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "3,89", "PkgWatt @ 10%": "11,10", "PkgWatt @ 50%": "22,82", "PkgWatt @ 100%": "31,24", "RAMWatt @ Idle": "5,94", "RAMWatt @ 10%": "8,91", "RAMWatt @ 50%": "11,88", "RAMWatt @ 100%": "17,82", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "6,4", "Instance @ Idle": "16,3", "Instance @ 10%": "26,5", "Instance @ 50%": "41,1", "Instance @ 100%": "55,5", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)"}, {"Instance type": "cache.m4.4xlarge", "Release Date": "June 2015", "Instance vCPU": "16", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "60.78", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "7,77", "PkgWatt @ 10%": "22,19", "PkgWatt @ 50%": "45,64", "PkgWatt @ 100%": "62,47", "RAMWatt @ Idle": "12,16", "RAMWatt @ 10%": "18,23", "RAMWatt @ 50%": "24,31", "RAMWatt @ 100%": "36,47", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "12,9", "Instance @ Idle": "32,8", "Instance @ 10%": "53,3", "Instance @ 50%": "82,8", "Instance @ 100%": "111,8", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)"}, {"Instance type": "cache.m4.10xlarge", "Release Date": "June 2015", "Instance vCPU": "40", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon E5-2676 v3", "Instance Memory (in GB)": "154.64", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "24,12", "PkgWatt @ 10%": "68,87", "PkgWatt @ 50%": "141,65", "PkgWatt @ 100%": "193,88", "RAMWatt @ Idle": "30,93", "RAMWatt @ 10%": "46,39", "RAMWatt @ 50%": "61,86", "RAMWatt @ 100%": "92,78", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "40,0", "Instance @ Idle": "95,1", "Instance @ 10%": "155,3", "Instance @ 50%": "243,5", "Instance @ 100%": "326,7", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)"}, {"Instance type": "cache.m5.large", "Release Date": "November 2017", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "6.38", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,14", "PkgWatt @ 10%": "2,87", "PkgWatt @ 50%": "6,39", "PkgWatt @ 100%": "9,28", "RAMWatt @ Idle": "0,99", "RAMWatt @ 10%": "1,64", "RAMWatt @ 50%": "2,94", "RAMWatt @ 100%": "4,24", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,8", "Instance @ Idle": "3,9", "Instance @ 10%": "6,3", "Instance @ 50%": "11,1", "Instance @ 100%": "15,3", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "cache.m5.xlarge", "Release Date": "November 2017", "Instance vCPU": "4", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "12.93", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,28", "PkgWatt @ 10%": "5,75", "PkgWatt @ 50%": "12,79", "PkgWatt @ 100%": "18,56", "RAMWatt @ Idle": "2,01", "RAMWatt @ 10%": "3,33", "RAMWatt @ 50%": "5,96", "RAMWatt @ 100%": "8,58", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,5", "Instance @ Idle": "7,8", "Instance @ 10%": "12,6", "Instance @ 50%": "22,2", "Instance @ 100%": "30,6", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "cache.m5.2xlarge", "Release Date": "November 2017", "Instance vCPU": "8", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "26.04", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,56", "PkgWatt @ 10%": "11,49", "PkgWatt @ 50%": "25,58", "PkgWatt @ 100%": "37,12", "RAMWatt @ Idle": "4,05", "RAMWatt @ 10%": "6,70", "RAMWatt @ 50%": "12,00", "RAMWatt @ 100%": "17,29", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "7,0", "Instance @ Idle": "15,6", "Instance @ 10%": "25,2", "Instance @ 50%": "44,6", "Instance @ 100%": "61,4", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "cache.m5.4xlarge", "Release Date": "November 2017", "Instance vCPU": "16", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "52.26", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "9,12", "PkgWatt @ 10%": "22,99", "PkgWatt @ 50%": "51,16", "PkgWatt @ 100%": "74,23", "RAMWatt @ Idle": "8,13", "RAMWatt @ 10%": "13,45", "RAMWatt @ 50%": "24,07", "RAMWatt @ 100%": "34,70", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "14,0", "Instance @ Idle": "31,2", "Instance @ 10%": "50,4", "Instance @ 50%": "89,2", "Instance @ 100%": "122,9", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "cache.m5.12xlarge", "Release Date": "November 2017", "Instance vCPU": "48", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "157.12", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "27,36", "PkgWatt @ 10%": "68,96", "PkgWatt @ 50%": "153,47", "PkgWatt @ 100%": "222,69", "RAMWatt @ Idle": "24,43", "RAMWatt @ 10%": "40,44", "RAMWatt @ 50%": "72,38", "RAMWatt @ 100%": "104,32", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "42,0", "Instance @ Idle": "93,8", "Instance @ 10%": "151,4", "Instance @ 50%": "267,8", "Instance @ 100%": "369,0", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "cache.m5.24xlarge", "Release Date": "November 2017", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "314.32", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "54,71", "PkgWatt @ 10%": "137,92", "PkgWatt @ 50%": "306,93", "PkgWatt @ 100%": "445,38", "RAMWatt @ Idle": "48,88", "RAMWatt @ 10%": "80,90", "RAMWatt @ 50%": "144,79", "RAMWatt @ 100%": "208,69", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "84,0", "Instance @ Idle": "187,6", "Instance @ 10%": "302,8", "Instance @ 50%": "535,7", "Instance @ 100%": "738,1", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "cache.m6g.large", "Release Date": "December 2019", "Instance vCPU": "2", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,54", "PkgWatt @ 10%": "1,49", "PkgWatt @ 50%": "3,53", "PkgWatt @ 100%": "4,77", "RAMWatt @ Idle": "1,60", "RAMWatt @ 10%": "2,40", "RAMWatt @ 50%": "3,20", "RAMWatt @ 100%": "4,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "0,9", "Instance @ Idle": "3,1", "Instance @ 10%": "4,8", "Instance @ 50%": "7,7", "Instance @ 100%": "10,5", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "cache.m6g.xlarge", "Release Date": "December 2019", "Instance vCPU": "4", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,09", "PkgWatt @ 10%": "2,98", "PkgWatt @ 50%": "7,05", "PkgWatt @ 100%": "9,55", "RAMWatt @ Idle": "3,20", "RAMWatt @ 10%": "4,80", "RAMWatt @ 50%": "6,40", "RAMWatt @ 100%": "9,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,9", "Instance @ Idle": "6,2", "Instance @ 10%": "9,7", "Instance @ 50%": "15,3", "Instance @ 100%": "21,0", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "cache.m6g.2xlarge", "Release Date": "December 2019", "Instance vCPU": "8", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,18", "PkgWatt @ 10%": "5,97", "PkgWatt @ 50%": "14,10", "PkgWatt @ 100%": "19,10", "RAMWatt @ Idle": "6,40", "RAMWatt @ 10%": "9,60", "RAMWatt @ 50%": "12,80", "RAMWatt @ 100%": "19,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,8", "Instance @ Idle": "12,3", "Instance @ 10%": "19,3", "Instance @ 50%": "30,7", "Instance @ 100%": "42,0", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "cache.m6g.4xlarge", "Release Date": "December 2019", "Instance vCPU": "16", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,35", "PkgWatt @ 10%": "11,93", "PkgWatt @ 50%": "28,21", "PkgWatt @ 100%": "38,20", "RAMWatt @ Idle": "12,80", "RAMWatt @ 10%": "19,20", "RAMWatt @ 50%": "25,60", "RAMWatt @ 100%": "38,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "7,5", "Instance @ Idle": "24,7", "Instance @ 10%": "38,6", "Instance @ 50%": "61,3", "Instance @ 100%": "84,1", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "cache.m6g.8xlarge", "Release Date": "December 2019", "Instance vCPU": "32", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "8,71", "PkgWatt @ 10%": "23,87", "PkgWatt @ 50%": "56,42", "PkgWatt @ 100%": "76,39", "RAMWatt @ Idle": "25,60", "RAMWatt @ 10%": "38,40", "RAMWatt @ 50%": "51,20", "RAMWatt @ 100%": "76,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "15,0", "Instance @ Idle": "49,3", "Instance @ 10%": "77,3", "Instance @ 50%": "122,6", "Instance @ 100%": "168,2", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "cache.m6g.12xlarge", "Release Date": "December 2019", "Instance vCPU": "48", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "192", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "13,06", "PkgWatt @ 10%": "35,80", "PkgWatt @ 50%": "84,63", "PkgWatt @ 100%": "114,59", "RAMWatt @ Idle": "38,40", "RAMWatt @ 10%": "57,60", "RAMWatt @ 50%": "76,80", "RAMWatt @ 100%": "115,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "22,5", "Instance @ Idle": "74,0", "Instance @ 10%": "115,9", "Instance @ 50%": "183,9", "Instance @ 100%": "252,3", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "cache.m6g.16xlarge", "Release Date": "December 2019", "Instance vCPU": "64", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "256", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "17,42", "PkgWatt @ 10%": "47,74", "PkgWatt @ 50%": "112,84", "PkgWatt @ 100%": "152,78", "RAMWatt @ Idle": "51,20", "RAMWatt @ 10%": "76,80", "RAMWatt @ 50%": "102,40", "RAMWatt @ 100%": "153,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "30,0", "Instance @ Idle": "98,6", "Instance @ 10%": "154,5", "Instance @ 50%": "245,2", "Instance @ 100%": "336,4", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "cache.r3.2xlarge", "Release Date": "April 2014", "Instance vCPU": "8", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2670 v2", "Instance Memory (in GB)": "61", "Platform Memory (in GB)": "244", "Storage Info (Type and Size in GB)": "1 x 160 (SSD)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "1", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "5,55", "PkgWatt @ 10%": "15,84", "PkgWatt @ 50%": "32,58", "PkgWatt @ 100%": "44,59", "RAMWatt @ Idle": "12,20", "RAMWatt @ 10%": "18,30", "RAMWatt @ 50%": "24,40", "RAMWatt @ 100%": "36,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "9,2", "Instance @ Idle": "26,9", "Instance @ 10%": "43,3", "Instance @ 50%": "66,2", "Instance @ 100%": "90,4", "Hardware Information on AWS Documentation & Comments": "Intel Xeon Ivy Bridge Processors"}, {"Instance type": "cache.r4.large", "Release Date": "November 2016", "Instance vCPU": "2", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "12.3", "Platform Memory (in GB)": "488", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,97", "PkgWatt @ 10%": "2,77", "PkgWatt @ 50%": "5,71", "PkgWatt @ 100%": "7,81", "RAMWatt @ Idle": "2,46", "RAMWatt @ 10%": "3,69", "RAMWatt @ 50%": "4,92", "RAMWatt @ 100%": "7,38", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,6", "Instance @ Idle": "5,0", "Instance @ 10%": "8,1", "Instance @ 50%": "12,2", "Instance @ 100%": "16,8", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor"}, {"Instance type": "cache.r4.xlarge", "Release Date": "November 2016", "Instance vCPU": "4", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "25.05", "Platform Memory (in GB)": "488", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,94", "PkgWatt @ 10%": "5,55", "PkgWatt @ 50%": "11,41", "PkgWatt @ 100%": "15,62", "RAMWatt @ Idle": "5,01", "RAMWatt @ 10%": "7,52", "RAMWatt @ 50%": "10,02", "RAMWatt @ 100%": "15,03", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,2", "Instance @ Idle": "10,2", "Instance @ 10%": "16,3", "Instance @ 50%": "24,7", "Instance @ 100%": "33,9", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor"}, {"Instance type": "cache.r4.2xlarge", "Release Date": "November 2016", "Instance vCPU": "8", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "50.47", "Platform Memory (in GB)": "488", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "3,89", "PkgWatt @ 10%": "11,10", "PkgWatt @ 50%": "22,82", "PkgWatt @ 100%": "31,24", "RAMWatt @ Idle": "10,09", "RAMWatt @ 10%": "15,14", "RAMWatt @ 50%": "20,19", "RAMWatt @ 100%": "30,28", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "6,4", "Instance @ Idle": "20,4", "Instance @ 10%": "32,7", "Instance @ 50%": "49,5", "Instance @ 100%": "68,0", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor"}, {"Instance type": "cache.r4.4xlarge", "Release Date": "November 2016", "Instance vCPU": "16", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "101.38", "Platform Memory (in GB)": "488", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "7,77", "PkgWatt @ 10%": "22,19", "PkgWatt @ 50%": "45,64", "PkgWatt @ 100%": "62,47", "RAMWatt @ Idle": "20,28", "RAMWatt @ 10%": "30,41", "RAMWatt @ 50%": "40,55", "RAMWatt @ 100%": "60,83", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "12,9", "Instance @ Idle": "40,9", "Instance @ 10%": "65,5", "Instance @ 50%": "99,1", "Instance @ 100%": "136,2", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor"}, {"Instance type": "cache.r4.8xlarge", "Release Date": "November 2016", "Instance vCPU": "32", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "203.26", "Platform Memory (in GB)": "488", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "15,55", "PkgWatt @ 10%": "44,38", "PkgWatt @ 50%": "91,28", "PkgWatt @ 100%": "124,95", "RAMWatt @ Idle": "40,65", "RAMWatt @ 10%": "60,98", "RAMWatt @ 50%": "81,30", "RAMWatt @ 100%": "121,96", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "25,8", "Instance @ Idle": "82,0", "Instance @ 10%": "131,1", "Instance @ 50%": "198,4", "Instance @ 100%": "272,7", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor"}, {"Instance type": "cache.r4.16xlarge", "Release Date": "November 2016", "Instance vCPU": "64", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "407", "Platform Memory (in GB)": "488", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "31,09", "PkgWatt @ 10%": "88,76", "PkgWatt @ 50%": "182,57", "PkgWatt @ 100%": "249,90", "RAMWatt @ Idle": "81,40", "RAMWatt @ 10%": "122,10", "RAMWatt @ 50%": "162,80", "RAMWatt @ 100%": "244,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "51,6", "Instance @ Idle": "164,0", "Instance @ 10%": "262,4", "Instance @ 50%": "396,9", "Instance @ 100%": "545,7", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor"}, {"Instance type": "cache.r5.large", "Release Date": "July 2018", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "13.07", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,21", "PkgWatt @ 10%": "3,05", "PkgWatt @ 50%": "7,16", "PkgWatt @ 100%": "9,96", "RAMWatt @ Idle": "1,97", "RAMWatt @ 10%": "3,14", "RAMWatt @ 50%": "8,10", "RAMWatt @ 100%": "13,06", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,0", "Instance @ Idle": "5,2", "Instance @ 10%": "8,2", "Instance @ 50%": "17,3", "Instance @ 100%": "25,0", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "cache.r5.xlarge", "Release Date": "July 2018", "Instance vCPU": "4", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "26.32", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,41", "PkgWatt @ 10%": "6,11", "PkgWatt @ 50%": "14,32", "PkgWatt @ 100%": "19,92", "RAMWatt @ Idle": "3,96", "RAMWatt @ 10%": "6,33", "RAMWatt @ 50%": "16,32", "RAMWatt @ 100%": "26,31", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "4,0", "Instance @ Idle": "10,4", "Instance @ 10%": "16,4", "Instance @ 50%": "34,6", "Instance @ 100%": "50,2", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "cache.r5.2xlarge", "Release Date": "July 2018", "Instance vCPU": "8", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "52.82", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,82", "PkgWatt @ 10%": "12,22", "PkgWatt @ 50%": "28,64", "PkgWatt @ 100%": "39,83", "RAMWatt @ Idle": "7,95", "RAMWatt @ 10%": "12,71", "RAMWatt @ 50%": "32,75", "RAMWatt @ 100%": "52,79", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "8,0", "Instance @ Idle": "20,8", "Instance @ 10%": "32,9", "Instance @ 50%": "69,4", "Instance @ 100%": "100,6", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "cache.r5.4xlarge", "Release Date": "July 2018", "Instance vCPU": "16", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "105.81", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "9,65", "PkgWatt @ 10%": "24,44", "PkgWatt @ 50%": "57,28", "PkgWatt @ 100%": "79,66", "RAMWatt @ Idle": "15,93", "RAMWatt @ 10%": "25,46", "RAMWatt @ 50%": "65,61", "RAMWatt @ 100%": "105,76", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "16,0", "Instance @ Idle": "41,6", "Instance @ 10%": "65,9", "Instance @ 50%": "138,9", "Instance @ 100%": "201,4", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "cache.r5.12xlarge", "Release Date": "July 2018", "Instance vCPU": "48", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "317.77", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "28,94", "PkgWatt @ 10%": "73,32", "PkgWatt @ 50%": "171,85", "PkgWatt @ 100%": "238,99", "RAMWatt @ Idle": "47,84", "RAMWatt @ 10%": "76,46", "RAMWatt @ 50%": "197,03", "RAMWatt @ 100%": "317,61", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "48,0", "Instance @ Idle": "124,8", "Instance @ 10%": "197,8", "Instance @ 50%": "416,9", "Instance @ 100%": "604,6", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "cache.r5.24xlarge", "Release Date": "July 2018", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "635.61", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "57,88", "PkgWatt @ 10%": "146,63", "PkgWatt @ 50%": "343,70", "PkgWatt @ 100%": "477,98", "RAMWatt @ Idle": "95,69", "RAMWatt @ 10%": "152,93", "RAMWatt @ 50%": "394,11", "RAMWatt @ 100%": "635,30", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "96,0", "Instance @ Idle": "249,6", "Instance @ 10%": "395,6", "Instance @ 50%": "833,8", "Instance @ 100%": "1209,3", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "cache.r6g.large", "Release Date": "December 2019", "Instance vCPU": "2", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,54", "PkgWatt @ 10%": "1,49", "PkgWatt @ 50%": "3,53", "PkgWatt @ 100%": "4,77", "RAMWatt @ Idle": "3,20", "RAMWatt @ 10%": "4,80", "RAMWatt @ 50%": "6,40", "RAMWatt @ 100%": "9,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "0,9", "Instance @ Idle": "4,7", "Instance @ 10%": "7,2", "Instance @ 50%": "10,9", "Instance @ 100%": "15,3", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "cache.r6g.xlarge", "Release Date": "December 2019", "Instance vCPU": "4", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,09", "PkgWatt @ 10%": "2,98", "PkgWatt @ 50%": "7,05", "PkgWatt @ 100%": "9,55", "RAMWatt @ Idle": "6,40", "RAMWatt @ 10%": "9,60", "RAMWatt @ 50%": "12,80", "RAMWatt @ 100%": "19,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,9", "Instance @ Idle": "9,4", "Instance @ 10%": "14,5", "Instance @ 50%": "21,7", "Instance @ 100%": "30,6", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "cache.r6g.2xlarge", "Release Date": "December 2019", "Instance vCPU": "8", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,18", "PkgWatt @ 10%": "5,97", "PkgWatt @ 50%": "14,10", "PkgWatt @ 100%": "19,10", "RAMWatt @ Idle": "12,80", "RAMWatt @ 10%": "19,20", "RAMWatt @ 50%": "25,60", "RAMWatt @ 100%": "38,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,8", "Instance @ Idle": "18,7", "Instance @ 10%": "28,9", "Instance @ 50%": "43,5", "Instance @ 100%": "61,2", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "cache.r6g.4xlarge", "Release Date": "December 2019", "Instance vCPU": "16", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,35", "PkgWatt @ 10%": "11,93", "PkgWatt @ 50%": "28,21", "PkgWatt @ 100%": "38,20", "RAMWatt @ Idle": "25,60", "RAMWatt @ 10%": "38,40", "RAMWatt @ 50%": "51,20", "RAMWatt @ 100%": "76,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "7,5", "Instance @ Idle": "37,5", "Instance @ 10%": "57,8", "Instance @ 50%": "86,9", "Instance @ 100%": "122,5", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "cache.r6g.8xlarge", "Release Date": "December 2019", "Instance vCPU": "32", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "256", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "8,71", "PkgWatt @ 10%": "23,87", "PkgWatt @ 50%": "56,42", "PkgWatt @ 100%": "76,39", "RAMWatt @ Idle": "51,20", "RAMWatt @ 10%": "76,80", "RAMWatt @ 50%": "102,40", "RAMWatt @ 100%": "153,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "15,0", "Instance @ Idle": "74,9", "Instance @ 10%": "115,7", "Instance @ 50%": "173,8", "Instance @ 100%": "245,0", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "cache.r6g.12xlarge", "Release Date": "December 2019", "Instance vCPU": "48", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "384", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "13,06", "PkgWatt @ 10%": "35,80", "PkgWatt @ 50%": "84,63", "PkgWatt @ 100%": "114,59", "RAMWatt @ Idle": "76,80", "RAMWatt @ 10%": "115,20", "RAMWatt @ 50%": "153,60", "RAMWatt @ 100%": "230,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "22,5", "Instance @ Idle": "112,4", "Instance @ 10%": "173,5", "Instance @ 50%": "260,7", "Instance @ 100%": "367,5", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "cache.r6g.16xlarge", "Release Date": "December 2019", "Instance vCPU": "64", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "512", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "17,42", "PkgWatt @ 10%": "47,74", "PkgWatt @ 50%": "112,84", "PkgWatt @ 100%": "152,78", "RAMWatt @ Idle": "102,40", "RAMWatt @ 10%": "153,60", "RAMWatt @ 50%": "204,80", "RAMWatt @ 100%": "307,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "30,0", "Instance @ Idle": "149,8", "Instance @ 10%": "231,3", "Instance @ 50%": "347,6", "Instance @ 100%": "490,0", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "t3.small.elasticsearch", "Release Date": "August 2018", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "2", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,21", "PkgWatt @ 10%": "3,05", "PkgWatt @ 50%": "7,16", "PkgWatt @ 100%": "9,96", "RAMWatt @ Idle": "0,30", "RAMWatt @ 10%": "0,48", "RAMWatt @ 50%": "1,24", "RAMWatt @ 100%": "2,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,0", "Instance @ Idle": "3,5", "Instance @ 10%": "5,5", "Instance @ 50%": "10,4", "Instance @ 100%": "14,0", "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor"}, {"Instance type": "t3.medium.elasticsearch", "Release Date": "August 2018", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "4", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,21", "PkgWatt @ 10%": "3,05", "PkgWatt @ 50%": "7,16", "PkgWatt @ 100%": "9,96", "RAMWatt @ Idle": "0,60", "RAMWatt @ 10%": "0,96", "RAMWatt @ 50%": "2,48", "RAMWatt @ 100%": "4,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,0", "Instance @ Idle": "3,8", "Instance @ 10%": "6,0", "Instance @ 50%": "11,6", "Instance @ 100%": "16,0", "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor"}, {"Instance type": "t2.micro.elasticsearch", "Release Date": "July 2014", "Instance vCPU": "1", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon E5-2676 v3", "Instance Memory (in GB)": "1", "Platform Memory (in GB)": "288", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,60", "PkgWatt @ 10%": "1,72", "PkgWatt @ 50%": "3,54", "PkgWatt @ 100%": "4,85", "RAMWatt @ Idle": "0,20", "RAMWatt @ 10%": "0,30", "RAMWatt @ 50%": "0,40", "RAMWatt @ 100%": "0,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,0", "Instance @ Idle": "1,8", "Instance @ 10%": "3,0", "Instance @ 50%": "4,9", "Instance @ 100%": "6,4", "Hardware Information on AWS Documentation & Comments": "3.3 GHz Intel Scalable Processor"}, {"Instance type": "t2.small.elasticsearch", "Release Date": "July 2014", "Instance vCPU": "1", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon E5-2676 v3", "Instance Memory (in GB)": "2", "Platform Memory (in GB)": "288", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,60", "PkgWatt @ 10%": "1,72", "PkgWatt @ 50%": "3,54", "PkgWatt @ 100%": "4,85", "RAMWatt @ Idle": "0,40", "RAMWatt @ 10%": "0,60", "RAMWatt @ 50%": "0,80", "RAMWatt @ 100%": "1,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,0", "Instance @ Idle": "2,0", "Instance @ 10%": "3,3", "Instance @ 50%": "5,3", "Instance @ 100%": "7,0", "Hardware Information on AWS Documentation & Comments": "3.3 GHz Intel Scalable Processor"}, {"Instance type": "t2.medium.elasticsearch", "Release Date": "July 2014", "Instance vCPU": "2", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon E5-2676 v3", "Instance Memory (in GB)": "4", "Platform Memory (in GB)": "288", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,21", "PkgWatt @ 10%": "3,44", "PkgWatt @ 50%": "7,08", "PkgWatt @ 100%": "9,69", "RAMWatt @ Idle": "0,80", "RAMWatt @ 10%": "1,20", "RAMWatt @ 50%": "1,60", "RAMWatt @ 100%": "2,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,0", "Instance @ Idle": "4,0", "Instance @ 10%": "6,6", "Instance @ 50%": "10,7", "Instance @ 100%": "14,1", "Hardware Information on AWS Documentation & Comments": "3.3 GHz Intel Scalable Processor"}, {"Instance type": "m5.large.elasticsearch", "Release Date": "November 2017", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,14", "PkgWatt @ 10%": "2,87", "PkgWatt @ 50%": "6,39", "PkgWatt @ 100%": "9,28", "RAMWatt @ Idle": "1,24", "RAMWatt @ 10%": "2,06", "RAMWatt @ 50%": "3,69", "RAMWatt @ 100%": "5,31", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,8", "Instance @ Idle": "4,1", "Instance @ 10%": "6,7", "Instance @ 50%": "11,8", "Instance @ 100%": "16,3", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "m5.xlarge.elasticsearch", "Release Date": "November 2017", "Instance vCPU": "4", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,28", "PkgWatt @ 10%": "5,75", "PkgWatt @ 50%": "12,79", "PkgWatt @ 100%": "18,56", "RAMWatt @ Idle": "2,49", "RAMWatt @ 10%": "4,12", "RAMWatt @ 50%": "7,37", "RAMWatt @ 100%": "10,62", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,5", "Instance @ Idle": "8,3", "Instance @ 10%": "13,4", "Instance @ 50%": "23,7", "Instance @ 100%": "32,7", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "m5.2xlarge.elasticsearch", "Release Date": "November 2017", "Instance vCPU": "8", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,56", "PkgWatt @ 10%": "11,49", "PkgWatt @ 50%": "25,58", "PkgWatt @ 100%": "37,12", "RAMWatt @ Idle": "4,98", "RAMWatt @ 10%": "8,24", "RAMWatt @ 50%": "14,74", "RAMWatt @ 100%": "21,25", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "7,0", "Instance @ Idle": "16,5", "Instance @ 10%": "26,7", "Instance @ 50%": "47,3", "Instance @ 100%": "65,4", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "m5.4xlarge.elasticsearch", "Release Date": "November 2017", "Instance vCPU": "16", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "9,12", "PkgWatt @ 10%": "22,99", "PkgWatt @ 50%": "51,16", "PkgWatt @ 100%": "74,23", "RAMWatt @ Idle": "9,95", "RAMWatt @ 10%": "16,47", "RAMWatt @ 50%": "29,48", "RAMWatt @ 100%": "42,49", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "14,0", "Instance @ Idle": "33,1", "Instance @ 10%": "53,5", "Instance @ 50%": "94,6", "Instance @ 100%": "130,7", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "m5.12xlarge.elasticsearch", "Release Date": "November 2017", "Instance vCPU": "48", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "192", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "27,36", "PkgWatt @ 10%": "68,96", "PkgWatt @ 50%": "153,47", "PkgWatt @ 100%": "222,69", "RAMWatt @ Idle": "29,86", "RAMWatt @ 10%": "49,42", "RAMWatt @ 50%": "88,45", "RAMWatt @ 100%": "127,48", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "42,0", "Instance @ Idle": "99,2", "Instance @ 10%": "160,4", "Instance @ 50%": "283,9", "Instance @ 100%": "392,2", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "m4.large.elasticsearch", "Release Date": "June 2015", "Instance vCPU": "2", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,97", "PkgWatt @ 10%": "2,77", "PkgWatt @ 50%": "5,71", "PkgWatt @ 100%": "7,81", "RAMWatt @ Idle": "1,60", "RAMWatt @ 10%": "2,40", "RAMWatt @ 50%": "3,20", "RAMWatt @ 100%": "4,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,6", "Instance @ Idle": "4,2", "Instance @ 10%": "6,8", "Instance @ 50%": "10,5", "Instance @ 100%": "14,2", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)"}, {"Instance type": "m4.xlarge.elasticsearch", "Release Date": "June 2015", "Instance vCPU": "4", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,94", "PkgWatt @ 10%": "5,55", "PkgWatt @ 50%": "11,41", "PkgWatt @ 100%": "15,62", "RAMWatt @ Idle": "3,20", "RAMWatt @ 10%": "4,80", "RAMWatt @ 50%": "6,40", "RAMWatt @ 100%": "9,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,2", "Instance @ Idle": "8,4", "Instance @ 10%": "13,6", "Instance @ 50%": "21,0", "Instance @ 100%": "28,4", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)"}, {"Instance type": "m4.2xlarge.elasticsearch", "Release Date": "June 2015", "Instance vCPU": "8", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "3,89", "PkgWatt @ 10%": "11,10", "PkgWatt @ 50%": "22,82", "PkgWatt @ 100%": "31,24", "RAMWatt @ Idle": "6,40", "RAMWatt @ 10%": "9,60", "RAMWatt @ 50%": "12,80", "RAMWatt @ 100%": "19,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "6,4", "Instance @ Idle": "16,7", "Instance @ 10%": "27,1", "Instance @ 50%": "42,1", "Instance @ 100%": "56,9", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)"}, {"Instance type": "m4.4xlarge.elasticsearch", "Release Date": "June 2015", "Instance vCPU": "16", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "7,77", "PkgWatt @ 10%": "22,19", "PkgWatt @ 50%": "45,64", "PkgWatt @ 100%": "62,47", "RAMWatt @ Idle": "12,80", "RAMWatt @ 10%": "19,20", "RAMWatt @ 50%": "25,60", "RAMWatt @ 100%": "38,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "12,9", "Instance @ Idle": "33,5", "Instance @ 10%": "54,3", "Instance @ 50%": "84,1", "Instance @ 100%": "113,8", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)"}, {"Instance type": "m4.10xlarge.elasticsearch", "Release Date": "June 2015", "Instance vCPU": "40", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon E5-2676 v3", "Instance Memory (in GB)": "160", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "24,12", "PkgWatt @ 10%": "68,87", "PkgWatt @ 50%": "141,65", "PkgWatt @ 100%": "193,88", "RAMWatt @ Idle": "32,00", "RAMWatt @ 10%": "48,00", "RAMWatt @ 50%": "64,00", "RAMWatt @ 100%": "96,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "40,0", "Instance @ Idle": "96,1", "Instance @ 10%": "156,9", "Instance @ 50%": "245,6", "Instance @ 100%": "329,9", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)"}, {"Instance type": "m3.medium.elasticsearch", "Release Date": "January 2014", "Instance vCPU": "1", "Platform Total Number of vCPU": "32", "Platform CPU Name": "Xeon E5-2670", "Instance Memory (in GB)": "3.75", "Platform Memory (in GB)": "240", "Storage Info (Type and Size in GB)": "1 x 4 (SSD)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,87", "PkgWatt @ 10%": "2,47", "PkgWatt @ 50%": "5,09", "PkgWatt @ 100%": "6,97", "RAMWatt @ Idle": "0,75", "RAMWatt @ 10%": "1,13", "RAMWatt @ 50%": "1,50", "RAMWatt @ 100%": "2,25", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,4", "Instance @ Idle": "3,1", "Instance @ 10%": "5,0", "Instance @ 50%": "8,0", "Instance @ 100%": "10,7", "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2670 (Sandy Bridge or Ivy Bridge) processors"}, {"Instance type": "m3.large.elasticsearch", "Release Date": "January 2014", "Instance vCPU": "2", "Platform Total Number of vCPU": "32", "Platform CPU Name": "Xeon E5-2670", "Instance Memory (in GB)": "7.5", "Platform Memory (in GB)": "240", "Storage Info (Type and Size in GB)": "1 x 32 (SSD)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,73", "PkgWatt @ 10%": "4,95", "PkgWatt @ 50%": "10,18", "PkgWatt @ 100%": "13,94", "RAMWatt @ Idle": "1,50", "RAMWatt @ 10%": "2,25", "RAMWatt @ 50%": "3,00", "RAMWatt @ 100%": "4,50", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,9", "Instance @ Idle": "6,1", "Instance @ 10%": "10,1", "Instance @ 50%": "16,1", "Instance @ 100%": "21,3", "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2670 (Sandy Bridge or Ivy Bridge) processors"}, {"Instance type": "m3.xlarge.elasticsearch", "Release Date": "October 2012", "Instance vCPU": "4", "Platform Total Number of vCPU": "32", "Platform CPU Name": "Xeon E5-2670", "Instance Memory (in GB)": "15", "Platform Memory (in GB)": "240", "Storage Info (Type and Size in GB)": "2 x 40 (SSD)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "3,47", "PkgWatt @ 10%": "9,90", "PkgWatt @ 50%": "20,36", "PkgWatt @ 100%": "27,87", "RAMWatt @ Idle": "3,00", "RAMWatt @ 10%": "4,50", "RAMWatt @ 50%": "6,00", "RAMWatt @ 100%": "9,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "5,8", "Instance @ Idle": "12,2", "Instance @ 10%": "20,1", "Instance @ 50%": "32,1", "Instance @ 100%": "42,6", "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2670 (Sandy Bridge or Ivy Bridge) processors"}, {"Instance type": "m3.2xlarge.elasticsearch", "Release Date": "October 2012", "Instance vCPU": "8", "Platform Total Number of vCPU": "32", "Platform CPU Name": "Xeon E5-2670", "Instance Memory (in GB)": "30", "Platform Memory (in GB)": "240", "Storage Info (Type and Size in GB)": "2 x 80 (SSD)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "6,94", "PkgWatt @ 10%": "19,80", "PkgWatt @ 50%": "40,72", "PkgWatt @ 100%": "55,74", "RAMWatt @ Idle": "6,00", "RAMWatt @ 10%": "9,00", "RAMWatt @ 50%": "12,00", "RAMWatt @ 100%": "18,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "11,5", "Instance @ Idle": "24,4", "Instance @ 10%": "40,3", "Instance @ 50%": "64,2", "Instance @ 100%": "85,2", "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2670 (Sandy Bridge or Ivy Bridge) processors"}, {"Instance type": "c5.large.elasticsearch", "Release Date": "November 2016", "Instance vCPU": "2", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon Platinum 8124M", "Instance Memory (in GB)": "4", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,41", "PkgWatt @ 10%": "3,75", "PkgWatt @ 50%": "8,14", "PkgWatt @ 100%": "11,77", "RAMWatt @ Idle": "0,78", "RAMWatt @ 10%": "1,41", "RAMWatt @ 50%": "2,47", "RAMWatt @ 100%": "3,53", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,7", "Instance @ Idle": "4,9", "Instance @ 10%": "7,8", "Instance @ 50%": "13,3", "Instance @ 100%": "18,0", "Hardware Information on AWS Documentation & Comments": "Up to 3.5GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)"}, {"Instance type": "c5.xlarge.elasticsearch", "Release Date": "November 2016", "Instance vCPU": "4", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon Platinum 8124M", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,81", "PkgWatt @ 10%": "7,49", "PkgWatt @ 50%": "16,29", "PkgWatt @ 100%": "23,54", "RAMWatt @ Idle": "1,56", "RAMWatt @ 10%": "2,81", "RAMWatt @ 50%": "4,94", "RAMWatt @ 100%": "7,06", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "5,3", "Instance @ Idle": "9,7", "Instance @ 10%": "15,6", "Instance @ 50%": "26,6", "Instance @ 100%": "35,9", "Hardware Information on AWS Documentation & Comments": "Up to 3.5GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)"}, {"Instance type": "c5.2xlarge.elasticsearch", "Release Date": "November 2016", "Instance vCPU": "8", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon Platinum 8124M", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "5,63", "PkgWatt @ 10%": "14,98", "PkgWatt @ 50%": "32,58", "PkgWatt @ 100%": "47,08", "RAMWatt @ Idle": "3,11", "RAMWatt @ 10%": "5,62", "RAMWatt @ 50%": "9,87", "RAMWatt @ 100%": "14,12", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "10,7", "Instance @ Idle": "19,4", "Instance @ 10%": "31,3", "Instance @ 50%": "53,1", "Instance @ 100%": "71,9", "Hardware Information on AWS Documentation & Comments": "Up to 3.5GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)"}, {"Instance type": "c5.4xlarge.elasticsearch", "Release Date": "November 2016", "Instance vCPU": "16", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon Platinum 8124M", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "11,26", "PkgWatt @ 10%": "29,97", "PkgWatt @ 50%": "65,16", "PkgWatt @ 100%": "94,15", "RAMWatt @ Idle": "6,22", "RAMWatt @ 10%": "11,24", "RAMWatt @ 50%": "19,74", "RAMWatt @ 100%": "28,24", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "21,3", "Instance @ Idle": "38,8", "Instance @ 10%": "62,5", "Instance @ 50%": "106,2", "Instance @ 100%": "143,7", "Hardware Information on AWS Documentation & Comments": "Up to 3.5GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)"}, {"Instance type": "c5.9xlarge.elasticsearch", "Release Date": "November 2019", "Instance vCPU": "36", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon Platinum 8124M", "Instance Memory (in GB)": "72", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "25,33", "PkgWatt @ 10%": "67,43", "PkgWatt @ 50%": "146,61", "PkgWatt @ 100%": "211,84", "RAMWatt @ Idle": "14,00", "RAMWatt @ 10%": "25,29", "RAMWatt @ 50%": "44,42", "RAMWatt @ 100%": "63,54", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "48,0", "Instance @ Idle": "87,3", "Instance @ 10%": "140,7", "Instance @ 50%": "239,0", "Instance @ 100%": "323,4", "Hardware Information on AWS Documentation & Comments": "Up to 3.5GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)"}, {"Instance type": "c5.18xlarge.elasticsearch", "Release Date": "November 2019", "Instance vCPU": "72", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon Platinum 8124M", "Instance Memory (in GB)": "144", "Platform Memory (in GB)": "192", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "50,66", "PkgWatt @ 10%": "134,85", "PkgWatt @ 50%": "293,21", "PkgWatt @ 100%": "423,68", "RAMWatt @ Idle": "28,01", "RAMWatt @ 10%": "50,59", "RAMWatt @ 50%": "88,83", "RAMWatt @ 100%": "127,07", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "96,0", "Instance @ Idle": "174,7", "Instance @ 10%": "281,4", "Instance @ 50%": "478,0", "Instance @ 100%": "646,8", "Hardware Information on AWS Documentation & Comments": "Up to 3.5GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)"}, {"Instance type": "c4.large.elasticsearch", "Release Date": "January 2015", "Instance vCPU": "2", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2666 v3", "Instance Memory (in GB)": "3.75", "Platform Memory (in GB)": "60", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,63", "PkgWatt @ 10%": "4,65", "PkgWatt @ 50%": "9,56", "PkgWatt @ 100%": "13,09", "RAMWatt @ Idle": "0,75", "RAMWatt @ 10%": "1,13", "RAMWatt @ 50%": "1,50", "RAMWatt @ 100%": "2,25", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,7", "Instance @ Idle": "5,1", "Instance @ 10%": "8,5", "Instance @ 50%": "13,8", "Instance @ 100%": "18,0", "Hardware Information on AWS Documentation & Comments": "2.9 GHz Intel Xeon E5-2666 v3 Processor"}, {"Instance type": "c4.xlarge.elasticsearch", "Release Date": "January 2015", "Instance vCPU": "4", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2666 v3", "Instance Memory (in GB)": "7.5", "Platform Memory (in GB)": "60", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "3,26", "PkgWatt @ 10%": "9,30", "PkgWatt @ 50%": "19,12", "PkgWatt @ 100%": "26,17", "RAMWatt @ Idle": "1,50", "RAMWatt @ 10%": "2,25", "RAMWatt @ 50%": "3,00", "RAMWatt @ 100%": "4,50", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "5,4", "Instance @ Idle": "10,2", "Instance @ 10%": "16,9", "Instance @ 50%": "27,5", "Instance @ 100%": "36,1", "Hardware Information on AWS Documentation & Comments": "2.9 GHz Intel Xeon E5-2666 v3 Processor"}, {"Instance type": "c4.2xlarge.elasticsearch", "Release Date": "January 2015", "Instance vCPU": "8", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2666 v3", "Instance Memory (in GB)": "15", "Platform Memory (in GB)": "60", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "6,51", "PkgWatt @ 10%": "18,59", "PkgWatt @ 50%": "38,25", "PkgWatt @ 100%": "52,35", "RAMWatt @ Idle": "3,00", "RAMWatt @ 10%": "4,50", "RAMWatt @ 50%": "6,00", "RAMWatt @ 100%": "9,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "10,8", "Instance @ Idle": "20,3", "Instance @ 10%": "33,9", "Instance @ 50%": "55,0", "Instance @ 100%": "72,1", "Hardware Information on AWS Documentation & Comments": "2.9 GHz Intel Xeon E5-2666 v3 Processor"}, {"Instance type": "c4.4xlarge.elasticsearch", "Release Date": "January 2015", "Instance vCPU": "16", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2666 v3", "Instance Memory (in GB)": "30", "Platform Memory (in GB)": "60", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "13,03", "PkgWatt @ 10%": "37,19", "PkgWatt @ 50%": "76,49", "PkgWatt @ 100%": "104,70", "RAMWatt @ Idle": "6,00", "RAMWatt @ 10%": "9,00", "RAMWatt @ 50%": "12,00", "RAMWatt @ 100%": "18,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "21,6", "Instance @ Idle": "40,6", "Instance @ 10%": "67,8", "Instance @ 50%": "110,1", "Instance @ 100%": "144,3", "Hardware Information on AWS Documentation & Comments": "2.9 GHz Intel Xeon E5-2666 v3 Processor"}, {"Instance type": "c4.8xlarge.elasticsearch", "Release Date": "January 2015", "Instance vCPU": "36", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2666 v3", "Instance Memory (in GB)": "60", "Platform Memory (in GB)": "60", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "29,31", "PkgWatt @ 10%": "83,68", "PkgWatt @ 50%": "172,10", "PkgWatt @ 100%": "235,57", "RAMWatt @ Idle": "12,00", "RAMWatt @ 10%": "18,00", "RAMWatt @ 50%": "24,00", "RAMWatt @ 100%": "36,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "48,6", "Instance @ Idle": "89,9", "Instance @ 10%": "150,3", "Instance @ 50%": "244,7", "Instance @ 100%": "320,2", "Hardware Information on AWS Documentation & Comments": "2.9 GHz Intel Xeon E5-2666 v3 Processor"}, {"Instance type": "r5.large.elasticsearch", "Release Date": "July 2018", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,21", "PkgWatt @ 10%": "3,05", "PkgWatt @ 50%": "7,16", "PkgWatt @ 100%": "9,96", "RAMWatt @ Idle": "2,41", "RAMWatt @ 10%": "3,85", "RAMWatt @ 50%": "9,92", "RAMWatt @ 100%": "15,99", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,0", "Instance @ Idle": "5,6", "Instance @ 10%": "8,9", "Instance @ 50%": "19,1", "Instance @ 100%": "27,9", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "r5.xlarge.elasticsearch", "Release Date": "July 2018", "Instance vCPU": "4", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,41", "PkgWatt @ 10%": "6,11", "PkgWatt @ 50%": "14,32", "PkgWatt @ 100%": "19,92", "RAMWatt @ Idle": "4,82", "RAMWatt @ 10%": "7,70", "RAMWatt @ 50%": "19,84", "RAMWatt @ 100%": "31,98", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "4,0", "Instance @ Idle": "11,2", "Instance @ 10%": "17,8", "Instance @ 50%": "38,2", "Instance @ 100%": "55,9", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "r5.2xlarge.elasticsearch", "Release Date": "July 2018", "Instance vCPU": "8", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,82", "PkgWatt @ 10%": "12,22", "PkgWatt @ 50%": "28,64", "PkgWatt @ 100%": "39,83", "RAMWatt @ Idle": "9,64", "RAMWatt @ 10%": "15,40", "RAMWatt @ 50%": "39,68", "RAMWatt @ 100%": "63,97", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "8,0", "Instance @ Idle": "22,5", "Instance @ 10%": "35,6", "Instance @ 50%": "76,3", "Instance @ 100%": "111,8", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "r5.4xlarge.elasticsearch", "Release Date": "July 2018", "Instance vCPU": "16", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "9,65", "PkgWatt @ 10%": "24,44", "PkgWatt @ 50%": "57,28", "PkgWatt @ 100%": "79,66", "RAMWatt @ Idle": "19,27", "RAMWatt @ 10%": "30,80", "RAMWatt @ 50%": "79,37", "RAMWatt @ 100%": "127,94", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "16,0", "Instance @ Idle": "44,9", "Instance @ 10%": "71,2", "Instance @ 50%": "152,7", "Instance @ 100%": "223,6", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "r5.12xlarge.elasticsearch", "Release Date": "July 2018", "Instance vCPU": "48", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "384", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "28,94", "PkgWatt @ 10%": "73,32", "PkgWatt @ 50%": "171,85", "PkgWatt @ 100%": "238,99", "RAMWatt @ Idle": "57,81", "RAMWatt @ 10%": "92,39", "RAMWatt @ 50%": "238,10", "RAMWatt @ 100%": "383,81", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "48,0", "Instance @ Idle": "134,8", "Instance @ 10%": "213,7", "Instance @ 50%": "458,0", "Instance @ 100%": "670,8", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "r4.large.elasticsearch", "Release Date": "November 2016", "Instance vCPU": "2", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "15.25", "Platform Memory (in GB)": "488", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,97", "PkgWatt @ 10%": "2,77", "PkgWatt @ 50%": "5,71", "PkgWatt @ 100%": "7,81", "RAMWatt @ Idle": "3,05", "RAMWatt @ 10%": "4,58", "RAMWatt @ 50%": "6,10", "RAMWatt @ 100%": "9,15", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,6", "Instance @ Idle": "5,6", "Instance @ 10%": "9,0", "Instance @ 50%": "13,4", "Instance @ 100%": "18,6", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor"}, {"Instance type": "r4.xlarge.elasticsearch", "Release Date": "November 2016", "Instance vCPU": "4", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "30.5", "Platform Memory (in GB)": "488", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,94", "PkgWatt @ 10%": "5,55", "PkgWatt @ 50%": "11,41", "PkgWatt @ 100%": "15,62", "RAMWatt @ Idle": "6,10", "RAMWatt @ 10%": "9,15", "RAMWatt @ 50%": "12,20", "RAMWatt @ 100%": "18,30", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,2", "Instance @ Idle": "11,3", "Instance @ 10%": "17,9", "Instance @ 50%": "26,8", "Instance @ 100%": "37,1", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor"}, {"Instance type": "r4.2xlarge.elasticsearch", "Release Date": "November 2016", "Instance vCPU": "8", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "61", "Platform Memory (in GB)": "488", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "3,89", "PkgWatt @ 10%": "11,10", "PkgWatt @ 50%": "22,82", "PkgWatt @ 100%": "31,24", "RAMWatt @ Idle": "12,20", "RAMWatt @ 10%": "18,30", "RAMWatt @ 50%": "24,40", "RAMWatt @ 100%": "36,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "6,4", "Instance @ Idle": "22,5", "Instance @ 10%": "35,8", "Instance @ 50%": "53,7", "Instance @ 100%": "74,3", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor"}, {"Instance type": "r4.4xlarge.elasticsearch", "Release Date": "November 2016", "Instance vCPU": "16", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "122", "Platform Memory (in GB)": "488", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "7,77", "PkgWatt @ 10%": "22,19", "PkgWatt @ 50%": "45,64", "PkgWatt @ 100%": "62,47", "RAMWatt @ Idle": "24,40", "RAMWatt @ 10%": "36,60", "RAMWatt @ 50%": "48,80", "RAMWatt @ 100%": "73,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "12,9", "Instance @ Idle": "45,1", "Instance @ 10%": "71,7", "Instance @ 50%": "107,3", "Instance @ 100%": "148,6", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor"}, {"Instance type": "r4.8xlarge.elasticsearch", "Release Date": "November 2016", "Instance vCPU": "32", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "244", "Platform Memory (in GB)": "488", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "15,55", "PkgWatt @ 10%": "44,38", "PkgWatt @ 50%": "91,28", "PkgWatt @ 100%": "124,95", "RAMWatt @ Idle": "48,80", "RAMWatt @ 10%": "73,20", "RAMWatt @ 50%": "97,60", "RAMWatt @ 100%": "146,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "25,8", "Instance @ Idle": "90,1", "Instance @ 10%": "143,4", "Instance @ 50%": "214,7", "Instance @ 100%": "297,1", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor"}, {"Instance type": "r4.16xlarge.elasticsearch", "Release Date": "November 2016", "Instance vCPU": "64", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "488", "Platform Memory (in GB)": "488", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "31,09", "PkgWatt @ 10%": "88,76", "PkgWatt @ 50%": "182,57", "PkgWatt @ 100%": "249,90", "RAMWatt @ Idle": "97,60", "RAMWatt @ 10%": "146,40", "RAMWatt @ 50%": "195,20", "RAMWatt @ 100%": "292,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "51,6", "Instance @ Idle": "180,2", "Instance @ 10%": "286,7", "Instance @ 50%": "429,3", "Instance @ 100%": "594,3", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor"}, {"Instance type": "r3.large.elasticsearch", "Release Date": "April 2014", "Instance vCPU": "2", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2670 v2", "Instance Memory (in GB)": "15.25", "Platform Memory (in GB)": "244", "Storage Info (Type and Size in GB)": "1 x 32 (SSD)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,39", "PkgWatt @ 10%": "3,96", "PkgWatt @ 50%": "8,14", "PkgWatt @ 100%": "11,15", "RAMWatt @ Idle": "3,05", "RAMWatt @ 10%": "4,58", "RAMWatt @ 50%": "6,10", "RAMWatt @ 100%": "9,15", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,3", "Instance @ Idle": "6,7", "Instance @ 10%": "10,8", "Instance @ 50%": "16,5", "Instance @ 100%": "22,6", "Hardware Information on AWS Documentation & Comments": "Intel Xeon Ivy Bridge Processors"}, {"Instance type": "r3.xlarge.elasticsearch", "Release Date": "April 2014", "Instance vCPU": "4", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2670 v2", "Instance Memory (in GB)": "30.5", "Platform Memory (in GB)": "244", "Storage Info (Type and Size in GB)": "1 x 80 (SSD)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,77", "PkgWatt @ 10%": "7,92", "PkgWatt @ 50%": "16,29", "PkgWatt @ 100%": "22,30", "RAMWatt @ Idle": "6,10", "RAMWatt @ 10%": "9,15", "RAMWatt @ 50%": "12,20", "RAMWatt @ 100%": "18,30", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "4,6", "Instance @ Idle": "13,5", "Instance @ 10%": "21,7", "Instance @ 50%": "33,1", "Instance @ 100%": "45,2", "Hardware Information on AWS Documentation & Comments": "Intel Xeon Ivy Bridge Processors"}, {"Instance type": "r3.2xlarge.elasticsearch", "Release Date": "April 2014", "Instance vCPU": "8", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2670 v2", "Instance Memory (in GB)": "61", "Platform Memory (in GB)": "244", "Storage Info (Type and Size in GB)": "1 x 160 (SSD)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "5,55", "PkgWatt @ 10%": "15,84", "PkgWatt @ 50%": "32,58", "PkgWatt @ 100%": "44,59", "RAMWatt @ Idle": "12,20", "RAMWatt @ 10%": "18,30", "RAMWatt @ 50%": "24,40", "RAMWatt @ 100%": "36,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "9,2", "Instance @ Idle": "26,9", "Instance @ 10%": "43,3", "Instance @ 50%": "66,2", "Instance @ 100%": "90,4", "Hardware Information on AWS Documentation & Comments": "Intel Xeon Ivy Bridge Processors"}, {"Instance type": "r3.4xlarge.elasticsearch", "Release Date": "April 2014", "Instance vCPU": "16", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2670 v2", "Instance Memory (in GB)": "122", "Platform Memory (in GB)": "244", "Storage Info (Type and Size in GB)": "1 x 320 (SSD)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "11,10", "PkgWatt @ 10%": "31,68", "PkgWatt @ 50%": "65,16", "PkgWatt @ 100%": "89,19", "RAMWatt @ Idle": "24,40", "RAMWatt @ 10%": "36,60", "RAMWatt @ 50%": "48,80", "RAMWatt @ 100%": "73,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "18,4", "Instance @ Idle": "53,9", "Instance @ 10%": "86,7", "Instance @ 50%": "132,4", "Instance @ 100%": "180,8", "Hardware Information on AWS Documentation & Comments": "Intel Xeon Ivy Bridge Processors"}, {"Instance type": "r3.8xlarge.elasticsearch", "Release Date": "April 2014", "Instance vCPU": "32", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2670 v2", "Instance Memory (in GB)": "244", "Platform Memory (in GB)": "244", "Storage Info (Type and Size in GB)": "2 x 320 (SSD)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "22,19", "PkgWatt @ 10%": "63,36", "PkgWatt @ 50%": "130,32", "PkgWatt @ 100%": "178,37", "RAMWatt @ Idle": "48,80", "RAMWatt @ 10%": "73,20", "RAMWatt @ 50%": "97,60", "RAMWatt @ 100%": "146,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "36,8", "Instance @ Idle": "107,8", "Instance @ 10%": "173,4", "Instance @ 50%": "264,7", "Instance @ 100%": "361,6", "Hardware Information on AWS Documentation & Comments": "Intel Xeon Ivy Bridge Processors"}, {"Instance type": "i3.large.elasticsearch", "Release Date": "November 2016", "Instance vCPU": "2", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "15.25", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "1 x 475 (SSD NVMe)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "8", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,97", "PkgWatt @ 10%": "2,77", "PkgWatt @ 50%": "5,71", "PkgWatt @ 100%": "7,81", "RAMWatt @ Idle": "3,05", "RAMWatt @ 10%": "4,58", "RAMWatt @ 50%": "6,10", "RAMWatt @ 100%": "9,15", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,6", "Instance @ Idle": "5,6", "Instance @ 10%": "9,0", "Instance @ 50%": "13,4", "Instance @ 100%": "18,6", "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2686 v4 (Broadwell)"}, {"Instance type": "i3.xlarge.elasticsearch", "Release Date": "November 2016", "Instance vCPU": "4", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "30.5", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "1 x 950 (SSD NVMe)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "8", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,94", "PkgWatt @ 10%": "5,55", "PkgWatt @ 50%": "11,41", "PkgWatt @ 100%": "15,62", "RAMWatt @ Idle": "6,10", "RAMWatt @ 10%": "9,15", "RAMWatt @ 50%": "12,20", "RAMWatt @ 100%": "18,30", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,2", "Instance @ Idle": "11,3", "Instance @ 10%": "17,9", "Instance @ 50%": "26,8", "Instance @ 100%": "37,1", "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2686 v4 (Broadwell)"}, {"Instance type": "i3.2xlarge.elasticsearch", "Release Date": "November 2016", "Instance vCPU": "8", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "61", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "1 x 1 900 (SSD NVMe)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "8", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "3,89", "PkgWatt @ 10%": "11,10", "PkgWatt @ 50%": "22,82", "PkgWatt @ 100%": "31,24", "RAMWatt @ Idle": "12,20", "RAMWatt @ 10%": "18,30", "RAMWatt @ 50%": "24,40", "RAMWatt @ 100%": "36,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "6,4", "Instance @ Idle": "22,5", "Instance @ 10%": "35,8", "Instance @ 50%": "53,7", "Instance @ 100%": "74,3", "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2686 v4 (Broadwell)"}, {"Instance type": "i3.4xlarge.elasticsearch", "Release Date": "November 2016", "Instance vCPU": "16", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "122", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "2 x 1 900 (SSD NVMe)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "8", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "7,77", "PkgWatt @ 10%": "22,19", "PkgWatt @ 50%": "45,64", "PkgWatt @ 100%": "62,47", "RAMWatt @ Idle": "24,40", "RAMWatt @ 10%": "36,60", "RAMWatt @ 50%": "48,80", "RAMWatt @ 100%": "73,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "12,9", "Instance @ Idle": "45,1", "Instance @ 10%": "71,7", "Instance @ 50%": "107,3", "Instance @ 100%": "148,6", "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2686 v4 (Broadwell)"}, {"Instance type": "i3.8xlarge.elasticsearch", "Release Date": "November 2016", "Instance vCPU": "32", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "244", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "4 x 1 900 (SSD NVMe)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "8", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "15,55", "PkgWatt @ 10%": "44,38", "PkgWatt @ 50%": "91,28", "PkgWatt @ 100%": "124,95", "RAMWatt @ Idle": "48,80", "RAMWatt @ 10%": "73,20", "RAMWatt @ 50%": "97,60", "RAMWatt @ 100%": "146,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "25,8", "Instance @ Idle": "90,1", "Instance @ 10%": "143,4", "Instance @ 50%": "214,7", "Instance @ 100%": "297,1", "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2686 v4 (Broadwell)"}, {"Instance type": "i3.16xlarge.elasticsearch", "Release Date": "November 2016", "Instance vCPU": "64", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "488", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "8 x 1 900 (SSD NVMe)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "8", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "31,09", "PkgWatt @ 10%": "88,76", "PkgWatt @ 50%": "182,57", "PkgWatt @ 100%": "249,90", "RAMWatt @ Idle": "97,60", "RAMWatt @ 10%": "146,40", "RAMWatt @ 50%": "195,20", "RAMWatt @ 100%": "292,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "51,6", "Instance @ Idle": "180,2", "Instance @ 10%": "286,7", "Instance @ 50%": "429,3", "Instance @ 100%": "594,3", "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2686 v4 (Broadwell)"}, {"Instance type": "i2.xlarge.elasticsearch", "Release Date": "December 2013", "Instance vCPU": "4", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2670 v2", "Instance Memory (in GB)": "30.5", "Platform Memory (in GB)": "244", "Storage Info (Type and Size in GB)": "1 x 800 (SSD)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,77", "PkgWatt @ 10%": "7,92", "PkgWatt @ 50%": "16,29", "PkgWatt @ 100%": "22,30", "RAMWatt @ Idle": "6,10", "RAMWatt @ 10%": "9,15", "RAMWatt @ 50%": "12,20", "RAMWatt @ 100%": "18,30", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "4,6", "Instance @ Idle": "13,5", "Instance @ 10%": "21,7", "Instance @ 50%": "33,1", "Instance @ 100%": "45,2", "Hardware Information on AWS Documentation & Comments": "Intel E5-2670 v2 (Ivy Bridge) processor"}, {"Instance type": "i2.2xlarge.elasticsearch", "Release Date": "December 2013", "Instance vCPU": "8", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2670 v2", "Instance Memory (in GB)": "61", "Platform Memory (in GB)": "244", "Storage Info (Type and Size in GB)": "2 x 800 (SSD)", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "5,55", "PkgWatt @ 10%": "15,84", "PkgWatt @ 50%": "32,58", "PkgWatt @ 100%": "44,59", "RAMWatt @ Idle": "12,20", "RAMWatt @ 10%": "18,30", "RAMWatt @ 50%": "24,40", "RAMWatt @ 100%": "36,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "9,2", "Instance @ Idle": "26,9", "Instance @ 10%": "43,3", "Instance @ 50%": "66,2", "Instance @ 100%": "90,4", "Hardware Information on AWS Documentation & Comments": "Intel E5-2670 v2 (Ivy Bridge) processor"}, {"Instance type": "m6g.large.elasticsearch", "Release Date": "December 2019", "Instance vCPU": "2", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,54", "PkgWatt @ 10%": "1,49", "PkgWatt @ 50%": "3,53", "PkgWatt @ 100%": "4,77", "RAMWatt @ Idle": "1,60", "RAMWatt @ 10%": "2,40", "RAMWatt @ 50%": "3,20", "RAMWatt @ 100%": "4,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "0,9", "Instance @ Idle": "3,1", "Instance @ 10%": "4,8", "Instance @ 50%": "7,7", "Instance @ 100%": "10,5", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "m6g.xlarge.elasticsearch", "Release Date": "December 2019", "Instance vCPU": "4", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,09", "PkgWatt @ 10%": "2,98", "PkgWatt @ 50%": "7,05", "PkgWatt @ 100%": "9,55", "RAMWatt @ Idle": "3,20", "RAMWatt @ 10%": "4,80", "RAMWatt @ 50%": "6,40", "RAMWatt @ 100%": "9,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,9", "Instance @ Idle": "6,2", "Instance @ 10%": "9,7", "Instance @ 50%": "15,3", "Instance @ 100%": "21,0", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "m6g.2xlarge.elasticsearch", "Release Date": "December 2019", "Instance vCPU": "8", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,18", "PkgWatt @ 10%": "5,97", "PkgWatt @ 50%": "14,10", "PkgWatt @ 100%": "19,10", "RAMWatt @ Idle": "6,40", "RAMWatt @ 10%": "9,60", "RAMWatt @ 50%": "12,80", "RAMWatt @ 100%": "19,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,8", "Instance @ Idle": "12,3", "Instance @ 10%": "19,3", "Instance @ 50%": "30,7", "Instance @ 100%": "42,0", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "m6g.4xlarge.elasticsearch", "Release Date": "December 2019", "Instance vCPU": "16", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,35", "PkgWatt @ 10%": "11,93", "PkgWatt @ 50%": "28,21", "PkgWatt @ 100%": "38,20", "RAMWatt @ Idle": "12,80", "RAMWatt @ 10%": "19,20", "RAMWatt @ 50%": "25,60", "RAMWatt @ 100%": "38,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "7,5", "Instance @ Idle": "24,7", "Instance @ 10%": "38,6", "Instance @ 50%": "61,3", "Instance @ 100%": "84,1", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "m6g.8xlarge.elasticsearch", "Release Date": "December 2019", "Instance vCPU": "32", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "8,71", "PkgWatt @ 10%": "23,87", "PkgWatt @ 50%": "56,42", "PkgWatt @ 100%": "76,39", "RAMWatt @ Idle": "25,60", "RAMWatt @ 10%": "38,40", "RAMWatt @ 50%": "51,20", "RAMWatt @ 100%": "76,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "15,0", "Instance @ Idle": "49,3", "Instance @ 10%": "77,3", "Instance @ 50%": "122,6", "Instance @ 100%": "168,2", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "m6g.12xlarge.elasticsearch", "Release Date": "December 2019", "Instance vCPU": "48", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "192", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "13,06", "PkgWatt @ 10%": "35,80", "PkgWatt @ 50%": "84,63", "PkgWatt @ 100%": "114,59", "RAMWatt @ Idle": "38,40", "RAMWatt @ 10%": "57,60", "RAMWatt @ 50%": "76,80", "RAMWatt @ 100%": "115,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "22,5", "Instance @ Idle": "74,0", "Instance @ 10%": "115,9", "Instance @ 50%": "183,9", "Instance @ 100%": "252,3", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "c6g.large.elasticsearch", "Release Date": "December 2019", "Instance vCPU": "2", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "4", "Platform Memory (in GB)": "128", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,54", "PkgWatt @ 10%": "1,49", "PkgWatt @ 50%": "3,53", "PkgWatt @ 100%": "4,77", "RAMWatt @ Idle": "0,80", "RAMWatt @ 10%": "1,20", "RAMWatt @ 50%": "1,60", "RAMWatt @ 100%": "2,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "0,9", "Instance @ Idle": "2,3", "Instance @ 10%": "3,6", "Instance @ 50%": "6,1", "Instance @ 100%": "8,1", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "c6g.xlarge.elasticsearch", "Release Date": "December 2019", "Instance vCPU": "4", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "128", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,09", "PkgWatt @ 10%": "2,98", "PkgWatt @ 50%": "7,05", "PkgWatt @ 100%": "9,55", "RAMWatt @ Idle": "1,60", "RAMWatt @ 10%": "2,40", "RAMWatt @ 50%": "3,20", "RAMWatt @ 100%": "4,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,9", "Instance @ Idle": "4,6", "Instance @ 10%": "7,3", "Instance @ 50%": "12,1", "Instance @ 100%": "16,2", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "c6g.2xlarge.elasticsearch", "Release Date": "December 2019", "Instance vCPU": "8", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "128", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,18", "PkgWatt @ 10%": "5,97", "PkgWatt @ 50%": "14,10", "PkgWatt @ 100%": "19,10", "RAMWatt @ Idle": "3,20", "RAMWatt @ 10%": "4,80", "RAMWatt @ 50%": "6,40", "RAMWatt @ 100%": "9,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,8", "Instance @ Idle": "9,1", "Instance @ 10%": "14,5", "Instance @ 50%": "24,3", "Instance @ 100%": "32,4", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "c6g.4xlarge.elasticsearch", "Release Date": "December 2019", "Instance vCPU": "16", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "128", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,35", "PkgWatt @ 10%": "11,93", "PkgWatt @ 50%": "28,21", "PkgWatt @ 100%": "38,20", "RAMWatt @ Idle": "6,40", "RAMWatt @ 10%": "9,60", "RAMWatt @ 50%": "12,80", "RAMWatt @ 100%": "19,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "7,5", "Instance @ Idle": "18,3", "Instance @ 10%": "29,0", "Instance @ 50%": "48,5", "Instance @ 100%": "64,9", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "c6g.8xlarge.elasticsearch", "Release Date": "December 2019", "Instance vCPU": "32", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "128", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "8,71", "PkgWatt @ 10%": "23,87", "PkgWatt @ 50%": "56,42", "PkgWatt @ 100%": "76,39", "RAMWatt @ Idle": "12,80", "RAMWatt @ 10%": "19,20", "RAMWatt @ 50%": "25,60", "RAMWatt @ 100%": "38,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "15,0", "Instance @ Idle": "36,5", "Instance @ 10%": "58,1", "Instance @ 50%": "97,0", "Instance @ 100%": "129,8", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "c6g.12xlarge.elasticsearch", "Release Date": "December 2019", "Instance vCPU": "48", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "96", "Platform Memory (in GB)": "128", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "13,06", "PkgWatt @ 10%": "35,80", "PkgWatt @ 50%": "84,63", "PkgWatt @ 100%": "114,59", "RAMWatt @ Idle": "19,20", "RAMWatt @ 10%": "28,80", "RAMWatt @ 50%": "38,40", "RAMWatt @ 100%": "57,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "22,5", "Instance @ Idle": "54,8", "Instance @ 10%": "87,1", "Instance @ 50%": "145,5", "Instance @ 100%": "194,7", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "r6g.large.elasticsearch", "Release Date": "December 2019", "Instance vCPU": "2", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,54", "PkgWatt @ 10%": "1,49", "PkgWatt @ 50%": "3,53", "PkgWatt @ 100%": "4,77", "RAMWatt @ Idle": "3,20", "RAMWatt @ 10%": "4,80", "RAMWatt @ 50%": "6,40", "RAMWatt @ 100%": "9,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "0,9", "Instance @ Idle": "4,7", "Instance @ 10%": "7,2", "Instance @ 50%": "10,9", "Instance @ 100%": "15,3", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "r6g.xlarge.elasticsearch", "Release Date": "December 2019", "Instance vCPU": "4", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,09", "PkgWatt @ 10%": "2,98", "PkgWatt @ 50%": "7,05", "PkgWatt @ 100%": "9,55", "RAMWatt @ Idle": "6,40", "RAMWatt @ 10%": "9,60", "RAMWatt @ 50%": "12,80", "RAMWatt @ 100%": "19,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,9", "Instance @ Idle": "9,4", "Instance @ 10%": "14,5", "Instance @ 50%": "21,7", "Instance @ 100%": "30,6", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "r6g.2xlarge.elasticsearch", "Release Date": "December 2019", "Instance vCPU": "8", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,18", "PkgWatt @ 10%": "5,97", "PkgWatt @ 50%": "14,10", "PkgWatt @ 100%": "19,10", "RAMWatt @ Idle": "12,80", "RAMWatt @ 10%": "19,20", "RAMWatt @ 50%": "25,60", "RAMWatt @ 100%": "38,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,8", "Instance @ Idle": "18,7", "Instance @ 10%": "28,9", "Instance @ 50%": "43,5", "Instance @ 100%": "61,2", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "r6g.4xlarge.elasticsearch", "Release Date": "December 2019", "Instance vCPU": "16", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,35", "PkgWatt @ 10%": "11,93", "PkgWatt @ 50%": "28,21", "PkgWatt @ 100%": "38,20", "RAMWatt @ Idle": "25,60", "RAMWatt @ 10%": "38,40", "RAMWatt @ 50%": "51,20", "RAMWatt @ 100%": "76,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "7,5", "Instance @ Idle": "37,5", "Instance @ 10%": "57,8", "Instance @ 50%": "86,9", "Instance @ 100%": "122,5", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "r6g.8xlarge.elasticsearch", "Release Date": "December 2019", "Instance vCPU": "32", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "256", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "8,71", "PkgWatt @ 10%": "23,87", "PkgWatt @ 50%": "56,42", "PkgWatt @ 100%": "76,39", "RAMWatt @ Idle": "51,20", "RAMWatt @ 10%": "76,80", "RAMWatt @ 50%": "102,40", "RAMWatt @ 100%": "153,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "15,0", "Instance @ Idle": "74,9", "Instance @ 10%": "115,7", "Instance @ 50%": "173,8", "Instance @ 100%": "245,0", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "r6g.12xlarge.elasticsearch", "Release Date": "December 2019", "Instance vCPU": "48", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "384", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "13,06", "PkgWatt @ 10%": "35,80", "PkgWatt @ 50%": "84,63", "PkgWatt @ 100%": "114,59", "RAMWatt @ Idle": "76,80", "RAMWatt @ 10%": "115,20", "RAMWatt @ 50%": "153,60", "RAMWatt @ 100%": "230,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "22,5", "Instance @ Idle": "112,4", "Instance @ 10%": "173,5", "Instance @ 50%": "260,7", "Instance @ 100%": "367,5", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "r6gd.large.elasticsearch", "Release Date": "December 2019", "Instance vCPU": "2", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "1 x 118 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,54", "PkgWatt @ 10%": "1,49", "PkgWatt @ 50%": "3,53", "PkgWatt @ 100%": "4,77", "RAMWatt @ Idle": "3,20", "RAMWatt @ 10%": "4,80", "RAMWatt @ 50%": "6,40", "RAMWatt @ 100%": "9,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "0,9", "Instance @ Idle": "4,7", "Instance @ 10%": "7,2", "Instance @ 50%": "10,9", "Instance @ 100%": "15,3", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "r6gd.xlarge.elasticsearch", "Release Date": "December 2019", "Instance vCPU": "4", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "1 x 237 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,09", "PkgWatt @ 10%": "2,98", "PkgWatt @ 50%": "7,05", "PkgWatt @ 100%": "9,55", "RAMWatt @ Idle": "6,40", "RAMWatt @ 10%": "9,60", "RAMWatt @ 50%": "12,80", "RAMWatt @ 100%": "19,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,9", "Instance @ Idle": "9,4", "Instance @ 10%": "14,5", "Instance @ 50%": "21,7", "Instance @ 100%": "30,6", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "r6gd.2xlarge.elasticsearch", "Release Date": "December 2019", "Instance vCPU": "8", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "1 x 474 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,18", "PkgWatt @ 10%": "5,97", "PkgWatt @ 50%": "14,10", "PkgWatt @ 100%": "19,10", "RAMWatt @ Idle": "12,80", "RAMWatt @ 10%": "19,20", "RAMWatt @ 50%": "25,60", "RAMWatt @ 100%": "38,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,8", "Instance @ Idle": "18,7", "Instance @ 10%": "28,9", "Instance @ 50%": "43,5", "Instance @ 100%": "61,2", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "r6gd.4xlarge.elasticsearch", "Release Date": "December 2019", "Instance vCPU": "16", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "1 x 950 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,35", "PkgWatt @ 10%": "11,93", "PkgWatt @ 50%": "28,21", "PkgWatt @ 100%": "38,20", "RAMWatt @ Idle": "25,60", "RAMWatt @ 10%": "38,40", "RAMWatt @ 50%": "51,20", "RAMWatt @ 100%": "76,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "7,5", "Instance @ Idle": "37,5", "Instance @ 10%": "57,8", "Instance @ 50%": "86,9", "Instance @ 100%": "122,5", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "r6gd.8xlarge.elasticsearch", "Release Date": "December 2019", "Instance vCPU": "32", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "256", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "1 x 1900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "8,71", "PkgWatt @ 10%": "23,87", "PkgWatt @ 50%": "56,42", "PkgWatt @ 100%": "76,39", "RAMWatt @ Idle": "51,20", "RAMWatt @ 10%": "76,80", "RAMWatt @ 50%": "102,40", "RAMWatt @ 100%": "153,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "15,0", "Instance @ Idle": "74,9", "Instance @ 10%": "115,7", "Instance @ 50%": "173,8", "Instance @ 100%": "245,0", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "r6gd.12xlarge.elasticsearch", "Release Date": "December 2019", "Instance vCPU": "48", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "384", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "2 x 1425 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "13,06", "PkgWatt @ 10%": "35,80", "PkgWatt @ 50%": "84,63", "PkgWatt @ 100%": "114,59", "RAMWatt @ Idle": "76,80", "RAMWatt @ 10%": "115,20", "RAMWatt @ 50%": "153,60", "RAMWatt @ 100%": "230,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "22,5", "Instance @ Idle": "112,4", "Instance @ 10%": "173,5", "Instance @ 50%": "260,7", "Instance @ 100%": "367,5", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "r6gd.16xlarge.elasticsearch", "Release Date": "December 2019", "Instance vCPU": "64", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "512", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "2 x 1900 NVMe SSD", "Storage Type": "SSD", "Platform Storage Drive Quantity": "2", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "17,42", "PkgWatt @ 10%": "47,74", "PkgWatt @ 50%": "112,84", "PkgWatt @ 100%": "152,78", "RAMWatt @ Idle": "102,40", "RAMWatt @ 10%": "153,60", "RAMWatt @ 50%": "204,80", "RAMWatt @ 100%": "307,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "30,0", "Instance @ Idle": "149,8", "Instance @ 10%": "231,3", "Instance @ 50%": "347,6", "Instance @ 100%": "490,0", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "db.m6g.large", "Release Date": "December 2019", "Instance vCPU": "2", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,54", "PkgWatt @ 10%": "1,49", "PkgWatt @ 50%": "3,53", "PkgWatt @ 100%": "4,77", "RAMWatt @ Idle": "1,60", "RAMWatt @ 10%": "2,40", "RAMWatt @ 50%": "3,20", "RAMWatt @ 100%": "4,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "0,9", "Instance @ Idle": "3,1", "Instance @ 10%": "4,8", "Instance @ 50%": "7,7", "Instance @ 100%": "10,5", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "db.m6g.xlarge", "Release Date": "December 2019", "Instance vCPU": "4", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,09", "PkgWatt @ 10%": "2,98", "PkgWatt @ 50%": "7,05", "PkgWatt @ 100%": "9,55", "RAMWatt @ Idle": "3,20", "RAMWatt @ 10%": "4,80", "RAMWatt @ 50%": "6,40", "RAMWatt @ 100%": "9,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,9", "Instance @ Idle": "6,2", "Instance @ 10%": "9,7", "Instance @ 50%": "15,3", "Instance @ 100%": "21,0", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "db.m6g.2xlarge", "Release Date": "December 2019", "Instance vCPU": "8", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,18", "PkgWatt @ 10%": "5,97", "PkgWatt @ 50%": "14,10", "PkgWatt @ 100%": "19,10", "RAMWatt @ Idle": "6,40", "RAMWatt @ 10%": "9,60", "RAMWatt @ 50%": "12,80", "RAMWatt @ 100%": "19,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,8", "Instance @ Idle": "12,3", "Instance @ 10%": "19,3", "Instance @ 50%": "30,7", "Instance @ 100%": "42,0", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "db.m6g.4xlarge", "Release Date": "December 2019", "Instance vCPU": "16", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,35", "PkgWatt @ 10%": "11,93", "PkgWatt @ 50%": "28,21", "PkgWatt @ 100%": "38,20", "RAMWatt @ Idle": "12,80", "RAMWatt @ 10%": "19,20", "RAMWatt @ 50%": "25,60", "RAMWatt @ 100%": "38,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "7,5", "Instance @ Idle": "24,7", "Instance @ 10%": "38,6", "Instance @ 50%": "61,3", "Instance @ 100%": "84,1", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "db.m6g.8xlarge", "Release Date": "December 2019", "Instance vCPU": "32", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "8,71", "PkgWatt @ 10%": "23,87", "PkgWatt @ 50%": "56,42", "PkgWatt @ 100%": "76,39", "RAMWatt @ Idle": "25,60", "RAMWatt @ 10%": "38,40", "RAMWatt @ 50%": "51,20", "RAMWatt @ 100%": "76,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "15,0", "Instance @ Idle": "49,3", "Instance @ 10%": "77,3", "Instance @ 50%": "122,6", "Instance @ 100%": "168,2", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "db.m6g.12xlarge", "Release Date": "December 2019", "Instance vCPU": "48", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "192", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "13,06", "PkgWatt @ 10%": "35,80", "PkgWatt @ 50%": "84,63", "PkgWatt @ 100%": "114,59", "RAMWatt @ Idle": "38,40", "RAMWatt @ 10%": "57,60", "RAMWatt @ 50%": "76,80", "RAMWatt @ 100%": "115,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "22,5", "Instance @ Idle": "74,0", "Instance @ 10%": "115,9", "Instance @ 50%": "183,9", "Instance @ 100%": "252,3", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "db.m6g.16xlarge", "Release Date": "December 2019", "Instance vCPU": "64", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "256", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "17,42", "PkgWatt @ 10%": "47,74", "PkgWatt @ 50%": "112,84", "PkgWatt @ 100%": "152,78", "RAMWatt @ Idle": "51,20", "RAMWatt @ 10%": "76,80", "RAMWatt @ 50%": "102,40", "RAMWatt @ 100%": "153,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "30,0", "Instance @ Idle": "98,6", "Instance @ 10%": "154,5", "Instance @ 50%": "245,2", "Instance @ 100%": "336,4", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "db.m5.large", "Release Date": "November 2017", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,14", "PkgWatt @ 10%": "2,87", "PkgWatt @ 50%": "6,39", "PkgWatt @ 100%": "9,28", "RAMWatt @ Idle": "1,24", "RAMWatt @ 10%": "2,06", "RAMWatt @ 50%": "3,69", "RAMWatt @ 100%": "5,31", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,8", "Instance @ Idle": "4,1", "Instance @ 10%": "6,7", "Instance @ 50%": "11,8", "Instance @ 100%": "16,3", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "db.m5.xlarge", "Release Date": "November 2017", "Instance vCPU": "4", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,28", "PkgWatt @ 10%": "5,75", "PkgWatt @ 50%": "12,79", "PkgWatt @ 100%": "18,56", "RAMWatt @ Idle": "2,49", "RAMWatt @ 10%": "4,12", "RAMWatt @ 50%": "7,37", "RAMWatt @ 100%": "10,62", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,5", "Instance @ Idle": "8,3", "Instance @ 10%": "13,4", "Instance @ 50%": "23,7", "Instance @ 100%": "32,7", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "db.m5.2xlarge", "Release Date": "November 2017", "Instance vCPU": "8", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,56", "PkgWatt @ 10%": "11,49", "PkgWatt @ 50%": "25,58", "PkgWatt @ 100%": "37,12", "RAMWatt @ Idle": "4,98", "RAMWatt @ 10%": "8,24", "RAMWatt @ 50%": "14,74", "RAMWatt @ 100%": "21,25", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "7,0", "Instance @ Idle": "16,5", "Instance @ 10%": "26,7", "Instance @ 50%": "47,3", "Instance @ 100%": "65,4", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "db.m5.4xlarge", "Release Date": "November 2017", "Instance vCPU": "16", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "9,12", "PkgWatt @ 10%": "22,99", "PkgWatt @ 50%": "51,16", "PkgWatt @ 100%": "74,23", "RAMWatt @ Idle": "9,95", "RAMWatt @ 10%": "16,47", "RAMWatt @ 50%": "29,48", "RAMWatt @ 100%": "42,49", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "14,0", "Instance @ Idle": "33,1", "Instance @ 10%": "53,5", "Instance @ 50%": "94,6", "Instance @ 100%": "130,7", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "db.m5.8xlarge", "Release Date": "June 2019", "Instance vCPU": "32", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "18,24", "PkgWatt @ 10%": "45,97", "PkgWatt @ 50%": "102,31", "PkgWatt @ 100%": "148,46", "RAMWatt @ Idle": "19,91", "RAMWatt @ 10%": "32,94", "RAMWatt @ 50%": "58,96", "RAMWatt @ 100%": "84,98", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "28,0", "Instance @ Idle": "66,1", "Instance @ 10%": "106,9", "Instance @ 50%": "189,3", "Instance @ 100%": "261,4", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "db.m5.12xlarge", "Release Date": "November 2017", "Instance vCPU": "48", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "192", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "27,36", "PkgWatt @ 10%": "68,96", "PkgWatt @ 50%": "153,47", "PkgWatt @ 100%": "222,69", "RAMWatt @ Idle": "29,86", "RAMWatt @ 10%": "49,42", "RAMWatt @ 50%": "88,45", "RAMWatt @ 100%": "127,48", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "42,0", "Instance @ Idle": "99,2", "Instance @ 10%": "160,4", "Instance @ 50%": "283,9", "Instance @ 100%": "392,2", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "db.m5.16xlarge", "Release Date": "June 2019", "Instance vCPU": "64", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "256", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "36,47", "PkgWatt @ 10%": "91,95", "PkgWatt @ 50%": "204,62", "PkgWatt @ 100%": "296,92", "RAMWatt @ Idle": "39,81", "RAMWatt @ 10%": "65,89", "RAMWatt @ 50%": "117,93", "RAMWatt @ 100%": "169,97", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "56,0", "Instance @ Idle": "132,3", "Instance @ 10%": "213,8", "Instance @ 50%": "378,5", "Instance @ 100%": "522,9", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "db.m5.24xlarge", "Release Date": "November 2017", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8259CL", "Instance Memory (in GB)": "384", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "54,71", "PkgWatt @ 10%": "137,92", "PkgWatt @ 50%": "306,93", "PkgWatt @ 100%": "445,38", "RAMWatt @ Idle": "59,72", "RAMWatt @ 10%": "98,83", "RAMWatt @ 50%": "176,89", "RAMWatt @ 100%": "254,95", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "84,0", "Instance @ Idle": "198,4", "Instance @ 10%": "320,8", "Instance @ 50%": "567,8", "Instance @ 100%": "784,3", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M"}, {"Instance type": "db.m4.large", "Release Date": "June 2015", "Instance vCPU": "2", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,97", "PkgWatt @ 10%": "2,77", "PkgWatt @ 50%": "5,71", "PkgWatt @ 100%": "7,81", "RAMWatt @ Idle": "1,60", "RAMWatt @ 10%": "2,40", "RAMWatt @ 50%": "3,20", "RAMWatt @ 100%": "4,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,6", "Instance @ Idle": "4,2", "Instance @ 10%": "6,8", "Instance @ 50%": "10,5", "Instance @ 100%": "14,2", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)"}, {"Instance type": "db.m4.xlarge", "Release Date": "June 2015", "Instance vCPU": "4", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,94", "PkgWatt @ 10%": "5,55", "PkgWatt @ 50%": "11,41", "PkgWatt @ 100%": "15,62", "RAMWatt @ Idle": "3,20", "RAMWatt @ 10%": "4,80", "RAMWatt @ 50%": "6,40", "RAMWatt @ 100%": "9,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,2", "Instance @ Idle": "8,4", "Instance @ 10%": "13,6", "Instance @ 50%": "21,0", "Instance @ 100%": "28,4", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)"}, {"Instance type": "db.m4.2xlarge", "Release Date": "June 2015", "Instance vCPU": "8", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "3,89", "PkgWatt @ 10%": "11,10", "PkgWatt @ 50%": "22,82", "PkgWatt @ 100%": "31,24", "RAMWatt @ Idle": "6,40", "RAMWatt @ 10%": "9,60", "RAMWatt @ 50%": "12,80", "RAMWatt @ 100%": "19,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "6,4", "Instance @ Idle": "16,7", "Instance @ 10%": "27,1", "Instance @ 50%": "42,1", "Instance @ 100%": "56,9", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)"}, {"Instance type": "db.m4.4xlarge", "Release Date": "June 2015", "Instance vCPU": "16", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "7,77", "PkgWatt @ 10%": "22,19", "PkgWatt @ 50%": "45,64", "PkgWatt @ 100%": "62,47", "RAMWatt @ Idle": "12,80", "RAMWatt @ 10%": "19,20", "RAMWatt @ 50%": "25,60", "RAMWatt @ 100%": "38,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "12,9", "Instance @ Idle": "33,5", "Instance @ 10%": "54,3", "Instance @ 50%": "84,1", "Instance @ 100%": "113,8", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)"}, {"Instance type": "db.m4.10xlarge", "Release Date": "June 2015", "Instance vCPU": "40", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon E5-2676 v3", "Instance Memory (in GB)": "160", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "24,12", "PkgWatt @ 10%": "68,87", "PkgWatt @ 50%": "141,65", "PkgWatt @ 100%": "193,88", "RAMWatt @ Idle": "32,00", "RAMWatt @ 10%": "48,00", "RAMWatt @ 50%": "64,00", "RAMWatt @ 100%": "96,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "40,0", "Instance @ Idle": "96,1", "Instance @ 10%": "156,9", "Instance @ 50%": "245,6", "Instance @ 100%": "329,9", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)"}, {"Instance type": "db.m4.16xlarge", "Release Date": "September 2016", "Instance vCPU": "64", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "256", "Platform Memory (in GB)": "256", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "31,09", "PkgWatt @ 10%": "88,76", "PkgWatt @ 50%": "182,57", "PkgWatt @ 100%": "249,90", "RAMWatt @ Idle": "51,20", "RAMWatt @ 10%": "76,80", "RAMWatt @ 50%": "102,40", "RAMWatt @ 100%": "153,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "51,6", "Instance @ Idle": "133,8", "Instance @ 10%": "217,1", "Instance @ 50%": "336,5", "Instance @ 100%": "455,1", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)"}, {"Instance type": "db.m3.medium", "Release Date": "January 2014", "Instance vCPU": "1", "Platform Total Number of vCPU": "32", "Platform CPU Name": "Xeon E5-2670", "Instance Memory (in GB)": "3.75", "Platform Memory (in GB)": "240", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,87", "PkgWatt @ 10%": "2,47", "PkgWatt @ 50%": "5,09", "PkgWatt @ 100%": "6,97", "RAMWatt @ Idle": "0,75", "RAMWatt @ 10%": "1,13", "RAMWatt @ 50%": "1,50", "RAMWatt @ 100%": "2,25", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,4", "Instance @ Idle": "3,1", "Instance @ 10%": "5,0", "Instance @ 50%": "8,0", "Instance @ 100%": "10,7", "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2670 (Sandy Bridge or Ivy Bridge) processors"}, {"Instance type": "db.m3.large", "Release Date": "January 2014", "Instance vCPU": "2", "Platform Total Number of vCPU": "32", "Platform CPU Name": "Xeon E5-2670", "Instance Memory (in GB)": "7.5", "Platform Memory (in GB)": "240", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,73", "PkgWatt @ 10%": "4,95", "PkgWatt @ 50%": "10,18", "PkgWatt @ 100%": "13,94", "RAMWatt @ Idle": "1,50", "RAMWatt @ 10%": "2,25", "RAMWatt @ 50%": "3,00", "RAMWatt @ 100%": "4,50", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,9", "Instance @ Idle": "6,1", "Instance @ 10%": "10,1", "Instance @ 50%": "16,1", "Instance @ 100%": "21,3", "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2670 (Sandy Bridge or Ivy Bridge) processors"}, {"Instance type": "db.m3.xlarge", "Release Date": "October 2012", "Instance vCPU": "4", "Platform Total Number of vCPU": "32", "Platform CPU Name": "Xeon E5-2670", "Instance Memory (in GB)": "15", "Platform Memory (in GB)": "240", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "3,47", "PkgWatt @ 10%": "9,90", "PkgWatt @ 50%": "20,36", "PkgWatt @ 100%": "27,87", "RAMWatt @ Idle": "3,00", "RAMWatt @ 10%": "4,50", "RAMWatt @ 50%": "6,00", "RAMWatt @ 100%": "9,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "5,8", "Instance @ Idle": "12,2", "Instance @ 10%": "20,1", "Instance @ 50%": "32,1", "Instance @ 100%": "42,6", "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2670 (Sandy Bridge or Ivy Bridge) processors"}, {"Instance type": "db.m3.2xlarge", "Release Date": "October 2012", "Instance vCPU": "8", "Platform Total Number of vCPU": "32", "Platform CPU Name": "Xeon E5-2670", "Instance Memory (in GB)": "30", "Platform Memory (in GB)": "240", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "6,94", "PkgWatt @ 10%": "19,80", "PkgWatt @ 50%": "40,72", "PkgWatt @ 100%": "55,74", "RAMWatt @ Idle": "6,00", "RAMWatt @ 10%": "9,00", "RAMWatt @ 50%": "12,00", "RAMWatt @ 100%": "18,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "11,5", "Instance @ Idle": "24,4", "Instance @ 10%": "40,3", "Instance @ 50%": "64,2", "Instance @ 100%": "85,2", "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2670 (Sandy Bridge or Ivy Bridge) processors"}, {"Instance type": "db.m1.small", "Release Date": "August 2006", "Instance vCPU": "1", "Platform Total Number of vCPU": "32", "Platform CPU Name": "Xeon E5-2650", "Instance Memory (in GB)": "1.7", "Platform Memory (in GB)": "120", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,72", "PkgWatt @ 10%": "2,04", "PkgWatt @ 50%": "4,21", "PkgWatt @ 100%": "5,76", "RAMWatt @ Idle": "0,34", "RAMWatt @ 10%": "0,51", "RAMWatt @ 50%": "0,68", "RAMWatt @ 100%": "1,02", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,2", "Instance @ Idle": "2,2", "Instance @ 10%": "3,7", "Instance @ 50%": "6,1", "Instance @ 100%": "8,0", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "db.m1.medium", "Release Date": "March 2012", "Instance vCPU": "1", "Platform Total Number of vCPU": "32", "Platform CPU Name": "Xeon E5-2650", "Instance Memory (in GB)": "3.75", "Platform Memory (in GB)": "120", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,72", "PkgWatt @ 10%": "2,04", "PkgWatt @ 50%": "4,21", "PkgWatt @ 100%": "5,76", "RAMWatt @ Idle": "0,75", "RAMWatt @ 10%": "1,13", "RAMWatt @ 50%": "1,50", "RAMWatt @ 100%": "2,25", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,2", "Instance @ Idle": "2,7", "Instance @ 10%": "4,4", "Instance @ 50%": "6,9", "Instance @ 100%": "9,2", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "db.m1.large", "Release Date": "October 2007", "Instance vCPU": "2", "Platform Total Number of vCPU": "32", "Platform CPU Name": "Xeon E5-2650", "Instance Memory (in GB)": "7.5", "Platform Memory (in GB)": "120", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,43", "PkgWatt @ 10%": "4,09", "PkgWatt @ 50%": "8,41", "PkgWatt @ 100%": "11,51", "RAMWatt @ Idle": "1,50", "RAMWatt @ 10%": "2,25", "RAMWatt @ 50%": "3,00", "RAMWatt @ 100%": "4,50", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,4", "Instance @ Idle": "5,3", "Instance @ 10%": "8,7", "Instance @ 50%": "13,8", "Instance @ 100%": "18,4", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "db.m1.xlarge", "Release Date": "October 2007", "Instance vCPU": "4", "Platform Total Number of vCPU": "32", "Platform CPU Name": "Xeon E5-2650", "Instance Memory (in GB)": "15", "Platform Memory (in GB)": "120", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,86", "PkgWatt @ 10%": "8,18", "PkgWatt @ 50%": "16,82", "PkgWatt @ 100%": "23,02", "RAMWatt @ Idle": "3,00", "RAMWatt @ 10%": "4,50", "RAMWatt @ 50%": "6,00", "RAMWatt @ 100%": "9,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "4,8", "Instance @ Idle": "10,6", "Instance @ 10%": "17,4", "Instance @ 50%": "27,6", "Instance @ 100%": "36,8", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "db.z1d.12xlarge", "Release Date": "July 2018", "Instance vCPU": "48", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon Platinum 8151", "Instance Memory (in GB)": "384", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "48,00", "PkgWatt @ 10%": "148,00", "PkgWatt @ 50%": "361,00", "PkgWatt @ 100%": "441,00", "RAMWatt @ Idle": "50,00", "RAMWatt @ 10%": "92,00", "RAMWatt @ 50%": "174,00", "RAMWatt @ 100%": "256,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "96,0", "Instance @ Idle": "194,0", "Instance @ 10%": "336,0", "Instance @ 50%": "631,0", "Instance @ 100%": "793,0", "Hardware Information on AWS Documentation & Comments": "Up to 4.0 GHz Intel Xeon Scalable Processors"}, {"Instance type": "db.z1d.large", "Release Date": "July 2018", "Instance vCPU": "2", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon Platinum 8151", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,00", "PkgWatt @ 10%": "6,17", "PkgWatt @ 50%": "15,04", "PkgWatt @ 100%": "18,38", "RAMWatt @ Idle": "2,08", "RAMWatt @ 10%": "3,83", "RAMWatt @ 50%": "7,25", "RAMWatt @ 100%": "10,67", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "4,0", "Instance @ Idle": "8,1", "Instance @ 10%": "14,0", "Instance @ 50%": "26,3", "Instance @ 100%": "33,0", "Hardware Information on AWS Documentation & Comments": "Up to 4.0 GHz Intel Xeon Scalable Processors"}, {"Instance type": "db.z1d.xlarge", "Release Date": "July 2018", "Instance vCPU": "4", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon Platinum 8151", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,00", "PkgWatt @ 10%": "12,33", "PkgWatt @ 50%": "30,08", "PkgWatt @ 100%": "36,75", "RAMWatt @ Idle": "4,17", "RAMWatt @ 10%": "7,67", "RAMWatt @ 50%": "14,50", "RAMWatt @ 100%": "21,33", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "8,0", "Instance @ Idle": "16,2", "Instance @ 10%": "28,0", "Instance @ 50%": "52,6", "Instance @ 100%": "66,1", "Hardware Information on AWS Documentation & Comments": "Up to 4.0 GHz Intel Xeon Scalable Processors"}, {"Instance type": "db.z1d.2xlarge", "Release Date": "July 2018", "Instance vCPU": "8", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon Platinum 8151", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "8,00", "PkgWatt @ 10%": "24,67", "PkgWatt @ 50%": "60,17", "PkgWatt @ 100%": "73,50", "RAMWatt @ Idle": "8,33", "RAMWatt @ 10%": "15,33", "RAMWatt @ 50%": "29,00", "RAMWatt @ 100%": "42,67", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "16,0", "Instance @ Idle": "32,3", "Instance @ 10%": "56,0", "Instance @ 50%": "105,2", "Instance @ 100%": "132,2", "Hardware Information on AWS Documentation & Comments": "Up to 4.0 GHz Intel Xeon Scalable Processors"}, {"Instance type": "db.z1d.3xlarge", "Release Date": "July 2018", "Instance vCPU": "12", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon Platinum 8151", "Instance Memory (in GB)": "96", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "12,00", "PkgWatt @ 10%": "37,00", "PkgWatt @ 50%": "90,25", "PkgWatt @ 100%": "110,25", "RAMWatt @ Idle": "12,50", "RAMWatt @ 10%": "23,00", "RAMWatt @ 50%": "43,50", "RAMWatt @ 100%": "64,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "24,0", "Instance @ Idle": "48,5", "Instance @ 10%": "84,0", "Instance @ 50%": "157,8", "Instance @ 100%": "198,3", "Hardware Information on AWS Documentation & Comments": "Up to 4.0 GHz Intel Xeon Scalable Processors"}, {"Instance type": "db.z1d.6xlarge", "Release Date": "July 2018", "Instance vCPU": "24", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon Platinum 8151", "Instance Memory (in GB)": "192", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "24,00", "PkgWatt @ 10%": "74,00", "PkgWatt @ 50%": "180,50", "PkgWatt @ 100%": "220,50", "RAMWatt @ Idle": "25,00", "RAMWatt @ 10%": "46,00", "RAMWatt @ 50%": "87,00", "RAMWatt @ 100%": "128,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "48,0", "Instance @ Idle": "97,0", "Instance @ 10%": "168,0", "Instance @ 50%": "315,5", "Instance @ 100%": "396,5", "Hardware Information on AWS Documentation & Comments": "Up to 4.0 GHz Intel Xeon Scalable Processors"}, {"Instance type": "db.x1e.xlarge", "Release Date": "November 2017", "Instance vCPU": "4", "Platform Total Number of vCPU": "128", "Platform CPU Name": "Xeon E7-8880 v3", "Instance Memory (in GB)": "122", "Platform Memory (in GB)": "3904", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,26", "PkgWatt @ 10%": "6,46", "PkgWatt @ 50%": "13,28", "PkgWatt @ 100%": "18,18", "RAMWatt @ Idle": "24,40", "RAMWatt @ 10%": "36,60", "RAMWatt @ 50%": "48,80", "RAMWatt @ 100%": "73,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,8", "Instance @ Idle": "30,4", "Instance @ 10%": "46,8", "Instance @ 50%": "65,8", "Instance @ 100%": "95,1", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E7-8880 v3 Processor (Haswell)"}, {"Instance type": "db.x1e.2xlarge", "Release Date": "November 2017", "Instance vCPU": "8", "Platform Total Number of vCPU": "128", "Platform CPU Name": "Xeon E7-8880 v3", "Instance Memory (in GB)": "244", "Platform Memory (in GB)": "3904", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,52", "PkgWatt @ 10%": "12,91", "PkgWatt @ 50%": "26,56", "PkgWatt @ 100%": "36,35", "RAMWatt @ Idle": "48,80", "RAMWatt @ 10%": "73,20", "RAMWatt @ 50%": "97,60", "RAMWatt @ 100%": "146,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "7,5", "Instance @ Idle": "60,8", "Instance @ 10%": "93,6", "Instance @ 50%": "131,7", "Instance @ 100%": "190,3", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E7-8880 v3 Processor (Haswell)"}, {"Instance type": "db.x1e.4xlarge", "Release Date": "November 2017", "Instance vCPU": "16", "Platform Total Number of vCPU": "128", "Platform CPU Name": "Xeon E7-8880 v3", "Instance Memory (in GB)": "488", "Platform Memory (in GB)": "3904", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "9,05", "PkgWatt @ 10%": "25,83", "PkgWatt @ 50%": "53,12", "PkgWatt @ 100%": "72,71", "RAMWatt @ Idle": "97,60", "RAMWatt @ 10%": "146,40", "RAMWatt @ 50%": "195,20", "RAMWatt @ 100%": "292,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "15,0", "Instance @ Idle": "121,6", "Instance @ 10%": "187,2", "Instance @ 50%": "263,3", "Instance @ 100%": "380,5", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E7-8880 v3 Processor (Haswell)"}, {"Instance type": "db.x1e.8xlarge", "Release Date": "November 2017", "Instance vCPU": "32", "Platform Total Number of vCPU": "128", "Platform CPU Name": "Xeon E7-8880 v3", "Instance Memory (in GB)": "976", "Platform Memory (in GB)": "3904", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "18,09", "PkgWatt @ 10%": "51,65", "PkgWatt @ 50%": "106,24", "PkgWatt @ 100%": "145,41", "RAMWatt @ Idle": "195,20", "RAMWatt @ 10%": "292,80", "RAMWatt @ 50%": "390,40", "RAMWatt @ 100%": "585,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "30,0", "Instance @ Idle": "243,3", "Instance @ 10%": "374,5", "Instance @ 50%": "526,6", "Instance @ 100%": "761,0", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E7-8880 v3 Processor (Haswell)"}, {"Instance type": "db.x1e.16xlarge", "Release Date": "November 2017", "Instance vCPU": "64", "Platform Total Number of vCPU": "128", "Platform CPU Name": "Xeon E7-8880 v3", "Instance Memory (in GB)": "1952", "Platform Memory (in GB)": "3904", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "36,19", "PkgWatt @ 10%": "103,30", "PkgWatt @ 50%": "212,47", "PkgWatt @ 100%": "290,83", "RAMWatt @ Idle": "390,40", "RAMWatt @ 10%": "585,60", "RAMWatt @ 50%": "780,80", "RAMWatt @ 100%": "1171,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "60,0", "Instance @ Idle": "486,6", "Instance @ 10%": "748,9", "Instance @ 50%": "1053,3", "Instance @ 100%": "1522,0", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E7-8880 v3 Processor (Haswell)"}, {"Instance type": "db.x1e.32xlarge", "Release Date": "September 2017", "Instance vCPU": "128", "Platform Total Number of vCPU": "128", "Platform CPU Name": "Xeon E7-8880 v3", "Instance Memory (in GB)": "3904", "Platform Memory (in GB)": "3904", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "72,37", "PkgWatt @ 10%": "206,61", "PkgWatt @ 50%": "424,94", "PkgWatt @ 100%": "581,65", "RAMWatt @ Idle": "780,80", "RAMWatt @ 10%": "1171,20", "RAMWatt @ 50%": "1561,60", "RAMWatt @ 100%": "2342,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "120,0", "Instance @ Idle": "973,2", "Instance @ 10%": "1497,8", "Instance @ 50%": "2106,5", "Instance @ 100%": "3044,1", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E7-8880 v3 Processor (Haswell)"}, {"Instance type": "db.x1.32xlarge", "Release Date": "May 2016", "Instance vCPU": "128", "Platform Total Number of vCPU": "128", "Platform CPU Name": "Xeon E7-8880 v3", "Instance Memory (in GB)": "1952", "Platform Memory (in GB)": "1952", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "72,37", "PkgWatt @ 10%": "206,61", "PkgWatt @ 50%": "424,94", "PkgWatt @ 100%": "581,65", "RAMWatt @ Idle": "390,40", "RAMWatt @ 10%": "585,60", "RAMWatt @ 50%": "780,80", "RAMWatt @ 100%": "1171,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "120,0", "Instance @ Idle": "582,8", "Instance @ 10%": "912,2", "Instance @ 50%": "1325,7", "Instance @ 100%": "1872,9", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E7-8880 v3 Processor (Haswell)"}, {"Instance type": "db.x1.16xlarge", "Release Date": "October 2016", "Instance vCPU": "64", "Platform Total Number of vCPU": "128", "Platform CPU Name": "Xeon E7-8880 v3", "Instance Memory (in GB)": "976", "Platform Memory (in GB)": "1952", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "36,19", "PkgWatt @ 10%": "103,30", "PkgWatt @ 50%": "212,47", "PkgWatt @ 100%": "290,83", "RAMWatt @ Idle": "195,20", "RAMWatt @ 10%": "292,80", "RAMWatt @ 50%": "390,40", "RAMWatt @ 100%": "585,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "60,0", "Instance @ Idle": "291,4", "Instance @ 10%": "456,1", "Instance @ 50%": "662,9", "Instance @ 100%": "936,4", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E7-8880 v3 Processor (Haswell)"}, {"Instance type": "db.r6g.large", "Release Date": "December 2019", "Instance vCPU": "2", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,54", "PkgWatt @ 10%": "1,49", "PkgWatt @ 50%": "3,53", "PkgWatt @ 100%": "4,77", "RAMWatt @ Idle": "3,20", "RAMWatt @ 10%": "4,80", "RAMWatt @ 50%": "6,40", "RAMWatt @ 100%": "9,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "0,9", "Instance @ Idle": "4,7", "Instance @ 10%": "7,2", "Instance @ 50%": "10,9", "Instance @ 100%": "15,3", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "db.r6g.xlarge", "Release Date": "December 2019", "Instance vCPU": "4", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,09", "PkgWatt @ 10%": "2,98", "PkgWatt @ 50%": "7,05", "PkgWatt @ 100%": "9,55", "RAMWatt @ Idle": "6,40", "RAMWatt @ 10%": "9,60", "RAMWatt @ 50%": "12,80", "RAMWatt @ 100%": "19,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,9", "Instance @ Idle": "9,4", "Instance @ 10%": "14,5", "Instance @ 50%": "21,7", "Instance @ 100%": "30,6", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "db.r6g.2xlarge", "Release Date": "December 2019", "Instance vCPU": "8", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,18", "PkgWatt @ 10%": "5,97", "PkgWatt @ 50%": "14,10", "PkgWatt @ 100%": "19,10", "RAMWatt @ Idle": "12,80", "RAMWatt @ 10%": "19,20", "RAMWatt @ 50%": "25,60", "RAMWatt @ 100%": "38,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,8", "Instance @ Idle": "18,7", "Instance @ 10%": "28,9", "Instance @ 50%": "43,5", "Instance @ 100%": "61,2", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "db.r6g.4xlarge", "Release Date": "December 2019", "Instance vCPU": "16", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,35", "PkgWatt @ 10%": "11,93", "PkgWatt @ 50%": "28,21", "PkgWatt @ 100%": "38,20", "RAMWatt @ Idle": "25,60", "RAMWatt @ 10%": "38,40", "RAMWatt @ 50%": "51,20", "RAMWatt @ 100%": "76,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "7,5", "Instance @ Idle": "37,5", "Instance @ 10%": "57,8", "Instance @ 50%": "86,9", "Instance @ 100%": "122,5", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "db.r6g.12xlarge", "Release Date": "December 2019", "Instance vCPU": "48", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "384", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "13,06", "PkgWatt @ 10%": "35,80", "PkgWatt @ 50%": "84,63", "PkgWatt @ 100%": "114,59", "RAMWatt @ Idle": "76,80", "RAMWatt @ 10%": "115,20", "RAMWatt @ 50%": "153,60", "RAMWatt @ 100%": "230,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "22,5", "Instance @ Idle": "112,4", "Instance @ 10%": "173,5", "Instance @ 50%": "260,7", "Instance @ 100%": "367,5", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "db.r6g.16xlarge", "Release Date": "December 2019", "Instance vCPU": "64", "Platform Total Number of vCPU": "64", "Platform CPU Name": "Graviton2", "Instance Memory (in GB)": "512", "Platform Memory (in GB)": "512", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "17,42", "PkgWatt @ 10%": "47,74", "PkgWatt @ 50%": "112,84", "PkgWatt @ 100%": "152,78", "RAMWatt @ Idle": "102,40", "RAMWatt @ 10%": "153,60", "RAMWatt @ 50%": "204,80", "RAMWatt @ 100%": "307,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "30,0", "Instance @ Idle": "149,8", "Instance @ 10%": "231,3", "Instance @ 50%": "347,6", "Instance @ 100%": "490,0", "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)"}, {"Instance type": "db.r5.large", "Release Date": "July 2018", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,21", "PkgWatt @ 10%": "3,05", "PkgWatt @ 50%": "7,16", "PkgWatt @ 100%": "9,96", "RAMWatt @ Idle": "2,41", "RAMWatt @ 10%": "3,85", "RAMWatt @ 50%": "9,92", "RAMWatt @ 100%": "15,99", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,0", "Instance @ Idle": "5,6", "Instance @ 10%": "8,9", "Instance @ 50%": "19,1", "Instance @ 100%": "27,9", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "db.r5.xlarge", "Release Date": "July 2018", "Instance vCPU": "4", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,41", "PkgWatt @ 10%": "6,11", "PkgWatt @ 50%": "14,32", "PkgWatt @ 100%": "19,92", "RAMWatt @ Idle": "4,82", "RAMWatt @ 10%": "7,70", "RAMWatt @ 50%": "19,84", "RAMWatt @ 100%": "31,98", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "4,0", "Instance @ Idle": "11,2", "Instance @ 10%": "17,8", "Instance @ 50%": "38,2", "Instance @ 100%": "55,9", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "db.r5.2xlarge", "Release Date": "July 2018", "Instance vCPU": "8", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "64", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,82", "PkgWatt @ 10%": "12,22", "PkgWatt @ 50%": "28,64", "PkgWatt @ 100%": "39,83", "RAMWatt @ Idle": "9,64", "RAMWatt @ 10%": "15,40", "RAMWatt @ 50%": "39,68", "RAMWatt @ 100%": "63,97", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "8,0", "Instance @ Idle": "22,5", "Instance @ 10%": "35,6", "Instance @ 50%": "76,3", "Instance @ 100%": "111,8", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "db.r5.4xlarge", "Release Date": "July 2018", "Instance vCPU": "16", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "128", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "9,65", "PkgWatt @ 10%": "24,44", "PkgWatt @ 50%": "57,28", "PkgWatt @ 100%": "79,66", "RAMWatt @ Idle": "19,27", "RAMWatt @ 10%": "30,80", "RAMWatt @ 50%": "79,37", "RAMWatt @ 100%": "127,94", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "16,0", "Instance @ Idle": "44,9", "Instance @ 10%": "71,2", "Instance @ 50%": "152,7", "Instance @ 100%": "223,6", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "db.r5.8xlarge", "Release Date": "June 2019", "Instance vCPU": "32", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "256", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "19,29", "PkgWatt @ 10%": "48,88", "PkgWatt @ 50%": "114,57", "PkgWatt @ 100%": "159,33", "RAMWatt @ Idle": "38,54", "RAMWatt @ 10%": "61,59", "RAMWatt @ 50%": "158,73", "RAMWatt @ 100%": "255,87", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "32,0", "Instance @ Idle": "89,8", "Instance @ 10%": "142,5", "Instance @ 50%": "305,3", "Instance @ 100%": "447,2", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "db.r5.12xlarge", "Release Date": "July 2018", "Instance vCPU": "48", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "384", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "28,94", "PkgWatt @ 10%": "73,32", "PkgWatt @ 50%": "171,85", "PkgWatt @ 100%": "238,99", "RAMWatt @ Idle": "57,81", "RAMWatt @ 10%": "92,39", "RAMWatt @ 50%": "238,10", "RAMWatt @ 100%": "383,81", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "48,0", "Instance @ Idle": "134,8", "Instance @ 10%": "213,7", "Instance @ 50%": "458,0", "Instance @ 100%": "670,8", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "db.r5.16xlarge", "Release Date": "June 2019", "Instance vCPU": "64", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "512", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "38,59", "PkgWatt @ 10%": "97,75", "PkgWatt @ 50%": "229,13", "PkgWatt @ 100%": "318,65", "RAMWatt @ Idle": "77,08", "RAMWatt @ 10%": "123,19", "RAMWatt @ 50%": "317,47", "RAMWatt @ 100%": "511,75", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "64,0", "Instance @ Idle": "179,7", "Instance @ 10%": "284,9", "Instance @ 50%": "610,6", "Instance @ 100%": "894,4", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "db.r5.24xlarge", "Release Date": "July 2018", "Instance vCPU": "96", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "768", "Platform Memory (in GB)": "768", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "57,88", "PkgWatt @ 10%": "146,63", "PkgWatt @ 50%": "343,70", "PkgWatt @ 100%": "477,98", "RAMWatt @ Idle": "115,62", "RAMWatt @ 10%": "184,78", "RAMWatt @ 50%": "476,20", "RAMWatt @ 100%": "767,62", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "96,0", "Instance @ Idle": "269,5", "Instance @ 10%": "427,4", "Instance @ 50%": "915,9", "Instance @ 100%": "1341,6", "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)"}, {"Instance type": "db.r4.large", "Release Date": "November 2016", "Instance vCPU": "2", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "15.25", "Platform Memory (in GB)": "488", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,97", "PkgWatt @ 10%": "2,77", "PkgWatt @ 50%": "5,71", "PkgWatt @ 100%": "7,81", "RAMWatt @ Idle": "3,05", "RAMWatt @ 10%": "4,58", "RAMWatt @ 50%": "6,10", "RAMWatt @ 100%": "9,15", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,6", "Instance @ Idle": "5,6", "Instance @ 10%": "9,0", "Instance @ 50%": "13,4", "Instance @ 100%": "18,6", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor"}, {"Instance type": "db.r4.xlarge", "Release Date": "November 2016", "Instance vCPU": "4", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "30.5", "Platform Memory (in GB)": "488", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,94", "PkgWatt @ 10%": "5,55", "PkgWatt @ 50%": "11,41", "PkgWatt @ 100%": "15,62", "RAMWatt @ Idle": "6,10", "RAMWatt @ 10%": "9,15", "RAMWatt @ 50%": "12,20", "RAMWatt @ 100%": "18,30", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "3,2", "Instance @ Idle": "11,3", "Instance @ 10%": "17,9", "Instance @ 50%": "26,8", "Instance @ 100%": "37,1", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor"}, {"Instance type": "db.r4.2xlarge", "Release Date": "November 2016", "Instance vCPU": "8", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "61", "Platform Memory (in GB)": "488", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "3,89", "PkgWatt @ 10%": "11,10", "PkgWatt @ 50%": "22,82", "PkgWatt @ 100%": "31,24", "RAMWatt @ Idle": "12,20", "RAMWatt @ 10%": "18,30", "RAMWatt @ 50%": "24,40", "RAMWatt @ 100%": "36,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "6,4", "Instance @ Idle": "22,5", "Instance @ 10%": "35,8", "Instance @ 50%": "53,7", "Instance @ 100%": "74,3", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor"}, {"Instance type": "db.r4.4xlarge", "Release Date": "November 2016", "Instance vCPU": "16", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "122", "Platform Memory (in GB)": "488", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "7,77", "PkgWatt @ 10%": "22,19", "PkgWatt @ 50%": "45,64", "PkgWatt @ 100%": "62,47", "RAMWatt @ Idle": "24,40", "RAMWatt @ 10%": "36,60", "RAMWatt @ 50%": "48,80", "RAMWatt @ 100%": "73,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "12,9", "Instance @ Idle": "45,1", "Instance @ 10%": "71,7", "Instance @ 50%": "107,3", "Instance @ 100%": "148,6", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor"}, {"Instance type": "db.r4.8xlarge", "Release Date": "November 2016", "Instance vCPU": "32", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "244", "Platform Memory (in GB)": "488", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "15,55", "PkgWatt @ 10%": "44,38", "PkgWatt @ 50%": "91,28", "PkgWatt @ 100%": "124,95", "RAMWatt @ Idle": "48,80", "RAMWatt @ 10%": "73,20", "RAMWatt @ 50%": "97,60", "RAMWatt @ 100%": "146,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "25,8", "Instance @ Idle": "90,1", "Instance @ 10%": "143,4", "Instance @ 50%": "214,7", "Instance @ 100%": "297,1", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor"}, {"Instance type": "db.r4.16xlarge", "Release Date": "November 2016", "Instance vCPU": "64", "Platform Total Number of vCPU": "72", "Platform CPU Name": "Xeon E5-2686 v4", "Instance Memory (in GB)": "488", "Platform Memory (in GB)": "488", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "31,09", "PkgWatt @ 10%": "88,76", "PkgWatt @ 50%": "182,57", "PkgWatt @ 100%": "249,90", "RAMWatt @ Idle": "97,60", "RAMWatt @ 10%": "146,40", "RAMWatt @ 50%": "195,20", "RAMWatt @ 100%": "292,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "51,6", "Instance @ Idle": "180,2", "Instance @ 10%": "286,7", "Instance @ 50%": "429,3", "Instance @ 100%": "594,3", "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor"}, {"Instance type": "db.r3.large", "Release Date": "April 2014", "Instance vCPU": "2", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2670 v2", "Instance Memory (in GB)": "15.25", "Platform Memory (in GB)": "244", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,39", "PkgWatt @ 10%": "3,96", "PkgWatt @ 50%": "8,14", "PkgWatt @ 100%": "11,15", "RAMWatt @ Idle": "3,05", "RAMWatt @ 10%": "4,58", "RAMWatt @ 50%": "6,10", "RAMWatt @ 100%": "9,15", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,3", "Instance @ Idle": "6,7", "Instance @ 10%": "10,8", "Instance @ 50%": "16,5", "Instance @ 100%": "22,6", "Hardware Information on AWS Documentation & Comments": "Intel Xeon Ivy Bridge Processors"}, {"Instance type": "db.r3.xlarge", "Release Date": "April 2014", "Instance vCPU": "4", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2670 v2", "Instance Memory (in GB)": "30.5", "Platform Memory (in GB)": "244", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,77", "PkgWatt @ 10%": "7,92", "PkgWatt @ 50%": "16,29", "PkgWatt @ 100%": "22,30", "RAMWatt @ Idle": "6,10", "RAMWatt @ 10%": "9,15", "RAMWatt @ 50%": "12,20", "RAMWatt @ 100%": "18,30", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "4,6", "Instance @ Idle": "13,5", "Instance @ 10%": "21,7", "Instance @ 50%": "33,1", "Instance @ 100%": "45,2", "Hardware Information on AWS Documentation & Comments": "Intel Xeon Ivy Bridge Processors"}, {"Instance type": "db.r3.2xlarge", "Release Date": "April 2014", "Instance vCPU": "8", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2670 v2", "Instance Memory (in GB)": "61", "Platform Memory (in GB)": "244", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "5,55", "PkgWatt @ 10%": "15,84", "PkgWatt @ 50%": "32,58", "PkgWatt @ 100%": "44,59", "RAMWatt @ Idle": "12,20", "RAMWatt @ 10%": "18,30", "RAMWatt @ 50%": "24,40", "RAMWatt @ 100%": "36,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "9,2", "Instance @ Idle": "26,9", "Instance @ 10%": "43,3", "Instance @ 50%": "66,2", "Instance @ 100%": "90,4", "Hardware Information on AWS Documentation & Comments": "Intel Xeon Ivy Bridge Processors"}, {"Instance type": "db.r3.4xlarge", "Release Date": "April 2014", "Instance vCPU": "16", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2670 v2", "Instance Memory (in GB)": "122", "Platform Memory (in GB)": "244", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "11,10", "PkgWatt @ 10%": "31,68", "PkgWatt @ 50%": "65,16", "PkgWatt @ 100%": "89,19", "RAMWatt @ Idle": "24,40", "RAMWatt @ 10%": "36,60", "RAMWatt @ 50%": "48,80", "RAMWatt @ 100%": "73,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "18,4", "Instance @ Idle": "53,9", "Instance @ 10%": "86,7", "Instance @ 50%": "132,4", "Instance @ 100%": "180,8", "Hardware Information on AWS Documentation & Comments": "Intel Xeon Ivy Bridge Processors"}, {"Instance type": "db.r3.8xlarge", "Release Date": "April 2014", "Instance vCPU": "32", "Platform Total Number of vCPU": "40", "Platform CPU Name": "Xeon E5-2670 v2", "Instance Memory (in GB)": "244", "Platform Memory (in GB)": "244", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "22,19", "PkgWatt @ 10%": "63,36", "PkgWatt @ 50%": "130,32", "PkgWatt @ 100%": "178,37", "RAMWatt @ Idle": "48,80", "RAMWatt @ 10%": "73,20", "RAMWatt @ 50%": "97,60", "RAMWatt @ 100%": "146,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "36,8", "Instance @ Idle": "107,8", "Instance @ 10%": "173,4", "Instance @ 50%": "264,7", "Instance @ 100%": "361,6", "Hardware Information on AWS Documentation & Comments": "Intel Xeon Ivy Bridge Processors"}, {"Instance type": "db.m2.xlarge", "Release Date": "February 2010", "Instance vCPU": "2", "Platform Total Number of vCPU": "32", "Platform CPU Name": "Xeon E5-2665", "Instance Memory (in GB)": "17.1", "Platform Memory (in GB)": "280", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,73", "PkgWatt @ 10%": "4,95", "PkgWatt @ 50%": "10,18", "PkgWatt @ 100%": "13,94", "RAMWatt @ Idle": "3,42", "RAMWatt @ 10%": "5,13", "RAMWatt @ 50%": "6,84", "RAMWatt @ 100%": "10,26", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,9", "Instance @ Idle": "8,0", "Instance @ 10%": "13,0", "Instance @ 50%": "19,9", "Instance @ 100%": "27,1", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "db.m2.2xlarge", "Release Date": "October 2009", "Instance vCPU": "4", "Platform Total Number of vCPU": "32", "Platform CPU Name": "Xeon E5-2665", "Instance Memory (in GB)": "34.2", "Platform Memory (in GB)": "280", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "3,47", "PkgWatt @ 10%": "9,90", "PkgWatt @ 50%": "20,36", "PkgWatt @ 100%": "27,87", "RAMWatt @ Idle": "6,84", "RAMWatt @ 10%": "10,26", "RAMWatt @ 50%": "13,68", "RAMWatt @ 100%": "20,52", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "5,8", "Instance @ Idle": "16,1", "Instance @ 10%": "25,9", "Instance @ 50%": "39,8", "Instance @ 100%": "54,1", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "db.m2.4xlarge", "Release Date": "October 2009", "Instance vCPU": "8", "Platform Total Number of vCPU": "32", "Platform CPU Name": "Xeon E5-2665", "Instance Memory (in GB)": "68.4", "Platform Memory (in GB)": "280", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "6,94", "PkgWatt @ 10%": "19,80", "PkgWatt @ 50%": "40,72", "PkgWatt @ 100%": "55,74", "RAMWatt @ Idle": "13,68", "RAMWatt @ 10%": "20,52", "RAMWatt @ 50%": "27,36", "RAMWatt @ 100%": "41,04", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "11,5", "Instance @ Idle": "32,1", "Instance @ 10%": "51,8", "Instance @ 50%": "79,6", "Instance @ 100%": "108,3", "Hardware Information on AWS Documentation & Comments": ""}, {"Instance type": "db.t3.micro", "Release Date": "August 2018", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "1", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,21", "PkgWatt @ 10%": "3,05", "PkgWatt @ 50%": "7,16", "PkgWatt @ 100%": "9,96", "RAMWatt @ Idle": "0,15", "RAMWatt @ 10%": "0,24", "RAMWatt @ 50%": "0,62", "RAMWatt @ 100%": "1,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,0", "Instance @ Idle": "3,4", "Instance @ 10%": "5,3", "Instance @ 50%": "9,8", "Instance @ 100%": "13,0", "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor"}, {"Instance type": "db.t3.small", "Release Date": "August 2018", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "2", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,21", "PkgWatt @ 10%": "3,05", "PkgWatt @ 50%": "7,16", "PkgWatt @ 100%": "9,96", "RAMWatt @ Idle": "0,30", "RAMWatt @ 10%": "0,48", "RAMWatt @ 50%": "1,24", "RAMWatt @ 100%": "2,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,0", "Instance @ Idle": "3,5", "Instance @ 10%": "5,5", "Instance @ 50%": "10,4", "Instance @ 100%": "14,0", "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor"}, {"Instance type": "db.t3.medium", "Release Date": "August 2018", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "4", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,21", "PkgWatt @ 10%": "3,05", "PkgWatt @ 50%": "7,16", "PkgWatt @ 100%": "9,96", "RAMWatt @ Idle": "0,60", "RAMWatt @ 10%": "0,96", "RAMWatt @ 50%": "2,48", "RAMWatt @ 100%": "4,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,0", "Instance @ Idle": "3,8", "Instance @ 10%": "6,0", "Instance @ 50%": "11,6", "Instance @ 100%": "16,0", "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor"}, {"Instance type": "db.t3.large", "Release Date": "August 2018", "Instance vCPU": "2", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,21", "PkgWatt @ 10%": "3,05", "PkgWatt @ 50%": "7,16", "PkgWatt @ 100%": "9,96", "RAMWatt @ Idle": "1,20", "RAMWatt @ 10%": "1,92", "RAMWatt @ 50%": "4,96", "RAMWatt @ 100%": "8,00", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,0", "Instance @ Idle": "4,4", "Instance @ 10%": "7,0", "Instance @ 50%": "14,1", "Instance @ 100%": "20,0", "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor"}, {"Instance type": "db.t3.xlarge", "Release Date": "August 2018", "Instance vCPU": "4", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,41", "PkgWatt @ 10%": "6,11", "PkgWatt @ 50%": "14,32", "PkgWatt @ 100%": "19,92", "RAMWatt @ Idle": "2,41", "RAMWatt @ 10%": "3,85", "RAMWatt @ 50%": "9,92", "RAMWatt @ 100%": "15,99", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "4,0", "Instance @ Idle": "8,8", "Instance @ 10%": "14,0", "Instance @ 50%": "28,2", "Instance @ 100%": "39,9", "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor"}, {"Instance type": "db.t3.2xlarge", "Release Date": "August 2018", "Instance vCPU": "8", "Platform Total Number of vCPU": "96", "Platform CPU Name": "Xeon Platinum 8175M", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "384", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,82", "PkgWatt @ 10%": "12,22", "PkgWatt @ 50%": "28,64", "PkgWatt @ 100%": "39,83", "RAMWatt @ Idle": "4,82", "RAMWatt @ 10%": "7,70", "RAMWatt @ 50%": "19,84", "RAMWatt @ 100%": "31,98", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "8,0", "Instance @ Idle": "17,6", "Instance @ 10%": "27,9", "Instance @ 50%": "56,5", "Instance @ 100%": "79,8", "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor"}, {"Instance type": "db.t2.micro", "Release Date": "July 2014", "Instance vCPU": "1", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon E5-2676 v3", "Instance Memory (in GB)": "1", "Platform Memory (in GB)": "288", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,60", "PkgWatt @ 10%": "1,72", "PkgWatt @ 50%": "3,54", "PkgWatt @ 100%": "4,85", "RAMWatt @ Idle": "0,20", "RAMWatt @ 10%": "0,30", "RAMWatt @ 50%": "0,40", "RAMWatt @ 100%": "0,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,0", "Instance @ Idle": "1,8", "Instance @ 10%": "3,0", "Instance @ 50%": "4,9", "Instance @ 100%": "6,4", "Hardware Information on AWS Documentation & Comments": "3.3 GHz Intel Scalable Processor"}, {"Instance type": "db.t2.small", "Release Date": "July 2014", "Instance vCPU": "1", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon E5-2676 v3", "Instance Memory (in GB)": "2", "Platform Memory (in GB)": "288", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "0,60", "PkgWatt @ 10%": "1,72", "PkgWatt @ 50%": "3,54", "PkgWatt @ 100%": "4,85", "RAMWatt @ Idle": "0,40", "RAMWatt @ 10%": "0,60", "RAMWatt @ 50%": "0,80", "RAMWatt @ 100%": "1,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "1,0", "Instance @ Idle": "2,0", "Instance @ 10%": "3,3", "Instance @ 50%": "5,3", "Instance @ 100%": "7,0", "Hardware Information on AWS Documentation & Comments": "3.3 GHz Intel Scalable Processor"}, {"Instance type": "db.t2.medium", "Release Date": "July 2014", "Instance vCPU": "2", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon E5-2676 v3", "Instance Memory (in GB)": "4", "Platform Memory (in GB)": "288", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,21", "PkgWatt @ 10%": "3,44", "PkgWatt @ 50%": "7,08", "PkgWatt @ 100%": "9,69", "RAMWatt @ Idle": "0,80", "RAMWatt @ 10%": "1,20", "RAMWatt @ 50%": "1,60", "RAMWatt @ 100%": "2,40", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,0", "Instance @ Idle": "4,0", "Instance @ 10%": "6,6", "Instance @ 50%": "10,7", "Instance @ 100%": "14,1", "Hardware Information on AWS Documentation & Comments": "3.3 GHz Intel Scalable Processor"}, {"Instance type": "db.t2.large", "Release Date": "June 2015", "Instance vCPU": "2", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon E5-2676 v3", "Instance Memory (in GB)": "8", "Platform Memory (in GB)": "288", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "1,21", "PkgWatt @ 10%": "3,44", "PkgWatt @ 50%": "7,08", "PkgWatt @ 100%": "9,69", "RAMWatt @ Idle": "1,60", "RAMWatt @ 10%": "2,40", "RAMWatt @ 50%": "3,20", "RAMWatt @ 100%": "4,80", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "2,0", "Instance @ Idle": "4,8", "Instance @ 10%": "7,8", "Instance @ 50%": "12,3", "Instance @ 100%": "16,5", "Hardware Information on AWS Documentation & Comments": "3.3 GHz Intel Scalable Processor"}, {"Instance type": "db.t2.xlarge", "Release Date": "November 2016", "Instance vCPU": "4", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon E5-2676 v3", "Instance Memory (in GB)": "16", "Platform Memory (in GB)": "288", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "2,41", "PkgWatt @ 10%": "6,89", "PkgWatt @ 50%": "14,16", "PkgWatt @ 100%": "19,39", "RAMWatt @ Idle": "3,20", "RAMWatt @ 10%": "4,80", "RAMWatt @ 50%": "6,40", "RAMWatt @ 100%": "9,60", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "4,0", "Instance @ Idle": "9,6", "Instance @ 10%": "15,7", "Instance @ 50%": "24,6", "Instance @ 100%": "33,0", "Hardware Information on AWS Documentation & Comments": "3.3 GHz Intel Scalable Processor"}, {"Instance type": "db.t2.2xlarge", "Release Date": "November 2016", "Instance vCPU": "8", "Platform Total Number of vCPU": "48", "Platform CPU Name": "Xeon E5-2676 v3", "Instance Memory (in GB)": "32", "Platform Memory (in GB)": "288", "Storage Info (Type and Size in GB)": "EBS-Only", "Storage Type": "EBS", "Platform Storage Drive Quantity": "0", "Platform GPU Quantity": "N/A", "Platform GPU Name": "N/A", "Instance Number of GPU": "N/A", "Instance GPU memory (in GB)": "N/A", "PkgWatt @ Idle": "4,82", "PkgWatt @ 10%": "13,77", "PkgWatt @ 50%": "28,33", "PkgWatt @ 100%": "38,78", "RAMWatt @ Idle": "6,40", "RAMWatt @ 10%": "9,60", "RAMWatt @ 50%": "12,80", "RAMWatt @ 100%": "19,20", "GPUWatt @ Idle": "0,0", "GPUWatt @ 10%": "0,0", "GPUWatt @ 50%": "0,0", "GPUWatt @ 100%": "0,0", "Delta Full Machine": "8,0", "Instance @ Idle": "19,2", "Instance @ 10%": "31,4", "Instance @ 50%": "49,1", "Instance @ 100%": "66,0", "Hardware Information on AWS Documentation & Comments": "3.3 GHz Intel Scalable Processor"}] +[ + { + "Instance type": "a1.medium", + "Release Date": "November 2018", + "Instance vCPU": "1", + "Platform Total Number of vCPU": "16", + "Platform CPU Name": "Graviton", + "Instance Memory (in GB)": "2", + "Platform Memory (in GB)": "32", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,29", + "PkgWatt @ 10%": "0,80", + "PkgWatt @ 50%": "1,88", + "PkgWatt @ 100%": "2,55", + "RAMWatt @ Idle": "0,40", + "RAMWatt @ 10%": "0,60", + "RAMWatt @ 50%": "0,80", + "RAMWatt @ 100%": "1,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "0,5", + "Instance @ Idle": "1,2", + "Instance @ 10%": "1,9", + "Instance @ 50%": "3,2", + "Instance @ 100%": "4,2", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton (ARM)" + }, + { + "Instance type": "a1.large", + "Release Date": "November 2018", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "16", + "Platform CPU Name": "Graviton", + "Instance Memory (in GB)": "4", + "Platform Memory (in GB)": "32", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,58", + "PkgWatt @ 10%": "1,59", + "PkgWatt @ 50%": "3,76", + "PkgWatt @ 100%": "5,09", + "RAMWatt @ Idle": "0,80", + "RAMWatt @ 10%": "1,20", + "RAMWatt @ 50%": "1,60", + "RAMWatt @ 100%": "2,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,0", + "Instance @ Idle": "2,4", + "Instance @ 10%": "3,8", + "Instance @ 50%": "6,4", + "Instance @ 100%": "8,5", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton (ARM)" + }, + { + "Instance type": "a1.xlarge", + "Release Date": "November 2018", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "16", + "Platform CPU Name": "Graviton", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "32", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,16", + "PkgWatt @ 10%": "3,18", + "PkgWatt @ 50%": "7,52", + "PkgWatt @ 100%": "10,19", + "RAMWatt @ Idle": "1,60", + "RAMWatt @ 10%": "2,40", + "RAMWatt @ 50%": "3,20", + "RAMWatt @ 100%": "4,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,0", + "Instance @ Idle": "4,8", + "Instance @ 10%": "7,6", + "Instance @ 50%": "12,7", + "Instance @ 100%": "17,0", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton (ARM)" + }, + { + "Instance type": "a1.2xlarge", + "Release Date": "November 2018", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "16", + "Platform CPU Name": "Graviton", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "32", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,32", + "PkgWatt @ 10%": "6,37", + "PkgWatt @ 50%": "15,05", + "PkgWatt @ 100%": "20,37", + "RAMWatt @ Idle": "3,20", + "RAMWatt @ 10%": "4,80", + "RAMWatt @ 50%": "6,40", + "RAMWatt @ 100%": "9,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "4,0", + "Instance @ Idle": "9,5", + "Instance @ 10%": "15,2", + "Instance @ 50%": "25,4", + "Instance @ 100%": "34,0", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton (ARM)" + }, + { + "Instance type": "a1.4xlarge", + "Release Date": "November 2018", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "16", + "Platform CPU Name": "Graviton", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "32", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,65", + "PkgWatt @ 10%": "12,73", + "PkgWatt @ 50%": "30,09", + "PkgWatt @ 100%": "40,74", + "RAMWatt @ Idle": "6,40", + "RAMWatt @ 10%": "9,60", + "RAMWatt @ 50%": "12,80", + "RAMWatt @ 100%": "19,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "8,0", + "Instance @ Idle": "19,0", + "Instance @ 10%": "30,3", + "Instance @ 50%": "50,9", + "Instance @ 100%": "67,9", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton (ARM)" + }, + { + "Instance type": "a1.metal", + "Release Date": "October 2019", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "16", + "Platform CPU Name": "Graviton", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "32", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,65", + "PkgWatt @ 10%": "12,73", + "PkgWatt @ 50%": "30,09", + "PkgWatt @ 100%": "40,74", + "RAMWatt @ Idle": "6,40", + "RAMWatt @ 10%": "9,60", + "RAMWatt @ 50%": "12,80", + "RAMWatt @ 100%": "19,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "8,0", + "Instance @ Idle": "19,0", + "Instance @ 10%": "30,3", + "Instance @ 50%": "50,9", + "Instance @ 100%": "67,9", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton (ARM)" + }, + { + "Instance type": "c1.medium", + "Release Date": "May 2008", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon E5-2651 v2", + "Instance Memory (in GB)": "1.7", + "Platform Memory (in GB)": "42", + "Storage Info (Type and Size in GB)": "1 x SSD 350", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,95", + "PkgWatt @ 10%": "2,73", + "PkgWatt @ 50%": "5,61", + "PkgWatt @ 100%": "7,67", + "RAMWatt @ Idle": "0,34", + "RAMWatt @ 10%": "0,51", + "RAMWatt @ 50%": "0,68", + "RAMWatt @ 100%": "1,02", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,6", + "Instance @ Idle": "2,9", + "Instance @ 10%": "4,8", + "Instance @ 50%": "7,9", + "Instance @ 100%": "10,3", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "c1.xlarge", + "Release Date": "May 2008", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon E5-2651 v2", + "Instance Memory (in GB)": "7", + "Platform Memory (in GB)": "42", + "Storage Info (Type and Size in GB)": "4 x SSD 420", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "3,82", + "PkgWatt @ 10%": "10,90", + "PkgWatt @ 50%": "22,43", + "PkgWatt @ 100%": "30,70", + "RAMWatt @ Idle": "1,40", + "RAMWatt @ 10%": "2,10", + "RAMWatt @ 50%": "2,80", + "RAMWatt @ 100%": "4,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "6,3", + "Instance @ Idle": "11,6", + "Instance @ 10%": "19,3", + "Instance @ 50%": "31,6", + "Instance @ 100%": "41,2", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "cr1.8xlarge", + "Release Date": "January 2013", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "32", + "Platform CPU Name": "Xeon E5-2670", + "Instance Memory (in GB)": "244", + "Platform Memory (in GB)": "244", + "Storage Info (Type and Size in GB)": "2 x 120 (SSD)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "27,74", + "PkgWatt @ 10%": "79,20", + "PkgWatt @ 50%": "162,90", + "PkgWatt @ 100%": "222,97", + "RAMWatt @ Idle": "48,80", + "RAMWatt @ 10%": "73,20", + "RAMWatt @ 50%": "97,60", + "RAMWatt @ 100%": "146,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "46,0", + "Instance @ Idle": "122,5", + "Instance @ 10%": "198,4", + "Instance @ 50%": "306,5", + "Instance @ 100%": "415,4", + "Hardware Information on AWS Documentation & Comments": "dual 2.6 GHz Intel Xeon E5-2670 processors" + }, + { + "Instance type": "cc2.8xlarge", + "Release Date": "November 2011", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "32", + "Platform CPU Name": "Xeon E5-2670", + "Instance Memory (in GB)": "60.5", + "Platform Memory (in GB)": "60.5", + "Storage Info (Type and Size in GB)": "4 x SSD 840", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "27,74", + "PkgWatt @ 10%": "79,20", + "PkgWatt @ 50%": "162,90", + "PkgWatt @ 100%": "222,97", + "RAMWatt @ Idle": "12,10", + "RAMWatt @ 10%": "18,15", + "RAMWatt @ 50%": "24,20", + "RAMWatt @ 100%": "36,30", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "46,0", + "Instance @ Idle": "85,8", + "Instance @ 10%": "143,3", + "Instance @ 50%": "233,1", + "Instance @ 100%": "305,3", + "Hardware Information on AWS Documentation & Comments": "dual Intel Xeon processors" + }, + { + "Instance type": "c3.large", + "Release Date": "November 2013", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2680 v2", + "Instance Memory (in GB)": "3.75", + "Platform Memory (in GB)": "60", + "Storage Info (Type and Size in GB)": "2 x 16 (SSD)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,39", + "PkgWatt @ 10%": "3,96", + "PkgWatt @ 50%": "8,14", + "PkgWatt @ 100%": "11,15", + "RAMWatt @ Idle": "0,75", + "RAMWatt @ 10%": "1,13", + "RAMWatt @ 50%": "1,50", + "RAMWatt @ 100%": "2,25", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,3", + "Instance @ Idle": "4,4", + "Instance @ 10%": "7,4", + "Instance @ 50%": "11,9", + "Instance @ 100%": "15,7", + "Hardware Information on AWS Documentation & Comments": "2.8 GHz Intel Xeon E5-2680v2 (Ivy Bridge) processor" + }, + { + "Instance type": "c3.xlarge", + "Release Date": "November 2013", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2680 v2", + "Instance Memory (in GB)": "7.5", + "Platform Memory (in GB)": "60", + "Storage Info (Type and Size in GB)": "2 x 40 (SSD)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,77", + "PkgWatt @ 10%": "7,92", + "PkgWatt @ 50%": "16,29", + "PkgWatt @ 100%": "22,30", + "RAMWatt @ Idle": "1,50", + "RAMWatt @ 10%": "2,25", + "RAMWatt @ 50%": "3,00", + "RAMWatt @ 100%": "4,50", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "4,6", + "Instance @ Idle": "8,9", + "Instance @ 10%": "14,8", + "Instance @ 50%": "23,9", + "Instance @ 100%": "31,4", + "Hardware Information on AWS Documentation & Comments": "2.8 GHz Intel Xeon E5-2680v2 (Ivy Bridge) processor" + }, + { + "Instance type": "c3.2xlarge", + "Release Date": "November 2013", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2680 v2", + "Instance Memory (in GB)": "15", + "Platform Memory (in GB)": "60", + "Storage Info (Type and Size in GB)": "2 x 80 (SSD)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "5,55", + "PkgWatt @ 10%": "15,84", + "PkgWatt @ 50%": "32,58", + "PkgWatt @ 100%": "44,59", + "RAMWatt @ Idle": "3,00", + "RAMWatt @ 10%": "4,50", + "RAMWatt @ 50%": "6,00", + "RAMWatt @ 100%": "9,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "9,2", + "Instance @ Idle": "17,7", + "Instance @ 10%": "29,5", + "Instance @ 50%": "47,8", + "Instance @ 100%": "62,8", + "Hardware Information on AWS Documentation & Comments": "2.8 GHz Intel Xeon E5-2680v2 (Ivy Bridge) processor" + }, + { + "Instance type": "c3.4xlarge", + "Release Date": "November 2013", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2680 v2", + "Instance Memory (in GB)": "30", + "Platform Memory (in GB)": "60", + "Storage Info (Type and Size in GB)": "2 x 160 (SSD)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "11,10", + "PkgWatt @ 10%": "31,68", + "PkgWatt @ 50%": "65,16", + "PkgWatt @ 100%": "89,19", + "RAMWatt @ Idle": "6,00", + "RAMWatt @ 10%": "9,00", + "RAMWatt @ 50%": "12,00", + "RAMWatt @ 100%": "18,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "18,4", + "Instance @ Idle": "35,5", + "Instance @ 10%": "59,1", + "Instance @ 50%": "95,6", + "Instance @ 100%": "125,6", + "Hardware Information on AWS Documentation & Comments": "2.8 GHz Intel Xeon E5-2680v2 (Ivy Bridge) processor" + }, + { + "Instance type": "c3.8xlarge", + "Release Date": "November 2013", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2680 v2", + "Instance Memory (in GB)": "60", + "Platform Memory (in GB)": "60", + "Storage Info (Type and Size in GB)": "2 x 320 (SSD)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "22,19", + "PkgWatt @ 10%": "63,36", + "PkgWatt @ 50%": "130,32", + "PkgWatt @ 100%": "178,37", + "RAMWatt @ Idle": "12,00", + "RAMWatt @ 10%": "18,00", + "RAMWatt @ 50%": "24,00", + "RAMWatt @ 100%": "36,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "36,8", + "Instance @ Idle": "71,0", + "Instance @ 10%": "118,2", + "Instance @ 50%": "191,1", + "Instance @ 100%": "251,2", + "Hardware Information on AWS Documentation & Comments": "2.8 GHz Intel Xeon E5-2680v2 (Ivy Bridge) processor" + }, + { + "Instance type": "c4.large", + "Release Date": "January 2015", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2666 v3", + "Instance Memory (in GB)": "3.75", + "Platform Memory (in GB)": "60", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,63", + "PkgWatt @ 10%": "4,65", + "PkgWatt @ 50%": "9,56", + "PkgWatt @ 100%": "13,09", + "RAMWatt @ Idle": "0,75", + "RAMWatt @ 10%": "1,13", + "RAMWatt @ 50%": "1,50", + "RAMWatt @ 100%": "2,25", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,7", + "Instance @ Idle": "5,1", + "Instance @ 10%": "8,5", + "Instance @ 50%": "13,8", + "Instance @ 100%": "18,0", + "Hardware Information on AWS Documentation & Comments": "2.9 GHz Intel Xeon E5-2666 v3 Processor" + }, + { + "Instance type": "c4.xlarge", + "Release Date": "January 2015", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2666 v3", + "Instance Memory (in GB)": "7.5", + "Platform Memory (in GB)": "60", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "3,26", + "PkgWatt @ 10%": "9,30", + "PkgWatt @ 50%": "19,12", + "PkgWatt @ 100%": "26,17", + "RAMWatt @ Idle": "1,50", + "RAMWatt @ 10%": "2,25", + "RAMWatt @ 50%": "3,00", + "RAMWatt @ 100%": "4,50", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "5,4", + "Instance @ Idle": "10,2", + "Instance @ 10%": "16,9", + "Instance @ 50%": "27,5", + "Instance @ 100%": "36,1", + "Hardware Information on AWS Documentation & Comments": "2.9 GHz Intel Xeon E5-2666 v3 Processor" + }, + { + "Instance type": "c4.2xlarge", + "Release Date": "January 2015", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2666 v3", + "Instance Memory (in GB)": "15", + "Platform Memory (in GB)": "60", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "6,51", + "PkgWatt @ 10%": "18,59", + "PkgWatt @ 50%": "38,25", + "PkgWatt @ 100%": "52,35", + "RAMWatt @ Idle": "3,00", + "RAMWatt @ 10%": "4,50", + "RAMWatt @ 50%": "6,00", + "RAMWatt @ 100%": "9,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "10,8", + "Instance @ Idle": "20,3", + "Instance @ 10%": "33,9", + "Instance @ 50%": "55,0", + "Instance @ 100%": "72,1", + "Hardware Information on AWS Documentation & Comments": "2.9 GHz Intel Xeon E5-2666 v3 Processor" + }, + { + "Instance type": "c4.4xlarge", + "Release Date": "January 2015", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2666 v3", + "Instance Memory (in GB)": "30", + "Platform Memory (in GB)": "60", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "13,03", + "PkgWatt @ 10%": "37,19", + "PkgWatt @ 50%": "76,49", + "PkgWatt @ 100%": "104,70", + "RAMWatt @ Idle": "6,00", + "RAMWatt @ 10%": "9,00", + "RAMWatt @ 50%": "12,00", + "RAMWatt @ 100%": "18,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "21,6", + "Instance @ Idle": "40,6", + "Instance @ 10%": "67,8", + "Instance @ 50%": "110,1", + "Instance @ 100%": "144,3", + "Hardware Information on AWS Documentation & Comments": "2.9 GHz Intel Xeon E5-2666 v3 Processor" + }, + { + "Instance type": "c4.8xlarge", + "Release Date": "January 2015", + "Instance vCPU": "36", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2666 v3", + "Instance Memory (in GB)": "60", + "Platform Memory (in GB)": "60", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "29,31", + "PkgWatt @ 10%": "83,68", + "PkgWatt @ 50%": "172,10", + "PkgWatt @ 100%": "235,57", + "RAMWatt @ Idle": "12,00", + "RAMWatt @ 10%": "18,00", + "RAMWatt @ 50%": "24,00", + "RAMWatt @ 100%": "36,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "48,6", + "Instance @ Idle": "89,9", + "Instance @ 10%": "150,3", + "Instance @ 50%": "244,7", + "Instance @ 100%": "320,2", + "Hardware Information on AWS Documentation & Comments": "2.9 GHz Intel Xeon E5-2666 v3 Processor" + }, + { + "Instance type": "c5.large", + "Release Date": "November 2016", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon Platinum 8124M", + "Instance Memory (in GB)": "4", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,41", + "PkgWatt @ 10%": "3,75", + "PkgWatt @ 50%": "8,14", + "PkgWatt @ 100%": "11,77", + "RAMWatt @ Idle": "0,78", + "RAMWatt @ 10%": "1,41", + "RAMWatt @ 50%": "2,47", + "RAMWatt @ 100%": "3,53", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,7", + "Instance @ Idle": "4,9", + "Instance @ 10%": "7,8", + "Instance @ 50%": "13,3", + "Instance @ 100%": "18,0", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)" + }, + { + "Instance type": "c5.xlarge", + "Release Date": "November 2016", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon Platinum 8124M", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,81", + "PkgWatt @ 10%": "7,49", + "PkgWatt @ 50%": "16,29", + "PkgWatt @ 100%": "23,54", + "RAMWatt @ Idle": "1,56", + "RAMWatt @ 10%": "2,81", + "RAMWatt @ 50%": "4,94", + "RAMWatt @ 100%": "7,06", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "5,3", + "Instance @ Idle": "9,7", + "Instance @ 10%": "15,6", + "Instance @ 50%": "26,6", + "Instance @ 100%": "35,9", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)" + }, + { + "Instance type": "c5.2xlarge", + "Release Date": "November 2016", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon Platinum 8124M", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "5,63", + "PkgWatt @ 10%": "14,98", + "PkgWatt @ 50%": "32,58", + "PkgWatt @ 100%": "47,08", + "RAMWatt @ Idle": "3,11", + "RAMWatt @ 10%": "5,62", + "RAMWatt @ 50%": "9,87", + "RAMWatt @ 100%": "14,12", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "10,7", + "Instance @ Idle": "19,4", + "Instance @ 10%": "31,3", + "Instance @ 50%": "53,1", + "Instance @ 100%": "71,9", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)" + }, + { + "Instance type": "c5.4xlarge", + "Release Date": "November 2016", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon Platinum 8124M", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "11,26", + "PkgWatt @ 10%": "29,97", + "PkgWatt @ 50%": "65,16", + "PkgWatt @ 100%": "94,15", + "RAMWatt @ Idle": "6,22", + "RAMWatt @ 10%": "11,24", + "RAMWatt @ 50%": "19,74", + "RAMWatt @ 100%": "28,24", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "21,3", + "Instance @ Idle": "38,8", + "Instance @ 10%": "62,5", + "Instance @ 50%": "106,2", + "Instance @ 100%": "143,7", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)" + }, + { + "Instance type": "c5.9xlarge", + "Release Date": "November 2019", + "Instance vCPU": "36", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon Platinum 8124M", + "Instance Memory (in GB)": "72", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "25,33", + "PkgWatt @ 10%": "67,43", + "PkgWatt @ 50%": "146,61", + "PkgWatt @ 100%": "211,84", + "RAMWatt @ Idle": "14,00", + "RAMWatt @ 10%": "25,29", + "RAMWatt @ 50%": "44,42", + "RAMWatt @ 100%": "63,54", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "48,0", + "Instance @ Idle": "87,3", + "Instance @ 10%": "140,7", + "Instance @ 50%": "239,0", + "Instance @ 100%": "323,4", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)" + }, + { + "Instance type": "c5.12xlarge", + "Release Date": "June 2019", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8275CL", + "Instance Memory (in GB)": "96", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "28,97", + "PkgWatt @ 10%": "87,77", + "PkgWatt @ 50%": "224,16", + "PkgWatt @ 100%": "313,38", + "RAMWatt @ Idle": "18,28", + "RAMWatt @ 10%": "33,13", + "RAMWatt @ 50%": "69,19", + "RAMWatt @ 100%": "105,24", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "48,0", + "Instance @ Idle": "95,2", + "Instance @ 10%": "168,9", + "Instance @ 50%": "341,3", + "Instance @ 100%": "466,6", + "Hardware Information on AWS Documentation & Comments": "Up to 3.9 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "c5.18xlarge", + "Release Date": "November 2019", + "Instance vCPU": "72", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon Platinum 8124M", + "Instance Memory (in GB)": "144", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "50,66", + "PkgWatt @ 10%": "134,85", + "PkgWatt @ 50%": "293,21", + "PkgWatt @ 100%": "423,68", + "RAMWatt @ Idle": "28,01", + "RAMWatt @ 10%": "50,59", + "RAMWatt @ 50%": "88,83", + "RAMWatt @ 100%": "127,07", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "96,0", + "Instance @ Idle": "174,7", + "Instance @ 10%": "281,4", + "Instance @ 50%": "478,0", + "Instance @ 100%": "646,8", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)" + }, + { + "Instance type": "c5.24xlarge", + "Release Date": "June 2019", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8275CL", + "Instance Memory (in GB)": "192", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "57,93", + "PkgWatt @ 10%": "175,53", + "PkgWatt @ 50%": "448,31", + "PkgWatt @ 100%": "626,76", + "RAMWatt @ Idle": "36,55", + "RAMWatt @ 10%": "66,26", + "RAMWatt @ 50%": "138,37", + "RAMWatt @ 100%": "210,48", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "96,0", + "Instance @ Idle": "190,5", + "Instance @ 10%": "337,8", + "Instance @ 50%": "682,7", + "Instance @ 100%": "933,2", + "Hardware Information on AWS Documentation & Comments": "Up to 3.9 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "c5.metal", + "Release Date": "June 2019", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8275CL", + "Instance Memory (in GB)": "192", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "57,93", + "PkgWatt @ 10%": "175,53", + "PkgWatt @ 50%": "448,31", + "PkgWatt @ 100%": "626,76", + "RAMWatt @ Idle": "36,55", + "RAMWatt @ 10%": "66,26", + "RAMWatt @ 50%": "138,37", + "RAMWatt @ 100%": "210,48", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "96,0", + "Instance @ Idle": "190,5", + "Instance @ 10%": "337,8", + "Instance @ 50%": "682,7", + "Instance @ 100%": "933,2", + "Hardware Information on AWS Documentation & Comments": "Up to 3.9 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "c5a.large", + "Release Date": "June 2020", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7R32", + "Instance Memory (in GB)": "4", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,68", + "PkgWatt @ 10%": "1,86", + "PkgWatt @ 50%": "4,39", + "PkgWatt @ 100%": "5,94", + "RAMWatt @ Idle": "0,80", + "RAMWatt @ 10%": "1,20", + "RAMWatt @ 50%": "1,60", + "RAMWatt @ 100%": "2,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,2", + "Instance @ Idle": "2,6", + "Instance @ 10%": "4,2", + "Instance @ 50%": "7,2", + "Instance @ 100%": "9,5", + "Hardware Information on AWS Documentation & Comments": "Up to 3.3 GHz 2nd generation AMD EPYC 7002 Series Processor" + }, + { + "Instance type": "c5a.xlarge", + "Release Date": "June 2020", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7R32", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,35", + "PkgWatt @ 10%": "3,71", + "PkgWatt @ 50%": "8,78", + "PkgWatt @ 100%": "11,88", + "RAMWatt @ Idle": "1,60", + "RAMWatt @ 10%": "2,40", + "RAMWatt @ 50%": "3,20", + "RAMWatt @ 100%": "4,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,3", + "Instance @ Idle": "5,3", + "Instance @ 10%": "8,4", + "Instance @ 50%": "14,3", + "Instance @ 100%": "19,0", + "Hardware Information on AWS Documentation & Comments": "Up to 3.3 GHz 2nd generation AMD EPYC 7002 Series Processor" + }, + { + "Instance type": "c5a.2xlarge", + "Release Date": "June 2020", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7R32", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,71", + "PkgWatt @ 10%": "7,43", + "PkgWatt @ 50%": "17,55", + "PkgWatt @ 100%": "23,77", + "RAMWatt @ Idle": "3,20", + "RAMWatt @ 10%": "4,80", + "RAMWatt @ 50%": "6,40", + "RAMWatt @ 100%": "9,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "4,7", + "Instance @ Idle": "10,6", + "Instance @ 10%": "16,9", + "Instance @ 50%": "28,6", + "Instance @ 100%": "38,0", + "Hardware Information on AWS Documentation & Comments": "Up to 3.3 GHz 2nd generation AMD EPYC 7002 Series Processor" + }, + { + "Instance type": "c5a.4xlarge", + "Release Date": "June 2020", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7R32", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "5,42", + "PkgWatt @ 10%": "14,85", + "PkgWatt @ 50%": "35,11", + "PkgWatt @ 100%": "47,53", + "RAMWatt @ Idle": "6,40", + "RAMWatt @ 10%": "9,60", + "RAMWatt @ 50%": "12,80", + "RAMWatt @ 100%": "19,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "9,3", + "Instance @ Idle": "21,2", + "Instance @ 10%": "33,8", + "Instance @ 50%": "57,2", + "Instance @ 100%": "76,1", + "Hardware Information on AWS Documentation & Comments": "Up to 3.3 GHz 2nd generation AMD EPYC 7002 Series Processor" + }, + { + "Instance type": "c5a.8xlarge", + "Release Date": "June 2020", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7R32", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "10,84", + "PkgWatt @ 10%": "29,70", + "PkgWatt @ 50%": "70,21", + "PkgWatt @ 100%": "95,06", + "RAMWatt @ Idle": "12,80", + "RAMWatt @ 10%": "19,20", + "RAMWatt @ 50%": "25,60", + "RAMWatt @ 100%": "38,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "18,7", + "Instance @ Idle": "42,3", + "Instance @ 10%": "67,6", + "Instance @ 50%": "114,5", + "Instance @ 100%": "152,1", + "Hardware Information on AWS Documentation & Comments": "Up to 3.3 GHz 2nd generation AMD EPYC 7002 Series Processor" + }, + { + "Instance type": "c5a.12xlarge", + "Release Date": "June 2020", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7R32", + "Instance Memory (in GB)": "96", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "16,26", + "PkgWatt @ 10%": "44,56", + "PkgWatt @ 50%": "105,32", + "PkgWatt @ 100%": "142,60", + "RAMWatt @ Idle": "19,20", + "RAMWatt @ 10%": "28,80", + "RAMWatt @ 50%": "38,40", + "RAMWatt @ 100%": "57,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "28,0", + "Instance @ Idle": "63,5", + "Instance @ 10%": "101,4", + "Instance @ 50%": "171,7", + "Instance @ 100%": "228,2", + "Hardware Information on AWS Documentation & Comments": "Up to 3.3 GHz 2nd generation AMD EPYC 7002 Series Processor" + }, + { + "Instance type": "c5a.16xlarge", + "Release Date": "June 2020", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7R32", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "21,68", + "PkgWatt @ 10%": "59,41", + "PkgWatt @ 50%": "140,42", + "PkgWatt @ 100%": "190,13", + "RAMWatt @ Idle": "25,60", + "RAMWatt @ 10%": "38,40", + "RAMWatt @ 50%": "51,20", + "RAMWatt @ 100%": "76,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "37,3", + "Instance @ Idle": "84,6", + "Instance @ 10%": "135,1", + "Instance @ 50%": "229,0", + "Instance @ 100%": "304,3", + "Hardware Information on AWS Documentation & Comments": "Up to 3.3 GHz 2nd generation AMD EPYC 7002 Series Processor" + }, + { + "Instance type": "c5a.24xlarge", + "Release Date": "June 2020", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7R32", + "Instance Memory (in GB)": "192", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "32,52", + "PkgWatt @ 10%": "89,11", + "PkgWatt @ 50%": "210,63", + "PkgWatt @ 100%": "285,19", + "RAMWatt @ Idle": "38,40", + "RAMWatt @ 10%": "57,60", + "RAMWatt @ 50%": "76,80", + "RAMWatt @ 100%": "115,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "56,0", + "Instance @ Idle": "126,9", + "Instance @ 10%": "202,7", + "Instance @ 50%": "343,4", + "Instance @ 100%": "456,4", + "Hardware Information on AWS Documentation & Comments": "Up to 3.3 GHz 2nd generation AMD EPYC 7002 Series Processor" + }, + { + "Instance type": "c5ad.large", + "Release Date": "August 2020", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7R32", + "Instance Memory (in GB)": "4", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "1 x 75 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,68", + "PkgWatt @ 10%": "1,86", + "PkgWatt @ 50%": "4,39", + "PkgWatt @ 100%": "5,94", + "RAMWatt @ Idle": "0,80", + "RAMWatt @ 10%": "1,20", + "RAMWatt @ 50%": "1,60", + "RAMWatt @ 100%": "2,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,2", + "Instance @ Idle": "2,6", + "Instance @ 10%": "4,2", + "Instance @ 50%": "7,2", + "Instance @ 100%": "9,5", + "Hardware Information on AWS Documentation & Comments": "Up to 3.3 GHz 2nd generation AMD EPYC 7002 Series Processor" + }, + { + "Instance type": "c5ad.xlarge", + "Release Date": "August 2020", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7R32", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "1 x 150 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,35", + "PkgWatt @ 10%": "3,71", + "PkgWatt @ 50%": "8,78", + "PkgWatt @ 100%": "11,88", + "RAMWatt @ Idle": "1,60", + "RAMWatt @ 10%": "2,40", + "RAMWatt @ 50%": "3,20", + "RAMWatt @ 100%": "4,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,3", + "Instance @ Idle": "5,3", + "Instance @ 10%": "8,4", + "Instance @ 50%": "14,3", + "Instance @ 100%": "19,0", + "Hardware Information on AWS Documentation & Comments": "Up to 3.3 GHz 2nd generation AMD EPYC 7002 Series Processor" + }, + { + "Instance type": "c5ad.2xlarge", + "Release Date": "August 2020", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7R32", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "1 x 300 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,71", + "PkgWatt @ 10%": "7,43", + "PkgWatt @ 50%": "17,55", + "PkgWatt @ 100%": "23,77", + "RAMWatt @ Idle": "3,20", + "RAMWatt @ 10%": "4,80", + "RAMWatt @ 50%": "6,40", + "RAMWatt @ 100%": "9,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "4,7", + "Instance @ Idle": "10,6", + "Instance @ 10%": "16,9", + "Instance @ 50%": "28,6", + "Instance @ 100%": "38,0", + "Hardware Information on AWS Documentation & Comments": "Up to 3.3 GHz 2nd generation AMD EPYC 7002 Series Processor" + }, + { + "Instance type": "c5ad.4xlarge", + "Release Date": "August 2020", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7R32", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "2 x 300 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "5,42", + "PkgWatt @ 10%": "14,85", + "PkgWatt @ 50%": "35,11", + "PkgWatt @ 100%": "47,53", + "RAMWatt @ Idle": "6,40", + "RAMWatt @ 10%": "9,60", + "RAMWatt @ 50%": "12,80", + "RAMWatt @ 100%": "19,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "9,3", + "Instance @ Idle": "21,2", + "Instance @ 10%": "33,8", + "Instance @ 50%": "57,2", + "Instance @ 100%": "76,1", + "Hardware Information on AWS Documentation & Comments": "Up to 3.3 GHz 2nd generation AMD EPYC 7002 Series Processor" + }, + { + "Instance type": "c5ad.8xlarge", + "Release Date": "August 2020", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7R32", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "2 x 600 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "10,84", + "PkgWatt @ 10%": "29,70", + "PkgWatt @ 50%": "70,21", + "PkgWatt @ 100%": "95,06", + "RAMWatt @ Idle": "12,80", + "RAMWatt @ 10%": "19,20", + "RAMWatt @ 50%": "25,60", + "RAMWatt @ 100%": "38,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "18,7", + "Instance @ Idle": "42,3", + "Instance @ 10%": "67,6", + "Instance @ 50%": "114,5", + "Instance @ 100%": "152,1", + "Hardware Information on AWS Documentation & Comments": "Up to 3.3 GHz 2nd generation AMD EPYC 7002 Series Processor" + }, + { + "Instance type": "c5ad.12xlarge", + "Release Date": "August 2020", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7R32", + "Instance Memory (in GB)": "96", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "2 x 900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "16,26", + "PkgWatt @ 10%": "44,56", + "PkgWatt @ 50%": "105,32", + "PkgWatt @ 100%": "142,60", + "RAMWatt @ Idle": "19,20", + "RAMWatt @ 10%": "28,80", + "RAMWatt @ 50%": "38,40", + "RAMWatt @ 100%": "57,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "28,0", + "Instance @ Idle": "63,5", + "Instance @ 10%": "101,4", + "Instance @ 50%": "171,7", + "Instance @ 100%": "228,2", + "Hardware Information on AWS Documentation & Comments": "Up to 3.3 GHz 2nd generation AMD EPYC 7002 Series Processor" + }, + { + "Instance type": "c5ad.16xlarge", + "Release Date": "August 2020", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7R32", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "2 x 1200 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "21,68", + "PkgWatt @ 10%": "59,41", + "PkgWatt @ 50%": "140,42", + "PkgWatt @ 100%": "190,13", + "RAMWatt @ Idle": "25,60", + "RAMWatt @ 10%": "38,40", + "RAMWatt @ 50%": "51,20", + "RAMWatt @ 100%": "76,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "37,3", + "Instance @ Idle": "84,6", + "Instance @ 10%": "135,1", + "Instance @ 50%": "229,0", + "Instance @ 100%": "304,3", + "Hardware Information on AWS Documentation & Comments": "Up to 3.3 GHz 2nd generation AMD EPYC 7002 Series Processor" + }, + { + "Instance type": "c5ad.24xlarge", + "Release Date": "August 2020", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7R32", + "Instance Memory (in GB)": "192", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "2 x 1900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "32,52", + "PkgWatt @ 10%": "89,11", + "PkgWatt @ 50%": "210,63", + "PkgWatt @ 100%": "285,19", + "RAMWatt @ Idle": "38,40", + "RAMWatt @ 10%": "57,60", + "RAMWatt @ 50%": "76,80", + "RAMWatt @ 100%": "115,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "56,0", + "Instance @ Idle": "126,9", + "Instance @ 10%": "202,7", + "Instance @ 50%": "343,4", + "Instance @ 100%": "456,4", + "Hardware Information on AWS Documentation & Comments": "Up to 3.3 GHz 2nd generation AMD EPYC 7002 Series Processor" + }, + { + "Instance type": "c5d.large", + "Release Date": "May 2018", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon Platinum 8124M", + "Instance Memory (in GB)": "4", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "1 x 50 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,41", + "PkgWatt @ 10%": "3,75", + "PkgWatt @ 50%": "8,14", + "PkgWatt @ 100%": "11,77", + "RAMWatt @ Idle": "0,78", + "RAMWatt @ 10%": "1,41", + "RAMWatt @ 50%": "2,47", + "RAMWatt @ 100%": "3,53", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,7", + "Instance @ Idle": "4,9", + "Instance @ 10%": "7,8", + "Instance @ 50%": "13,3", + "Instance @ 100%": "18,0", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)" + }, + { + "Instance type": "c5d.xlarge", + "Release Date": "May 2018", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon Platinum 8124M", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "1 x 100 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,81", + "PkgWatt @ 10%": "7,49", + "PkgWatt @ 50%": "16,29", + "PkgWatt @ 100%": "23,54", + "RAMWatt @ Idle": "1,56", + "RAMWatt @ 10%": "2,81", + "RAMWatt @ 50%": "4,94", + "RAMWatt @ 100%": "7,06", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "5,3", + "Instance @ Idle": "9,7", + "Instance @ 10%": "15,6", + "Instance @ 50%": "26,6", + "Instance @ 100%": "35,9", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)" + }, + { + "Instance type": "c5d.2xlarge", + "Release Date": "May 2018", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon Platinum 8124M", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "1 x 200 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "5,63", + "PkgWatt @ 10%": "14,98", + "PkgWatt @ 50%": "32,58", + "PkgWatt @ 100%": "47,08", + "RAMWatt @ Idle": "3,11", + "RAMWatt @ 10%": "5,62", + "RAMWatt @ 50%": "9,87", + "RAMWatt @ 100%": "14,12", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "10,7", + "Instance @ Idle": "19,4", + "Instance @ 10%": "31,3", + "Instance @ 50%": "53,1", + "Instance @ 100%": "71,9", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)" + }, + { + "Instance type": "c5d.4xlarge", + "Release Date": "May 2018", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon Platinum 8124M", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "1 x 400 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "11,26", + "PkgWatt @ 10%": "29,97", + "PkgWatt @ 50%": "65,16", + "PkgWatt @ 100%": "94,15", + "RAMWatt @ Idle": "6,22", + "RAMWatt @ 10%": "11,24", + "RAMWatt @ 50%": "19,74", + "RAMWatt @ 100%": "28,24", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "21,3", + "Instance @ Idle": "38,8", + "Instance @ 10%": "62,5", + "Instance @ 50%": "106,2", + "Instance @ 100%": "143,7", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)" + }, + { + "Instance type": "c5d.9xlarge", + "Release Date": "May 2018", + "Instance vCPU": "36", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon Platinum 8124M", + "Instance Memory (in GB)": "72", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "1 x 900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "25,33", + "PkgWatt @ 10%": "67,43", + "PkgWatt @ 50%": "146,61", + "PkgWatt @ 100%": "211,84", + "RAMWatt @ Idle": "14,00", + "RAMWatt @ 10%": "25,29", + "RAMWatt @ 50%": "44,42", + "RAMWatt @ 100%": "63,54", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "48,0", + "Instance @ Idle": "87,3", + "Instance @ 10%": "140,7", + "Instance @ 50%": "239,0", + "Instance @ 100%": "323,4", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)" + }, + { + "Instance type": "c5d.12xlarge", + "Release Date": "November 2019", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8275CL", + "Instance Memory (in GB)": "96", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "2 x 900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "28,97", + "PkgWatt @ 10%": "87,77", + "PkgWatt @ 50%": "224,16", + "PkgWatt @ 100%": "313,38", + "RAMWatt @ Idle": "18,28", + "RAMWatt @ 10%": "33,13", + "RAMWatt @ 50%": "69,19", + "RAMWatt @ 100%": "105,24", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "48,0", + "Instance @ Idle": "95,2", + "Instance @ 10%": "168,9", + "Instance @ 50%": "341,3", + "Instance @ 100%": "466,6", + "Hardware Information on AWS Documentation & Comments": "Up to 3.9 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "c5d.18xlarge", + "Release Date": "May 2018", + "Instance vCPU": "72", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon Platinum 8124M", + "Instance Memory (in GB)": "144", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "2 x 900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "50,66", + "PkgWatt @ 10%": "134,85", + "PkgWatt @ 50%": "293,21", + "PkgWatt @ 100%": "423,68", + "RAMWatt @ Idle": "28,01", + "RAMWatt @ 10%": "50,59", + "RAMWatt @ 50%": "88,83", + "RAMWatt @ 100%": "127,07", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "96,0", + "Instance @ Idle": "174,7", + "Instance @ 10%": "281,4", + "Instance @ 50%": "478,0", + "Instance @ 100%": "646,8", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)" + }, + { + "Instance type": "c5d.24xlarge", + "Release Date": "November 2019", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8275CL", + "Instance Memory (in GB)": "192", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "4 x 900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "57,93", + "PkgWatt @ 10%": "175,53", + "PkgWatt @ 50%": "448,31", + "PkgWatt @ 100%": "626,76", + "RAMWatt @ Idle": "36,55", + "RAMWatt @ 10%": "66,26", + "RAMWatt @ 50%": "138,37", + "RAMWatt @ 100%": "210,48", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "96,0", + "Instance @ Idle": "190,5", + "Instance @ 10%": "337,8", + "Instance @ 50%": "682,7", + "Instance @ 100%": "933,2", + "Hardware Information on AWS Documentation & Comments": "Up to 3.9 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "c5d.metal", + "Release Date": "November 2019", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8275CL", + "Instance Memory (in GB)": "192", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "4 x 900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "57,93", + "PkgWatt @ 10%": "175,53", + "PkgWatt @ 50%": "448,31", + "PkgWatt @ 100%": "626,76", + "RAMWatt @ Idle": "36,55", + "RAMWatt @ 10%": "66,26", + "RAMWatt @ 50%": "138,37", + "RAMWatt @ 100%": "210,48", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "96,0", + "Instance @ Idle": "190,5", + "Instance @ 10%": "337,8", + "Instance @ 50%": "682,7", + "Instance @ 100%": "933,2", + "Hardware Information on AWS Documentation & Comments": "Up to 3.9 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "c5n.large", + "Release Date": "November 2018", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon Platinum 8124M", + "Instance Memory (in GB)": "5.25", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,41", + "PkgWatt @ 10%": "3,75", + "PkgWatt @ 50%": "8,14", + "PkgWatt @ 100%": "11,77", + "RAMWatt @ Idle": "1,02", + "RAMWatt @ 10%": "1,84", + "RAMWatt @ 50%": "3,24", + "RAMWatt @ 100%": "4,63", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,7", + "Instance @ Idle": "5,1", + "Instance @ 10%": "8,3", + "Instance @ 50%": "14,0", + "Instance @ 100%": "19,1", + "Hardware Information on AWS Documentation & Comments": "3.0 GHz Intel Xeon Platinum Processor" + }, + { + "Instance type": "c5n.xlarge", + "Release Date": "November 2018", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon Platinum 8124M", + "Instance Memory (in GB)": "10.5", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,81", + "PkgWatt @ 10%": "7,49", + "PkgWatt @ 50%": "16,29", + "PkgWatt @ 100%": "23,54", + "RAMWatt @ Idle": "2,04", + "RAMWatt @ 10%": "3,69", + "RAMWatt @ 50%": "6,48", + "RAMWatt @ 100%": "9,27", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "5,3", + "Instance @ Idle": "10,2", + "Instance @ 10%": "16,5", + "Instance @ 50%": "28,1", + "Instance @ 100%": "38,1", + "Hardware Information on AWS Documentation & Comments": "3.0 GHz Intel Xeon Platinum Processor" + }, + { + "Instance type": "c5n.2xlarge", + "Release Date": "November 2018", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon Platinum 8124M", + "Instance Memory (in GB)": "21", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "5,63", + "PkgWatt @ 10%": "14,98", + "PkgWatt @ 50%": "32,58", + "PkgWatt @ 100%": "47,08", + "RAMWatt @ Idle": "4,08", + "RAMWatt @ 10%": "7,38", + "RAMWatt @ 50%": "12,95", + "RAMWatt @ 100%": "18,53", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "10,7", + "Instance @ Idle": "20,4", + "Instance @ 10%": "33,0", + "Instance @ 50%": "56,2", + "Instance @ 100%": "76,3", + "Hardware Information on AWS Documentation & Comments": "3.0 GHz Intel Xeon Platinum Processor" + }, + { + "Instance type": "c5n.4xlarge", + "Release Date": "November 2018", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon Platinum 8124M", + "Instance Memory (in GB)": "42", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "11,26", + "PkgWatt @ 10%": "29,97", + "PkgWatt @ 50%": "65,16", + "PkgWatt @ 100%": "94,15", + "RAMWatt @ Idle": "8,17", + "RAMWatt @ 10%": "14,75", + "RAMWatt @ 50%": "25,91", + "RAMWatt @ 100%": "37,06", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "21,3", + "Instance @ Idle": "40,8", + "Instance @ 10%": "66,1", + "Instance @ 50%": "112,4", + "Instance @ 100%": "152,5", + "Hardware Information on AWS Documentation & Comments": "3.0 GHz Intel Xeon Platinum Processor" + }, + { + "Instance type": "c5n.9xlarge", + "Release Date": "November 2018", + "Instance vCPU": "36", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon Platinum 8124M", + "Instance Memory (in GB)": "96", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "25,33", + "PkgWatt @ 10%": "67,43", + "PkgWatt @ 50%": "146,61", + "PkgWatt @ 100%": "211,84", + "RAMWatt @ Idle": "18,67", + "RAMWatt @ 10%": "33,73", + "RAMWatt @ 50%": "59,22", + "RAMWatt @ 100%": "84,72", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "48,0", + "Instance @ Idle": "92,0", + "Instance @ 10%": "149,2", + "Instance @ 50%": "253,8", + "Instance @ 100%": "344,6", + "Hardware Information on AWS Documentation & Comments": "3.0 GHz Intel Xeon Platinum Processor" + }, + { + "Instance type": "c5n.18xlarge", + "Release Date": "November 2018", + "Instance vCPU": "72", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon Platinum 8124M", + "Instance Memory (in GB)": "192", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "50,66", + "PkgWatt @ 10%": "134,85", + "PkgWatt @ 50%": "293,21", + "PkgWatt @ 100%": "423,68", + "RAMWatt @ Idle": "37,34", + "RAMWatt @ 10%": "67,45", + "RAMWatt @ 50%": "118,44", + "RAMWatt @ 100%": "169,43", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "96,0", + "Instance @ Idle": "184,0", + "Instance @ 10%": "298,3", + "Instance @ 50%": "507,7", + "Instance @ 100%": "689,1", + "Hardware Information on AWS Documentation & Comments": "3.0 GHz Intel Xeon Platinum Processor" + }, + { + "Instance type": "c5n.metal", + "Release Date": "August 2019", + "Instance vCPU": "72", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon Platinum 8124M", + "Instance Memory (in GB)": "192", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "50,66", + "PkgWatt @ 10%": "134,85", + "PkgWatt @ 50%": "293,21", + "PkgWatt @ 100%": "423,68", + "RAMWatt @ Idle": "37,34", + "RAMWatt @ 10%": "67,45", + "RAMWatt @ 50%": "118,44", + "RAMWatt @ 100%": "169,43", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "96,0", + "Instance @ Idle": "184,0", + "Instance @ 10%": "298,3", + "Instance @ 50%": "507,7", + "Instance @ 100%": "689,1", + "Hardware Information on AWS Documentation & Comments": "3.0 GHz Intel Xeon Platinum Processor" + }, + { + "Instance type": "c6g.medium", + "Release Date": "December 2019", + "Instance vCPU": "1", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "2", + "Platform Memory (in GB)": "128", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,27", + "PkgWatt @ 10%": "0,75", + "PkgWatt @ 50%": "1,76", + "PkgWatt @ 100%": "2,39", + "RAMWatt @ Idle": "0,40", + "RAMWatt @ 10%": "0,60", + "RAMWatt @ 50%": "0,80", + "RAMWatt @ 100%": "1,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "0,5", + "Instance @ Idle": "1,1", + "Instance @ 10%": "1,8", + "Instance @ 50%": "3,0", + "Instance @ 100%": "4,1", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "c6g.large", + "Release Date": "December 2019", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "4", + "Platform Memory (in GB)": "128", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,54", + "PkgWatt @ 10%": "1,49", + "PkgWatt @ 50%": "3,53", + "PkgWatt @ 100%": "4,77", + "RAMWatt @ Idle": "0,80", + "RAMWatt @ 10%": "1,20", + "RAMWatt @ 50%": "1,60", + "RAMWatt @ 100%": "2,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "0,9", + "Instance @ Idle": "2,3", + "Instance @ 10%": "3,6", + "Instance @ 50%": "6,1", + "Instance @ 100%": "8,1", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "c6g.xlarge", + "Release Date": "December 2019", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "128", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,09", + "PkgWatt @ 10%": "2,98", + "PkgWatt @ 50%": "7,05", + "PkgWatt @ 100%": "9,55", + "RAMWatt @ Idle": "1,60", + "RAMWatt @ 10%": "2,40", + "RAMWatt @ 50%": "3,20", + "RAMWatt @ 100%": "4,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,9", + "Instance @ Idle": "4,6", + "Instance @ 10%": "7,3", + "Instance @ 50%": "12,1", + "Instance @ 100%": "16,2", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "c6g.2xlarge", + "Release Date": "December 2019", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "128", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,18", + "PkgWatt @ 10%": "5,97", + "PkgWatt @ 50%": "14,10", + "PkgWatt @ 100%": "19,10", + "RAMWatt @ Idle": "3,20", + "RAMWatt @ 10%": "4,80", + "RAMWatt @ 50%": "6,40", + "RAMWatt @ 100%": "9,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,8", + "Instance @ Idle": "9,1", + "Instance @ 10%": "14,5", + "Instance @ 50%": "24,3", + "Instance @ 100%": "32,4", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "c6g.4xlarge", + "Release Date": "December 2019", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "128", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,35", + "PkgWatt @ 10%": "11,93", + "PkgWatt @ 50%": "28,21", + "PkgWatt @ 100%": "38,20", + "RAMWatt @ Idle": "6,40", + "RAMWatt @ 10%": "9,60", + "RAMWatt @ 50%": "12,80", + "RAMWatt @ 100%": "19,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "7,5", + "Instance @ Idle": "18,3", + "Instance @ 10%": "29,0", + "Instance @ 50%": "48,5", + "Instance @ 100%": "64,9", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "c6g.8xlarge", + "Release Date": "December 2019", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "128", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "8,71", + "PkgWatt @ 10%": "23,87", + "PkgWatt @ 50%": "56,42", + "PkgWatt @ 100%": "76,39", + "RAMWatt @ Idle": "12,80", + "RAMWatt @ 10%": "19,20", + "RAMWatt @ 50%": "25,60", + "RAMWatt @ 100%": "38,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "15,0", + "Instance @ Idle": "36,5", + "Instance @ 10%": "58,1", + "Instance @ 50%": "97,0", + "Instance @ 100%": "129,8", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "c6g.12xlarge", + "Release Date": "December 2019", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "96", + "Platform Memory (in GB)": "128", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "13,06", + "PkgWatt @ 10%": "35,80", + "PkgWatt @ 50%": "84,63", + "PkgWatt @ 100%": "114,59", + "RAMWatt @ Idle": "19,20", + "RAMWatt @ 10%": "28,80", + "RAMWatt @ 50%": "38,40", + "RAMWatt @ 100%": "57,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "22,5", + "Instance @ Idle": "54,8", + "Instance @ 10%": "87,1", + "Instance @ 50%": "145,5", + "Instance @ 100%": "194,7", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "c6g.16xlarge", + "Release Date": "December 2019", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "128", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "17,42", + "PkgWatt @ 10%": "47,74", + "PkgWatt @ 50%": "112,84", + "PkgWatt @ 100%": "152,78", + "RAMWatt @ Idle": "25,60", + "RAMWatt @ 10%": "38,40", + "RAMWatt @ 50%": "51,20", + "RAMWatt @ 100%": "76,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "30,0", + "Instance @ Idle": "73,0", + "Instance @ 10%": "116,1", + "Instance @ 50%": "194,0", + "Instance @ 100%": "259,6", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "c6g.metal", + "Release Date": "December 2019", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "128", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "17,42", + "PkgWatt @ 10%": "47,74", + "PkgWatt @ 50%": "112,84", + "PkgWatt @ 100%": "152,78", + "RAMWatt @ Idle": "25,60", + "RAMWatt @ 10%": "38,40", + "RAMWatt @ 50%": "51,20", + "RAMWatt @ 100%": "76,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "30,0", + "Instance @ Idle": "73,0", + "Instance @ 10%": "116,1", + "Instance @ 50%": "194,0", + "Instance @ 100%": "259,6", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "c6gd.medium", + "Release Date": "December 2019", + "Instance vCPU": "1", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "2", + "Platform Memory (in GB)": "128", + "Storage Info (Type and Size in GB)": "1 x 59 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,27", + "PkgWatt @ 10%": "0,75", + "PkgWatt @ 50%": "1,76", + "PkgWatt @ 100%": "2,39", + "RAMWatt @ Idle": "0,40", + "RAMWatt @ 10%": "0,60", + "RAMWatt @ 50%": "0,80", + "RAMWatt @ 100%": "1,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "0,5", + "Instance @ Idle": "1,1", + "Instance @ 10%": "1,8", + "Instance @ 50%": "3,0", + "Instance @ 100%": "4,1", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "c6gd.large", + "Release Date": "December 2019", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "4", + "Platform Memory (in GB)": "128", + "Storage Info (Type and Size in GB)": "1 x 118 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,54", + "PkgWatt @ 10%": "1,49", + "PkgWatt @ 50%": "3,53", + "PkgWatt @ 100%": "4,77", + "RAMWatt @ Idle": "0,80", + "RAMWatt @ 10%": "1,20", + "RAMWatt @ 50%": "1,60", + "RAMWatt @ 100%": "2,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "0,9", + "Instance @ Idle": "2,3", + "Instance @ 10%": "3,6", + "Instance @ 50%": "6,1", + "Instance @ 100%": "8,1", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "c6gd.xlarge", + "Release Date": "December 2019", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "128", + "Storage Info (Type and Size in GB)": "1 x 237 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,09", + "PkgWatt @ 10%": "2,98", + "PkgWatt @ 50%": "7,05", + "PkgWatt @ 100%": "9,55", + "RAMWatt @ Idle": "1,60", + "RAMWatt @ 10%": "2,40", + "RAMWatt @ 50%": "3,20", + "RAMWatt @ 100%": "4,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,9", + "Instance @ Idle": "4,6", + "Instance @ 10%": "7,3", + "Instance @ 50%": "12,1", + "Instance @ 100%": "16,2", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "c6gd.2xlarge", + "Release Date": "December 2019", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "128", + "Storage Info (Type and Size in GB)": "1 x 474 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,18", + "PkgWatt @ 10%": "5,97", + "PkgWatt @ 50%": "14,10", + "PkgWatt @ 100%": "19,10", + "RAMWatt @ Idle": "3,20", + "RAMWatt @ 10%": "4,80", + "RAMWatt @ 50%": "6,40", + "RAMWatt @ 100%": "9,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,8", + "Instance @ Idle": "9,1", + "Instance @ 10%": "14,5", + "Instance @ 50%": "24,3", + "Instance @ 100%": "32,4", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "c6gd.4xlarge", + "Release Date": "December 2019", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "128", + "Storage Info (Type and Size in GB)": "1 x 950 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,35", + "PkgWatt @ 10%": "11,93", + "PkgWatt @ 50%": "28,21", + "PkgWatt @ 100%": "38,20", + "RAMWatt @ Idle": "6,40", + "RAMWatt @ 10%": "9,60", + "RAMWatt @ 50%": "12,80", + "RAMWatt @ 100%": "19,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "7,5", + "Instance @ Idle": "18,3", + "Instance @ 10%": "29,0", + "Instance @ 50%": "48,5", + "Instance @ 100%": "64,9", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "c6gd.8xlarge", + "Release Date": "December 2019", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "128", + "Storage Info (Type and Size in GB)": "1 x 1900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "8,71", + "PkgWatt @ 10%": "23,87", + "PkgWatt @ 50%": "56,42", + "PkgWatt @ 100%": "76,39", + "RAMWatt @ Idle": "12,80", + "RAMWatt @ 10%": "19,20", + "RAMWatt @ 50%": "25,60", + "RAMWatt @ 100%": "38,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "15,0", + "Instance @ Idle": "36,5", + "Instance @ 10%": "58,1", + "Instance @ 50%": "97,0", + "Instance @ 100%": "129,8", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "c6gd.12xlarge", + "Release Date": "December 2019", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "96", + "Platform Memory (in GB)": "128", + "Storage Info (Type and Size in GB)": "2 x 1425 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "13,06", + "PkgWatt @ 10%": "35,80", + "PkgWatt @ 50%": "84,63", + "PkgWatt @ 100%": "114,59", + "RAMWatt @ Idle": "19,20", + "RAMWatt @ 10%": "28,80", + "RAMWatt @ 50%": "38,40", + "RAMWatt @ 100%": "57,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "22,5", + "Instance @ Idle": "54,8", + "Instance @ 10%": "87,1", + "Instance @ 50%": "145,5", + "Instance @ 100%": "194,7", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "c6gd.16xlarge", + "Release Date": "December 2019", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "128", + "Storage Info (Type and Size in GB)": "2 x 1900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "17,42", + "PkgWatt @ 10%": "47,74", + "PkgWatt @ 50%": "112,84", + "PkgWatt @ 100%": "152,78", + "RAMWatt @ Idle": "25,60", + "RAMWatt @ 10%": "38,40", + "RAMWatt @ 50%": "51,20", + "RAMWatt @ 100%": "76,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "30,0", + "Instance @ Idle": "73,0", + "Instance @ 10%": "116,1", + "Instance @ 50%": "194,0", + "Instance @ 100%": "259,6", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "c6gd.metal", + "Release Date": "December 2019", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "128", + "Storage Info (Type and Size in GB)": "2 x 1900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "17,42", + "PkgWatt @ 10%": "47,74", + "PkgWatt @ 50%": "112,84", + "PkgWatt @ 100%": "152,78", + "RAMWatt @ Idle": "25,60", + "RAMWatt @ 10%": "38,40", + "RAMWatt @ 50%": "51,20", + "RAMWatt @ 100%": "76,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "30,0", + "Instance @ Idle": "73,0", + "Instance @ 10%": "116,1", + "Instance @ 50%": "194,0", + "Instance @ 100%": "259,6", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "c6gn.medium", + "Release Date": "December 2019", + "Instance vCPU": "1", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "2", + "Platform Memory (in GB)": "128", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,27", + "PkgWatt @ 10%": "0,75", + "PkgWatt @ 50%": "1,76", + "PkgWatt @ 100%": "2,39", + "RAMWatt @ Idle": "0,40", + "RAMWatt @ 10%": "0,60", + "RAMWatt @ 50%": "0,80", + "RAMWatt @ 100%": "1,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "0,5", + "Instance @ Idle": "1,1", + "Instance @ 10%": "1,8", + "Instance @ 50%": "3,0", + "Instance @ 100%": "4,1", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "c6gn.large", + "Release Date": "December 2019", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "4", + "Platform Memory (in GB)": "128", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,54", + "PkgWatt @ 10%": "1,49", + "PkgWatt @ 50%": "3,53", + "PkgWatt @ 100%": "4,77", + "RAMWatt @ Idle": "0,80", + "RAMWatt @ 10%": "1,20", + "RAMWatt @ 50%": "1,60", + "RAMWatt @ 100%": "2,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "0,9", + "Instance @ Idle": "2,3", + "Instance @ 10%": "3,6", + "Instance @ 50%": "6,1", + "Instance @ 100%": "8,1", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "c6gn.xlarge", + "Release Date": "December 2019", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "128", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,09", + "PkgWatt @ 10%": "2,98", + "PkgWatt @ 50%": "7,05", + "PkgWatt @ 100%": "9,55", + "RAMWatt @ Idle": "1,60", + "RAMWatt @ 10%": "2,40", + "RAMWatt @ 50%": "3,20", + "RAMWatt @ 100%": "4,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,9", + "Instance @ Idle": "4,6", + "Instance @ 10%": "7,3", + "Instance @ 50%": "12,1", + "Instance @ 100%": "16,2", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "c6gn.2xlarge", + "Release Date": "December 2019", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "128", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,18", + "PkgWatt @ 10%": "5,97", + "PkgWatt @ 50%": "14,10", + "PkgWatt @ 100%": "19,10", + "RAMWatt @ Idle": "3,20", + "RAMWatt @ 10%": "4,80", + "RAMWatt @ 50%": "6,40", + "RAMWatt @ 100%": "9,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,8", + "Instance @ Idle": "9,1", + "Instance @ 10%": "14,5", + "Instance @ 50%": "24,3", + "Instance @ 100%": "32,4", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "c6gn.4xlarge", + "Release Date": "December 2019", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "128", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,35", + "PkgWatt @ 10%": "11,93", + "PkgWatt @ 50%": "28,21", + "PkgWatt @ 100%": "38,20", + "RAMWatt @ Idle": "6,40", + "RAMWatt @ 10%": "9,60", + "RAMWatt @ 50%": "12,80", + "RAMWatt @ 100%": "19,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "7,5", + "Instance @ Idle": "18,3", + "Instance @ 10%": "29,0", + "Instance @ 50%": "48,5", + "Instance @ 100%": "64,9", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "c6gn.8xlarge", + "Release Date": "December 2019", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "128", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "8,71", + "PkgWatt @ 10%": "23,87", + "PkgWatt @ 50%": "56,42", + "PkgWatt @ 100%": "76,39", + "RAMWatt @ Idle": "12,80", + "RAMWatt @ 10%": "19,20", + "RAMWatt @ 50%": "25,60", + "RAMWatt @ 100%": "38,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "15,0", + "Instance @ Idle": "36,5", + "Instance @ 10%": "58,1", + "Instance @ 50%": "97,0", + "Instance @ 100%": "129,8", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "c6gn.12xlarge", + "Release Date": "December 2019", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "96", + "Platform Memory (in GB)": "128", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "13,06", + "PkgWatt @ 10%": "35,80", + "PkgWatt @ 50%": "84,63", + "PkgWatt @ 100%": "114,59", + "RAMWatt @ Idle": "19,20", + "RAMWatt @ 10%": "28,80", + "RAMWatt @ 50%": "38,40", + "RAMWatt @ 100%": "57,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "22,5", + "Instance @ Idle": "54,8", + "Instance @ 10%": "87,1", + "Instance @ 50%": "145,5", + "Instance @ 100%": "194,7", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "c6gn.16xlarge", + "Release Date": "December 2019", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "128", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "17,42", + "PkgWatt @ 10%": "47,74", + "PkgWatt @ 50%": "112,84", + "PkgWatt @ 100%": "152,78", + "RAMWatt @ Idle": "25,60", + "RAMWatt @ 10%": "38,40", + "RAMWatt @ 50%": "51,20", + "RAMWatt @ 100%": "76,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "30,0", + "Instance @ Idle": "73,0", + "Instance @ 10%": "116,1", + "Instance @ 50%": "194,0", + "Instance @ 100%": "259,6", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "d2.xlarge", + "Release Date": "March 2015", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon E5-2676 v3", + "Instance Memory (in GB)": "30.5", + "Platform Memory (in GB)": "244", + "Storage Info (Type and Size in GB)": "3 x 2000 HDD", + "Storage Type": "HDD", + "Platform Storage Drive Quantity": "24", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,41", + "PkgWatt @ 10%": "6,89", + "PkgWatt @ 50%": "14,16", + "PkgWatt @ 100%": "19,39", + "RAMWatt @ Idle": "6,10", + "RAMWatt @ 10%": "9,15", + "RAMWatt @ 50%": "12,20", + "RAMWatt @ 100%": "18,30", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "4,0", + "Instance @ Idle": "12,5", + "Instance @ 10%": "20,0", + "Instance @ 50%": "30,4", + "Instance @ 100%": "41,7", + "Hardware Information on AWS Documentation & Comments": "2.4 GHz Intel Xeon E5-2676 v3 Processor (Haswell)" + }, + { + "Instance type": "d2.2xlarge", + "Release Date": "March 2015", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon E5-2676 v3", + "Instance Memory (in GB)": "61", + "Platform Memory (in GB)": "244", + "Storage Info (Type and Size in GB)": "6 x 2000 HDD", + "Storage Type": "HDD", + "Platform Storage Drive Quantity": "24", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,82", + "PkgWatt @ 10%": "13,77", + "PkgWatt @ 50%": "28,33", + "PkgWatt @ 100%": "38,78", + "RAMWatt @ Idle": "12,20", + "RAMWatt @ 10%": "18,30", + "RAMWatt @ 50%": "24,40", + "RAMWatt @ 100%": "36,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "8,0", + "Instance @ Idle": "25,0", + "Instance @ 10%": "40,1", + "Instance @ 50%": "60,7", + "Instance @ 100%": "83,4", + "Hardware Information on AWS Documentation & Comments": "2.4 GHz Intel Xeon E5-2676 v3 Processor (Haswell)" + }, + { + "Instance type": "d2.4xlarge", + "Release Date": "March 2015", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon E5-2676 v3", + "Instance Memory (in GB)": "122", + "Platform Memory (in GB)": "244", + "Storage Info (Type and Size in GB)": "12 x 2000 HDD", + "Storage Type": "HDD", + "Platform Storage Drive Quantity": "24", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "9,65", + "PkgWatt @ 10%": "27,55", + "PkgWatt @ 50%": "56,66", + "PkgWatt @ 100%": "77,55", + "RAMWatt @ Idle": "24,40", + "RAMWatt @ 10%": "36,60", + "RAMWatt @ 50%": "48,80", + "RAMWatt @ 100%": "73,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "16,0", + "Instance @ Idle": "50,0", + "Instance @ 10%": "80,1", + "Instance @ 50%": "121,5", + "Instance @ 100%": "166,8", + "Hardware Information on AWS Documentation & Comments": "2.4 GHz Intel Xeon E5-2676 v3 Processor (Haswell)" + }, + { + "Instance type": "d2.8xlarge", + "Release Date": "March 2015", + "Instance vCPU": "36", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon E5-2676 v3", + "Instance Memory (in GB)": "244", + "Platform Memory (in GB)": "244", + "Storage Info (Type and Size in GB)": "24 x 2000 HDD", + "Storage Type": "HDD", + "Platform Storage Drive Quantity": "24", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "21,71", + "PkgWatt @ 10%": "61,98", + "PkgWatt @ 50%": "127,48", + "PkgWatt @ 100%": "174,50", + "RAMWatt @ Idle": "48,80", + "RAMWatt @ 10%": "73,20", + "RAMWatt @ 50%": "97,60", + "RAMWatt @ 100%": "146,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "36,0", + "Instance @ Idle": "106,5", + "Instance @ 10%": "171,2", + "Instance @ 50%": "261,1", + "Instance @ 100%": "356,9", + "Hardware Information on AWS Documentation & Comments": "2.4 GHz Intel Xeon E5-2676 v3 Processor (Haswell)" + }, + { + "Instance type": "d3.xlarge", + "Release Date": "December 2020", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "3 x 2 HDD", + "Storage Type": "HDD", + "Platform Storage Drive Quantity": "24", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,28", + "PkgWatt @ 10%": "5,75", + "PkgWatt @ 50%": "12,79", + "PkgWatt @ 100%": "18,56", + "RAMWatt @ Idle": "4,98", + "RAMWatt @ 10%": "8,24", + "RAMWatt @ 50%": "14,74", + "RAMWatt @ 100%": "21,25", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,5", + "Instance @ Idle": "10,8", + "Instance @ 10%": "17,5", + "Instance @ 50%": "31,0", + "Instance @ 100%": "43,3", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "d3.2xlarge", + "Release Date": "December 2020", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "6 x 2 HDD", + "Storage Type": "HDD", + "Platform Storage Drive Quantity": "24", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,56", + "PkgWatt @ 10%": "11,49", + "PkgWatt @ 50%": "25,58", + "PkgWatt @ 100%": "37,12", + "RAMWatt @ Idle": "9,95", + "RAMWatt @ 10%": "16,47", + "RAMWatt @ 50%": "29,48", + "RAMWatt @ 100%": "42,49", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "7,0", + "Instance @ Idle": "21,5", + "Instance @ 10%": "35,0", + "Instance @ 50%": "62,1", + "Instance @ 100%": "86,6", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "d3.4xlarge", + "Release Date": "December 2020", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "12 x 2 HDD", + "Storage Type": "HDD", + "Platform Storage Drive Quantity": "24", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "9,12", + "PkgWatt @ 10%": "22,99", + "PkgWatt @ 50%": "51,16", + "PkgWatt @ 100%": "74,23", + "RAMWatt @ Idle": "19,91", + "RAMWatt @ 10%": "32,94", + "RAMWatt @ 50%": "58,96", + "RAMWatt @ 100%": "84,98", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "14,0", + "Instance @ Idle": "43,0", + "Instance @ 10%": "69,9", + "Instance @ 50%": "124,1", + "Instance @ 100%": "173,2", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "d3.8xlarge", + "Release Date": "December 2020", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "256", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "24 x 2 HDD", + "Storage Type": "HDD", + "Platform Storage Drive Quantity": "24", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "18,24", + "PkgWatt @ 10%": "45,97", + "PkgWatt @ 50%": "102,31", + "PkgWatt @ 100%": "148,46", + "RAMWatt @ Idle": "39,81", + "RAMWatt @ 10%": "65,89", + "RAMWatt @ 50%": "117,93", + "RAMWatt @ 100%": "169,97", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "28,0", + "Instance @ Idle": "86,0", + "Instance @ 10%": "139,9", + "Instance @ 50%": "248,2", + "Instance @ 100%": "346,4", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "d3en.xlarge", + "Release Date": "December 2020", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "2 x 14 HDD", + "Storage Type": "HDD", + "Platform Storage Drive Quantity": "24", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,28", + "PkgWatt @ 10%": "5,75", + "PkgWatt @ 50%": "12,79", + "PkgWatt @ 100%": "18,56", + "RAMWatt @ Idle": "2,49", + "RAMWatt @ 10%": "4,12", + "RAMWatt @ 50%": "7,37", + "RAMWatt @ 100%": "10,62", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,5", + "Instance @ Idle": "8,3", + "Instance @ 10%": "13,4", + "Instance @ 50%": "23,7", + "Instance @ 100%": "32,7", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "d3en.2xlarge", + "Release Date": "December 2020", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "4 x 14 HDD", + "Storage Type": "HDD", + "Platform Storage Drive Quantity": "24", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,56", + "PkgWatt @ 10%": "11,49", + "PkgWatt @ 50%": "25,58", + "PkgWatt @ 100%": "37,12", + "RAMWatt @ Idle": "4,98", + "RAMWatt @ 10%": "8,24", + "RAMWatt @ 50%": "14,74", + "RAMWatt @ 100%": "21,25", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "7,0", + "Instance @ Idle": "16,5", + "Instance @ 10%": "26,7", + "Instance @ 50%": "47,3", + "Instance @ 100%": "65,4", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "d3en.4xlarge", + "Release Date": "December 2020", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "8 x 14 HDD", + "Storage Type": "HDD", + "Platform Storage Drive Quantity": "24", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "9,12", + "PkgWatt @ 10%": "22,99", + "PkgWatt @ 50%": "51,16", + "PkgWatt @ 100%": "74,23", + "RAMWatt @ Idle": "9,95", + "RAMWatt @ 10%": "16,47", + "RAMWatt @ 50%": "29,48", + "RAMWatt @ 100%": "42,49", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "14,0", + "Instance @ Idle": "33,1", + "Instance @ 10%": "53,5", + "Instance @ 50%": "94,6", + "Instance @ 100%": "130,7", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "d3en.6xlarge", + "Release Date": "December 2020", + "Instance vCPU": "24", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "96", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "12 x 14 HDD", + "Storage Type": "HDD", + "Platform Storage Drive Quantity": "24", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "13,68", + "PkgWatt @ 10%": "34,48", + "PkgWatt @ 50%": "76,73", + "PkgWatt @ 100%": "111,35", + "RAMWatt @ Idle": "14,93", + "RAMWatt @ 10%": "24,71", + "RAMWatt @ 50%": "44,22", + "RAMWatt @ 100%": "63,74", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "21,0", + "Instance @ Idle": "49,6", + "Instance @ 10%": "80,2", + "Instance @ 50%": "142,0", + "Instance @ 100%": "196,1", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "d3en.8xlarge", + "Release Date": "December 2020", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "16 x 14 HDD", + "Storage Type": "HDD", + "Platform Storage Drive Quantity": "24", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "18,24", + "PkgWatt @ 10%": "45,97", + "PkgWatt @ 50%": "102,31", + "PkgWatt @ 100%": "148,46", + "RAMWatt @ Idle": "19,91", + "RAMWatt @ 10%": "32,94", + "RAMWatt @ 50%": "58,96", + "RAMWatt @ 100%": "84,98", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "28,0", + "Instance @ Idle": "66,1", + "Instance @ 10%": "106,9", + "Instance @ 50%": "189,3", + "Instance @ 100%": "261,4", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "d3en.12xlarge", + "Release Date": "December 2020", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "192", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "24 x 14 HDD", + "Storage Type": "HDD", + "Platform Storage Drive Quantity": "24", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "27,36", + "PkgWatt @ 10%": "68,96", + "PkgWatt @ 50%": "153,47", + "PkgWatt @ 100%": "222,69", + "RAMWatt @ Idle": "29,86", + "RAMWatt @ 10%": "49,42", + "RAMWatt @ 50%": "88,45", + "RAMWatt @ 100%": "127,48", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "42,0", + "Instance @ Idle": "99,2", + "Instance @ 10%": "160,4", + "Instance @ 50%": "283,9", + "Instance @ 100%": "392,2", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "dc2.large", + "Release Date": "October 2017", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2670 v2", + "Instance Memory (in GB)": "15", + "Platform Memory (in GB)": "244", + "Storage Info (Type and Size in GB)": "160 SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,39", + "PkgWatt @ 10%": "3,96", + "PkgWatt @ 50%": "8,14", + "PkgWatt @ 100%": "11,15", + "RAMWatt @ Idle": "3,00", + "RAMWatt @ 10%": "4,50", + "RAMWatt @ 50%": "6,00", + "RAMWatt @ 100%": "9,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,3", + "Instance @ Idle": "6,7", + "Instance @ 10%": "10,8", + "Instance @ 50%": "16,4", + "Instance @ 100%": "22,4", + "Hardware Information on AWS Documentation & Comments": "N/A" + }, + { + "Instance type": "dc2.8xlarge", + "Release Date": "October 2017", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2670 v2", + "Instance Memory (in GB)": "244", + "Platform Memory (in GB)": "244", + "Storage Info (Type and Size in GB)": "2560 SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "22,19", + "PkgWatt @ 10%": "63,36", + "PkgWatt @ 50%": "130,32", + "PkgWatt @ 100%": "178,37", + "RAMWatt @ Idle": "48,80", + "RAMWatt @ 10%": "73,20", + "RAMWatt @ 50%": "97,60", + "RAMWatt @ 100%": "146,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "36,8", + "Instance @ Idle": "107,8", + "Instance @ 10%": "173,4", + "Instance @ 50%": "264,7", + "Instance @ 100%": "361,6", + "Hardware Information on AWS Documentation & Comments": "N/A" + }, + { + "Instance type": "ds2.xlarge", + "Release Date": "June 2015", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon E5-2676 v3", + "Instance Memory (in GB)": "31", + "Platform Memory (in GB)": "244", + "Storage Info (Type and Size in GB)": "2000 HDD", + "Storage Type": "HDD", + "Platform Storage Drive Quantity": "8", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,41", + "PkgWatt @ 10%": "6,89", + "PkgWatt @ 50%": "14,16", + "PkgWatt @ 100%": "19,39", + "RAMWatt @ Idle": "6,20", + "RAMWatt @ 10%": "9,30", + "RAMWatt @ 50%": "12,40", + "RAMWatt @ 100%": "18,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "4,0", + "Instance @ Idle": "12,6", + "Instance @ 10%": "20,2", + "Instance @ 50%": "30,6", + "Instance @ 100%": "42,0", + "Hardware Information on AWS Documentation & Comments": "N/A" + }, + { + "Instance type": "ds2.8xlarge", + "Release Date": "June 2015", + "Instance vCPU": "36", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon E5-2676 v3", + "Instance Memory (in GB)": "244", + "Platform Memory (in GB)": "244", + "Storage Info (Type and Size in GB)": "16000 HDD", + "Storage Type": "HDD", + "Platform Storage Drive Quantity": "8", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "21,71", + "PkgWatt @ 10%": "61,98", + "PkgWatt @ 50%": "127,48", + "PkgWatt @ 100%": "174,50", + "RAMWatt @ Idle": "48,80", + "RAMWatt @ 10%": "73,20", + "RAMWatt @ 50%": "97,60", + "RAMWatt @ 100%": "146,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "36,0", + "Instance @ Idle": "106,5", + "Instance @ 10%": "171,2", + "Instance @ 50%": "261,1", + "Instance @ 100%": "356,9", + "Hardware Information on AWS Documentation & Comments": "N/A" + }, + { + "Instance type": "f1.2xlarge", + "Release Date": "November 2016", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "122", + "Platform Memory (in GB)": "976", + "Storage Info (Type and Size in GB)": "SSD 470", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "3,89", + "PkgWatt @ 10%": "11,10", + "PkgWatt @ 50%": "22,82", + "PkgWatt @ 100%": "31,24", + "RAMWatt @ Idle": "24,40", + "RAMWatt @ 10%": "36,60", + "RAMWatt @ 50%": "48,80", + "RAMWatt @ 100%": "73,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "6,4", + "Instance @ Idle": "34,7", + "Instance @ 10%": "54,1", + "Instance @ 50%": "78,1", + "Instance @ 100%": "110,9", + "Hardware Information on AWS Documentation & Comments": "1 FPGA - Comment: the estimated Scope 3 does not include the FPGA(s)" + }, + { + "Instance type": "f1.4xlarge", + "Release Date": "November 2016", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "244", + "Platform Memory (in GB)": "976", + "Storage Info (Type and Size in GB)": "SSD 940", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "7,77", + "PkgWatt @ 10%": "22,19", + "PkgWatt @ 50%": "45,64", + "PkgWatt @ 100%": "62,47", + "RAMWatt @ Idle": "48,80", + "RAMWatt @ 10%": "73,20", + "RAMWatt @ 50%": "97,60", + "RAMWatt @ 100%": "146,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "12,9", + "Instance @ Idle": "69,5", + "Instance @ 10%": "108,3", + "Instance @ 50%": "156,1", + "Instance @ 100%": "221,8", + "Hardware Information on AWS Documentation & Comments": "2 FPGA - Comment: the estimated Scope 3 does not include the FPGA(s)" + }, + { + "Instance type": "f1.16xlarge", + "Release Date": "November 2016", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "976", + "Platform Memory (in GB)": "976", + "Storage Info (Type and Size in GB)": "SSD 4 x 940", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "31,09", + "PkgWatt @ 10%": "88,76", + "PkgWatt @ 50%": "182,57", + "PkgWatt @ 100%": "249,90", + "RAMWatt @ Idle": "195,20", + "RAMWatt @ 10%": "292,80", + "RAMWatt @ 50%": "390,40", + "RAMWatt @ 100%": "585,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "51,6", + "Instance @ Idle": "277,8", + "Instance @ 10%": "433,1", + "Instance @ 50%": "624,5", + "Instance @ 100%": "887,1", + "Hardware Information on AWS Documentation & Comments": "8 FPGA - Comment: the estimated Scope 3 does not include the FPGA(s)" + }, + { + "Instance type": "g2.2xlarge", + "Release Date": "November 2013", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "32", + "Platform CPU Name": "Xeon E5-2670", + "Instance Memory (in GB)": "15", + "Platform Memory (in GB)": "60", + "Storage Info (Type and Size in GB)": "1 x 60 (SSD)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "4", + "Platform GPU Name": "K520", + "Instance Number of GPU": "1", + "Instance GPU memory (in GB)": "4", + "PkgWatt @ Idle": "6,94", + "PkgWatt @ 10%": "19,80", + "PkgWatt @ 50%": "40,72", + "PkgWatt @ 100%": "55,74", + "RAMWatt @ Idle": "3,00", + "RAMWatt @ 10%": "4,50", + "RAMWatt @ 50%": "6,00", + "RAMWatt @ 100%": "9,00", + "GPUWatt @ Idle": "26,1", + "GPUWatt @ 10%": "71,6", + "GPUWatt @ 50%": "169,3", + "GPUWatt @ 100%": "229,2", + "Delta Full Machine": "11,5", + "Instance @ Idle": "47,6", + "Instance @ 10%": "107,4", + "Instance @ 50%": "227,5", + "Instance @ 100%": "305,4", + "Hardware Information on AWS Documentation & Comments": "1 GPU NVIDIA GRID K520" + }, + { + "Instance type": "g2.8xlarge", + "Release Date": "April 2015", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "32", + "Platform CPU Name": "Xeon E5-2670", + "Instance Memory (in GB)": "60", + "Platform Memory (in GB)": "60", + "Storage Info (Type and Size in GB)": "2 x 120 (SSD)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "4", + "Platform GPU Name": "K520", + "Instance Number of GPU": "4", + "Instance GPU memory (in GB)": "16", + "PkgWatt @ Idle": "27,74", + "PkgWatt @ 10%": "79,20", + "PkgWatt @ 50%": "162,90", + "PkgWatt @ 100%": "222,97", + "RAMWatt @ Idle": "12,00", + "RAMWatt @ 10%": "18,00", + "RAMWatt @ 50%": "24,00", + "RAMWatt @ 100%": "36,00", + "GPUWatt @ Idle": "104,5", + "GPUWatt @ 10%": "286,4", + "GPUWatt @ 50%": "677,0", + "GPUWatt @ 100%": "916,7", + "Delta Full Machine": "46,0", + "Instance @ Idle": "190,3", + "Instance @ 10%": "429,6", + "Instance @ 50%": "909,9", + "Instance @ 100%": "1221,7", + "Hardware Information on AWS Documentation & Comments": "4 GPU NVIDIA GRID K520" + }, + { + "Instance type": "g3s.xlarge", + "Release Date": "October 2018", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "30.5", + "Platform Memory (in GB)": "488", + "Storage Info (Type and Size in GB)": "", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "4", + "Platform GPU Name": "Tesla M60", + "Instance Number of GPU": "1", + "Instance GPU memory (in GB)": "8", + "PkgWatt @ Idle": "1,94", + "PkgWatt @ 10%": "5,55", + "PkgWatt @ 50%": "11,41", + "PkgWatt @ 100%": "15,62", + "RAMWatt @ Idle": "6,10", + "RAMWatt @ 10%": "9,15", + "RAMWatt @ 50%": "12,20", + "RAMWatt @ 100%": "18,30", + "GPUWatt @ Idle": "34,8", + "GPUWatt @ 10%": "95,5", + "GPUWatt @ 50%": "225,7", + "GPUWatt @ 100%": "305,6", + "Delta Full Machine": "3,2", + "Instance @ Idle": "46,1", + "Instance @ 10%": "113,4", + "Instance @ 50%": "252,5", + "Instance @ 100%": "342,7", + "Hardware Information on AWS Documentation & Comments": "1*GPU NVIDIA Tesla M60" + }, + { + "Instance type": "g3.4xlarge", + "Release Date": "July 2017", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "122", + "Platform Memory (in GB)": "488", + "Storage Info (Type and Size in GB)": "", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "4", + "Platform GPU Name": "Tesla M60", + "Instance Number of GPU": "1", + "Instance GPU memory (in GB)": "8", + "PkgWatt @ Idle": "7,77", + "PkgWatt @ 10%": "22,19", + "PkgWatt @ 50%": "45,64", + "PkgWatt @ 100%": "62,47", + "RAMWatt @ Idle": "24,40", + "RAMWatt @ 10%": "36,60", + "RAMWatt @ 50%": "48,80", + "RAMWatt @ 100%": "73,20", + "GPUWatt @ Idle": "34,8", + "GPUWatt @ 10%": "95,5", + "GPUWatt @ 50%": "225,7", + "GPUWatt @ 100%": "305,6", + "Delta Full Machine": "12,9", + "Instance @ Idle": "79,9", + "Instance @ 10%": "167,2", + "Instance @ 50%": "333,0", + "Instance @ 100%": "454,1", + "Hardware Information on AWS Documentation & Comments": "1*GPU NVIDIA Tesla M60" + }, + { + "Instance type": "g3.8xlarge", + "Release Date": "July 2017", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "244", + "Platform Memory (in GB)": "488", + "Storage Info (Type and Size in GB)": "", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "4", + "Platform GPU Name": "Tesla M60", + "Instance Number of GPU": "2", + "Instance GPU memory (in GB)": "16", + "PkgWatt @ Idle": "15,55", + "PkgWatt @ 10%": "44,38", + "PkgWatt @ 50%": "91,28", + "PkgWatt @ 100%": "124,95", + "RAMWatt @ Idle": "48,80", + "RAMWatt @ 10%": "73,20", + "RAMWatt @ 50%": "97,60", + "RAMWatt @ 100%": "146,40", + "GPUWatt @ Idle": "69,7", + "GPUWatt @ 10%": "191,0", + "GPUWatt @ 50%": "451,4", + "GPUWatt @ 100%": "611,1", + "Delta Full Machine": "25,8", + "Instance @ Idle": "159,8", + "Instance @ 10%": "334,3", + "Instance @ 50%": "666,0", + "Instance @ 100%": "908,3", + "Hardware Information on AWS Documentation & Comments": "2*GPU NVIDIA Tesla M60" + }, + { + "Instance type": "g3.16xlarge", + "Release Date": "July 2017", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "488", + "Platform Memory (in GB)": "488", + "Storage Info (Type and Size in GB)": "", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "4", + "Platform GPU Name": "Tesla M60", + "Instance Number of GPU": "4", + "Instance GPU memory (in GB)": "32", + "PkgWatt @ Idle": "31,09", + "PkgWatt @ 10%": "88,76", + "PkgWatt @ 50%": "182,57", + "PkgWatt @ 100%": "249,90", + "RAMWatt @ Idle": "97,60", + "RAMWatt @ 10%": "146,40", + "RAMWatt @ 50%": "195,20", + "RAMWatt @ 100%": "292,80", + "GPUWatt @ Idle": "139,4", + "GPUWatt @ 10%": "381,9", + "GPUWatt @ 50%": "902,7", + "GPUWatt @ 100%": "1222,3", + "Delta Full Machine": "51,6", + "Instance @ Idle": "319,6", + "Instance @ 10%": "668,6", + "Instance @ 50%": "1332,0", + "Instance @ 100%": "1816,5", + "Hardware Information on AWS Documentation & Comments": "4*GPU NVIDIA Tesla M60" + }, + { + "Instance type": "g4dn.xlarge", + "Release Date": "March 2019", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "125", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "8", + "Platform GPU Name": "T4", + "Instance Number of GPU": "1", + "Instance GPU memory (in GB)": "16", + "PkgWatt @ Idle": "2,28", + "PkgWatt @ 10%": "5,75", + "PkgWatt @ 50%": "12,79", + "PkgWatt @ 100%": "18,56", + "RAMWatt @ Idle": "2,49", + "RAMWatt @ 10%": "4,12", + "RAMWatt @ 50%": "7,37", + "RAMWatt @ 100%": "10,62", + "GPUWatt @ Idle": "8,1", + "GPUWatt @ 10%": "22,3", + "GPUWatt @ 50%": "52,7", + "GPUWatt @ 100%": "71,3", + "Delta Full Machine": "3,5", + "Instance @ Idle": "16,4", + "Instance @ 10%": "35,6", + "Instance @ 50%": "76,3", + "Instance @ 100%": "104,0", + "Hardware Information on AWS Documentation & Comments": "NVIDIA T4 GPU and custom Intel Cascade Lake CPUs" + }, + { + "Instance type": "g4dn.2xlarge", + "Release Date": "March 2019", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "225", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "8", + "Platform GPU Name": "T4", + "Instance Number of GPU": "1", + "Instance GPU memory (in GB)": "16", + "PkgWatt @ Idle": "4,56", + "PkgWatt @ 10%": "11,49", + "PkgWatt @ 50%": "25,58", + "PkgWatt @ 100%": "37,12", + "RAMWatt @ Idle": "4,98", + "RAMWatt @ 10%": "8,24", + "RAMWatt @ 50%": "14,74", + "RAMWatt @ 100%": "21,25", + "GPUWatt @ Idle": "8,1", + "GPUWatt @ 10%": "22,3", + "GPUWatt @ 50%": "52,7", + "GPUWatt @ 100%": "71,3", + "Delta Full Machine": "7,0", + "Instance @ Idle": "24,7", + "Instance @ 10%": "49,0", + "Instance @ 50%": "100,0", + "Instance @ 100%": "136,7", + "Hardware Information on AWS Documentation & Comments": "NVIDIA T4 GPU and custom Intel Cascade Lake CPUs" + }, + { + "Instance type": "g4dn.4xlarge", + "Release Date": "March 2019", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "225", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "8", + "Platform GPU Name": "T4", + "Instance Number of GPU": "1", + "Instance GPU memory (in GB)": "16", + "PkgWatt @ Idle": "9,12", + "PkgWatt @ 10%": "22,99", + "PkgWatt @ 50%": "51,16", + "PkgWatt @ 100%": "74,23", + "RAMWatt @ Idle": "9,95", + "RAMWatt @ 10%": "16,47", + "RAMWatt @ 50%": "29,48", + "RAMWatt @ 100%": "42,49", + "GPUWatt @ Idle": "8,1", + "GPUWatt @ 10%": "22,3", + "GPUWatt @ 50%": "52,7", + "GPUWatt @ 100%": "71,3", + "Delta Full Machine": "14,0", + "Instance @ Idle": "41,2", + "Instance @ 10%": "75,7", + "Instance @ 50%": "147,3", + "Instance @ 100%": "202,0", + "Hardware Information on AWS Documentation & Comments": "NVIDIA T4 GPU and custom Intel Cascade Lake CPUs" + }, + { + "Instance type": "g4dn.8xlarge", + "Release Date": "March 2019", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "1x900", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "8", + "Platform GPU Name": "T4", + "Instance Number of GPU": "1", + "Instance GPU memory (in GB)": "16", + "PkgWatt @ Idle": "18,24", + "PkgWatt @ 10%": "45,97", + "PkgWatt @ 50%": "102,31", + "PkgWatt @ 100%": "148,46", + "RAMWatt @ Idle": "19,91", + "RAMWatt @ 10%": "32,94", + "RAMWatt @ 50%": "58,96", + "RAMWatt @ 100%": "84,98", + "GPUWatt @ Idle": "8,1", + "GPUWatt @ 10%": "22,3", + "GPUWatt @ 50%": "52,7", + "GPUWatt @ 100%": "71,3", + "Delta Full Machine": "28,0", + "Instance @ Idle": "74,3", + "Instance @ 10%": "129,2", + "Instance @ 50%": "241,9", + "Instance @ 100%": "332,7", + "Hardware Information on AWS Documentation & Comments": "NVIDIA T4 GPU and custom Intel Cascade Lake CPUs" + }, + { + "Instance type": "g4dn.16xlarge", + "Release Date": "March 2019", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "256", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "1x900", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "8", + "Platform GPU Name": "T4", + "Instance Number of GPU": "1", + "Instance GPU memory (in GB)": "16", + "PkgWatt @ Idle": "36,47", + "PkgWatt @ 10%": "91,95", + "PkgWatt @ 50%": "204,62", + "PkgWatt @ 100%": "296,92", + "RAMWatt @ Idle": "39,81", + "RAMWatt @ 10%": "65,89", + "RAMWatt @ 50%": "117,93", + "RAMWatt @ 100%": "169,97", + "GPUWatt @ Idle": "8,1", + "GPUWatt @ 10%": "22,3", + "GPUWatt @ 50%": "52,7", + "GPUWatt @ 100%": "71,3", + "Delta Full Machine": "56,0", + "Instance @ Idle": "140,4", + "Instance @ 10%": "236,1", + "Instance @ 50%": "431,2", + "Instance @ 100%": "594,2", + "Hardware Information on AWS Documentation & Comments": "NVIDIA T4 GPU and custom Intel Cascade Lake CPUs" + }, + { + "Instance type": "g4dn.12xlarge", + "Release Date": "March 2019", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "192", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "1x900", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "8", + "Platform GPU Name": "T4", + "Instance Number of GPU": "4", + "Instance GPU memory (in GB)": "64", + "PkgWatt @ Idle": "27,36", + "PkgWatt @ 10%": "68,96", + "PkgWatt @ 50%": "153,47", + "PkgWatt @ 100%": "222,69", + "RAMWatt @ Idle": "29,86", + "RAMWatt @ 10%": "49,42", + "RAMWatt @ 50%": "88,45", + "RAMWatt @ 100%": "127,48", + "GPUWatt @ Idle": "32,5", + "GPUWatt @ 10%": "89,1", + "GPUWatt @ 50%": "210,6", + "GPUWatt @ 100%": "285,2", + "Delta Full Machine": "42,0", + "Instance @ Idle": "131,7", + "Instance @ 10%": "249,5", + "Instance @ 50%": "494,5", + "Instance @ 100%": "677,4", + "Hardware Information on AWS Documentation & Comments": "NVIDIA T4 GPU and custom Intel Cascade Lake CPUs" + }, + { + "Instance type": "g4dn.metal", + "Release Date": "March 2019", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "384", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "2x900", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "8", + "Platform GPU Name": "T4", + "Instance Number of GPU": "8", + "Instance GPU memory (in GB)": "128", + "PkgWatt @ Idle": "54,71", + "PkgWatt @ 10%": "137,92", + "PkgWatt @ 50%": "306,93", + "PkgWatt @ 100%": "445,38", + "RAMWatt @ Idle": "59,72", + "RAMWatt @ 10%": "98,83", + "RAMWatt @ 50%": "176,89", + "RAMWatt @ 100%": "254,95", + "GPUWatt @ Idle": "65,0", + "GPUWatt @ 10%": "178,2", + "GPUWatt @ 50%": "421,3", + "GPUWatt @ 100%": "570,4", + "Delta Full Machine": "84,0", + "Instance @ Idle": "263,5", + "Instance @ 10%": "499,0", + "Instance @ 50%": "989,1", + "Instance @ 100%": "1354,7", + "Hardware Information on AWS Documentation & Comments": "NVIDIA T4 GPU and custom Intel Cascade Lake CPUs" + }, + { + "Instance type": "g4ad.4xlarge", + "Release Date": "March 2019", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7R32", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "600", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "4", + "Platform GPU Name": "Radeon Pro V520", + "Instance Number of GPU": "1", + "Instance GPU memory (in GB)": "8", + "PkgWatt @ Idle": "5,42", + "PkgWatt @ 10%": "14,85", + "PkgWatt @ 50%": "35,11", + "PkgWatt @ 100%": "47,53", + "RAMWatt @ Idle": "12,80", + "RAMWatt @ 10%": "19,20", + "RAMWatt @ 50%": "25,60", + "RAMWatt @ 100%": "38,40", + "GPUWatt @ Idle": "26,1", + "GPUWatt @ 10%": "71,6", + "GPUWatt @ 50%": "169,3", + "GPUWatt @ 100%": "229,2", + "Delta Full Machine": "9,3", + "Instance @ Idle": "53,7", + "Instance @ 10%": "115,0", + "Instance @ 50%": "239,3", + "Instance @ 100%": "324,4", + "Hardware Information on AWS Documentation & Comments": "AMD Radeon Pro V520 GPUs and 2nd generation AMD EPYC processors" + }, + { + "Instance type": "g4ad.8xlarge", + "Release Date": "March 2019", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7R32", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "1200", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "4", + "Platform GPU Name": "Radeon Pro V520", + "Instance Number of GPU": "2", + "Instance GPU memory (in GB)": "16", + "PkgWatt @ Idle": "10,84", + "PkgWatt @ 10%": "29,70", + "PkgWatt @ 50%": "70,21", + "PkgWatt @ 100%": "95,06", + "RAMWatt @ Idle": "25,60", + "RAMWatt @ 10%": "38,40", + "RAMWatt @ 50%": "51,20", + "RAMWatt @ 100%": "76,80", + "GPUWatt @ Idle": "52,3", + "GPUWatt @ 10%": "143,2", + "GPUWatt @ 50%": "338,5", + "GPUWatt @ 100%": "458,3", + "Delta Full Machine": "18,7", + "Instance @ Idle": "107,4", + "Instance @ 10%": "230,0", + "Instance @ 50%": "478,6", + "Instance @ 100%": "648,9", + "Hardware Information on AWS Documentation & Comments": "AMD Radeon Pro V520 GPUs and 2nd generation AMD EPYC processors" + }, + { + "Instance type": "g4ad.16xlarge", + "Release Date": "March 2019", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7R32", + "Instance Memory (in GB)": "256", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "2400", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "4", + "Platform GPU Name": "Radeon Pro V520", + "Instance Number of GPU": "4", + "Instance GPU memory (in GB)": "32", + "PkgWatt @ Idle": "21,68", + "PkgWatt @ 10%": "59,41", + "PkgWatt @ 50%": "140,42", + "PkgWatt @ 100%": "190,13", + "RAMWatt @ Idle": "51,20", + "RAMWatt @ 10%": "76,80", + "RAMWatt @ 50%": "102,40", + "RAMWatt @ 100%": "153,60", + "GPUWatt @ Idle": "104,5", + "GPUWatt @ 10%": "286,4", + "GPUWatt @ 50%": "677,0", + "GPUWatt @ 100%": "916,7", + "Delta Full Machine": "37,3", + "Instance @ Idle": "214,7", + "Instance @ 10%": "460,0", + "Instance @ 50%": "957,2", + "Instance @ 100%": "1297,8", + "Hardware Information on AWS Documentation & Comments": "AMD Radeon Pro V520 GPUs and 2nd generation AMD EPYC processors" + }, + { + "Instance type": "h1.2xlarge", + "Release Date": "November 2017", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "1 x 2.000 HDD", + "Storage Type": "HDD", + "Platform Storage Drive Quantity": "24", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "3,89", + "PkgWatt @ 10%": "11,10", + "PkgWatt @ 50%": "22,82", + "PkgWatt @ 100%": "31,24", + "RAMWatt @ Idle": "6,40", + "RAMWatt @ 10%": "9,60", + "RAMWatt @ 50%": "12,80", + "RAMWatt @ 100%": "19,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "6,4", + "Instance @ Idle": "16,7", + "Instance @ 10%": "27,1", + "Instance @ 50%": "42,1", + "Instance @ 100%": "56,9", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5 2686 v4 Processor (Broadwell)" + }, + { + "Instance type": "h1.4xlarge", + "Release Date": "November 2017", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "2 x 2.000 HDD", + "Storage Type": "HDD", + "Platform Storage Drive Quantity": "24", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "7,77", + "PkgWatt @ 10%": "22,19", + "PkgWatt @ 50%": "45,64", + "PkgWatt @ 100%": "62,47", + "RAMWatt @ Idle": "12,80", + "RAMWatt @ 10%": "19,20", + "RAMWatt @ 50%": "25,60", + "RAMWatt @ 100%": "38,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "12,9", + "Instance @ Idle": "33,5", + "Instance @ 10%": "54,3", + "Instance @ 50%": "84,1", + "Instance @ 100%": "113,8", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5 2686 v4 Processor (Broadwell)" + }, + { + "Instance type": "h1.8xlarge", + "Release Date": "November 2017", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "4 x 2.000 HDD", + "Storage Type": "HDD", + "Platform Storage Drive Quantity": "24", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "15,55", + "PkgWatt @ 10%": "44,38", + "PkgWatt @ 50%": "91,28", + "PkgWatt @ 100%": "124,95", + "RAMWatt @ Idle": "25,60", + "RAMWatt @ 10%": "38,40", + "RAMWatt @ 50%": "51,20", + "RAMWatt @ 100%": "76,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "25,8", + "Instance @ Idle": "66,9", + "Instance @ 10%": "108,6", + "Instance @ 50%": "168,3", + "Instance @ 100%": "227,5", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5 2686 v4 Processor (Broadwell)" + }, + { + "Instance type": "h1.16xlarge", + "Release Date": "November 2017", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "256", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "8 x 2.000 HDD", + "Storage Type": "HDD", + "Platform Storage Drive Quantity": "24", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "31,09", + "PkgWatt @ 10%": "88,76", + "PkgWatt @ 50%": "182,57", + "PkgWatt @ 100%": "249,90", + "RAMWatt @ Idle": "51,20", + "RAMWatt @ 10%": "76,80", + "RAMWatt @ 50%": "102,40", + "RAMWatt @ 100%": "153,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "51,6", + "Instance @ Idle": "133,8", + "Instance @ 10%": "217,1", + "Instance @ 50%": "336,5", + "Instance @ 100%": "455,1", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5 2686 v4 Processor (Broadwell)" + }, + { + "Instance type": "hs1.8xlarge", + "Release Date": "December 2012", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "32", + "Platform CPU Name": "Xeon E5-2670", + "Instance Memory (in GB)": "117", + "Platform Memory (in GB)": "244", + "Storage Info (Type and Size in GB)": "24 x 2 000 (HDD)", + "Storage Type": "HDD", + "Platform Storage Drive Quantity": "24", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "13,87", + "PkgWatt @ 10%": "39,60", + "PkgWatt @ 50%": "81,45", + "PkgWatt @ 100%": "111,48", + "RAMWatt @ Idle": "23,40", + "RAMWatt @ 10%": "35,10", + "RAMWatt @ 50%": "46,80", + "RAMWatt @ 100%": "70,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "23,0", + "Instance @ Idle": "60,3", + "Instance @ 10%": "97,7", + "Instance @ 50%": "151,2", + "Instance @ 100%": "204,7", + "Hardware Information on AWS Documentation & Comments": "Intel E5-2650 processor" + }, + { + "Instance type": "i2.xlarge", + "Release Date": "December 2013", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2670 v2", + "Instance Memory (in GB)": "30.5", + "Platform Memory (in GB)": "244", + "Storage Info (Type and Size in GB)": "1 x 800 (SSD)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "8", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,77", + "PkgWatt @ 10%": "7,92", + "PkgWatt @ 50%": "16,29", + "PkgWatt @ 100%": "22,30", + "RAMWatt @ Idle": "6,10", + "RAMWatt @ 10%": "9,15", + "RAMWatt @ 50%": "12,20", + "RAMWatt @ 100%": "18,30", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "4,6", + "Instance @ Idle": "13,5", + "Instance @ 10%": "21,7", + "Instance @ 50%": "33,1", + "Instance @ 100%": "45,2", + "Hardware Information on AWS Documentation & Comments": "Intel E5-2670 v2 (Ivy Bridge) processor" + }, + { + "Instance type": "i2.2xlarge", + "Release Date": "December 2013", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2670 v2", + "Instance Memory (in GB)": "61", + "Platform Memory (in GB)": "244", + "Storage Info (Type and Size in GB)": "2 x 800 (SSD)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "8", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "5,55", + "PkgWatt @ 10%": "15,84", + "PkgWatt @ 50%": "32,58", + "PkgWatt @ 100%": "44,59", + "RAMWatt @ Idle": "12,20", + "RAMWatt @ 10%": "18,30", + "RAMWatt @ 50%": "24,40", + "RAMWatt @ 100%": "36,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "9,2", + "Instance @ Idle": "26,9", + "Instance @ 10%": "43,3", + "Instance @ 50%": "66,2", + "Instance @ 100%": "90,4", + "Hardware Information on AWS Documentation & Comments": "Intel E5-2670 v2 (Ivy Bridge) processor" + }, + { + "Instance type": "i2.4xlarge", + "Release Date": "December 2013", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2670 v2", + "Instance Memory (in GB)": "122", + "Platform Memory (in GB)": "244", + "Storage Info (Type and Size in GB)": "4 x 800 (SSD)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "8", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "11,10", + "PkgWatt @ 10%": "31,68", + "PkgWatt @ 50%": "65,16", + "PkgWatt @ 100%": "89,19", + "RAMWatt @ Idle": "24,40", + "RAMWatt @ 10%": "36,60", + "RAMWatt @ 50%": "48,80", + "RAMWatt @ 100%": "73,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "18,4", + "Instance @ Idle": "53,9", + "Instance @ 10%": "86,7", + "Instance @ 50%": "132,4", + "Instance @ 100%": "180,8", + "Hardware Information on AWS Documentation & Comments": "Intel E5-2670 v2 (Ivy Bridge) processor" + }, + { + "Instance type": "i2.8xlarge", + "Release Date": "December 2013", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2670 v2", + "Instance Memory (in GB)": "244", + "Platform Memory (in GB)": "244", + "Storage Info (Type and Size in GB)": "8 x 800 (SSD)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "8", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "22,19", + "PkgWatt @ 10%": "63,36", + "PkgWatt @ 50%": "130,32", + "PkgWatt @ 100%": "178,37", + "RAMWatt @ Idle": "48,80", + "RAMWatt @ 10%": "73,20", + "RAMWatt @ 50%": "97,60", + "RAMWatt @ 100%": "146,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "36,8", + "Instance @ Idle": "107,8", + "Instance @ 10%": "173,4", + "Instance @ 50%": "264,7", + "Instance @ 100%": "361,6", + "Hardware Information on AWS Documentation & Comments": "Intel E5-2670 v2 (Ivy Bridge) processor" + }, + { + "Instance type": "i3.large", + "Release Date": "November 2016", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "15.25", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "1 x 475 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "8", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,97", + "PkgWatt @ 10%": "2,77", + "PkgWatt @ 50%": "5,71", + "PkgWatt @ 100%": "7,81", + "RAMWatt @ Idle": "3,05", + "RAMWatt @ 10%": "4,58", + "RAMWatt @ 50%": "6,10", + "RAMWatt @ 100%": "9,15", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,6", + "Instance @ Idle": "5,6", + "Instance @ 10%": "9,0", + "Instance @ 50%": "13,4", + "Instance @ 100%": "18,6", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5 2686 v4 Processor (Broadwell)" + }, + { + "Instance type": "i3.xlarge", + "Release Date": "November 2016", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "30.5", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "1 x 950 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "8", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,94", + "PkgWatt @ 10%": "5,55", + "PkgWatt @ 50%": "11,41", + "PkgWatt @ 100%": "15,62", + "RAMWatt @ Idle": "6,10", + "RAMWatt @ 10%": "9,15", + "RAMWatt @ 50%": "12,20", + "RAMWatt @ 100%": "18,30", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,2", + "Instance @ Idle": "11,3", + "Instance @ 10%": "17,9", + "Instance @ 50%": "26,8", + "Instance @ 100%": "37,1", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5 2686 v4 Processor (Broadwell)" + }, + { + "Instance type": "i3.2xlarge", + "Release Date": "November 2016", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "61", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "1 x 1.900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "8", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "3,89", + "PkgWatt @ 10%": "11,10", + "PkgWatt @ 50%": "22,82", + "PkgWatt @ 100%": "31,24", + "RAMWatt @ Idle": "12,20", + "RAMWatt @ 10%": "18,30", + "RAMWatt @ 50%": "24,40", + "RAMWatt @ 100%": "36,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "6,4", + "Instance @ Idle": "22,5", + "Instance @ 10%": "35,8", + "Instance @ 50%": "53,7", + "Instance @ 100%": "74,3", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5 2686 v4 Processor (Broadwell)" + }, + { + "Instance type": "i3.4xlarge", + "Release Date": "November 2016", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "122", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "2 x 1.900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "8", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "7,77", + "PkgWatt @ 10%": "22,19", + "PkgWatt @ 50%": "45,64", + "PkgWatt @ 100%": "62,47", + "RAMWatt @ Idle": "24,40", + "RAMWatt @ 10%": "36,60", + "RAMWatt @ 50%": "48,80", + "RAMWatt @ 100%": "73,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "12,9", + "Instance @ Idle": "45,1", + "Instance @ 10%": "71,7", + "Instance @ 50%": "107,3", + "Instance @ 100%": "148,6", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5 2686 v4 Processor (Broadwell)" + }, + { + "Instance type": "i3.8xlarge", + "Release Date": "November 2016", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "244", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "4 x 1.900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "8", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "15,55", + "PkgWatt @ 10%": "44,38", + "PkgWatt @ 50%": "91,28", + "PkgWatt @ 100%": "124,95", + "RAMWatt @ Idle": "48,80", + "RAMWatt @ 10%": "73,20", + "RAMWatt @ 50%": "97,60", + "RAMWatt @ 100%": "146,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "25,8", + "Instance @ Idle": "90,1", + "Instance @ 10%": "143,4", + "Instance @ 50%": "214,7", + "Instance @ 100%": "297,1", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5 2686 v4 Processor (Broadwell)" + }, + { + "Instance type": "i3.16xlarge", + "Release Date": "November 2016", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "488", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "8 x 1.900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "8", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "31,09", + "PkgWatt @ 10%": "88,76", + "PkgWatt @ 50%": "182,57", + "PkgWatt @ 100%": "249,90", + "RAMWatt @ Idle": "97,60", + "RAMWatt @ 10%": "146,40", + "RAMWatt @ 50%": "195,20", + "RAMWatt @ 100%": "292,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "51,6", + "Instance @ Idle": "180,2", + "Instance @ 10%": "286,7", + "Instance @ 50%": "429,3", + "Instance @ 100%": "594,3", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5 2686 v4 Processor (Broadwell)" + }, + { + "Instance type": "i3.metal", + "Release Date": "November 2017", + "Instance vCPU": "72", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "512", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "8 x 1.900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "8", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "34,98", + "PkgWatt @ 10%": "99,86", + "PkgWatt @ 50%": "205,39", + "PkgWatt @ 100%": "281,13", + "RAMWatt @ Idle": "102,40", + "RAMWatt @ 10%": "153,60", + "RAMWatt @ 50%": "204,80", + "RAMWatt @ 100%": "307,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "58,0", + "Instance @ Idle": "195,4", + "Instance @ 10%": "311,5", + "Instance @ 50%": "468,2", + "Instance @ 100%": "646,3", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5 2686 v4 Processor (Broadwell)" + }, + { + "Instance type": "i3en.large", + "Release Date": "May 2019", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "1 x 1.250 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "8", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,21", + "PkgWatt @ 10%": "3,05", + "PkgWatt @ 50%": "7,16", + "PkgWatt @ 100%": "9,96", + "RAMWatt @ Idle": "2,41", + "RAMWatt @ 10%": "3,85", + "RAMWatt @ 50%": "9,92", + "RAMWatt @ 100%": "15,99", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,0", + "Instance @ Idle": "5,6", + "Instance @ 10%": "8,9", + "Instance @ 50%": "19,1", + "Instance @ 100%": "27,9", + "Hardware Information on AWS Documentation & Comments": "3.1 GHz all core turbo Intel Xeon Scalable (Skylake) processors" + }, + { + "Instance type": "i3en.xlarge", + "Release Date": "May 2019", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "1 x 2.500 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "8", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,41", + "PkgWatt @ 10%": "6,11", + "PkgWatt @ 50%": "14,32", + "PkgWatt @ 100%": "19,92", + "RAMWatt @ Idle": "4,82", + "RAMWatt @ 10%": "7,70", + "RAMWatt @ 50%": "19,84", + "RAMWatt @ 100%": "31,98", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "4,0", + "Instance @ Idle": "11,2", + "Instance @ 10%": "17,8", + "Instance @ 50%": "38,2", + "Instance @ 100%": "55,9", + "Hardware Information on AWS Documentation & Comments": "3.1 GHz all core turbo Intel Xeon Scalable (Skylake) processors" + }, + { + "Instance type": "i3en.2xlarge", + "Release Date": "May 2019", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "2 x 2.500 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "8", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,82", + "PkgWatt @ 10%": "12,22", + "PkgWatt @ 50%": "28,64", + "PkgWatt @ 100%": "39,83", + "RAMWatt @ Idle": "9,64", + "RAMWatt @ 10%": "15,40", + "RAMWatt @ 50%": "39,68", + "RAMWatt @ 100%": "63,97", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "8,0", + "Instance @ Idle": "22,5", + "Instance @ 10%": "35,6", + "Instance @ 50%": "76,3", + "Instance @ 100%": "111,8", + "Hardware Information on AWS Documentation & Comments": "3.1 GHz all core turbo Intel Xeon Scalable (Skylake) processors" + }, + { + "Instance type": "i3en.3xlarge", + "Release Date": "May 2019", + "Instance vCPU": "12", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "96", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "1 x 7.500 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "8", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "7,24", + "PkgWatt @ 10%": "18,33", + "PkgWatt @ 50%": "42,96", + "PkgWatt @ 100%": "59,75", + "RAMWatt @ Idle": "14,45", + "RAMWatt @ 10%": "23,10", + "RAMWatt @ 50%": "59,53", + "RAMWatt @ 100%": "95,95", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "12,0", + "Instance @ Idle": "33,7", + "Instance @ 10%": "53,4", + "Instance @ 50%": "114,5", + "Instance @ 100%": "167,7", + "Hardware Information on AWS Documentation & Comments": "3.1 GHz all core turbo Intel Xeon Scalable (Skylake) processors" + }, + { + "Instance type": "i3en.6xlarge", + "Release Date": "May 2019", + "Instance vCPU": "24", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "192", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "2 x 7.500 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "8", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "14,47", + "PkgWatt @ 10%": "36,66", + "PkgWatt @ 50%": "85,93", + "PkgWatt @ 100%": "119,49", + "RAMWatt @ Idle": "28,91", + "RAMWatt @ 10%": "46,20", + "RAMWatt @ 50%": "119,05", + "RAMWatt @ 100%": "191,91", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "24,0", + "Instance @ Idle": "67,4", + "Instance @ 10%": "106,9", + "Instance @ 50%": "229,0", + "Instance @ 100%": "335,4", + "Hardware Information on AWS Documentation & Comments": "3.1 GHz all core turbo Intel Xeon Scalable (Skylake) processors" + }, + { + "Instance type": "i3en.12xlarge", + "Release Date": "May 2019", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "384", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "4 x 7.500 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "8", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "28,94", + "PkgWatt @ 10%": "73,32", + "PkgWatt @ 50%": "171,85", + "PkgWatt @ 100%": "238,99", + "RAMWatt @ Idle": "57,81", + "RAMWatt @ 10%": "92,39", + "RAMWatt @ 50%": "238,10", + "RAMWatt @ 100%": "383,81", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "48,0", + "Instance @ Idle": "134,8", + "Instance @ 10%": "213,7", + "Instance @ 50%": "458,0", + "Instance @ 100%": "670,8", + "Hardware Information on AWS Documentation & Comments": "3.1 GHz all core turbo Intel Xeon Scalable (Skylake) processors" + }, + { + "Instance type": "i3en.24xlarge", + "Release Date": "May 2019", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "768", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "8 x 7.500 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "8", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "57,88", + "PkgWatt @ 10%": "146,63", + "PkgWatt @ 50%": "343,70", + "PkgWatt @ 100%": "477,98", + "RAMWatt @ Idle": "115,62", + "RAMWatt @ 10%": "184,78", + "RAMWatt @ 50%": "476,20", + "RAMWatt @ 100%": "767,62", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "96,0", + "Instance @ Idle": "269,5", + "Instance @ 10%": "427,4", + "Instance @ 50%": "915,9", + "Instance @ 100%": "1341,6", + "Hardware Information on AWS Documentation & Comments": "3.1 GHz all core turbo Intel Xeon Scalable (Skylake) processors" + }, + { + "Instance type": "i3en.metal", + "Release Date": "August 2019", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "768", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "8 x 7.500 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "8", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "57,88", + "PkgWatt @ 10%": "146,63", + "PkgWatt @ 50%": "343,70", + "PkgWatt @ 100%": "477,98", + "RAMWatt @ Idle": "115,62", + "RAMWatt @ 10%": "184,78", + "RAMWatt @ 50%": "476,20", + "RAMWatt @ 100%": "767,62", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "96,0", + "Instance @ Idle": "269,5", + "Instance @ 10%": "427,4", + "Instance @ 50%": "915,9", + "Instance @ 100%": "1341,6", + "Hardware Information on AWS Documentation & Comments": "3.1 GHz all core turbo Intel Xeon Scalable (Skylake) processors" + }, + { + "Instance type": "inf1.xlarge", + "Release Date": "December 2019", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8275CL", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,41", + "PkgWatt @ 10%": "7,31", + "PkgWatt @ 50%": "18,68", + "PkgWatt @ 100%": "26,11", + "RAMWatt @ Idle": "1,52", + "RAMWatt @ 10%": "2,76", + "RAMWatt @ 50%": "5,77", + "RAMWatt @ 100%": "8,77", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "4,0", + "Instance @ Idle": "7,9", + "Instance @ 10%": "14,1", + "Instance @ 50%": "28,4", + "Instance @ 100%": "38,9", + "Hardware Information on AWS Documentation & Comments": "1 Inferencia chip - Comment: the estimated Scope 3 does not include the Inferencia chips" + }, + { + "Instance type": "inf1.2xlarge", + "Release Date": "December 2019", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8275CL", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,83", + "PkgWatt @ 10%": "14,63", + "PkgWatt @ 50%": "37,36", + "PkgWatt @ 100%": "52,23", + "RAMWatt @ Idle": "3,05", + "RAMWatt @ 10%": "5,52", + "RAMWatt @ 50%": "11,53", + "RAMWatt @ 100%": "17,54", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "8,0", + "Instance @ Idle": "15,9", + "Instance @ 10%": "28,1", + "Instance @ 50%": "56,9", + "Instance @ 100%": "77,8", + "Hardware Information on AWS Documentation & Comments": "1 Inferencia chip - Comment: the estimated Scope 3 does not include the Inferencia chips" + }, + { + "Instance type": "inf1.6xlarge", + "Release Date": "December 2019", + "Instance vCPU": "24", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8275CL", + "Instance Memory (in GB)": "48", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "14,48", + "PkgWatt @ 10%": "43,88", + "PkgWatt @ 50%": "112,08", + "PkgWatt @ 100%": "156,69", + "RAMWatt @ Idle": "9,14", + "RAMWatt @ 10%": "16,57", + "RAMWatt @ 50%": "34,59", + "RAMWatt @ 100%": "52,62", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "24,0", + "Instance @ Idle": "47,6", + "Instance @ 10%": "84,4", + "Instance @ 50%": "170,7", + "Instance @ 100%": "233,3", + "Hardware Information on AWS Documentation & Comments": "4 Inferencia chips - Comment: the estimated Scope 3 does not include the Inferencia chips" + }, + { + "Instance type": "inf1.24xlarge", + "Release Date": "December 2019", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8275CL", + "Instance Memory (in GB)": "192", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "57,93", + "PkgWatt @ 10%": "175,53", + "PkgWatt @ 50%": "448,31", + "PkgWatt @ 100%": "626,76", + "RAMWatt @ Idle": "36,55", + "RAMWatt @ 10%": "66,26", + "RAMWatt @ 50%": "138,37", + "RAMWatt @ 100%": "210,48", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "96,0", + "Instance @ Idle": "190,5", + "Instance @ 10%": "337,8", + "Instance @ 50%": "682,7", + "Instance @ 100%": "933,2", + "Hardware Information on AWS Documentation & Comments": "16 Inferencia chips - Comment: the estimated Scope 3 does not include the Inferencia chips" + }, + { + "Instance type": "m1.small", + "Release Date": "August 2006", + "Instance vCPU": "1", + "Platform Total Number of vCPU": "32", + "Platform CPU Name": "Xeon E5-2650", + "Instance Memory (in GB)": "1.7", + "Platform Memory (in GB)": "120", + "Storage Info (Type and Size in GB)": "1 x 160 (SSD)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,72", + "PkgWatt @ 10%": "2,04", + "PkgWatt @ 50%": "4,21", + "PkgWatt @ 100%": "5,76", + "RAMWatt @ Idle": "0,34", + "RAMWatt @ 10%": "0,51", + "RAMWatt @ 50%": "0,68", + "RAMWatt @ 100%": "1,02", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,2", + "Instance @ Idle": "2,2", + "Instance @ 10%": "3,7", + "Instance @ 50%": "6,1", + "Instance @ 100%": "8,0", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "m1.medium", + "Release Date": "March 2012", + "Instance vCPU": "1", + "Platform Total Number of vCPU": "32", + "Platform CPU Name": "Xeon E5-2650", + "Instance Memory (in GB)": "3.75", + "Platform Memory (in GB)": "120", + "Storage Info (Type and Size in GB)": "1 x SSD 410", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,72", + "PkgWatt @ 10%": "2,04", + "PkgWatt @ 50%": "4,21", + "PkgWatt @ 100%": "5,76", + "RAMWatt @ Idle": "0,75", + "RAMWatt @ 10%": "1,13", + "RAMWatt @ 50%": "1,50", + "RAMWatt @ 100%": "2,25", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,2", + "Instance @ Idle": "2,7", + "Instance @ 10%": "4,4", + "Instance @ 50%": "6,9", + "Instance @ 100%": "9,2", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "m1.large", + "Release Date": "October 2007", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "32", + "Platform CPU Name": "Xeon E5-2650", + "Instance Memory (in GB)": "7.5", + "Platform Memory (in GB)": "120", + "Storage Info (Type and Size in GB)": "2 x SSD 420", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,43", + "PkgWatt @ 10%": "4,09", + "PkgWatt @ 50%": "8,41", + "PkgWatt @ 100%": "11,51", + "RAMWatt @ Idle": "1,50", + "RAMWatt @ 10%": "2,25", + "RAMWatt @ 50%": "3,00", + "RAMWatt @ 100%": "4,50", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,4", + "Instance @ Idle": "5,3", + "Instance @ 10%": "8,7", + "Instance @ 50%": "13,8", + "Instance @ 100%": "18,4", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "m1.xlarge", + "Release Date": "October 2007", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "32", + "Platform CPU Name": "Xeon E5-2650", + "Instance Memory (in GB)": "15", + "Platform Memory (in GB)": "120", + "Storage Info (Type and Size in GB)": "4 x SSD 420", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,86", + "PkgWatt @ 10%": "8,18", + "PkgWatt @ 50%": "16,82", + "PkgWatt @ 100%": "23,02", + "RAMWatt @ Idle": "3,00", + "RAMWatt @ 10%": "4,50", + "RAMWatt @ 50%": "6,00", + "RAMWatt @ 100%": "9,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "4,8", + "Instance @ Idle": "10,6", + "Instance @ 10%": "17,4", + "Instance @ 50%": "27,6", + "Instance @ 100%": "36,8", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "m2.xlarge", + "Release Date": "February 2010", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "32", + "Platform CPU Name": "Xeon E5-2665", + "Instance Memory (in GB)": "17.1", + "Platform Memory (in GB)": "280", + "Storage Info (Type and Size in GB)": "1 x SSD 420", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,73", + "PkgWatt @ 10%": "4,95", + "PkgWatt @ 50%": "10,18", + "PkgWatt @ 100%": "13,94", + "RAMWatt @ Idle": "3,42", + "RAMWatt @ 10%": "5,13", + "RAMWatt @ 50%": "6,84", + "RAMWatt @ 100%": "10,26", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,9", + "Instance @ Idle": "8,0", + "Instance @ 10%": "13,0", + "Instance @ 50%": "19,9", + "Instance @ 100%": "27,1", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "m2.2xlarge", + "Release Date": "October 2009", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "32", + "Platform CPU Name": "Xeon E5-2665", + "Instance Memory (in GB)": "34.2", + "Platform Memory (in GB)": "280", + "Storage Info (Type and Size in GB)": "1 x SSD 850", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "3,47", + "PkgWatt @ 10%": "9,90", + "PkgWatt @ 50%": "20,36", + "PkgWatt @ 100%": "27,87", + "RAMWatt @ Idle": "6,84", + "RAMWatt @ 10%": "10,26", + "RAMWatt @ 50%": "13,68", + "RAMWatt @ 100%": "20,52", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "5,8", + "Instance @ Idle": "16,1", + "Instance @ 10%": "25,9", + "Instance @ 50%": "39,8", + "Instance @ 100%": "54,1", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "m2.4xlarge", + "Release Date": "October 2009", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "32", + "Platform CPU Name": "Xeon E5-2665", + "Instance Memory (in GB)": "68.4", + "Platform Memory (in GB)": "280", + "Storage Info (Type and Size in GB)": "2 x SSD 840", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "6,94", + "PkgWatt @ 10%": "19,80", + "PkgWatt @ 50%": "40,72", + "PkgWatt @ 100%": "55,74", + "RAMWatt @ Idle": "13,68", + "RAMWatt @ 10%": "20,52", + "RAMWatt @ 50%": "27,36", + "RAMWatt @ 100%": "41,04", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "11,5", + "Instance @ Idle": "32,1", + "Instance @ 10%": "51,8", + "Instance @ 50%": "79,6", + "Instance @ 100%": "108,3", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "m3.medium", + "Release Date": "January 2014", + "Instance vCPU": "1", + "Platform Total Number of vCPU": "32", + "Platform CPU Name": "Xeon E5-2670", + "Instance Memory (in GB)": "3.75", + "Platform Memory (in GB)": "240", + "Storage Info (Type and Size in GB)": "1 x 4 (SSD)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,87", + "PkgWatt @ 10%": "2,47", + "PkgWatt @ 50%": "5,09", + "PkgWatt @ 100%": "6,97", + "RAMWatt @ Idle": "0,75", + "RAMWatt @ 10%": "1,13", + "RAMWatt @ 50%": "1,50", + "RAMWatt @ 100%": "2,25", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,4", + "Instance @ Idle": "3,1", + "Instance @ 10%": "5,0", + "Instance @ 50%": "8,0", + "Instance @ 100%": "10,7", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2670 (Sandy Bridge or Ivy Bridge) processors" + }, + { + "Instance type": "m3.large", + "Release Date": "January 2014", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "32", + "Platform CPU Name": "Xeon E5-2670", + "Instance Memory (in GB)": "7.5", + "Platform Memory (in GB)": "240", + "Storage Info (Type and Size in GB)": "1 x 32 (SSD)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,73", + "PkgWatt @ 10%": "4,95", + "PkgWatt @ 50%": "10,18", + "PkgWatt @ 100%": "13,94", + "RAMWatt @ Idle": "1,50", + "RAMWatt @ 10%": "2,25", + "RAMWatt @ 50%": "3,00", + "RAMWatt @ 100%": "4,50", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,9", + "Instance @ Idle": "6,1", + "Instance @ 10%": "10,1", + "Instance @ 50%": "16,1", + "Instance @ 100%": "21,3", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2670 (Sandy Bridge or Ivy Bridge) processors" + }, + { + "Instance type": "m3.xlarge", + "Release Date": "October 2012", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "32", + "Platform CPU Name": "Xeon E5-2670", + "Instance Memory (in GB)": "15", + "Platform Memory (in GB)": "240", + "Storage Info (Type and Size in GB)": "2 x 40 (SSD)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "3,47", + "PkgWatt @ 10%": "9,90", + "PkgWatt @ 50%": "20,36", + "PkgWatt @ 100%": "27,87", + "RAMWatt @ Idle": "3,00", + "RAMWatt @ 10%": "4,50", + "RAMWatt @ 50%": "6,00", + "RAMWatt @ 100%": "9,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "5,8", + "Instance @ Idle": "12,2", + "Instance @ 10%": "20,1", + "Instance @ 50%": "32,1", + "Instance @ 100%": "42,6", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2670 (Sandy Bridge or Ivy Bridge) processors" + }, + { + "Instance type": "m3.2xlarge", + "Release Date": "October 2012", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "32", + "Platform CPU Name": "Xeon E5-2670", + "Instance Memory (in GB)": "30", + "Platform Memory (in GB)": "240", + "Storage Info (Type and Size in GB)": "2 x 80 (SSD)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "6,94", + "PkgWatt @ 10%": "19,80", + "PkgWatt @ 50%": "40,72", + "PkgWatt @ 100%": "55,74", + "RAMWatt @ Idle": "6,00", + "RAMWatt @ 10%": "9,00", + "RAMWatt @ 50%": "12,00", + "RAMWatt @ 100%": "18,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "11,5", + "Instance @ Idle": "24,4", + "Instance @ 10%": "40,3", + "Instance @ 50%": "64,2", + "Instance @ 100%": "85,2", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2670 (Sandy Bridge or Ivy Bridge) processors" + }, + { + "Instance type": "m4.large", + "Release Date": "June 2015", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,97", + "PkgWatt @ 10%": "2,77", + "PkgWatt @ 50%": "5,71", + "PkgWatt @ 100%": "7,81", + "RAMWatt @ Idle": "1,60", + "RAMWatt @ 10%": "2,40", + "RAMWatt @ 50%": "3,20", + "RAMWatt @ 100%": "4,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,6", + "Instance @ Idle": "4,2", + "Instance @ 10%": "6,8", + "Instance @ 50%": "10,5", + "Instance @ 100%": "14,2", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)" + }, + { + "Instance type": "m4.xlarge", + "Release Date": "June 2015", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,94", + "PkgWatt @ 10%": "5,55", + "PkgWatt @ 50%": "11,41", + "PkgWatt @ 100%": "15,62", + "RAMWatt @ Idle": "3,20", + "RAMWatt @ 10%": "4,80", + "RAMWatt @ 50%": "6,40", + "RAMWatt @ 100%": "9,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,2", + "Instance @ Idle": "8,4", + "Instance @ 10%": "13,6", + "Instance @ 50%": "21,0", + "Instance @ 100%": "28,4", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)" + }, + { + "Instance type": "m4.2xlarge", + "Release Date": "June 2015", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "3,89", + "PkgWatt @ 10%": "11,10", + "PkgWatt @ 50%": "22,82", + "PkgWatt @ 100%": "31,24", + "RAMWatt @ Idle": "6,40", + "RAMWatt @ 10%": "9,60", + "RAMWatt @ 50%": "12,80", + "RAMWatt @ 100%": "19,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "6,4", + "Instance @ Idle": "16,7", + "Instance @ 10%": "27,1", + "Instance @ 50%": "42,1", + "Instance @ 100%": "56,9", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)" + }, + { + "Instance type": "m4.4xlarge", + "Release Date": "June 2015", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "7,77", + "PkgWatt @ 10%": "22,19", + "PkgWatt @ 50%": "45,64", + "PkgWatt @ 100%": "62,47", + "RAMWatt @ Idle": "12,80", + "RAMWatt @ 10%": "19,20", + "RAMWatt @ 50%": "25,60", + "RAMWatt @ 100%": "38,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "12,9", + "Instance @ Idle": "33,5", + "Instance @ 10%": "54,3", + "Instance @ 50%": "84,1", + "Instance @ 100%": "113,8", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)" + }, + { + "Instance type": "m4.10xlarge", + "Release Date": "June 2015", + "Instance vCPU": "40", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon E5-2676 v3", + "Instance Memory (in GB)": "160", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "24,12", + "PkgWatt @ 10%": "68,87", + "PkgWatt @ 50%": "141,65", + "PkgWatt @ 100%": "193,88", + "RAMWatt @ Idle": "32,00", + "RAMWatt @ 10%": "48,00", + "RAMWatt @ 50%": "64,00", + "RAMWatt @ 100%": "96,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "40,0", + "Instance @ Idle": "96,1", + "Instance @ 10%": "156,9", + "Instance @ 50%": "245,6", + "Instance @ 100%": "329,9", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)" + }, + { + "Instance type": "m4.16xlarge", + "Release Date": "September 2016", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "256", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "31,09", + "PkgWatt @ 10%": "88,76", + "PkgWatt @ 50%": "182,57", + "PkgWatt @ 100%": "249,90", + "RAMWatt @ Idle": "51,20", + "RAMWatt @ 10%": "76,80", + "RAMWatt @ 50%": "102,40", + "RAMWatt @ 100%": "153,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "51,6", + "Instance @ Idle": "133,8", + "Instance @ 10%": "217,1", + "Instance @ 50%": "336,5", + "Instance @ 100%": "455,1", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)" + }, + { + "Instance type": "m5.large", + "Release Date": "November 2017", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,21", + "PkgWatt @ 10%": "3,05", + "PkgWatt @ 50%": "7,16", + "PkgWatt @ 100%": "9,96", + "RAMWatt @ Idle": "1,20", + "RAMWatt @ 10%": "1,92", + "RAMWatt @ 50%": "4,96", + "RAMWatt @ 100%": "8,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,0", + "Instance @ Idle": "4,4", + "Instance @ 10%": "7,0", + "Instance @ 50%": "14,1", + "Instance @ 100%": "20,0", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "m5.xlarge", + "Release Date": "November 2017", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,41", + "PkgWatt @ 10%": "6,11", + "PkgWatt @ 50%": "14,32", + "PkgWatt @ 100%": "19,92", + "RAMWatt @ Idle": "2,41", + "RAMWatt @ 10%": "3,85", + "RAMWatt @ 50%": "9,92", + "RAMWatt @ 100%": "15,99", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "4,0", + "Instance @ Idle": "8,8", + "Instance @ 10%": "14,0", + "Instance @ 50%": "28,2", + "Instance @ 100%": "39,9", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "m5.2xlarge", + "Release Date": "November 2017", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,82", + "PkgWatt @ 10%": "12,22", + "PkgWatt @ 50%": "28,64", + "PkgWatt @ 100%": "39,83", + "RAMWatt @ Idle": "4,82", + "RAMWatt @ 10%": "7,70", + "RAMWatt @ 50%": "19,84", + "RAMWatt @ 100%": "31,98", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "8,0", + "Instance @ Idle": "17,6", + "Instance @ 10%": "27,9", + "Instance @ 50%": "56,5", + "Instance @ 100%": "79,8", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "m5.4xlarge", + "Release Date": "November 2017", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "9,65", + "PkgWatt @ 10%": "24,44", + "PkgWatt @ 50%": "57,28", + "PkgWatt @ 100%": "79,66", + "RAMWatt @ Idle": "9,64", + "RAMWatt @ 10%": "15,40", + "RAMWatt @ 50%": "39,68", + "RAMWatt @ 100%": "63,97", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "16,0", + "Instance @ Idle": "35,3", + "Instance @ 10%": "55,8", + "Instance @ 50%": "113,0", + "Instance @ 100%": "159,6", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "m5.8xlarge", + "Release Date": "June 2019", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "19,29", + "PkgWatt @ 10%": "48,88", + "PkgWatt @ 50%": "114,57", + "PkgWatt @ 100%": "159,33", + "RAMWatt @ Idle": "19,27", + "RAMWatt @ 10%": "30,80", + "RAMWatt @ 50%": "79,37", + "RAMWatt @ 100%": "127,94", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "32,0", + "Instance @ Idle": "70,6", + "Instance @ 10%": "111,7", + "Instance @ 50%": "225,9", + "Instance @ 100%": "319,3", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "m5.12xlarge", + "Release Date": "November 2017", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "192", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "28,94", + "PkgWatt @ 10%": "73,32", + "PkgWatt @ 50%": "171,85", + "PkgWatt @ 100%": "238,99", + "RAMWatt @ Idle": "28,91", + "RAMWatt @ 10%": "46,20", + "RAMWatt @ 50%": "119,05", + "RAMWatt @ 100%": "191,91", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "48,0", + "Instance @ Idle": "105,8", + "Instance @ 10%": "167,5", + "Instance @ 50%": "338,9", + "Instance @ 100%": "478,9", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "m5.16xlarge", + "Release Date": "June 2019", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "256", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "38,59", + "PkgWatt @ 10%": "97,75", + "PkgWatt @ 50%": "229,13", + "PkgWatt @ 100%": "318,65", + "RAMWatt @ Idle": "38,54", + "RAMWatt @ 10%": "61,59", + "RAMWatt @ 50%": "158,73", + "RAMWatt @ 100%": "255,87", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "64,0", + "Instance @ Idle": "141,1", + "Instance @ 10%": "223,3", + "Instance @ 50%": "451,9", + "Instance @ 100%": "638,5", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "m5.24xlarge", + "Release Date": "November 2017", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "384", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "57,88", + "PkgWatt @ 10%": "146,63", + "PkgWatt @ 50%": "343,70", + "PkgWatt @ 100%": "477,98", + "RAMWatt @ Idle": "57,81", + "RAMWatt @ 10%": "92,39", + "RAMWatt @ 50%": "238,10", + "RAMWatt @ 100%": "383,81", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "96,0", + "Instance @ Idle": "211,7", + "Instance @ 10%": "335,0", + "Instance @ 50%": "677,8", + "Instance @ 100%": "957,8", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "m5.metal", + "Release Date": "February 2019", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "384", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "57,88", + "PkgWatt @ 10%": "146,63", + "PkgWatt @ 50%": "343,70", + "PkgWatt @ 100%": "477,98", + "RAMWatt @ Idle": "57,81", + "RAMWatt @ 10%": "92,39", + "RAMWatt @ 50%": "238,10", + "RAMWatt @ 100%": "383,81", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "96,0", + "Instance @ Idle": "211,7", + "Instance @ 10%": "335,0", + "Instance @ 50%": "677,8", + "Instance @ 100%": "957,8", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "m5a.large", + "Release Date": "November 2018", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,97", + "PkgWatt @ 10%": "2,65", + "PkgWatt @ 50%": "6,27", + "PkgWatt @ 100%": "8,49", + "RAMWatt @ Idle": "1,60", + "RAMWatt @ 10%": "2,40", + "RAMWatt @ 50%": "3,20", + "RAMWatt @ 100%": "4,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,7", + "Instance @ Idle": "4,2", + "Instance @ 10%": "6,7", + "Instance @ 50%": "11,1", + "Instance @ 100%": "15,0", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor" + }, + { + "Instance type": "m5a.xlarge", + "Release Date": "November 2018", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,94", + "PkgWatt @ 10%": "5,30", + "PkgWatt @ 50%": "12,54", + "PkgWatt @ 100%": "16,98", + "RAMWatt @ Idle": "3,20", + "RAMWatt @ 10%": "4,80", + "RAMWatt @ 50%": "6,40", + "RAMWatt @ 100%": "9,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,3", + "Instance @ Idle": "8,5", + "Instance @ 10%": "13,4", + "Instance @ 50%": "22,3", + "Instance @ 100%": "29,9", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor" + }, + { + "Instance type": "m5a.2xlarge", + "Release Date": "November 2018", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "3,87", + "PkgWatt @ 10%": "10,61", + "PkgWatt @ 50%": "25,08", + "PkgWatt @ 100%": "33,95", + "RAMWatt @ Idle": "6,40", + "RAMWatt @ 10%": "9,60", + "RAMWatt @ 50%": "12,80", + "RAMWatt @ 100%": "19,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "6,7", + "Instance @ Idle": "16,9", + "Instance @ 10%": "26,9", + "Instance @ 50%": "44,5", + "Instance @ 100%": "59,8", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor" + }, + { + "Instance type": "m5a.4xlarge", + "Release Date": "November 2018", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "7,74", + "PkgWatt @ 10%": "21,22", + "PkgWatt @ 50%": "50,15", + "PkgWatt @ 100%": "67,90", + "RAMWatt @ Idle": "12,80", + "RAMWatt @ 10%": "19,20", + "RAMWatt @ 50%": "25,60", + "RAMWatt @ 100%": "38,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "13,3", + "Instance @ Idle": "33,9", + "Instance @ 10%": "53,8", + "Instance @ 50%": "89,1", + "Instance @ 100%": "119,6", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor" + }, + { + "Instance type": "m5a.8xlarge", + "Release Date": "June 2019", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "15,48", + "PkgWatt @ 10%": "42,43", + "PkgWatt @ 50%": "100,30", + "PkgWatt @ 100%": "135,81", + "RAMWatt @ Idle": "25,60", + "RAMWatt @ 10%": "38,40", + "RAMWatt @ 50%": "51,20", + "RAMWatt @ 100%": "76,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "26,7", + "Instance @ Idle": "67,8", + "Instance @ 10%": "107,5", + "Instance @ 50%": "178,2", + "Instance @ 100%": "239,3", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor" + }, + { + "Instance type": "m5a.12xlarge", + "Release Date": "November 2018", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "192", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "23,23", + "PkgWatt @ 10%": "63,65", + "PkgWatt @ 50%": "150,45", + "PkgWatt @ 100%": "203,71", + "RAMWatt @ Idle": "38,40", + "RAMWatt @ 10%": "57,60", + "RAMWatt @ 50%": "76,80", + "RAMWatt @ 100%": "115,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "40,0", + "Instance @ Idle": "101,6", + "Instance @ 10%": "161,3", + "Instance @ 50%": "267,3", + "Instance @ 100%": "358,9", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor" + }, + { + "Instance type": "m5a.16xlarge", + "Release Date": "June 2019", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "256", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "30,97", + "PkgWatt @ 10%": "84,87", + "PkgWatt @ 50%": "200,60", + "PkgWatt @ 100%": "271,61", + "RAMWatt @ Idle": "51,20", + "RAMWatt @ 10%": "76,80", + "RAMWatt @ 50%": "102,40", + "RAMWatt @ 100%": "153,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "53,3", + "Instance @ Idle": "135,5", + "Instance @ 10%": "215,0", + "Instance @ 50%": "356,3", + "Instance @ 100%": "478,5", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor" + }, + { + "Instance type": "m5a.24xlarge", + "Release Date": "November 2018", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "384", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "46,45", + "PkgWatt @ 10%": "127,30", + "PkgWatt @ 50%": "300,91", + "PkgWatt @ 100%": "407,42", + "RAMWatt @ Idle": "76,80", + "RAMWatt @ 10%": "115,20", + "RAMWatt @ 50%": "153,60", + "RAMWatt @ 100%": "230,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "80,0", + "Instance @ Idle": "203,3", + "Instance @ 10%": "322,5", + "Instance @ 50%": "534,5", + "Instance @ 100%": "717,8", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor" + }, + { + "Instance type": "m5ad.large", + "Release Date": "March 2019", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "1 x 75 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,97", + "PkgWatt @ 10%": "2,65", + "PkgWatt @ 50%": "6,27", + "PkgWatt @ 100%": "8,49", + "RAMWatt @ Idle": "1,60", + "RAMWatt @ 10%": "2,40", + "RAMWatt @ 50%": "3,20", + "RAMWatt @ 100%": "4,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,7", + "Instance @ Idle": "4,2", + "Instance @ 10%": "6,7", + "Instance @ 50%": "11,1", + "Instance @ 100%": "15,0", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor" + }, + { + "Instance type": "m5ad.xlarge", + "Release Date": "March 2019", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "1 x 150 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,94", + "PkgWatt @ 10%": "5,30", + "PkgWatt @ 50%": "12,54", + "PkgWatt @ 100%": "16,98", + "RAMWatt @ Idle": "3,20", + "RAMWatt @ 10%": "4,80", + "RAMWatt @ 50%": "6,40", + "RAMWatt @ 100%": "9,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,3", + "Instance @ Idle": "8,5", + "Instance @ 10%": "13,4", + "Instance @ 50%": "22,3", + "Instance @ 100%": "29,9", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor" + }, + { + "Instance type": "m5ad.2xlarge", + "Release Date": "March 2019", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "1 x 300 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "3,87", + "PkgWatt @ 10%": "10,61", + "PkgWatt @ 50%": "25,08", + "PkgWatt @ 100%": "33,95", + "RAMWatt @ Idle": "6,40", + "RAMWatt @ 10%": "9,60", + "RAMWatt @ 50%": "12,80", + "RAMWatt @ 100%": "19,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "6,7", + "Instance @ Idle": "16,9", + "Instance @ 10%": "26,9", + "Instance @ 50%": "44,5", + "Instance @ 100%": "59,8", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor" + }, + { + "Instance type": "m5ad.4xlarge", + "Release Date": "March 2019", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "2 x 300 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "7,74", + "PkgWatt @ 10%": "21,22", + "PkgWatt @ 50%": "50,15", + "PkgWatt @ 100%": "67,90", + "RAMWatt @ Idle": "12,80", + "RAMWatt @ 10%": "19,20", + "RAMWatt @ 50%": "25,60", + "RAMWatt @ 100%": "38,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "13,3", + "Instance @ Idle": "33,9", + "Instance @ 10%": "53,8", + "Instance @ 50%": "89,1", + "Instance @ 100%": "119,6", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor" + }, + { + "Instance type": "m5ad.8xlarge", + "Release Date": "March 2019", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "2 x 600 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "15,48", + "PkgWatt @ 10%": "42,43", + "PkgWatt @ 50%": "100,30", + "PkgWatt @ 100%": "135,81", + "RAMWatt @ Idle": "25,60", + "RAMWatt @ 10%": "38,40", + "RAMWatt @ 50%": "51,20", + "RAMWatt @ 100%": "76,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "26,7", + "Instance @ Idle": "67,8", + "Instance @ 10%": "107,5", + "Instance @ 50%": "178,2", + "Instance @ 100%": "239,3", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor" + }, + { + "Instance type": "m5ad.12xlarge", + "Release Date": "March 2019", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "192", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "2 x 900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "23,23", + "PkgWatt @ 10%": "63,65", + "PkgWatt @ 50%": "150,45", + "PkgWatt @ 100%": "203,71", + "RAMWatt @ Idle": "38,40", + "RAMWatt @ 10%": "57,60", + "RAMWatt @ 50%": "76,80", + "RAMWatt @ 100%": "115,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "40,0", + "Instance @ Idle": "101,6", + "Instance @ 10%": "161,3", + "Instance @ 50%": "267,3", + "Instance @ 100%": "358,9", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor" + }, + { + "Instance type": "m5ad.16xlarge", + "Release Date": "March 2019", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "256", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "4 x 600 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "30,97", + "PkgWatt @ 10%": "84,87", + "PkgWatt @ 50%": "200,60", + "PkgWatt @ 100%": "271,61", + "RAMWatt @ Idle": "51,20", + "RAMWatt @ 10%": "76,80", + "RAMWatt @ 50%": "102,40", + "RAMWatt @ 100%": "153,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "53,3", + "Instance @ Idle": "135,5", + "Instance @ 10%": "215,0", + "Instance @ 50%": "356,3", + "Instance @ 100%": "478,5", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor" + }, + { + "Instance type": "m5ad.24xlarge", + "Release Date": "March 2019", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "384", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "4 x 900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "46,45", + "PkgWatt @ 10%": "127,30", + "PkgWatt @ 50%": "300,91", + "PkgWatt @ 100%": "407,42", + "RAMWatt @ Idle": "76,80", + "RAMWatt @ 10%": "115,20", + "RAMWatt @ 50%": "153,60", + "RAMWatt @ 100%": "230,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "80,0", + "Instance @ Idle": "203,3", + "Instance @ 10%": "322,5", + "Instance @ 50%": "534,5", + "Instance @ 100%": "717,8", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor" + }, + { + "Instance type": "m5d.large", + "Release Date": "June 2018", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "1 x 75 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,21", + "PkgWatt @ 10%": "3,05", + "PkgWatt @ 50%": "7,16", + "PkgWatt @ 100%": "9,96", + "RAMWatt @ Idle": "1,20", + "RAMWatt @ 10%": "1,92", + "RAMWatt @ 50%": "4,96", + "RAMWatt @ 100%": "8,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,0", + "Instance @ Idle": "4,4", + "Instance @ 10%": "7,0", + "Instance @ 50%": "14,1", + "Instance @ 100%": "20,0", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "m5d.xlarge", + "Release Date": "June 2018", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "1 x 150 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,41", + "PkgWatt @ 10%": "6,11", + "PkgWatt @ 50%": "14,32", + "PkgWatt @ 100%": "19,92", + "RAMWatt @ Idle": "2,41", + "RAMWatt @ 10%": "3,85", + "RAMWatt @ 50%": "9,92", + "RAMWatt @ 100%": "15,99", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "4,0", + "Instance @ Idle": "8,8", + "Instance @ 10%": "14,0", + "Instance @ 50%": "28,2", + "Instance @ 100%": "39,9", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "m5d.2xlarge", + "Release Date": "June 2018", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "1 x 300 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,82", + "PkgWatt @ 10%": "12,22", + "PkgWatt @ 50%": "28,64", + "PkgWatt @ 100%": "39,83", + "RAMWatt @ Idle": "4,82", + "RAMWatt @ 10%": "7,70", + "RAMWatt @ 50%": "19,84", + "RAMWatt @ 100%": "31,98", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "8,0", + "Instance @ Idle": "17,6", + "Instance @ 10%": "27,9", + "Instance @ 50%": "56,5", + "Instance @ 100%": "79,8", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "m5d.4xlarge", + "Release Date": "June 2018", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "2 x 300 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "9,65", + "PkgWatt @ 10%": "24,44", + "PkgWatt @ 50%": "57,28", + "PkgWatt @ 100%": "79,66", + "RAMWatt @ Idle": "9,64", + "RAMWatt @ 10%": "15,40", + "RAMWatt @ 50%": "39,68", + "RAMWatt @ 100%": "63,97", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "16,0", + "Instance @ Idle": "35,3", + "Instance @ 10%": "55,8", + "Instance @ 50%": "113,0", + "Instance @ 100%": "159,6", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "m5d.8xlarge", + "Release Date": "June 2019", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "2 x 600 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "19,29", + "PkgWatt @ 10%": "48,88", + "PkgWatt @ 50%": "114,57", + "PkgWatt @ 100%": "159,33", + "RAMWatt @ Idle": "19,27", + "RAMWatt @ 10%": "30,80", + "RAMWatt @ 50%": "79,37", + "RAMWatt @ 100%": "127,94", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "32,0", + "Instance @ Idle": "70,6", + "Instance @ 10%": "111,7", + "Instance @ 50%": "225,9", + "Instance @ 100%": "319,3", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "m5d.12xlarge", + "Release Date": "June 2018", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "192", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "2 x 900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "28,94", + "PkgWatt @ 10%": "73,32", + "PkgWatt @ 50%": "171,85", + "PkgWatt @ 100%": "238,99", + "RAMWatt @ Idle": "28,91", + "RAMWatt @ 10%": "46,20", + "RAMWatt @ 50%": "119,05", + "RAMWatt @ 100%": "191,91", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "48,0", + "Instance @ Idle": "105,8", + "Instance @ 10%": "167,5", + "Instance @ 50%": "338,9", + "Instance @ 100%": "478,9", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "m5d.16xlarge", + "Release Date": "June 2019", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "256", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "4 x 600 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "38,59", + "PkgWatt @ 10%": "97,75", + "PkgWatt @ 50%": "229,13", + "PkgWatt @ 100%": "318,65", + "RAMWatt @ Idle": "38,54", + "RAMWatt @ 10%": "61,59", + "RAMWatt @ 50%": "158,73", + "RAMWatt @ 100%": "255,87", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "64,0", + "Instance @ Idle": "141,1", + "Instance @ 10%": "223,3", + "Instance @ 50%": "451,9", + "Instance @ 100%": "638,5", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "m5d.24xlarge", + "Release Date": "June 2018", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "384", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "4 x 900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "57,88", + "PkgWatt @ 10%": "146,63", + "PkgWatt @ 50%": "343,70", + "PkgWatt @ 100%": "477,98", + "RAMWatt @ Idle": "57,81", + "RAMWatt @ 10%": "92,39", + "RAMWatt @ 50%": "238,10", + "RAMWatt @ 100%": "383,81", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "96,0", + "Instance @ Idle": "211,7", + "Instance @ 10%": "335,0", + "Instance @ 50%": "677,8", + "Instance @ 100%": "957,8", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "m5d.metal", + "Release Date": "February 2019", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "384", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "4 x 900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "57,88", + "PkgWatt @ 10%": "146,63", + "PkgWatt @ 50%": "343,70", + "PkgWatt @ 100%": "477,98", + "RAMWatt @ Idle": "57,81", + "RAMWatt @ 10%": "92,39", + "RAMWatt @ 50%": "238,10", + "RAMWatt @ 100%": "383,81", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "96,0", + "Instance @ Idle": "211,7", + "Instance @ 10%": "335,0", + "Instance @ 50%": "677,8", + "Instance @ 100%": "957,8", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "m5dn.large", + "Release Date": "October 2019", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "1 x 75 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,14", + "PkgWatt @ 10%": "2,87", + "PkgWatt @ 50%": "6,39", + "PkgWatt @ 100%": "9,28", + "RAMWatt @ Idle": "1,24", + "RAMWatt @ 10%": "2,06", + "RAMWatt @ 50%": "3,69", + "RAMWatt @ 100%": "5,31", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,8", + "Instance @ Idle": "4,1", + "Instance @ 10%": "6,7", + "Instance @ 50%": "11,8", + "Instance @ 100%": "16,3", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "m5dn.xlarge", + "Release Date": "October 2019", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "1 x 150 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,28", + "PkgWatt @ 10%": "5,75", + "PkgWatt @ 50%": "12,79", + "PkgWatt @ 100%": "18,56", + "RAMWatt @ Idle": "2,49", + "RAMWatt @ 10%": "4,12", + "RAMWatt @ 50%": "7,37", + "RAMWatt @ 100%": "10,62", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,5", + "Instance @ Idle": "8,3", + "Instance @ 10%": "13,4", + "Instance @ 50%": "23,7", + "Instance @ 100%": "32,7", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "m5dn.2xlarge", + "Release Date": "October 2019", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "1 x 300 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,56", + "PkgWatt @ 10%": "11,49", + "PkgWatt @ 50%": "25,58", + "PkgWatt @ 100%": "37,12", + "RAMWatt @ Idle": "4,98", + "RAMWatt @ 10%": "8,24", + "RAMWatt @ 50%": "14,74", + "RAMWatt @ 100%": "21,25", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "7,0", + "Instance @ Idle": "16,5", + "Instance @ 10%": "26,7", + "Instance @ 50%": "47,3", + "Instance @ 100%": "65,4", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "m5dn.4xlarge", + "Release Date": "October 2019", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "2 x 300 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "9,12", + "PkgWatt @ 10%": "22,99", + "PkgWatt @ 50%": "51,16", + "PkgWatt @ 100%": "74,23", + "RAMWatt @ Idle": "9,95", + "RAMWatt @ 10%": "16,47", + "RAMWatt @ 50%": "29,48", + "RAMWatt @ 100%": "42,49", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "14,0", + "Instance @ Idle": "33,1", + "Instance @ 10%": "53,5", + "Instance @ 50%": "94,6", + "Instance @ 100%": "130,7", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "m5dn.8xlarge", + "Release Date": "October 2019", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "2 x 600 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "18,24", + "PkgWatt @ 10%": "45,97", + "PkgWatt @ 50%": "102,31", + "PkgWatt @ 100%": "148,46", + "RAMWatt @ Idle": "19,91", + "RAMWatt @ 10%": "32,94", + "RAMWatt @ 50%": "58,96", + "RAMWatt @ 100%": "84,98", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "28,0", + "Instance @ Idle": "66,1", + "Instance @ 10%": "106,9", + "Instance @ 50%": "189,3", + "Instance @ 100%": "261,4", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "m5dn.12xlarge", + "Release Date": "October 2019", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "192", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "2 x 900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "27,36", + "PkgWatt @ 10%": "68,96", + "PkgWatt @ 50%": "153,47", + "PkgWatt @ 100%": "222,69", + "RAMWatt @ Idle": "29,86", + "RAMWatt @ 10%": "49,42", + "RAMWatt @ 50%": "88,45", + "RAMWatt @ 100%": "127,48", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "42,0", + "Instance @ Idle": "99,2", + "Instance @ 10%": "160,4", + "Instance @ 50%": "283,9", + "Instance @ 100%": "392,2", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "m5dn.16xlarge", + "Release Date": "October 2019", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "256", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "4 x 600 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "36,47", + "PkgWatt @ 10%": "91,95", + "PkgWatt @ 50%": "204,62", + "PkgWatt @ 100%": "296,92", + "RAMWatt @ Idle": "39,81", + "RAMWatt @ 10%": "65,89", + "RAMWatt @ 50%": "117,93", + "RAMWatt @ 100%": "169,97", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "56,0", + "Instance @ Idle": "132,3", + "Instance @ 10%": "213,8", + "Instance @ 50%": "378,5", + "Instance @ 100%": "522,9", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "m5dn.24xlarge", + "Release Date": "October 2019", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "384", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "4 x 900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "54,71", + "PkgWatt @ 10%": "137,92", + "PkgWatt @ 50%": "306,93", + "PkgWatt @ 100%": "445,38", + "RAMWatt @ Idle": "59,72", + "RAMWatt @ 10%": "98,83", + "RAMWatt @ 50%": "176,89", + "RAMWatt @ 100%": "254,95", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "84,0", + "Instance @ Idle": "198,4", + "Instance @ 10%": "320,8", + "Instance @ 50%": "567,8", + "Instance @ 100%": "784,3", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "m5dn.metal", + "Release Date": "February 2021", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "384", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "4 x 900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "54,71", + "PkgWatt @ 10%": "137,92", + "PkgWatt @ 50%": "306,93", + "PkgWatt @ 100%": "445,38", + "RAMWatt @ Idle": "59,72", + "RAMWatt @ 10%": "98,83", + "RAMWatt @ 50%": "176,89", + "RAMWatt @ 100%": "254,95", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "84,0", + "Instance @ Idle": "198,4", + "Instance @ 10%": "320,8", + "Instance @ 50%": "567,8", + "Instance @ 100%": "784,3", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "m5n.large", + "Release Date": "October 2019", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,14", + "PkgWatt @ 10%": "2,87", + "PkgWatt @ 50%": "6,39", + "PkgWatt @ 100%": "9,28", + "RAMWatt @ Idle": "1,24", + "RAMWatt @ 10%": "2,06", + "RAMWatt @ 50%": "3,69", + "RAMWatt @ 100%": "5,31", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,8", + "Instance @ Idle": "4,1", + "Instance @ 10%": "6,7", + "Instance @ 50%": "11,8", + "Instance @ 100%": "16,3", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "m5n.xlarge", + "Release Date": "October 2019", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,28", + "PkgWatt @ 10%": "5,75", + "PkgWatt @ 50%": "12,79", + "PkgWatt @ 100%": "18,56", + "RAMWatt @ Idle": "2,49", + "RAMWatt @ 10%": "4,12", + "RAMWatt @ 50%": "7,37", + "RAMWatt @ 100%": "10,62", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,5", + "Instance @ Idle": "8,3", + "Instance @ 10%": "13,4", + "Instance @ 50%": "23,7", + "Instance @ 100%": "32,7", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "m5n.2xlarge", + "Release Date": "October 2019", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,56", + "PkgWatt @ 10%": "11,49", + "PkgWatt @ 50%": "25,58", + "PkgWatt @ 100%": "37,12", + "RAMWatt @ Idle": "4,98", + "RAMWatt @ 10%": "8,24", + "RAMWatt @ 50%": "14,74", + "RAMWatt @ 100%": "21,25", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "7,0", + "Instance @ Idle": "16,5", + "Instance @ 10%": "26,7", + "Instance @ 50%": "47,3", + "Instance @ 100%": "65,4", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "m5n.4xlarge", + "Release Date": "October 2019", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "9,12", + "PkgWatt @ 10%": "22,99", + "PkgWatt @ 50%": "51,16", + "PkgWatt @ 100%": "74,23", + "RAMWatt @ Idle": "9,95", + "RAMWatt @ 10%": "16,47", + "RAMWatt @ 50%": "29,48", + "RAMWatt @ 100%": "42,49", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "14,0", + "Instance @ Idle": "33,1", + "Instance @ 10%": "53,5", + "Instance @ 50%": "94,6", + "Instance @ 100%": "130,7", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "m5n.8xlarge", + "Release Date": "October 2019", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "18,24", + "PkgWatt @ 10%": "45,97", + "PkgWatt @ 50%": "102,31", + "PkgWatt @ 100%": "148,46", + "RAMWatt @ Idle": "19,91", + "RAMWatt @ 10%": "32,94", + "RAMWatt @ 50%": "58,96", + "RAMWatt @ 100%": "84,98", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "28,0", + "Instance @ Idle": "66,1", + "Instance @ 10%": "106,9", + "Instance @ 50%": "189,3", + "Instance @ 100%": "261,4", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "m5n.12xlarge", + "Release Date": "October 2019", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "192", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "27,36", + "PkgWatt @ 10%": "68,96", + "PkgWatt @ 50%": "153,47", + "PkgWatt @ 100%": "222,69", + "RAMWatt @ Idle": "29,86", + "RAMWatt @ 10%": "49,42", + "RAMWatt @ 50%": "88,45", + "RAMWatt @ 100%": "127,48", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "42,0", + "Instance @ Idle": "99,2", + "Instance @ 10%": "160,4", + "Instance @ 50%": "283,9", + "Instance @ 100%": "392,2", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "m5n.16xlarge", + "Release Date": "October 2019", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "256", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "36,47", + "PkgWatt @ 10%": "91,95", + "PkgWatt @ 50%": "204,62", + "PkgWatt @ 100%": "296,92", + "RAMWatt @ Idle": "39,81", + "RAMWatt @ 10%": "65,89", + "RAMWatt @ 50%": "117,93", + "RAMWatt @ 100%": "169,97", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "56,0", + "Instance @ Idle": "132,3", + "Instance @ 10%": "213,8", + "Instance @ 50%": "378,5", + "Instance @ 100%": "522,9", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "m5n.24xlarge", + "Release Date": "October 2019", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "384", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "54,71", + "PkgWatt @ 10%": "137,92", + "PkgWatt @ 50%": "306,93", + "PkgWatt @ 100%": "445,38", + "RAMWatt @ Idle": "59,72", + "RAMWatt @ 10%": "98,83", + "RAMWatt @ 50%": "176,89", + "RAMWatt @ 100%": "254,95", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "84,0", + "Instance @ Idle": "198,4", + "Instance @ 10%": "320,8", + "Instance @ 50%": "567,8", + "Instance @ 100%": "784,3", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "m5n.metal", + "Release Date": "February 2021", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "384", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "54,71", + "PkgWatt @ 10%": "137,92", + "PkgWatt @ 50%": "306,93", + "PkgWatt @ 100%": "445,38", + "RAMWatt @ Idle": "59,72", + "RAMWatt @ 10%": "98,83", + "RAMWatt @ 50%": "176,89", + "RAMWatt @ 100%": "254,95", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "84,0", + "Instance @ Idle": "198,4", + "Instance @ 10%": "320,8", + "Instance @ 50%": "567,8", + "Instance @ 100%": "784,3", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "m5zn.large", + "Release Date": "December 2020", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon Platinum 8252C", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,38", + "PkgWatt @ 10%": "6,13", + "PkgWatt @ 50%": "15,88", + "PkgWatt @ 100%": "19,66", + "RAMWatt @ Idle": "2,00", + "RAMWatt @ 10%": "2,88", + "RAMWatt @ 50%": "5,27", + "RAMWatt @ 100%": "7,67", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "4,0", + "Instance @ Idle": "8,4", + "Instance @ 10%": "13,0", + "Instance @ 50%": "25,1", + "Instance @ 100%": "31,3", + "Hardware Information on AWS Documentation & Comments": "Fastest Intel Xeon Scalable processors in the cloud with an all-core turbo frequency up to 4.5 GHz" + }, + { + "Instance type": "m5zn.xlarge", + "Release Date": "December 2020", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon Platinum 8252C", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,75", + "PkgWatt @ 10%": "12,25", + "PkgWatt @ 50%": "31,75", + "PkgWatt @ 100%": "39,31", + "RAMWatt @ Idle": "4,00", + "RAMWatt @ 10%": "5,75", + "RAMWatt @ 50%": "10,54", + "RAMWatt @ 100%": "15,33", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "8,0", + "Instance @ Idle": "16,8", + "Instance @ 10%": "26,0", + "Instance @ 50%": "50,3", + "Instance @ 100%": "62,6", + "Hardware Information on AWS Documentation & Comments": "Fastest Intel Xeon Scalable processors in the cloud with an all-core turbo frequency up to 4.5 GHz" + }, + { + "Instance type": "m5zn.2xlarge", + "Release Date": "December 2020", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon Platinum 8252C", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "9,50", + "PkgWatt @ 10%": "24,50", + "PkgWatt @ 50%": "63,50", + "PkgWatt @ 100%": "78,63", + "RAMWatt @ Idle": "8,00", + "RAMWatt @ 10%": "11,50", + "RAMWatt @ 50%": "21,08", + "RAMWatt @ 100%": "30,67", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "16,0", + "Instance @ Idle": "33,5", + "Instance @ 10%": "52,0", + "Instance @ 50%": "100,6", + "Instance @ 100%": "125,3", + "Hardware Information on AWS Documentation & Comments": "Fastest Intel Xeon Scalable processors in the cloud with an all-core turbo frequency up to 4.5 GHz" + }, + { + "Instance type": "m5zn.3xlarge", + "Release Date": "December 2020", + "Instance vCPU": "12", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon Platinum 8252C", + "Instance Memory (in GB)": "48", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "14,25", + "PkgWatt @ 10%": "36,75", + "PkgWatt @ 50%": "95,25", + "PkgWatt @ 100%": "117,94", + "RAMWatt @ Idle": "12,00", + "RAMWatt @ 10%": "17,25", + "RAMWatt @ 50%": "31,63", + "RAMWatt @ 100%": "46,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "24,0", + "Instance @ Idle": "50,3", + "Instance @ 10%": "78,0", + "Instance @ 50%": "150,9", + "Instance @ 100%": "187,9", + "Hardware Information on AWS Documentation & Comments": "Fastest Intel Xeon Scalable processors in the cloud with an all-core turbo frequency up to 4.5 GHz" + }, + { + "Instance type": "m5zn.6xlarge", + "Release Date": "December 2020", + "Instance vCPU": "24", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon Platinum 8252C", + "Instance Memory (in GB)": "96", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "28,50", + "PkgWatt @ 10%": "73,50", + "PkgWatt @ 50%": "190,50", + "PkgWatt @ 100%": "235,88", + "RAMWatt @ Idle": "24,00", + "RAMWatt @ 10%": "34,50", + "RAMWatt @ 50%": "63,25", + "RAMWatt @ 100%": "92,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "48,0", + "Instance @ Idle": "100,5", + "Instance @ 10%": "156,0", + "Instance @ 50%": "301,8", + "Instance @ 100%": "375,9", + "Hardware Information on AWS Documentation & Comments": "Fastest Intel Xeon Scalable processors in the cloud with an all-core turbo frequency up to 4.5 GHz" + }, + { + "Instance type": "m5zn.12xlarge", + "Release Date": "December 2020", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon Platinum 8252C", + "Instance Memory (in GB)": "192", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "57,00", + "PkgWatt @ 10%": "147,00", + "PkgWatt @ 50%": "381,00", + "PkgWatt @ 100%": "471,75", + "RAMWatt @ Idle": "48,00", + "RAMWatt @ 10%": "69,00", + "RAMWatt @ 50%": "126,50", + "RAMWatt @ 100%": "184,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "96,0", + "Instance @ Idle": "201,0", + "Instance @ 10%": "312,0", + "Instance @ 50%": "603,5", + "Instance @ 100%": "751,8", + "Hardware Information on AWS Documentation & Comments": "Fastest Intel Xeon Scalable processors in the cloud with an all-core turbo frequency up to 4.5 GHz" + }, + { + "Instance type": "m5zn.metal", + "Release Date": "December 2020", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon Platinum 8252C", + "Instance Memory (in GB)": "192", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "57,00", + "PkgWatt @ 10%": "147,00", + "PkgWatt @ 50%": "381,00", + "PkgWatt @ 100%": "471,75", + "RAMWatt @ Idle": "48,00", + "RAMWatt @ 10%": "69,00", + "RAMWatt @ 50%": "126,50", + "RAMWatt @ 100%": "184,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "96,0", + "Instance @ Idle": "201,0", + "Instance @ 10%": "312,0", + "Instance @ 50%": "603,5", + "Instance @ 100%": "751,8", + "Hardware Information on AWS Documentation & Comments": "Fastest Intel Xeon Scalable processors in the cloud with an all-core turbo frequency up to 4.5 GHz" + }, + { + "Instance type": "m6g.medium", + "Release Date": "December 2019", + "Instance vCPU": "1", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "4", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,27", + "PkgWatt @ 10%": "0,75", + "PkgWatt @ 50%": "1,76", + "PkgWatt @ 100%": "2,39", + "RAMWatt @ Idle": "0,80", + "RAMWatt @ 10%": "1,20", + "RAMWatt @ 50%": "1,60", + "RAMWatt @ 100%": "2,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "0,5", + "Instance @ Idle": "1,5", + "Instance @ 10%": "2,4", + "Instance @ 50%": "3,8", + "Instance @ 100%": "5,3", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "m6g.large", + "Release Date": "December 2019", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,54", + "PkgWatt @ 10%": "1,49", + "PkgWatt @ 50%": "3,53", + "PkgWatt @ 100%": "4,77", + "RAMWatt @ Idle": "1,60", + "RAMWatt @ 10%": "2,40", + "RAMWatt @ 50%": "3,20", + "RAMWatt @ 100%": "4,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "0,9", + "Instance @ Idle": "3,1", + "Instance @ 10%": "4,8", + "Instance @ 50%": "7,7", + "Instance @ 100%": "10,5", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "m6g.xlarge", + "Release Date": "December 2019", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,09", + "PkgWatt @ 10%": "2,98", + "PkgWatt @ 50%": "7,05", + "PkgWatt @ 100%": "9,55", + "RAMWatt @ Idle": "3,20", + "RAMWatt @ 10%": "4,80", + "RAMWatt @ 50%": "6,40", + "RAMWatt @ 100%": "9,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,9", + "Instance @ Idle": "6,2", + "Instance @ 10%": "9,7", + "Instance @ 50%": "15,3", + "Instance @ 100%": "21,0", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "m6g.2xlarge", + "Release Date": "December 2019", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,18", + "PkgWatt @ 10%": "5,97", + "PkgWatt @ 50%": "14,10", + "PkgWatt @ 100%": "19,10", + "RAMWatt @ Idle": "6,40", + "RAMWatt @ 10%": "9,60", + "RAMWatt @ 50%": "12,80", + "RAMWatt @ 100%": "19,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,8", + "Instance @ Idle": "12,3", + "Instance @ 10%": "19,3", + "Instance @ 50%": "30,7", + "Instance @ 100%": "42,0", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "m6g.4xlarge", + "Release Date": "December 2019", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,35", + "PkgWatt @ 10%": "11,93", + "PkgWatt @ 50%": "28,21", + "PkgWatt @ 100%": "38,20", + "RAMWatt @ Idle": "12,80", + "RAMWatt @ 10%": "19,20", + "RAMWatt @ 50%": "25,60", + "RAMWatt @ 100%": "38,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "7,5", + "Instance @ Idle": "24,7", + "Instance @ 10%": "38,6", + "Instance @ 50%": "61,3", + "Instance @ 100%": "84,1", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "m6g.8xlarge", + "Release Date": "December 2019", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "8,71", + "PkgWatt @ 10%": "23,87", + "PkgWatt @ 50%": "56,42", + "PkgWatt @ 100%": "76,39", + "RAMWatt @ Idle": "25,60", + "RAMWatt @ 10%": "38,40", + "RAMWatt @ 50%": "51,20", + "RAMWatt @ 100%": "76,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "15,0", + "Instance @ Idle": "49,3", + "Instance @ 10%": "77,3", + "Instance @ 50%": "122,6", + "Instance @ 100%": "168,2", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "m6g.12xlarge", + "Release Date": "December 2019", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "192", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "13,06", + "PkgWatt @ 10%": "35,80", + "PkgWatt @ 50%": "84,63", + "PkgWatt @ 100%": "114,59", + "RAMWatt @ Idle": "38,40", + "RAMWatt @ 10%": "57,60", + "RAMWatt @ 50%": "76,80", + "RAMWatt @ 100%": "115,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "22,5", + "Instance @ Idle": "74,0", + "Instance @ 10%": "115,9", + "Instance @ 50%": "183,9", + "Instance @ 100%": "252,3", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "m6g.16xlarge", + "Release Date": "December 2019", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "256", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "17,42", + "PkgWatt @ 10%": "47,74", + "PkgWatt @ 50%": "112,84", + "PkgWatt @ 100%": "152,78", + "RAMWatt @ Idle": "51,20", + "RAMWatt @ 10%": "76,80", + "RAMWatt @ 50%": "102,40", + "RAMWatt @ 100%": "153,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "30,0", + "Instance @ Idle": "98,6", + "Instance @ 10%": "154,5", + "Instance @ 50%": "245,2", + "Instance @ 100%": "336,4", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "m6g.metal", + "Release Date": "December 2019", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "256", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "17,42", + "PkgWatt @ 10%": "47,74", + "PkgWatt @ 50%": "112,84", + "PkgWatt @ 100%": "152,78", + "RAMWatt @ Idle": "51,20", + "RAMWatt @ 10%": "76,80", + "RAMWatt @ 50%": "102,40", + "RAMWatt @ 100%": "153,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "30,0", + "Instance @ Idle": "98,6", + "Instance @ 10%": "154,5", + "Instance @ 50%": "245,2", + "Instance @ 100%": "336,4", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "m6gd.medium", + "Release Date": "December 2019", + "Instance vCPU": "1", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "4", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "1 x 59 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,27", + "PkgWatt @ 10%": "0,75", + "PkgWatt @ 50%": "1,76", + "PkgWatt @ 100%": "2,39", + "RAMWatt @ Idle": "0,80", + "RAMWatt @ 10%": "1,20", + "RAMWatt @ 50%": "1,60", + "RAMWatt @ 100%": "2,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "0,5", + "Instance @ Idle": "1,5", + "Instance @ 10%": "2,4", + "Instance @ 50%": "3,8", + "Instance @ 100%": "5,3", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "m6gd.large", + "Release Date": "December 2019", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "1 x 118 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,54", + "PkgWatt @ 10%": "1,49", + "PkgWatt @ 50%": "3,53", + "PkgWatt @ 100%": "4,77", + "RAMWatt @ Idle": "1,60", + "RAMWatt @ 10%": "2,40", + "RAMWatt @ 50%": "3,20", + "RAMWatt @ 100%": "4,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "0,9", + "Instance @ Idle": "3,1", + "Instance @ 10%": "4,8", + "Instance @ 50%": "7,7", + "Instance @ 100%": "10,5", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "m6gd.xlarge", + "Release Date": "December 2019", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "1 x 237 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,09", + "PkgWatt @ 10%": "2,98", + "PkgWatt @ 50%": "7,05", + "PkgWatt @ 100%": "9,55", + "RAMWatt @ Idle": "3,20", + "RAMWatt @ 10%": "4,80", + "RAMWatt @ 50%": "6,40", + "RAMWatt @ 100%": "9,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,9", + "Instance @ Idle": "6,2", + "Instance @ 10%": "9,7", + "Instance @ 50%": "15,3", + "Instance @ 100%": "21,0", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "m6gd.2xlarge", + "Release Date": "December 2019", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "1 x 474 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,18", + "PkgWatt @ 10%": "5,97", + "PkgWatt @ 50%": "14,10", + "PkgWatt @ 100%": "19,10", + "RAMWatt @ Idle": "6,40", + "RAMWatt @ 10%": "9,60", + "RAMWatt @ 50%": "12,80", + "RAMWatt @ 100%": "19,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,8", + "Instance @ Idle": "12,3", + "Instance @ 10%": "19,3", + "Instance @ 50%": "30,7", + "Instance @ 100%": "42,0", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "m6gd.4xlarge", + "Release Date": "December 2019", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "1 x 950 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,35", + "PkgWatt @ 10%": "11,93", + "PkgWatt @ 50%": "28,21", + "PkgWatt @ 100%": "38,20", + "RAMWatt @ Idle": "12,80", + "RAMWatt @ 10%": "19,20", + "RAMWatt @ 50%": "25,60", + "RAMWatt @ 100%": "38,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "7,5", + "Instance @ Idle": "24,7", + "Instance @ 10%": "38,6", + "Instance @ 50%": "61,3", + "Instance @ 100%": "84,1", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "m6gd.8xlarge", + "Release Date": "December 2019", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "1 x 1900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "8,71", + "PkgWatt @ 10%": "23,87", + "PkgWatt @ 50%": "56,42", + "PkgWatt @ 100%": "76,39", + "RAMWatt @ Idle": "25,60", + "RAMWatt @ 10%": "38,40", + "RAMWatt @ 50%": "51,20", + "RAMWatt @ 100%": "76,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "15,0", + "Instance @ Idle": "49,3", + "Instance @ 10%": "77,3", + "Instance @ 50%": "122,6", + "Instance @ 100%": "168,2", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "m6gd.12xlarge", + "Release Date": "December 2019", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "192", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "2 x 1425 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "13,06", + "PkgWatt @ 10%": "35,80", + "PkgWatt @ 50%": "84,63", + "PkgWatt @ 100%": "114,59", + "RAMWatt @ Idle": "38,40", + "RAMWatt @ 10%": "57,60", + "RAMWatt @ 50%": "76,80", + "RAMWatt @ 100%": "115,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "22,5", + "Instance @ Idle": "74,0", + "Instance @ 10%": "115,9", + "Instance @ 50%": "183,9", + "Instance @ 100%": "252,3", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "m6gd.16xlarge", + "Release Date": "December 2019", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "256", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "2 x 1900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "17,42", + "PkgWatt @ 10%": "47,74", + "PkgWatt @ 50%": "112,84", + "PkgWatt @ 100%": "152,78", + "RAMWatt @ Idle": "51,20", + "RAMWatt @ 10%": "76,80", + "RAMWatt @ 50%": "102,40", + "RAMWatt @ 100%": "153,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "30,0", + "Instance @ Idle": "98,6", + "Instance @ 10%": "154,5", + "Instance @ 50%": "245,2", + "Instance @ 100%": "336,4", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "m6gd.metal", + "Release Date": "December 2019", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "256", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "2 x 1900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "17,42", + "PkgWatt @ 10%": "47,74", + "PkgWatt @ 50%": "112,84", + "PkgWatt @ 100%": "152,78", + "RAMWatt @ Idle": "51,20", + "RAMWatt @ 10%": "76,80", + "RAMWatt @ 50%": "102,40", + "RAMWatt @ 100%": "153,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "30,0", + "Instance @ Idle": "98,6", + "Instance @ 10%": "154,5", + "Instance @ 50%": "245,2", + "Instance @ 100%": "336,4", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "m6i.large", + "Release Date": "August 2021", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "128", + "Platform CPU Name": "Xeon Platinum 8375C", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,09", + "PkgWatt @ 10%": "2,98", + "PkgWatt @ 50%": "7,05", + "PkgWatt @ 100%": "9,55", + "RAMWatt @ Idle": "1,60", + "RAMWatt @ 10%": "2,40", + "RAMWatt @ 50%": "3,20", + "RAMWatt @ 100%": "4,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,9", + "Instance @ Idle": "4,6", + "Instance @ 10%": "7,3", + "Instance @ 50%": "12,1", + "Instance @ 100%": "16,2", + "Hardware Information on AWS Documentation & Comments": "3rd generation Intel Xeon Scalable processors" + }, + { + "Instance type": "m6i.xlarge", + "Release Date": "August 2021", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "128", + "Platform CPU Name": "Xeon Platinum 8375C", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,18", + "PkgWatt @ 10%": "5,97", + "PkgWatt @ 50%": "14,10", + "PkgWatt @ 100%": "19,10", + "RAMWatt @ Idle": "3,20", + "RAMWatt @ 10%": "4,80", + "RAMWatt @ 50%": "6,40", + "RAMWatt @ 100%": "9,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,8", + "Instance @ Idle": "9,1", + "Instance @ 10%": "14,5", + "Instance @ 50%": "24,3", + "Instance @ 100%": "32,4", + "Hardware Information on AWS Documentation & Comments": "3rd generation Intel Xeon Scalable processors" + }, + { + "Instance type": "m6i.2xlarge", + "Release Date": "August 2021", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "128", + "Platform CPU Name": "Xeon Platinum 8375C", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,35", + "PkgWatt @ 10%": "11,93", + "PkgWatt @ 50%": "28,21", + "PkgWatt @ 100%": "38,20", + "RAMWatt @ Idle": "6,40", + "RAMWatt @ 10%": "9,60", + "RAMWatt @ 50%": "12,80", + "RAMWatt @ 100%": "19,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "7,5", + "Instance @ Idle": "18,3", + "Instance @ 10%": "29,0", + "Instance @ 50%": "48,5", + "Instance @ 100%": "64,9", + "Hardware Information on AWS Documentation & Comments": "3rd generation Intel Xeon Scalable processors" + }, + { + "Instance type": "m6i.4xlarge", + "Release Date": "August 2021", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "128", + "Platform CPU Name": "Xeon Platinum 8375C", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "8,71", + "PkgWatt @ 10%": "23,87", + "PkgWatt @ 50%": "56,42", + "PkgWatt @ 100%": "76,39", + "RAMWatt @ Idle": "12,80", + "RAMWatt @ 10%": "19,20", + "RAMWatt @ 50%": "25,60", + "RAMWatt @ 100%": "38,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "15,0", + "Instance @ Idle": "36,5", + "Instance @ 10%": "58,1", + "Instance @ 50%": "97,0", + "Instance @ 100%": "129,8", + "Hardware Information on AWS Documentation & Comments": "3rd generation Intel Xeon Scalable processors" + }, + { + "Instance type": "m6i.8xlarge", + "Release Date": "August 2021", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "128", + "Platform CPU Name": "Xeon Platinum 8375C", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "17,42", + "PkgWatt @ 10%": "47,74", + "PkgWatt @ 50%": "112,84", + "PkgWatt @ 100%": "152,78", + "RAMWatt @ Idle": "25,60", + "RAMWatt @ 10%": "38,40", + "RAMWatt @ 50%": "51,20", + "RAMWatt @ 100%": "76,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "30,0", + "Instance @ Idle": "73,0", + "Instance @ 10%": "116,1", + "Instance @ 50%": "194,0", + "Instance @ 100%": "259,6", + "Hardware Information on AWS Documentation & Comments": "3rd generation Intel Xeon Scalable processors" + }, + { + "Instance type": "m6i.12xlarge", + "Release Date": "August 2021", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "128", + "Platform CPU Name": "Xeon Platinum 8375C", + "Instance Memory (in GB)": "192", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "26,13", + "PkgWatt @ 10%": "71,61", + "PkgWatt @ 50%": "169,26", + "PkgWatt @ 100%": "229,17", + "RAMWatt @ Idle": "38,40", + "RAMWatt @ 10%": "57,60", + "RAMWatt @ 50%": "76,80", + "RAMWatt @ 100%": "115,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "45,0", + "Instance @ Idle": "109,5", + "Instance @ 10%": "174,2", + "Instance @ 50%": "291,1", + "Instance @ 100%": "389,4", + "Hardware Information on AWS Documentation & Comments": "3rd generation Intel Xeon Scalable processors" + }, + { + "Instance type": "m6i.16xlarge", + "Release Date": "August 2021", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "128", + "Platform CPU Name": "Xeon Platinum 8375C", + "Instance Memory (in GB)": "256", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "34,84", + "PkgWatt @ 10%": "95,48", + "PkgWatt @ 50%": "225,68", + "PkgWatt @ 100%": "305,56", + "RAMWatt @ Idle": "51,20", + "RAMWatt @ 10%": "76,80", + "RAMWatt @ 50%": "102,40", + "RAMWatt @ 100%": "153,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "60,0", + "Instance @ Idle": "146,0", + "Instance @ 10%": "232,3", + "Instance @ 50%": "388,1", + "Instance @ 100%": "519,2", + "Hardware Information on AWS Documentation & Comments": "3rd generation Intel Xeon Scalable processors" + }, + { + "Instance type": "m6i.24xlarge", + "Release Date": "August 2021", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "128", + "Platform CPU Name": "Xeon Platinum 8375C", + "Instance Memory (in GB)": "384", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "52,26", + "PkgWatt @ 10%": "143,22", + "PkgWatt @ 50%": "338,52", + "PkgWatt @ 100%": "458,35", + "RAMWatt @ Idle": "76,80", + "RAMWatt @ 10%": "115,20", + "RAMWatt @ 50%": "153,60", + "RAMWatt @ 100%": "230,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "90,0", + "Instance @ Idle": "219,1", + "Instance @ 10%": "348,4", + "Instance @ 50%": "582,1", + "Instance @ 100%": "778,7", + "Hardware Information on AWS Documentation & Comments": "3rd generation Intel Xeon Scalable processors" + }, + { + "Instance type": "m6i.32xlarge", + "Release Date": "August 2021", + "Instance vCPU": "128", + "Platform Total Number of vCPU": "128", + "Platform CPU Name": "Xeon Platinum 8375C", + "Instance Memory (in GB)": "512", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "69,68", + "PkgWatt @ 10%": "190,96", + "PkgWatt @ 50%": "451,36", + "PkgWatt @ 100%": "611,13", + "RAMWatt @ Idle": "102,40", + "RAMWatt @ 10%": "153,60", + "RAMWatt @ 50%": "204,80", + "RAMWatt @ 100%": "307,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "120,0", + "Instance @ Idle": "292,1", + "Instance @ 10%": "464,6", + "Instance @ 50%": "776,2", + "Instance @ 100%": "1038,3", + "Hardware Information on AWS Documentation & Comments": "3rd generation Intel Xeon Scalable processors" + }, + { + "Instance type": "mac1.metal", + "Release Date": "November 2020", + "Instance vCPU": "12", + "Platform Total Number of vCPU": "12", + "Platform CPU Name": "Core i7-8700B", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "32", + "Storage Info (Type and Size in GB)": "N/A", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "7,55", + "PkgWatt @ 10%": "20,69", + "PkgWatt @ 50%": "48,90", + "PkgWatt @ 100%": "66,21", + "RAMWatt @ Idle": "6,40", + "RAMWatt @ 10%": "9,60", + "RAMWatt @ 50%": "12,80", + "RAMWatt @ 100%": "19,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "13,0", + "Instance @ Idle": "26,9", + "Instance @ 10%": "43,3", + "Instance @ 50%": "74,7", + "Instance @ 100%": "98,4", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "p2.xlarge", + "Release Date": "September 2016", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "61", + "Platform Memory (in GB)": "732", + "Storage Info (Type and Size in GB)": "N/A", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "16", + "Platform GPU Name": "Tesla K80", + "Instance Number of GPU": "1", + "Instance GPU memory (in GB)": "24", + "PkgWatt @ Idle": "1,94", + "PkgWatt @ 10%": "5,55", + "PkgWatt @ 50%": "11,41", + "PkgWatt @ 100%": "15,62", + "RAMWatt @ Idle": "12,20", + "RAMWatt @ 10%": "18,30", + "RAMWatt @ 50%": "24,40", + "RAMWatt @ 100%": "36,60", + "GPUWatt @ Idle": "34,8", + "GPUWatt @ 10%": "95,5", + "GPUWatt @ 50%": "225,7", + "GPUWatt @ 100%": "305,6", + "Delta Full Machine": "3,2", + "Instance @ Idle": "52,2", + "Instance @ 10%": "122,5", + "Instance @ 50%": "264,7", + "Instance @ 100%": "361,0", + "Hardware Information on AWS Documentation & Comments": "1 GPU NVIDIA Tesla K80" + }, + { + "Instance type": "p2.8xlarge", + "Release Date": "September 2016", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "488", + "Platform Memory (in GB)": "732", + "Storage Info (Type and Size in GB)": "N/A", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "16", + "Platform GPU Name": "Tesla K80", + "Instance Number of GPU": "8", + "Instance GPU memory (in GB)": "192", + "PkgWatt @ Idle": "15,55", + "PkgWatt @ 10%": "44,38", + "PkgWatt @ 50%": "91,28", + "PkgWatt @ 100%": "124,95", + "RAMWatt @ Idle": "97,60", + "RAMWatt @ 10%": "146,40", + "RAMWatt @ 50%": "195,20", + "RAMWatt @ 100%": "292,80", + "GPUWatt @ Idle": "278,7", + "GPUWatt @ 10%": "763,8", + "GPUWatt @ 50%": "1805,4", + "GPUWatt @ 100%": "2444,5", + "Delta Full Machine": "25,8", + "Instance @ Idle": "417,6", + "Instance @ 10%": "980,4", + "Instance @ 50%": "2117,7", + "Instance @ 100%": "2888,0", + "Hardware Information on AWS Documentation & Comments": "8 GPU NVIDIA Tesla K80" + }, + { + "Instance type": "p2.16xlarge", + "Release Date": "September 2016", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "732", + "Platform Memory (in GB)": "732", + "Storage Info (Type and Size in GB)": "N/A", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "16", + "Platform GPU Name": "Tesla K80", + "Instance Number of GPU": "16", + "Instance GPU memory (in GB)": "384", + "PkgWatt @ Idle": "31,09", + "PkgWatt @ 10%": "88,76", + "PkgWatt @ 50%": "182,57", + "PkgWatt @ 100%": "249,90", + "RAMWatt @ Idle": "146,40", + "RAMWatt @ 10%": "219,60", + "RAMWatt @ 50%": "292,80", + "RAMWatt @ 100%": "439,20", + "GPUWatt @ Idle": "557,4", + "GPUWatt @ 10%": "1527,7", + "GPUWatt @ 50%": "3610,9", + "GPUWatt @ 100%": "4889,0", + "Delta Full Machine": "51,6", + "Instance @ Idle": "786,5", + "Instance @ 10%": "1887,6", + "Instance @ 50%": "4137,8", + "Instance @ 100%": "5629,7", + "Hardware Information on AWS Documentation & Comments": "16 GPU NVIDIA Tesla K80" + }, + { + "Instance type": "p3.2xlarge", + "Release Date": "October 2017", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "61", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "N/A", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "8", + "Platform GPU Name": "Tesla V100", + "Instance Number of GPU": "1", + "Instance GPU memory (in GB)": "16", + "PkgWatt @ Idle": "3,89", + "PkgWatt @ 10%": "11,10", + "PkgWatt @ 50%": "22,82", + "PkgWatt @ 100%": "31,24", + "RAMWatt @ Idle": "12,20", + "RAMWatt @ 10%": "18,30", + "RAMWatt @ 50%": "24,40", + "RAMWatt @ 100%": "36,60", + "GPUWatt @ Idle": "34,8", + "GPUWatt @ 10%": "95,5", + "GPUWatt @ 50%": "225,7", + "GPUWatt @ 100%": "305,6", + "Delta Full Machine": "6,4", + "Instance @ Idle": "57,4", + "Instance @ 10%": "131,3", + "Instance @ 50%": "279,3", + "Instance @ 100%": "379,8", + "Hardware Information on AWS Documentation & Comments": "1 NVIDIA Tesla V100" + }, + { + "Instance type": "p3.8xlarge", + "Release Date": "October 2017", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "244", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "N/A", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "8", + "Platform GPU Name": "Tesla V100", + "Instance Number of GPU": "4", + "Instance GPU memory (in GB)": "64", + "PkgWatt @ Idle": "15,55", + "PkgWatt @ 10%": "44,38", + "PkgWatt @ 50%": "91,28", + "PkgWatt @ 100%": "124,95", + "RAMWatt @ Idle": "48,80", + "RAMWatt @ 10%": "73,20", + "RAMWatt @ 50%": "97,60", + "RAMWatt @ 100%": "146,40", + "GPUWatt @ Idle": "139,4", + "GPUWatt @ 10%": "381,9", + "GPUWatt @ 50%": "902,7", + "GPUWatt @ 100%": "1222,3", + "Delta Full Machine": "25,8", + "Instance @ Idle": "229,5", + "Instance @ 10%": "525,3", + "Instance @ 50%": "1117,4", + "Instance @ 100%": "1519,4", + "Hardware Information on AWS Documentation & Comments": "4 NVIDIA Tesla V100" + }, + { + "Instance type": "p3.16xlarge", + "Release Date": "October 2017", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "488", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "N/A", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "8", + "Platform GPU Name": "Tesla V100", + "Instance Number of GPU": "8", + "Instance GPU memory (in GB)": "128", + "PkgWatt @ Idle": "31,09", + "PkgWatt @ 10%": "88,76", + "PkgWatt @ 50%": "182,57", + "PkgWatt @ 100%": "249,90", + "RAMWatt @ Idle": "97,60", + "RAMWatt @ 10%": "146,40", + "RAMWatt @ 50%": "195,20", + "RAMWatt @ 100%": "292,80", + "GPUWatt @ Idle": "278,7", + "GPUWatt @ 10%": "763,8", + "GPUWatt @ 50%": "1805,4", + "GPUWatt @ 100%": "2444,5", + "Delta Full Machine": "51,6", + "Instance @ Idle": "459,0", + "Instance @ 10%": "1050,5", + "Instance @ 50%": "2234,8", + "Instance @ 100%": "3038,8", + "Hardware Information on AWS Documentation & Comments": "8 NVIDIA Tesla V100" + }, + { + "Instance type": "p3dn.24xlarge", + "Release Date": "December 2018", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "768", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "2 x 900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "8", + "Platform GPU Name": "Tesla V100", + "Instance Number of GPU": "8", + "Instance GPU memory (in GB)": "256", + "PkgWatt @ Idle": "57,88", + "PkgWatt @ 10%": "146,63", + "PkgWatt @ 50%": "343,70", + "PkgWatt @ 100%": "477,98", + "RAMWatt @ Idle": "115,62", + "RAMWatt @ 10%": "184,78", + "RAMWatt @ 50%": "476,20", + "RAMWatt @ 100%": "767,62", + "GPUWatt @ Idle": "278,7", + "GPUWatt @ 10%": "763,8", + "GPUWatt @ 50%": "1805,4", + "GPUWatt @ 100%": "2444,5", + "Delta Full Machine": "96,0", + "Instance @ Idle": "548,2", + "Instance @ 10%": "1191,2", + "Instance @ 50%": "2721,3", + "Instance @ 100%": "3786,1", + "Hardware Information on AWS Documentation & Comments": "8 NVIDIA Tesla V100" + }, + { + "Instance type": "p4d.24xlarge", + "Release Date": "November 2020", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8275CL", + "Instance Memory (in GB)": "1152", + "Platform Memory (in GB)": "1152", + "Storage Info (Type and Size in GB)": "8TB NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "8", + "Platform GPU Quantity": "8", + "Platform GPU Name": "Tesla A100", + "Instance Number of GPU": "8", + "Instance GPU memory (in GB)": "320", + "PkgWatt @ Idle": "57,93", + "PkgWatt @ 10%": "175,53", + "PkgWatt @ 50%": "448,31", + "PkgWatt @ 100%": "626,76", + "RAMWatt @ Idle": "219,30", + "RAMWatt @ 10%": "397,56", + "RAMWatt @ 50%": "830,22", + "RAMWatt @ 100%": "1262,88", + "GPUWatt @ Idle": "371,6", + "GPUWatt @ 10%": "1018,4", + "GPUWatt @ 50%": "2407,2", + "GPUWatt @ 100%": "3259,3", + "Delta Full Machine": "96,0", + "Instance @ Idle": "744,8", + "Instance @ 10%": "1687,5", + "Instance @ 50%": "3781,8", + "Instance @ 100%": "5245,0", + "Hardware Information on AWS Documentation & Comments": "8 NVIDIA A100 Tensor Core GPU" + }, + { + "Instance type": "ra3.4xlarge", + "Release Date": "December 2019", + "Instance vCPU": "12", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon E5-2676 v3", + "Instance Memory (in GB)": "96", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "64000 RMS", + "Storage Type": "RMS", + "Platform Storage Drive Quantity": "10", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "7,24", + "PkgWatt @ 10%": "20,66", + "PkgWatt @ 50%": "42,49", + "PkgWatt @ 100%": "58,17", + "RAMWatt @ Idle": "19,20", + "RAMWatt @ 10%": "28,80", + "RAMWatt @ 50%": "38,40", + "RAMWatt @ 100%": "57,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "12,0", + "Instance @ Idle": "38,4", + "Instance @ 10%": "61,5", + "Instance @ 50%": "92,9", + "Instance @ 100%": "127,8", + "Hardware Information on AWS Documentation & Comments": "Comment: CPU platform assumed to be the same as ds2 instances" + }, + { + "Instance type": "ra3.16xlarge", + "Release Date": "December 2019", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon E5-2676 v3", + "Instance Memory (in GB)": "384", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "64000 RMS", + "Storage Type": "RMS", + "Platform Storage Drive Quantity": "10", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "28,95", + "PkgWatt @ 10%": "82,64", + "PkgWatt @ 50%": "169,98", + "PkgWatt @ 100%": "232,66", + "RAMWatt @ Idle": "76,80", + "RAMWatt @ 10%": "115,20", + "RAMWatt @ 50%": "153,60", + "RAMWatt @ 100%": "230,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "48,0", + "Instance @ Idle": "153,7", + "Instance @ 10%": "245,8", + "Instance @ 50%": "371,6", + "Instance @ 100%": "511,1", + "Hardware Information on AWS Documentation & Comments": "Comment: CPU platform assumed to be the same as ds2 instances" + }, + { + "Instance type": "r3.large", + "Release Date": "April 2014", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2670 v2", + "Instance Memory (in GB)": "15.25", + "Platform Memory (in GB)": "244", + "Storage Info (Type and Size in GB)": "1 x 32 (SSD)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,39", + "PkgWatt @ 10%": "3,96", + "PkgWatt @ 50%": "8,14", + "PkgWatt @ 100%": "11,15", + "RAMWatt @ Idle": "3,05", + "RAMWatt @ 10%": "4,58", + "RAMWatt @ 50%": "6,10", + "RAMWatt @ 100%": "9,15", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,3", + "Instance @ Idle": "6,7", + "Instance @ 10%": "10,8", + "Instance @ 50%": "16,5", + "Instance @ 100%": "22,6", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon Ivy Bridge Processors" + }, + { + "Instance type": "r3.xlarge", + "Release Date": "April 2014", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2670 v2", + "Instance Memory (in GB)": "30.5", + "Platform Memory (in GB)": "244", + "Storage Info (Type and Size in GB)": "1 x 80 (SSD)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,77", + "PkgWatt @ 10%": "7,92", + "PkgWatt @ 50%": "16,29", + "PkgWatt @ 100%": "22,30", + "RAMWatt @ Idle": "6,10", + "RAMWatt @ 10%": "9,15", + "RAMWatt @ 50%": "12,20", + "RAMWatt @ 100%": "18,30", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "4,6", + "Instance @ Idle": "13,5", + "Instance @ 10%": "21,7", + "Instance @ 50%": "33,1", + "Instance @ 100%": "45,2", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon Ivy Bridge Processors" + }, + { + "Instance type": "r3.2xlarge", + "Release Date": "April 2014", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2670 v2", + "Instance Memory (in GB)": "61", + "Platform Memory (in GB)": "244", + "Storage Info (Type and Size in GB)": "1 x 160 (SSD)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "5,55", + "PkgWatt @ 10%": "15,84", + "PkgWatt @ 50%": "32,58", + "PkgWatt @ 100%": "44,59", + "RAMWatt @ Idle": "12,20", + "RAMWatt @ 10%": "18,30", + "RAMWatt @ 50%": "24,40", + "RAMWatt @ 100%": "36,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "9,2", + "Instance @ Idle": "26,9", + "Instance @ 10%": "43,3", + "Instance @ 50%": "66,2", + "Instance @ 100%": "90,4", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon Ivy Bridge Processors" + }, + { + "Instance type": "r3.4xlarge", + "Release Date": "April 2014", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2670 v2", + "Instance Memory (in GB)": "122", + "Platform Memory (in GB)": "244", + "Storage Info (Type and Size in GB)": "1 x 320 (SSD)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "11,10", + "PkgWatt @ 10%": "31,68", + "PkgWatt @ 50%": "65,16", + "PkgWatt @ 100%": "89,19", + "RAMWatt @ Idle": "24,40", + "RAMWatt @ 10%": "36,60", + "RAMWatt @ 50%": "48,80", + "RAMWatt @ 100%": "73,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "18,4", + "Instance @ Idle": "53,9", + "Instance @ 10%": "86,7", + "Instance @ 50%": "132,4", + "Instance @ 100%": "180,8", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon Ivy Bridge Processors" + }, + { + "Instance type": "r3.8xlarge", + "Release Date": "April 2014", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2670 v2", + "Instance Memory (in GB)": "244", + "Platform Memory (in GB)": "244", + "Storage Info (Type and Size in GB)": "2 x 320 (SSD)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "22,19", + "PkgWatt @ 10%": "63,36", + "PkgWatt @ 50%": "130,32", + "PkgWatt @ 100%": "178,37", + "RAMWatt @ Idle": "48,80", + "RAMWatt @ 10%": "73,20", + "RAMWatt @ 50%": "97,60", + "RAMWatt @ 100%": "146,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "36,8", + "Instance @ Idle": "107,8", + "Instance @ 10%": "173,4", + "Instance @ 50%": "264,7", + "Instance @ 100%": "361,6", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon Ivy Bridge Processors" + }, + { + "Instance type": "r4.large", + "Release Date": "November 2016", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "15.25", + "Platform Memory (in GB)": "488", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,97", + "PkgWatt @ 10%": "2,77", + "PkgWatt @ 50%": "5,71", + "PkgWatt @ 100%": "7,81", + "RAMWatt @ Idle": "3,05", + "RAMWatt @ 10%": "4,58", + "RAMWatt @ 50%": "6,10", + "RAMWatt @ 100%": "9,15", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,6", + "Instance @ Idle": "5,6", + "Instance @ 10%": "9,0", + "Instance @ 50%": "13,4", + "Instance @ 100%": "18,6", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor" + }, + { + "Instance type": "r4.xlarge", + "Release Date": "November 2016", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "30.5", + "Platform Memory (in GB)": "488", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,94", + "PkgWatt @ 10%": "5,55", + "PkgWatt @ 50%": "11,41", + "PkgWatt @ 100%": "15,62", + "RAMWatt @ Idle": "6,10", + "RAMWatt @ 10%": "9,15", + "RAMWatt @ 50%": "12,20", + "RAMWatt @ 100%": "18,30", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,2", + "Instance @ Idle": "11,3", + "Instance @ 10%": "17,9", + "Instance @ 50%": "26,8", + "Instance @ 100%": "37,1", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor" + }, + { + "Instance type": "r4.2xlarge", + "Release Date": "November 2016", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "61", + "Platform Memory (in GB)": "488", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "3,89", + "PkgWatt @ 10%": "11,10", + "PkgWatt @ 50%": "22,82", + "PkgWatt @ 100%": "31,24", + "RAMWatt @ Idle": "12,20", + "RAMWatt @ 10%": "18,30", + "RAMWatt @ 50%": "24,40", + "RAMWatt @ 100%": "36,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "6,4", + "Instance @ Idle": "22,5", + "Instance @ 10%": "35,8", + "Instance @ 50%": "53,7", + "Instance @ 100%": "74,3", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor" + }, + { + "Instance type": "r4.4xlarge", + "Release Date": "November 2016", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "122", + "Platform Memory (in GB)": "488", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "7,77", + "PkgWatt @ 10%": "22,19", + "PkgWatt @ 50%": "45,64", + "PkgWatt @ 100%": "62,47", + "RAMWatt @ Idle": "24,40", + "RAMWatt @ 10%": "36,60", + "RAMWatt @ 50%": "48,80", + "RAMWatt @ 100%": "73,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "12,9", + "Instance @ Idle": "45,1", + "Instance @ 10%": "71,7", + "Instance @ 50%": "107,3", + "Instance @ 100%": "148,6", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor" + }, + { + "Instance type": "r4.8xlarge", + "Release Date": "November 2016", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "244", + "Platform Memory (in GB)": "488", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "15,55", + "PkgWatt @ 10%": "44,38", + "PkgWatt @ 50%": "91,28", + "PkgWatt @ 100%": "124,95", + "RAMWatt @ Idle": "48,80", + "RAMWatt @ 10%": "73,20", + "RAMWatt @ 50%": "97,60", + "RAMWatt @ 100%": "146,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "25,8", + "Instance @ Idle": "90,1", + "Instance @ 10%": "143,4", + "Instance @ 50%": "214,7", + "Instance @ 100%": "297,1", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor" + }, + { + "Instance type": "r4.16xlarge", + "Release Date": "November 2016", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "488", + "Platform Memory (in GB)": "488", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "31,09", + "PkgWatt @ 10%": "88,76", + "PkgWatt @ 50%": "182,57", + "PkgWatt @ 100%": "249,90", + "RAMWatt @ Idle": "97,60", + "RAMWatt @ 10%": "146,40", + "RAMWatt @ 50%": "195,20", + "RAMWatt @ 100%": "292,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "51,6", + "Instance @ Idle": "180,2", + "Instance @ 10%": "286,7", + "Instance @ 50%": "429,3", + "Instance @ 100%": "594,3", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor" + }, + { + "Instance type": "r5.large", + "Release Date": "July 2018", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,21", + "PkgWatt @ 10%": "3,05", + "PkgWatt @ 50%": "7,16", + "PkgWatt @ 100%": "9,96", + "RAMWatt @ Idle": "2,41", + "RAMWatt @ 10%": "3,85", + "RAMWatt @ 50%": "9,92", + "RAMWatt @ 100%": "15,99", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,0", + "Instance @ Idle": "5,6", + "Instance @ 10%": "8,9", + "Instance @ 50%": "19,1", + "Instance @ 100%": "27,9", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "r5.xlarge", + "Release Date": "July 2018", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,41", + "PkgWatt @ 10%": "6,11", + "PkgWatt @ 50%": "14,32", + "PkgWatt @ 100%": "19,92", + "RAMWatt @ Idle": "4,82", + "RAMWatt @ 10%": "7,70", + "RAMWatt @ 50%": "19,84", + "RAMWatt @ 100%": "31,98", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "4,0", + "Instance @ Idle": "11,2", + "Instance @ 10%": "17,8", + "Instance @ 50%": "38,2", + "Instance @ 100%": "55,9", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "r5.2xlarge", + "Release Date": "July 2018", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,82", + "PkgWatt @ 10%": "12,22", + "PkgWatt @ 50%": "28,64", + "PkgWatt @ 100%": "39,83", + "RAMWatt @ Idle": "9,64", + "RAMWatt @ 10%": "15,40", + "RAMWatt @ 50%": "39,68", + "RAMWatt @ 100%": "63,97", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "8,0", + "Instance @ Idle": "22,5", + "Instance @ 10%": "35,6", + "Instance @ 50%": "76,3", + "Instance @ 100%": "111,8", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "r5.4xlarge", + "Release Date": "July 2018", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "9,65", + "PkgWatt @ 10%": "24,44", + "PkgWatt @ 50%": "57,28", + "PkgWatt @ 100%": "79,66", + "RAMWatt @ Idle": "19,27", + "RAMWatt @ 10%": "30,80", + "RAMWatt @ 50%": "79,37", + "RAMWatt @ 100%": "127,94", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "16,0", + "Instance @ Idle": "44,9", + "Instance @ 10%": "71,2", + "Instance @ 50%": "152,7", + "Instance @ 100%": "223,6", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "r5.8xlarge", + "Release Date": "June 2019", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "256", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "19,29", + "PkgWatt @ 10%": "48,88", + "PkgWatt @ 50%": "114,57", + "PkgWatt @ 100%": "159,33", + "RAMWatt @ Idle": "38,54", + "RAMWatt @ 10%": "61,59", + "RAMWatt @ 50%": "158,73", + "RAMWatt @ 100%": "255,87", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "32,0", + "Instance @ Idle": "89,8", + "Instance @ 10%": "142,5", + "Instance @ 50%": "305,3", + "Instance @ 100%": "447,2", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "r5.12xlarge", + "Release Date": "July 2018", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "384", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "28,94", + "PkgWatt @ 10%": "73,32", + "PkgWatt @ 50%": "171,85", + "PkgWatt @ 100%": "238,99", + "RAMWatt @ Idle": "57,81", + "RAMWatt @ 10%": "92,39", + "RAMWatt @ 50%": "238,10", + "RAMWatt @ 100%": "383,81", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "48,0", + "Instance @ Idle": "134,8", + "Instance @ 10%": "213,7", + "Instance @ 50%": "458,0", + "Instance @ 100%": "670,8", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "r5.16xlarge", + "Release Date": "June 2019", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "512", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "38,59", + "PkgWatt @ 10%": "97,75", + "PkgWatt @ 50%": "229,13", + "PkgWatt @ 100%": "318,65", + "RAMWatt @ Idle": "77,08", + "RAMWatt @ 10%": "123,19", + "RAMWatt @ 50%": "317,47", + "RAMWatt @ 100%": "511,75", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "64,0", + "Instance @ Idle": "179,7", + "Instance @ 10%": "284,9", + "Instance @ 50%": "610,6", + "Instance @ 100%": "894,4", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "r5.24xlarge", + "Release Date": "July 2018", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "768", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "57,88", + "PkgWatt @ 10%": "146,63", + "PkgWatt @ 50%": "343,70", + "PkgWatt @ 100%": "477,98", + "RAMWatt @ Idle": "115,62", + "RAMWatt @ 10%": "184,78", + "RAMWatt @ 50%": "476,20", + "RAMWatt @ 100%": "767,62", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "96,0", + "Instance @ Idle": "269,5", + "Instance @ 10%": "427,4", + "Instance @ 50%": "915,9", + "Instance @ 100%": "1341,6", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "r5.metal", + "Release Date": "July 2018", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "768", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "57,88", + "PkgWatt @ 10%": "146,63", + "PkgWatt @ 50%": "343,70", + "PkgWatt @ 100%": "477,98", + "RAMWatt @ Idle": "115,62", + "RAMWatt @ 10%": "184,78", + "RAMWatt @ 50%": "476,20", + "RAMWatt @ 100%": "767,62", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "96,0", + "Instance @ Idle": "269,5", + "Instance @ 10%": "427,4", + "Instance @ 50%": "915,9", + "Instance @ 100%": "1341,6", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "r5a.large", + "Release Date": "November 2018", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,97", + "PkgWatt @ 10%": "2,65", + "PkgWatt @ 50%": "6,27", + "PkgWatt @ 100%": "8,49", + "RAMWatt @ Idle": "3,20", + "RAMWatt @ 10%": "4,80", + "RAMWatt @ 50%": "6,40", + "RAMWatt @ 100%": "9,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,7", + "Instance @ Idle": "5,8", + "Instance @ 10%": "9,1", + "Instance @ 50%": "14,3", + "Instance @ 100%": "19,8", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 series processors" + }, + { + "Instance type": "r5a.xlarge", + "Release Date": "November 2018", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,94", + "PkgWatt @ 10%": "5,30", + "PkgWatt @ 50%": "12,54", + "PkgWatt @ 100%": "16,98", + "RAMWatt @ Idle": "6,40", + "RAMWatt @ 10%": "9,60", + "RAMWatt @ 50%": "12,80", + "RAMWatt @ 100%": "19,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,3", + "Instance @ Idle": "11,7", + "Instance @ 10%": "18,2", + "Instance @ 50%": "28,7", + "Instance @ 100%": "39,5", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 series processors" + }, + { + "Instance type": "r5a.2xlarge", + "Release Date": "November 2018", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "3,87", + "PkgWatt @ 10%": "10,61", + "PkgWatt @ 50%": "25,08", + "PkgWatt @ 100%": "33,95", + "RAMWatt @ Idle": "12,80", + "RAMWatt @ 10%": "19,20", + "RAMWatt @ 50%": "25,60", + "RAMWatt @ 100%": "38,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "6,7", + "Instance @ Idle": "23,3", + "Instance @ 10%": "36,5", + "Instance @ 50%": "57,3", + "Instance @ 100%": "79,0", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 series processors" + }, + { + "Instance type": "r5a.4xlarge", + "Release Date": "November 2018", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "7,74", + "PkgWatt @ 10%": "21,22", + "PkgWatt @ 50%": "50,15", + "PkgWatt @ 100%": "67,90", + "RAMWatt @ Idle": "25,60", + "RAMWatt @ 10%": "38,40", + "RAMWatt @ 50%": "51,20", + "RAMWatt @ 100%": "76,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "13,3", + "Instance @ Idle": "46,7", + "Instance @ 10%": "73,0", + "Instance @ 50%": "114,7", + "Instance @ 100%": "158,0", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 series processors" + }, + { + "Instance type": "r5a.8xlarge", + "Release Date": "June 2019", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "256", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "15,48", + "PkgWatt @ 10%": "42,43", + "PkgWatt @ 50%": "100,30", + "PkgWatt @ 100%": "135,81", + "RAMWatt @ Idle": "51,20", + "RAMWatt @ 10%": "76,80", + "RAMWatt @ 50%": "102,40", + "RAMWatt @ 100%": "153,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "26,7", + "Instance @ Idle": "93,4", + "Instance @ 10%": "145,9", + "Instance @ 50%": "229,4", + "Instance @ 100%": "316,1", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 series processors" + }, + { + "Instance type": "r5a.12xlarge", + "Release Date": "November 2018", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "384", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "23,23", + "PkgWatt @ 10%": "63,65", + "PkgWatt @ 50%": "150,45", + "PkgWatt @ 100%": "203,71", + "RAMWatt @ Idle": "76,80", + "RAMWatt @ 10%": "115,20", + "RAMWatt @ 50%": "153,60", + "RAMWatt @ 100%": "230,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "40,0", + "Instance @ Idle": "140,0", + "Instance @ 10%": "218,9", + "Instance @ 50%": "344,1", + "Instance @ 100%": "474,1", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 series processors" + }, + { + "Instance type": "r5a.16xlarge", + "Release Date": "June 2019", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "512", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "30,97", + "PkgWatt @ 10%": "84,87", + "PkgWatt @ 50%": "200,60", + "PkgWatt @ 100%": "271,61", + "RAMWatt @ Idle": "102,40", + "RAMWatt @ 10%": "153,60", + "RAMWatt @ 50%": "204,80", + "RAMWatt @ 100%": "307,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "53,3", + "Instance @ Idle": "186,7", + "Instance @ 10%": "291,8", + "Instance @ 50%": "458,7", + "Instance @ 100%": "632,1", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 series processors" + }, + { + "Instance type": "r5a.24xlarge", + "Release Date": "November 2018", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "768", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "46,45", + "PkgWatt @ 10%": "127,30", + "PkgWatt @ 50%": "300,91", + "PkgWatt @ 100%": "407,42", + "RAMWatt @ Idle": "153,60", + "RAMWatt @ 10%": "230,40", + "RAMWatt @ 50%": "307,20", + "RAMWatt @ 100%": "460,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "80,0", + "Instance @ Idle": "280,1", + "Instance @ 10%": "437,7", + "Instance @ 50%": "688,1", + "Instance @ 100%": "948,2", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 series processors" + }, + { + "Instance type": "r5ad.large", + "Release Date": "March 2019", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "1 x 75 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,97", + "PkgWatt @ 10%": "2,65", + "PkgWatt @ 50%": "6,27", + "PkgWatt @ 100%": "8,49", + "RAMWatt @ Idle": "3,20", + "RAMWatt @ 10%": "4,80", + "RAMWatt @ 50%": "6,40", + "RAMWatt @ 100%": "9,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,7", + "Instance @ Idle": "5,8", + "Instance @ 10%": "9,1", + "Instance @ 50%": "14,3", + "Instance @ 100%": "19,8", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 series processors" + }, + { + "Instance type": "r5ad.xlarge", + "Release Date": "March 2019", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "1 x 150 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,94", + "PkgWatt @ 10%": "5,30", + "PkgWatt @ 50%": "12,54", + "PkgWatt @ 100%": "16,98", + "RAMWatt @ Idle": "6,40", + "RAMWatt @ 10%": "9,60", + "RAMWatt @ 50%": "12,80", + "RAMWatt @ 100%": "19,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,3", + "Instance @ Idle": "11,7", + "Instance @ 10%": "18,2", + "Instance @ 50%": "28,7", + "Instance @ 100%": "39,5", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 series processors" + }, + { + "Instance type": "r5ad.2xlarge", + "Release Date": "March 2019", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "1 x 300 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "3,87", + "PkgWatt @ 10%": "10,61", + "PkgWatt @ 50%": "25,08", + "PkgWatt @ 100%": "33,95", + "RAMWatt @ Idle": "12,80", + "RAMWatt @ 10%": "19,20", + "RAMWatt @ 50%": "25,60", + "RAMWatt @ 100%": "38,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "6,7", + "Instance @ Idle": "23,3", + "Instance @ 10%": "36,5", + "Instance @ 50%": "57,3", + "Instance @ 100%": "79,0", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 series processors" + }, + { + "Instance type": "r5ad.4xlarge", + "Release Date": "March 2019", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "2 x 300 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "7,74", + "PkgWatt @ 10%": "21,22", + "PkgWatt @ 50%": "50,15", + "PkgWatt @ 100%": "67,90", + "RAMWatt @ Idle": "25,60", + "RAMWatt @ 10%": "38,40", + "RAMWatt @ 50%": "51,20", + "RAMWatt @ 100%": "76,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "13,3", + "Instance @ Idle": "46,7", + "Instance @ 10%": "73,0", + "Instance @ 50%": "114,7", + "Instance @ 100%": "158,0", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 series processors" + }, + { + "Instance type": "r5ad.8xlarge", + "Release Date": "March 2019", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "256", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "2 x 600 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "15,48", + "PkgWatt @ 10%": "42,43", + "PkgWatt @ 50%": "100,30", + "PkgWatt @ 100%": "135,81", + "RAMWatt @ Idle": "51,20", + "RAMWatt @ 10%": "76,80", + "RAMWatt @ 50%": "102,40", + "RAMWatt @ 100%": "153,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "26,7", + "Instance @ Idle": "93,4", + "Instance @ 10%": "145,9", + "Instance @ 50%": "229,4", + "Instance @ 100%": "316,1", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 series processors" + }, + { + "Instance type": "r5ad.12xlarge", + "Release Date": "March 2019", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "384", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "2 x 900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "23,23", + "PkgWatt @ 10%": "63,65", + "PkgWatt @ 50%": "150,45", + "PkgWatt @ 100%": "203,71", + "RAMWatt @ Idle": "76,80", + "RAMWatt @ 10%": "115,20", + "RAMWatt @ 50%": "153,60", + "RAMWatt @ 100%": "230,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "40,0", + "Instance @ Idle": "140,0", + "Instance @ 10%": "218,9", + "Instance @ 50%": "344,1", + "Instance @ 100%": "474,1", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 series processors" + }, + { + "Instance type": "r5ad.16xlarge", + "Release Date": "March 2019", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "512", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "4 x 600 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "30,97", + "PkgWatt @ 10%": "84,87", + "PkgWatt @ 50%": "200,60", + "PkgWatt @ 100%": "271,61", + "RAMWatt @ Idle": "102,40", + "RAMWatt @ 10%": "153,60", + "RAMWatt @ 50%": "204,80", + "RAMWatt @ 100%": "307,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "53,3", + "Instance @ Idle": "186,7", + "Instance @ 10%": "291,8", + "Instance @ 50%": "458,7", + "Instance @ 100%": "632,1", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 series processors" + }, + { + "Instance type": "r5ad.24xlarge", + "Release Date": "March 2019", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "768", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "4 x 900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "46,45", + "PkgWatt @ 10%": "127,30", + "PkgWatt @ 50%": "300,91", + "PkgWatt @ 100%": "407,42", + "RAMWatt @ Idle": "153,60", + "RAMWatt @ 10%": "230,40", + "RAMWatt @ 50%": "307,20", + "RAMWatt @ 100%": "460,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "80,0", + "Instance @ Idle": "280,1", + "Instance @ 10%": "437,7", + "Instance @ 50%": "688,1", + "Instance @ 100%": "948,2", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 series processors" + }, + { + "Instance type": "r5d.large", + "Release Date": "July 2018", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "1 x 75 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,14", + "PkgWatt @ 10%": "2,87", + "PkgWatt @ 50%": "6,39", + "PkgWatt @ 100%": "9,28", + "RAMWatt @ Idle": "2,49", + "RAMWatt @ 10%": "4,12", + "RAMWatt @ 50%": "7,37", + "RAMWatt @ 100%": "10,62", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,8", + "Instance @ Idle": "5,4", + "Instance @ 10%": "8,7", + "Instance @ 50%": "15,5", + "Instance @ 100%": "21,7", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "r5d.xlarge", + "Release Date": "July 2018", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "1 x 150 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,28", + "PkgWatt @ 10%": "5,75", + "PkgWatt @ 50%": "12,79", + "PkgWatt @ 100%": "18,56", + "RAMWatt @ Idle": "4,98", + "RAMWatt @ 10%": "8,24", + "RAMWatt @ 50%": "14,74", + "RAMWatt @ 100%": "21,25", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,5", + "Instance @ Idle": "10,8", + "Instance @ 10%": "17,5", + "Instance @ 50%": "31,0", + "Instance @ 100%": "43,3", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "r5d.2xlarge", + "Release Date": "July 2018", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "1 x 300 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,56", + "PkgWatt @ 10%": "11,49", + "PkgWatt @ 50%": "25,58", + "PkgWatt @ 100%": "37,12", + "RAMWatt @ Idle": "9,95", + "RAMWatt @ 10%": "16,47", + "RAMWatt @ 50%": "29,48", + "RAMWatt @ 100%": "42,49", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "7,0", + "Instance @ Idle": "21,5", + "Instance @ 10%": "35,0", + "Instance @ 50%": "62,1", + "Instance @ 100%": "86,6", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "r5d.4xlarge", + "Release Date": "July 2018", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "2 x 300 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "9,12", + "PkgWatt @ 10%": "22,99", + "PkgWatt @ 50%": "51,16", + "PkgWatt @ 100%": "74,23", + "RAMWatt @ Idle": "19,91", + "RAMWatt @ 10%": "32,94", + "RAMWatt @ 50%": "58,96", + "RAMWatt @ 100%": "84,98", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "14,0", + "Instance @ Idle": "43,0", + "Instance @ 10%": "69,9", + "Instance @ 50%": "124,1", + "Instance @ 100%": "173,2", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "r5d.8xlarge", + "Release Date": "June 2019", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "256", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "2 x 600 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "18,24", + "PkgWatt @ 10%": "45,97", + "PkgWatt @ 50%": "102,31", + "PkgWatt @ 100%": "148,46", + "RAMWatt @ Idle": "39,81", + "RAMWatt @ 10%": "65,89", + "RAMWatt @ 50%": "117,93", + "RAMWatt @ 100%": "169,97", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "28,0", + "Instance @ Idle": "86,0", + "Instance @ 10%": "139,9", + "Instance @ 50%": "248,2", + "Instance @ 100%": "346,4", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "r5d.12xlarge", + "Release Date": "July 2018", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "384", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "2 x 900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "27,36", + "PkgWatt @ 10%": "68,96", + "PkgWatt @ 50%": "153,47", + "PkgWatt @ 100%": "222,69", + "RAMWatt @ Idle": "59,72", + "RAMWatt @ 10%": "98,83", + "RAMWatt @ 50%": "176,89", + "RAMWatt @ 100%": "254,95", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "42,0", + "Instance @ Idle": "129,1", + "Instance @ 10%": "209,8", + "Instance @ 50%": "372,4", + "Instance @ 100%": "519,6", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "r5d.16xlarge", + "Release Date": "June 2019", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "512", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "4 x 600 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "36,47", + "PkgWatt @ 10%": "91,95", + "PkgWatt @ 50%": "204,62", + "PkgWatt @ 100%": "296,92", + "RAMWatt @ Idle": "79,62", + "RAMWatt @ 10%": "131,77", + "RAMWatt @ 50%": "235,85", + "RAMWatt @ 100%": "339,93", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "56,0", + "Instance @ Idle": "172,1", + "Instance @ 10%": "279,7", + "Instance @ 50%": "496,5", + "Instance @ 100%": "692,9", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "r5d.24xlarge", + "Release Date": "July 2018", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "768", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "4 x 900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "54,71", + "PkgWatt @ 10%": "137,92", + "PkgWatt @ 50%": "306,93", + "PkgWatt @ 100%": "445,38", + "RAMWatt @ Idle": "119,43", + "RAMWatt @ 10%": "197,66", + "RAMWatt @ 50%": "353,78", + "RAMWatt @ 100%": "509,90", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "84,0", + "Instance @ Idle": "258,1", + "Instance @ 10%": "419,6", + "Instance @ 50%": "744,7", + "Instance @ 100%": "1039,3", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "r5d.metal", + "Release Date": "July 2018", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "768", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "4 x 900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "54,71", + "PkgWatt @ 10%": "137,92", + "PkgWatt @ 50%": "306,93", + "PkgWatt @ 100%": "445,38", + "RAMWatt @ Idle": "119,43", + "RAMWatt @ 10%": "197,66", + "RAMWatt @ 50%": "353,78", + "RAMWatt @ 100%": "509,90", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "84,0", + "Instance @ Idle": "258,1", + "Instance @ 10%": "419,6", + "Instance @ 50%": "744,7", + "Instance @ 100%": "1039,3", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "r5dn.large", + "Release Date": "October 2019", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "1 x 75 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,14", + "PkgWatt @ 10%": "2,87", + "PkgWatt @ 50%": "6,39", + "PkgWatt @ 100%": "9,28", + "RAMWatt @ Idle": "2,49", + "RAMWatt @ 10%": "4,12", + "RAMWatt @ 50%": "7,37", + "RAMWatt @ 100%": "10,62", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,8", + "Instance @ Idle": "5,4", + "Instance @ 10%": "8,7", + "Instance @ 50%": "15,5", + "Instance @ 100%": "21,7", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "r5dn.xlarge", + "Release Date": "October 2019", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "1 x 150 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,28", + "PkgWatt @ 10%": "5,75", + "PkgWatt @ 50%": "12,79", + "PkgWatt @ 100%": "18,56", + "RAMWatt @ Idle": "4,98", + "RAMWatt @ 10%": "8,24", + "RAMWatt @ 50%": "14,74", + "RAMWatt @ 100%": "21,25", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,5", + "Instance @ Idle": "10,8", + "Instance @ 10%": "17,5", + "Instance @ 50%": "31,0", + "Instance @ 100%": "43,3", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "r5dn.2xlarge", + "Release Date": "October 2019", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "1 x 300 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,56", + "PkgWatt @ 10%": "11,49", + "PkgWatt @ 50%": "25,58", + "PkgWatt @ 100%": "37,12", + "RAMWatt @ Idle": "9,95", + "RAMWatt @ 10%": "16,47", + "RAMWatt @ 50%": "29,48", + "RAMWatt @ 100%": "42,49", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "7,0", + "Instance @ Idle": "21,5", + "Instance @ 10%": "35,0", + "Instance @ 50%": "62,1", + "Instance @ 100%": "86,6", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "r5dn.4xlarge", + "Release Date": "October 2019", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "2 x 300 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "9,12", + "PkgWatt @ 10%": "22,99", + "PkgWatt @ 50%": "51,16", + "PkgWatt @ 100%": "74,23", + "RAMWatt @ Idle": "19,91", + "RAMWatt @ 10%": "32,94", + "RAMWatt @ 50%": "58,96", + "RAMWatt @ 100%": "84,98", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "14,0", + "Instance @ Idle": "43,0", + "Instance @ 10%": "69,9", + "Instance @ 50%": "124,1", + "Instance @ 100%": "173,2", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "r5dn.8xlarge", + "Release Date": "October 2019", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "256", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "2 x 600 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "18,24", + "PkgWatt @ 10%": "45,97", + "PkgWatt @ 50%": "102,31", + "PkgWatt @ 100%": "148,46", + "RAMWatt @ Idle": "39,81", + "RAMWatt @ 10%": "65,89", + "RAMWatt @ 50%": "117,93", + "RAMWatt @ 100%": "169,97", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "28,0", + "Instance @ Idle": "86,0", + "Instance @ 10%": "139,9", + "Instance @ 50%": "248,2", + "Instance @ 100%": "346,4", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "r5dn.12xlarge", + "Release Date": "October 2019", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "384", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "2 x 900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "27,36", + "PkgWatt @ 10%": "68,96", + "PkgWatt @ 50%": "153,47", + "PkgWatt @ 100%": "222,69", + "RAMWatt @ Idle": "59,72", + "RAMWatt @ 10%": "98,83", + "RAMWatt @ 50%": "176,89", + "RAMWatt @ 100%": "254,95", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "42,0", + "Instance @ Idle": "129,1", + "Instance @ 10%": "209,8", + "Instance @ 50%": "372,4", + "Instance @ 100%": "519,6", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "r5dn.16xlarge", + "Release Date": "October 2019", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "512", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "4 x 600 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "36,47", + "PkgWatt @ 10%": "91,95", + "PkgWatt @ 50%": "204,62", + "PkgWatt @ 100%": "296,92", + "RAMWatt @ Idle": "79,62", + "RAMWatt @ 10%": "131,77", + "RAMWatt @ 50%": "235,85", + "RAMWatt @ 100%": "339,93", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "56,0", + "Instance @ Idle": "172,1", + "Instance @ 10%": "279,7", + "Instance @ 50%": "496,5", + "Instance @ 100%": "692,9", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "r5dn.24xlarge", + "Release Date": "October 2019", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "768", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "4 x 900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "54,71", + "PkgWatt @ 10%": "137,92", + "PkgWatt @ 50%": "306,93", + "PkgWatt @ 100%": "445,38", + "RAMWatt @ Idle": "119,43", + "RAMWatt @ 10%": "197,66", + "RAMWatt @ 50%": "353,78", + "RAMWatt @ 100%": "509,90", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "84,0", + "Instance @ Idle": "258,1", + "Instance @ 10%": "419,6", + "Instance @ 50%": "744,7", + "Instance @ 100%": "1039,3", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "r5dn.metal", + "Release Date": "February 2021", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "768", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "4 x 900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "4", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "54,71", + "PkgWatt @ 10%": "137,92", + "PkgWatt @ 50%": "306,93", + "PkgWatt @ 100%": "445,38", + "RAMWatt @ Idle": "119,43", + "RAMWatt @ 10%": "197,66", + "RAMWatt @ 50%": "353,78", + "RAMWatt @ 100%": "509,90", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "84,0", + "Instance @ Idle": "258,1", + "Instance @ 10%": "419,6", + "Instance @ 50%": "744,7", + "Instance @ 100%": "1039,3", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "r5n.large", + "Release Date": "October 2019", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,14", + "PkgWatt @ 10%": "2,87", + "PkgWatt @ 50%": "6,39", + "PkgWatt @ 100%": "9,28", + "RAMWatt @ Idle": "2,49", + "RAMWatt @ 10%": "4,12", + "RAMWatt @ 50%": "7,37", + "RAMWatt @ 100%": "10,62", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,8", + "Instance @ Idle": "5,4", + "Instance @ 10%": "8,7", + "Instance @ 50%": "15,5", + "Instance @ 100%": "21,7", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "r5n.xlarge", + "Release Date": "October 2019", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,28", + "PkgWatt @ 10%": "5,75", + "PkgWatt @ 50%": "12,79", + "PkgWatt @ 100%": "18,56", + "RAMWatt @ Idle": "4,98", + "RAMWatt @ 10%": "8,24", + "RAMWatt @ 50%": "14,74", + "RAMWatt @ 100%": "21,25", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,5", + "Instance @ Idle": "10,8", + "Instance @ 10%": "17,5", + "Instance @ 50%": "31,0", + "Instance @ 100%": "43,3", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "r5n.2xlarge", + "Release Date": "October 2019", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,56", + "PkgWatt @ 10%": "11,49", + "PkgWatt @ 50%": "25,58", + "PkgWatt @ 100%": "37,12", + "RAMWatt @ Idle": "9,95", + "RAMWatt @ 10%": "16,47", + "RAMWatt @ 50%": "29,48", + "RAMWatt @ 100%": "42,49", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "7,0", + "Instance @ Idle": "21,5", + "Instance @ 10%": "35,0", + "Instance @ 50%": "62,1", + "Instance @ 100%": "86,6", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "r5n.4xlarge", + "Release Date": "October 2019", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "9,12", + "PkgWatt @ 10%": "22,99", + "PkgWatt @ 50%": "51,16", + "PkgWatt @ 100%": "74,23", + "RAMWatt @ Idle": "19,91", + "RAMWatt @ 10%": "32,94", + "RAMWatt @ 50%": "58,96", + "RAMWatt @ 100%": "84,98", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "14,0", + "Instance @ Idle": "43,0", + "Instance @ 10%": "69,9", + "Instance @ 50%": "124,1", + "Instance @ 100%": "173,2", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "r5n.8xlarge", + "Release Date": "October 2019", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "256", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "18,24", + "PkgWatt @ 10%": "45,97", + "PkgWatt @ 50%": "102,31", + "PkgWatt @ 100%": "148,46", + "RAMWatt @ Idle": "39,81", + "RAMWatt @ 10%": "65,89", + "RAMWatt @ 50%": "117,93", + "RAMWatt @ 100%": "169,97", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "28,0", + "Instance @ Idle": "86,0", + "Instance @ 10%": "139,9", + "Instance @ 50%": "248,2", + "Instance @ 100%": "346,4", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "r5n.12xlarge", + "Release Date": "October 2019", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "384", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "27,36", + "PkgWatt @ 10%": "68,96", + "PkgWatt @ 50%": "153,47", + "PkgWatt @ 100%": "222,69", + "RAMWatt @ Idle": "59,72", + "RAMWatt @ 10%": "98,83", + "RAMWatt @ 50%": "176,89", + "RAMWatt @ 100%": "254,95", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "42,0", + "Instance @ Idle": "129,1", + "Instance @ 10%": "209,8", + "Instance @ 50%": "372,4", + "Instance @ 100%": "519,6", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "r5n.16xlarge", + "Release Date": "October 2019", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "512", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "36,47", + "PkgWatt @ 10%": "91,95", + "PkgWatt @ 50%": "204,62", + "PkgWatt @ 100%": "296,92", + "RAMWatt @ Idle": "79,62", + "RAMWatt @ 10%": "131,77", + "RAMWatt @ 50%": "235,85", + "RAMWatt @ 100%": "339,93", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "56,0", + "Instance @ Idle": "172,1", + "Instance @ 10%": "279,7", + "Instance @ 50%": "496,5", + "Instance @ 100%": "692,9", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "r5n.24xlarge", + "Release Date": "October 2019", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "768", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "54,71", + "PkgWatt @ 10%": "137,92", + "PkgWatt @ 50%": "306,93", + "PkgWatt @ 100%": "445,38", + "RAMWatt @ Idle": "119,43", + "RAMWatt @ 10%": "197,66", + "RAMWatt @ 50%": "353,78", + "RAMWatt @ 100%": "509,90", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "84,0", + "Instance @ Idle": "258,1", + "Instance @ 10%": "419,6", + "Instance @ 50%": "744,7", + "Instance @ 100%": "1039,3", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "r5n.metal", + "Release Date": "February 2021", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "768", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "54,71", + "PkgWatt @ 10%": "137,92", + "PkgWatt @ 50%": "306,93", + "PkgWatt @ 100%": "445,38", + "RAMWatt @ Idle": "119,43", + "RAMWatt @ 10%": "197,66", + "RAMWatt @ 50%": "353,78", + "RAMWatt @ 100%": "509,90", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "84,0", + "Instance @ Idle": "258,1", + "Instance @ 10%": "419,6", + "Instance @ 50%": "744,7", + "Instance @ 100%": "1039,3", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5 GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake)" + }, + { + "Instance type": "r5b.large", + "Release Date": "December 2020", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,14", + "PkgWatt @ 10%": "2,87", + "PkgWatt @ 50%": "6,39", + "PkgWatt @ 100%": "9,28", + "RAMWatt @ Idle": "2,49", + "RAMWatt @ 10%": "4,12", + "RAMWatt @ 50%": "7,37", + "RAMWatt @ 100%": "10,62", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,8", + "Instance @ Idle": "5,4", + "Instance @ 10%": "8,7", + "Instance @ 50%": "15,5", + "Instance @ 100%": "21,7", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "r5b.xlarge", + "Release Date": "December 2020", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,28", + "PkgWatt @ 10%": "5,75", + "PkgWatt @ 50%": "12,79", + "PkgWatt @ 100%": "18,56", + "RAMWatt @ Idle": "4,98", + "RAMWatt @ 10%": "8,24", + "RAMWatt @ 50%": "14,74", + "RAMWatt @ 100%": "21,25", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,5", + "Instance @ Idle": "10,8", + "Instance @ 10%": "17,5", + "Instance @ 50%": "31,0", + "Instance @ 100%": "43,3", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "r5b.2xlarge", + "Release Date": "December 2020", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,56", + "PkgWatt @ 10%": "11,49", + "PkgWatt @ 50%": "25,58", + "PkgWatt @ 100%": "37,12", + "RAMWatt @ Idle": "9,95", + "RAMWatt @ 10%": "16,47", + "RAMWatt @ 50%": "29,48", + "RAMWatt @ 100%": "42,49", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "7,0", + "Instance @ Idle": "21,5", + "Instance @ 10%": "35,0", + "Instance @ 50%": "62,1", + "Instance @ 100%": "86,6", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "r5b.4xlarge", + "Release Date": "December 2020", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "9,12", + "PkgWatt @ 10%": "22,99", + "PkgWatt @ 50%": "51,16", + "PkgWatt @ 100%": "74,23", + "RAMWatt @ Idle": "19,91", + "RAMWatt @ 10%": "32,94", + "RAMWatt @ 50%": "58,96", + "RAMWatt @ 100%": "84,98", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "14,0", + "Instance @ Idle": "43,0", + "Instance @ 10%": "69,9", + "Instance @ 50%": "124,1", + "Instance @ 100%": "173,2", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "r5b.8xlarge", + "Release Date": "December 2020", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "256", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "18,24", + "PkgWatt @ 10%": "45,97", + "PkgWatt @ 50%": "102,31", + "PkgWatt @ 100%": "148,46", + "RAMWatt @ Idle": "39,81", + "RAMWatt @ 10%": "65,89", + "RAMWatt @ 50%": "117,93", + "RAMWatt @ 100%": "169,97", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "28,0", + "Instance @ Idle": "86,0", + "Instance @ 10%": "139,9", + "Instance @ 50%": "248,2", + "Instance @ 100%": "346,4", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "r5b.12xlarge", + "Release Date": "December 2020", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "384", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "27,36", + "PkgWatt @ 10%": "68,96", + "PkgWatt @ 50%": "153,47", + "PkgWatt @ 100%": "222,69", + "RAMWatt @ Idle": "59,72", + "RAMWatt @ 10%": "98,83", + "RAMWatt @ 50%": "176,89", + "RAMWatt @ 100%": "254,95", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "42,0", + "Instance @ Idle": "129,1", + "Instance @ 10%": "209,8", + "Instance @ 50%": "372,4", + "Instance @ 100%": "519,6", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "r5b.16xlarge", + "Release Date": "December 2020", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "512", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "36,47", + "PkgWatt @ 10%": "91,95", + "PkgWatt @ 50%": "204,62", + "PkgWatt @ 100%": "296,92", + "RAMWatt @ Idle": "79,62", + "RAMWatt @ 10%": "131,77", + "RAMWatt @ 50%": "235,85", + "RAMWatt @ 100%": "339,93", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "56,0", + "Instance @ Idle": "172,1", + "Instance @ 10%": "279,7", + "Instance @ 50%": "496,5", + "Instance @ 100%": "692,9", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "r5b.24xlarge", + "Release Date": "December 2020", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "768", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "54,71", + "PkgWatt @ 10%": "137,92", + "PkgWatt @ 50%": "306,93", + "PkgWatt @ 100%": "445,38", + "RAMWatt @ Idle": "119,43", + "RAMWatt @ 10%": "197,66", + "RAMWatt @ 50%": "353,78", + "RAMWatt @ 100%": "509,90", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "84,0", + "Instance @ Idle": "258,1", + "Instance @ 10%": "419,6", + "Instance @ 50%": "744,7", + "Instance @ 100%": "1039,3", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "r5b.metal", + "Release Date": "December 2020", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "768", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "54,71", + "PkgWatt @ 10%": "137,92", + "PkgWatt @ 50%": "306,93", + "PkgWatt @ 100%": "445,38", + "RAMWatt @ Idle": "119,43", + "RAMWatt @ 10%": "197,66", + "RAMWatt @ 50%": "353,78", + "RAMWatt @ 100%": "509,90", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "84,0", + "Instance @ Idle": "258,1", + "Instance @ 10%": "419,6", + "Instance @ 50%": "744,7", + "Instance @ 100%": "1039,3", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "r6g.medium", + "Release Date": "December 2019", + "Instance vCPU": "1", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,27", + "PkgWatt @ 10%": "0,75", + "PkgWatt @ 50%": "1,76", + "PkgWatt @ 100%": "2,39", + "RAMWatt @ Idle": "1,60", + "RAMWatt @ 10%": "2,40", + "RAMWatt @ 50%": "3,20", + "RAMWatt @ 100%": "4,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "0,5", + "Instance @ Idle": "2,3", + "Instance @ 10%": "3,6", + "Instance @ 50%": "5,4", + "Instance @ 100%": "7,7", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "r6g.large", + "Release Date": "December 2019", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,54", + "PkgWatt @ 10%": "1,49", + "PkgWatt @ 50%": "3,53", + "PkgWatt @ 100%": "4,77", + "RAMWatt @ Idle": "3,20", + "RAMWatt @ 10%": "4,80", + "RAMWatt @ 50%": "6,40", + "RAMWatt @ 100%": "9,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "0,9", + "Instance @ Idle": "4,7", + "Instance @ 10%": "7,2", + "Instance @ 50%": "10,9", + "Instance @ 100%": "15,3", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "r6g.xlarge", + "Release Date": "December 2019", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,09", + "PkgWatt @ 10%": "2,98", + "PkgWatt @ 50%": "7,05", + "PkgWatt @ 100%": "9,55", + "RAMWatt @ Idle": "6,40", + "RAMWatt @ 10%": "9,60", + "RAMWatt @ 50%": "12,80", + "RAMWatt @ 100%": "19,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,9", + "Instance @ Idle": "9,4", + "Instance @ 10%": "14,5", + "Instance @ 50%": "21,7", + "Instance @ 100%": "30,6", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "r6g.2xlarge", + "Release Date": "December 2019", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,18", + "PkgWatt @ 10%": "5,97", + "PkgWatt @ 50%": "14,10", + "PkgWatt @ 100%": "19,10", + "RAMWatt @ Idle": "12,80", + "RAMWatt @ 10%": "19,20", + "RAMWatt @ 50%": "25,60", + "RAMWatt @ 100%": "38,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,8", + "Instance @ Idle": "18,7", + "Instance @ 10%": "28,9", + "Instance @ 50%": "43,5", + "Instance @ 100%": "61,2", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "r6g.4xlarge", + "Release Date": "December 2019", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,35", + "PkgWatt @ 10%": "11,93", + "PkgWatt @ 50%": "28,21", + "PkgWatt @ 100%": "38,20", + "RAMWatt @ Idle": "25,60", + "RAMWatt @ 10%": "38,40", + "RAMWatt @ 50%": "51,20", + "RAMWatt @ 100%": "76,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "7,5", + "Instance @ Idle": "37,5", + "Instance @ 10%": "57,8", + "Instance @ 50%": "86,9", + "Instance @ 100%": "122,5", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "r6g.8xlarge", + "Release Date": "December 2019", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "256", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "8,71", + "PkgWatt @ 10%": "23,87", + "PkgWatt @ 50%": "56,42", + "PkgWatt @ 100%": "76,39", + "RAMWatt @ Idle": "51,20", + "RAMWatt @ 10%": "76,80", + "RAMWatt @ 50%": "102,40", + "RAMWatt @ 100%": "153,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "15,0", + "Instance @ Idle": "74,9", + "Instance @ 10%": "115,7", + "Instance @ 50%": "173,8", + "Instance @ 100%": "245,0", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "r6g.12xlarge", + "Release Date": "December 2019", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "384", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "13,06", + "PkgWatt @ 10%": "35,80", + "PkgWatt @ 50%": "84,63", + "PkgWatt @ 100%": "114,59", + "RAMWatt @ Idle": "76,80", + "RAMWatt @ 10%": "115,20", + "RAMWatt @ 50%": "153,60", + "RAMWatt @ 100%": "230,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "22,5", + "Instance @ Idle": "112,4", + "Instance @ 10%": "173,5", + "Instance @ 50%": "260,7", + "Instance @ 100%": "367,5", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "r6g.16xlarge", + "Release Date": "December 2019", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "512", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "17,42", + "PkgWatt @ 10%": "47,74", + "PkgWatt @ 50%": "112,84", + "PkgWatt @ 100%": "152,78", + "RAMWatt @ Idle": "102,40", + "RAMWatt @ 10%": "153,60", + "RAMWatt @ 50%": "204,80", + "RAMWatt @ 100%": "307,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "30,0", + "Instance @ Idle": "149,8", + "Instance @ 10%": "231,3", + "Instance @ 50%": "347,6", + "Instance @ 100%": "490,0", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "r6g.metal", + "Release Date": "December 2019", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "512", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "17,42", + "PkgWatt @ 10%": "47,74", + "PkgWatt @ 50%": "112,84", + "PkgWatt @ 100%": "152,78", + "RAMWatt @ Idle": "102,40", + "RAMWatt @ 10%": "153,60", + "RAMWatt @ 50%": "204,80", + "RAMWatt @ 100%": "307,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "30,0", + "Instance @ Idle": "149,8", + "Instance @ 10%": "231,3", + "Instance @ 50%": "347,6", + "Instance @ 100%": "490,0", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "r6gd.medium", + "Release Date": "December 2019", + "Instance vCPU": "1", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "1 x 59 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,27", + "PkgWatt @ 10%": "0,75", + "PkgWatt @ 50%": "1,76", + "PkgWatt @ 100%": "2,39", + "RAMWatt @ Idle": "1,60", + "RAMWatt @ 10%": "2,40", + "RAMWatt @ 50%": "3,20", + "RAMWatt @ 100%": "4,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "0,5", + "Instance @ Idle": "2,3", + "Instance @ 10%": "3,6", + "Instance @ 50%": "5,4", + "Instance @ 100%": "7,7", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "r6gd.large", + "Release Date": "December 2019", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "1 x 118 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,54", + "PkgWatt @ 10%": "1,49", + "PkgWatt @ 50%": "3,53", + "PkgWatt @ 100%": "4,77", + "RAMWatt @ Idle": "3,20", + "RAMWatt @ 10%": "4,80", + "RAMWatt @ 50%": "6,40", + "RAMWatt @ 100%": "9,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "0,9", + "Instance @ Idle": "4,7", + "Instance @ 10%": "7,2", + "Instance @ 50%": "10,9", + "Instance @ 100%": "15,3", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "r6gd.xlarge", + "Release Date": "December 2019", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "1 x 237 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,09", + "PkgWatt @ 10%": "2,98", + "PkgWatt @ 50%": "7,05", + "PkgWatt @ 100%": "9,55", + "RAMWatt @ Idle": "6,40", + "RAMWatt @ 10%": "9,60", + "RAMWatt @ 50%": "12,80", + "RAMWatt @ 100%": "19,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,9", + "Instance @ Idle": "9,4", + "Instance @ 10%": "14,5", + "Instance @ 50%": "21,7", + "Instance @ 100%": "30,6", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "r6gd.2xlarge", + "Release Date": "December 2019", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "1 x 474 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,18", + "PkgWatt @ 10%": "5,97", + "PkgWatt @ 50%": "14,10", + "PkgWatt @ 100%": "19,10", + "RAMWatt @ Idle": "12,80", + "RAMWatt @ 10%": "19,20", + "RAMWatt @ 50%": "25,60", + "RAMWatt @ 100%": "38,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,8", + "Instance @ Idle": "18,7", + "Instance @ 10%": "28,9", + "Instance @ 50%": "43,5", + "Instance @ 100%": "61,2", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "r6gd.4xlarge", + "Release Date": "December 2019", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "1 x 950 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,35", + "PkgWatt @ 10%": "11,93", + "PkgWatt @ 50%": "28,21", + "PkgWatt @ 100%": "38,20", + "RAMWatt @ Idle": "25,60", + "RAMWatt @ 10%": "38,40", + "RAMWatt @ 50%": "51,20", + "RAMWatt @ 100%": "76,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "7,5", + "Instance @ Idle": "37,5", + "Instance @ 10%": "57,8", + "Instance @ 50%": "86,9", + "Instance @ 100%": "122,5", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "r6gd.8xlarge", + "Release Date": "December 2019", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "256", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "1 x 1900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "8,71", + "PkgWatt @ 10%": "23,87", + "PkgWatt @ 50%": "56,42", + "PkgWatt @ 100%": "76,39", + "RAMWatt @ Idle": "51,20", + "RAMWatt @ 10%": "76,80", + "RAMWatt @ 50%": "102,40", + "RAMWatt @ 100%": "153,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "15,0", + "Instance @ Idle": "74,9", + "Instance @ 10%": "115,7", + "Instance @ 50%": "173,8", + "Instance @ 100%": "245,0", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "r6gd.12xlarge", + "Release Date": "December 2019", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "384", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "2 x 1425 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "13,06", + "PkgWatt @ 10%": "35,80", + "PkgWatt @ 50%": "84,63", + "PkgWatt @ 100%": "114,59", + "RAMWatt @ Idle": "76,80", + "RAMWatt @ 10%": "115,20", + "RAMWatt @ 50%": "153,60", + "RAMWatt @ 100%": "230,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "22,5", + "Instance @ Idle": "112,4", + "Instance @ 10%": "173,5", + "Instance @ 50%": "260,7", + "Instance @ 100%": "367,5", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "r6gd.16xlarge", + "Release Date": "December 2019", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "512", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "2 x 1900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "17,42", + "PkgWatt @ 10%": "47,74", + "PkgWatt @ 50%": "112,84", + "PkgWatt @ 100%": "152,78", + "RAMWatt @ Idle": "102,40", + "RAMWatt @ 10%": "153,60", + "RAMWatt @ 50%": "204,80", + "RAMWatt @ 100%": "307,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "30,0", + "Instance @ Idle": "149,8", + "Instance @ 10%": "231,3", + "Instance @ 50%": "347,6", + "Instance @ 100%": "490,0", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "r6gd.metal", + "Release Date": "December 2019", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "512", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "2 x 1900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "17,42", + "PkgWatt @ 10%": "47,74", + "PkgWatt @ 50%": "112,84", + "PkgWatt @ 100%": "152,78", + "RAMWatt @ Idle": "102,40", + "RAMWatt @ 10%": "153,60", + "RAMWatt @ 50%": "204,80", + "RAMWatt @ 100%": "307,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "30,0", + "Instance @ Idle": "149,8", + "Instance @ 10%": "231,3", + "Instance @ 50%": "347,6", + "Instance @ 100%": "490,0", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "t1.micro", + "Release Date": "September 2010", + "Instance vCPU": "1", + "Platform Total Number of vCPU": "32", + "Platform CPU Name": "Xeon E5-2670", + "Instance Memory (in GB)": "613", + "Platform Memory (in GB)": "144", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,87", + "PkgWatt @ 10%": "2,47", + "PkgWatt @ 50%": "5,09", + "PkgWatt @ 100%": "6,97", + "RAMWatt @ Idle": "0,12", + "RAMWatt @ 10%": "0,18", + "RAMWatt @ 50%": "0,25", + "RAMWatt @ 100%": "0,37", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,4", + "Instance @ Idle": "2,4", + "Instance @ 10%": "4,1", + "Instance @ 50%": "6,8", + "Instance @ 100%": "8,8", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "t2.nano", + "Release Date": "December 2015", + "Instance vCPU": "1", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon E5-2676 v3", + "Instance Memory (in GB)": "0.5", + "Platform Memory (in GB)": "288", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,60", + "PkgWatt @ 10%": "1,72", + "PkgWatt @ 50%": "3,54", + "PkgWatt @ 100%": "4,85", + "RAMWatt @ Idle": "0,10", + "RAMWatt @ 10%": "0,15", + "RAMWatt @ 50%": "0,20", + "RAMWatt @ 100%": "0,30", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,0", + "Instance @ Idle": "1,7", + "Instance @ 10%": "2,9", + "Instance @ 50%": "4,7", + "Instance @ 100%": "6,1", + "Hardware Information on AWS Documentation & Comments": "3.3 GHz Intel Scalable Processor" + }, + { + "Instance type": "t2.micro", + "Release Date": "July 2014", + "Instance vCPU": "1", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon E5-2676 v3", + "Instance Memory (in GB)": "1", + "Platform Memory (in GB)": "288", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,60", + "PkgWatt @ 10%": "1,72", + "PkgWatt @ 50%": "3,54", + "PkgWatt @ 100%": "4,85", + "RAMWatt @ Idle": "0,20", + "RAMWatt @ 10%": "0,30", + "RAMWatt @ 50%": "0,40", + "RAMWatt @ 100%": "0,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,0", + "Instance @ Idle": "1,8", + "Instance @ 10%": "3,0", + "Instance @ 50%": "4,9", + "Instance @ 100%": "6,4", + "Hardware Information on AWS Documentation & Comments": "3.3 GHz Intel Scalable Processor" + }, + { + "Instance type": "t2.small", + "Release Date": "July 2014", + "Instance vCPU": "1", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon E5-2676 v3", + "Instance Memory (in GB)": "2", + "Platform Memory (in GB)": "288", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,60", + "PkgWatt @ 10%": "1,72", + "PkgWatt @ 50%": "3,54", + "PkgWatt @ 100%": "4,85", + "RAMWatt @ Idle": "0,40", + "RAMWatt @ 10%": "0,60", + "RAMWatt @ 50%": "0,80", + "RAMWatt @ 100%": "1,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,0", + "Instance @ Idle": "2,0", + "Instance @ 10%": "3,3", + "Instance @ 50%": "5,3", + "Instance @ 100%": "7,0", + "Hardware Information on AWS Documentation & Comments": "3.3 GHz Intel Scalable Processor" + }, + { + "Instance type": "t2.medium", + "Release Date": "July 2014", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon E5-2676 v3", + "Instance Memory (in GB)": "4", + "Platform Memory (in GB)": "288", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,21", + "PkgWatt @ 10%": "3,44", + "PkgWatt @ 50%": "7,08", + "PkgWatt @ 100%": "9,69", + "RAMWatt @ Idle": "0,80", + "RAMWatt @ 10%": "1,20", + "RAMWatt @ 50%": "1,60", + "RAMWatt @ 100%": "2,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,0", + "Instance @ Idle": "4,0", + "Instance @ 10%": "6,6", + "Instance @ 50%": "10,7", + "Instance @ 100%": "14,1", + "Hardware Information on AWS Documentation & Comments": "3.3 GHz Intel Scalable Processor" + }, + { + "Instance type": "t2.large", + "Release Date": "June 2015", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "288", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,97", + "PkgWatt @ 10%": "2,77", + "PkgWatt @ 50%": "5,71", + "PkgWatt @ 100%": "7,81", + "RAMWatt @ Idle": "1,60", + "RAMWatt @ 10%": "2,40", + "RAMWatt @ 50%": "3,20", + "RAMWatt @ 100%": "4,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,6", + "Instance @ Idle": "4,2", + "Instance @ 10%": "6,8", + "Instance @ 50%": "10,5", + "Instance @ 100%": "14,2", + "Hardware Information on AWS Documentation & Comments": "3.0 GHz Intel Scalable Processor" + }, + { + "Instance type": "t2.xlarge", + "Release Date": "November 2016", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "288", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,94", + "PkgWatt @ 10%": "5,55", + "PkgWatt @ 50%": "11,41", + "PkgWatt @ 100%": "15,62", + "RAMWatt @ Idle": "3,20", + "RAMWatt @ 10%": "4,80", + "RAMWatt @ 50%": "6,40", + "RAMWatt @ 100%": "9,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,2", + "Instance @ Idle": "8,4", + "Instance @ 10%": "13,6", + "Instance @ 50%": "21,0", + "Instance @ 100%": "28,4", + "Hardware Information on AWS Documentation & Comments": "3.0 GHz Intel Scalable Processor" + }, + { + "Instance type": "t2.2xlarge", + "Release Date": "November 2016", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "288", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "3,89", + "PkgWatt @ 10%": "11,10", + "PkgWatt @ 50%": "22,82", + "PkgWatt @ 100%": "31,24", + "RAMWatt @ Idle": "6,40", + "RAMWatt @ 10%": "9,60", + "RAMWatt @ 50%": "12,80", + "RAMWatt @ 100%": "19,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "6,4", + "Instance @ Idle": "16,7", + "Instance @ 10%": "27,1", + "Instance @ 50%": "42,1", + "Instance @ 100%": "56,9", + "Hardware Information on AWS Documentation & Comments": "3.0 GHz Intel Scalable Processor" + }, + { + "Instance type": "t3.nano", + "Release Date": "August 2018", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "0.5", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,21", + "PkgWatt @ 10%": "3,05", + "PkgWatt @ 50%": "7,16", + "PkgWatt @ 100%": "9,96", + "RAMWatt @ Idle": "0,08", + "RAMWatt @ 10%": "0,12", + "RAMWatt @ 50%": "0,31", + "RAMWatt @ 100%": "0,50", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,0", + "Instance @ Idle": "3,3", + "Instance @ 10%": "5,2", + "Instance @ 50%": "9,5", + "Instance @ 100%": "12,5", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor" + }, + { + "Instance type": "t3.micro", + "Release Date": "August 2018", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "1", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,21", + "PkgWatt @ 10%": "3,05", + "PkgWatt @ 50%": "7,16", + "PkgWatt @ 100%": "9,96", + "RAMWatt @ Idle": "0,15", + "RAMWatt @ 10%": "0,24", + "RAMWatt @ 50%": "0,62", + "RAMWatt @ 100%": "1,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,0", + "Instance @ Idle": "3,4", + "Instance @ 10%": "5,3", + "Instance @ 50%": "9,8", + "Instance @ 100%": "13,0", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor" + }, + { + "Instance type": "t3.small", + "Release Date": "August 2018", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "2", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,21", + "PkgWatt @ 10%": "3,05", + "PkgWatt @ 50%": "7,16", + "PkgWatt @ 100%": "9,96", + "RAMWatt @ Idle": "0,30", + "RAMWatt @ 10%": "0,48", + "RAMWatt @ 50%": "1,24", + "RAMWatt @ 100%": "2,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,0", + "Instance @ Idle": "3,5", + "Instance @ 10%": "5,5", + "Instance @ 50%": "10,4", + "Instance @ 100%": "14,0", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor" + }, + { + "Instance type": "t3.medium", + "Release Date": "August 2018", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "4", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,21", + "PkgWatt @ 10%": "3,05", + "PkgWatt @ 50%": "7,16", + "PkgWatt @ 100%": "9,96", + "RAMWatt @ Idle": "0,60", + "RAMWatt @ 10%": "0,96", + "RAMWatt @ 50%": "2,48", + "RAMWatt @ 100%": "4,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,0", + "Instance @ Idle": "3,8", + "Instance @ 10%": "6,0", + "Instance @ 50%": "11,6", + "Instance @ 100%": "16,0", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor" + }, + { + "Instance type": "t3.large", + "Release Date": "August 2018", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,21", + "PkgWatt @ 10%": "3,05", + "PkgWatt @ 50%": "7,16", + "PkgWatt @ 100%": "9,96", + "RAMWatt @ Idle": "1,20", + "RAMWatt @ 10%": "1,92", + "RAMWatt @ 50%": "4,96", + "RAMWatt @ 100%": "8,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,0", + "Instance @ Idle": "4,4", + "Instance @ 10%": "7,0", + "Instance @ 50%": "14,1", + "Instance @ 100%": "20,0", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor" + }, + { + "Instance type": "t3.xlarge", + "Release Date": "August 2018", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,41", + "PkgWatt @ 10%": "6,11", + "PkgWatt @ 50%": "14,32", + "PkgWatt @ 100%": "19,92", + "RAMWatt @ Idle": "2,41", + "RAMWatt @ 10%": "3,85", + "RAMWatt @ 50%": "9,92", + "RAMWatt @ 100%": "15,99", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "4,0", + "Instance @ Idle": "8,8", + "Instance @ 10%": "14,0", + "Instance @ 50%": "28,2", + "Instance @ 100%": "39,9", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor" + }, + { + "Instance type": "t3.2xlarge", + "Release Date": "August 2018", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,82", + "PkgWatt @ 10%": "12,22", + "PkgWatt @ 50%": "28,64", + "PkgWatt @ 100%": "39,83", + "RAMWatt @ Idle": "4,82", + "RAMWatt @ 10%": "7,70", + "RAMWatt @ 50%": "19,84", + "RAMWatt @ 100%": "31,98", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "8,0", + "Instance @ Idle": "17,6", + "Instance @ 10%": "27,9", + "Instance @ 50%": "56,5", + "Instance @ 100%": "79,8", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor" + }, + { + "Instance type": "t3a.nano", + "Release Date": "April 2019", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "0.5", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,97", + "PkgWatt @ 10%": "2,65", + "PkgWatt @ 50%": "6,27", + "PkgWatt @ 100%": "8,49", + "RAMWatt @ Idle": "0,10", + "RAMWatt @ 10%": "0,15", + "RAMWatt @ 50%": "0,20", + "RAMWatt @ 100%": "0,30", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,7", + "Instance @ Idle": "2,7", + "Instance @ 10%": "4,5", + "Instance @ 50%": "8,1", + "Instance @ 100%": "10,5", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor" + }, + { + "Instance type": "t3a.micro", + "Release Date": "April 2019", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "1", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,97", + "PkgWatt @ 10%": "2,65", + "PkgWatt @ 50%": "6,27", + "PkgWatt @ 100%": "8,49", + "RAMWatt @ Idle": "0,20", + "RAMWatt @ 10%": "0,30", + "RAMWatt @ 50%": "0,40", + "RAMWatt @ 100%": "0,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,7", + "Instance @ Idle": "2,8", + "Instance @ 10%": "4,6", + "Instance @ 50%": "8,3", + "Instance @ 100%": "10,8", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor" + }, + { + "Instance type": "t3a.small", + "Release Date": "April 2019", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "2", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,97", + "PkgWatt @ 10%": "2,65", + "PkgWatt @ 50%": "6,27", + "PkgWatt @ 100%": "8,49", + "RAMWatt @ Idle": "0,40", + "RAMWatt @ 10%": "0,60", + "RAMWatt @ 50%": "0,80", + "RAMWatt @ 100%": "1,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,7", + "Instance @ Idle": "3,0", + "Instance @ 10%": "4,9", + "Instance @ 50%": "8,7", + "Instance @ 100%": "11,4", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor" + }, + { + "Instance type": "t3a.medium", + "Release Date": "April 2019", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "4", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,97", + "PkgWatt @ 10%": "2,65", + "PkgWatt @ 50%": "6,27", + "PkgWatt @ 100%": "8,49", + "RAMWatt @ Idle": "0,80", + "RAMWatt @ 10%": "1,20", + "RAMWatt @ 50%": "1,60", + "RAMWatt @ 100%": "2,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,7", + "Instance @ Idle": "3,4", + "Instance @ 10%": "5,5", + "Instance @ 50%": "9,5", + "Instance @ 100%": "12,6", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor" + }, + { + "Instance type": "t3a.large", + "Release Date": "April 2019", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,97", + "PkgWatt @ 10%": "2,65", + "PkgWatt @ 50%": "6,27", + "PkgWatt @ 100%": "8,49", + "RAMWatt @ Idle": "1,60", + "RAMWatt @ 10%": "2,40", + "RAMWatt @ 50%": "3,20", + "RAMWatt @ 100%": "4,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,7", + "Instance @ Idle": "4,2", + "Instance @ 10%": "6,7", + "Instance @ 50%": "11,1", + "Instance @ 100%": "15,0", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor" + }, + { + "Instance type": "t3a.xlarge", + "Release Date": "April 2019", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,94", + "PkgWatt @ 10%": "5,30", + "PkgWatt @ 50%": "12,54", + "PkgWatt @ 100%": "16,98", + "RAMWatt @ Idle": "3,20", + "RAMWatt @ 10%": "4,80", + "RAMWatt @ 50%": "6,40", + "RAMWatt @ 100%": "9,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,3", + "Instance @ Idle": "8,5", + "Instance @ 10%": "13,4", + "Instance @ 50%": "22,3", + "Instance @ 100%": "29,9", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor" + }, + { + "Instance type": "t3a.2xlarge", + "Release Date": "April 2019", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "EPYC 7571", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "3,87", + "PkgWatt @ 10%": "10,61", + "PkgWatt @ 50%": "25,08", + "PkgWatt @ 100%": "33,95", + "RAMWatt @ Idle": "6,40", + "RAMWatt @ 10%": "9,60", + "RAMWatt @ 50%": "12,80", + "RAMWatt @ 100%": "19,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "6,7", + "Instance @ Idle": "16,9", + "Instance @ 10%": "26,9", + "Instance @ 50%": "44,5", + "Instance @ 100%": "59,8", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz AMD EPYC 7000 Series Processor" + }, + { + "Instance type": "t4g.nano", + "Release Date": "September 2020", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "0.5", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,54", + "PkgWatt @ 10%": "1,49", + "PkgWatt @ 50%": "3,53", + "PkgWatt @ 100%": "4,77", + "RAMWatt @ Idle": "0,10", + "RAMWatt @ 10%": "0,15", + "RAMWatt @ 50%": "0,20", + "RAMWatt @ 100%": "0,30", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "0,9", + "Instance @ Idle": "1,6", + "Instance @ 10%": "2,6", + "Instance @ 50%": "4,7", + "Instance @ 100%": "6,0", + "Hardware Information on AWS Documentation & Comments": "Baseline Performance / vCPU 5%" + }, + { + "Instance type": "t4g.micro", + "Release Date": "September 2020", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "1", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,54", + "PkgWatt @ 10%": "1,49", + "PkgWatt @ 50%": "3,53", + "PkgWatt @ 100%": "4,77", + "RAMWatt @ Idle": "0,20", + "RAMWatt @ 10%": "0,30", + "RAMWatt @ 50%": "0,40", + "RAMWatt @ 100%": "0,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "0,9", + "Instance @ Idle": "1,7", + "Instance @ 10%": "2,7", + "Instance @ 50%": "4,9", + "Instance @ 100%": "6,3", + "Hardware Information on AWS Documentation & Comments": "Baseline Performance / vCPU 10%" + }, + { + "Instance type": "t4g.small", + "Release Date": "September 2020", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "2", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,54", + "PkgWatt @ 10%": "1,49", + "PkgWatt @ 50%": "3,53", + "PkgWatt @ 100%": "4,77", + "RAMWatt @ Idle": "0,40", + "RAMWatt @ 10%": "0,60", + "RAMWatt @ 50%": "0,80", + "RAMWatt @ 100%": "1,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "0,9", + "Instance @ Idle": "1,9", + "Instance @ 10%": "3,0", + "Instance @ 50%": "5,3", + "Instance @ 100%": "6,9", + "Hardware Information on AWS Documentation & Comments": "Baseline Performance / vCPU 20%" + }, + { + "Instance type": "t4g.medium", + "Release Date": "September 2020", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "4", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,54", + "PkgWatt @ 10%": "1,49", + "PkgWatt @ 50%": "3,53", + "PkgWatt @ 100%": "4,77", + "RAMWatt @ Idle": "0,80", + "RAMWatt @ 10%": "1,20", + "RAMWatt @ 50%": "1,60", + "RAMWatt @ 100%": "2,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "0,9", + "Instance @ Idle": "2,3", + "Instance @ 10%": "3,6", + "Instance @ 50%": "6,1", + "Instance @ 100%": "8,1", + "Hardware Information on AWS Documentation & Comments": "Baseline Performance / vCPU 20%" + }, + { + "Instance type": "t4g.large", + "Release Date": "September 2020", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,54", + "PkgWatt @ 10%": "1,49", + "PkgWatt @ 50%": "3,53", + "PkgWatt @ 100%": "4,77", + "RAMWatt @ Idle": "1,60", + "RAMWatt @ 10%": "2,40", + "RAMWatt @ 50%": "3,20", + "RAMWatt @ 100%": "4,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "0,9", + "Instance @ Idle": "3,1", + "Instance @ 10%": "4,8", + "Instance @ 50%": "7,7", + "Instance @ 100%": "10,5", + "Hardware Information on AWS Documentation & Comments": "Baseline Performance / vCPU 30%" + }, + { + "Instance type": "t4g.xlarge", + "Release Date": "September 2020", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,09", + "PkgWatt @ 10%": "2,98", + "PkgWatt @ 50%": "7,05", + "PkgWatt @ 100%": "9,55", + "RAMWatt @ Idle": "3,20", + "RAMWatt @ 10%": "4,80", + "RAMWatt @ 50%": "6,40", + "RAMWatt @ 100%": "9,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,9", + "Instance @ Idle": "6,2", + "Instance @ 10%": "9,7", + "Instance @ 50%": "15,3", + "Instance @ 100%": "21,0", + "Hardware Information on AWS Documentation & Comments": "Baseline Performance / vCPU 40%" + }, + { + "Instance type": "t4g.2xlarge", + "Release Date": "September 2020", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,18", + "PkgWatt @ 10%": "5,97", + "PkgWatt @ 50%": "14,10", + "PkgWatt @ 100%": "19,10", + "RAMWatt @ Idle": "6,40", + "RAMWatt @ 10%": "9,60", + "RAMWatt @ 50%": "12,80", + "RAMWatt @ 100%": "19,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,8", + "Instance @ Idle": "12,3", + "Instance @ 10%": "19,3", + "Instance @ 50%": "30,7", + "Instance @ 100%": "42,0", + "Hardware Information on AWS Documentation & Comments": "Baseline Performance / vCPU 40%" + }, + { + "Instance type": "u-6tb1.metal", + "Release Date": "September 2018", + "Instance vCPU": "448", + "Platform Total Number of vCPU": "448", + "Platform CPU Name": "Xeon Platinum 8176M", + "Instance Memory (in GB)": "6144", + "Platform Memory (in GB)": "24576", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "159,17", + "PkgWatt @ 10%": "403,23", + "PkgWatt @ 50%": "945,18", + "PkgWatt @ 100%": "1314,43", + "RAMWatt @ Idle": "1228,80", + "RAMWatt @ 10%": "1843,20", + "RAMWatt @ 50%": "2457,60", + "RAMWatt @ 100%": "3686,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "264,0", + "Instance @ Idle": "1652,0", + "Instance @ 10%": "2510,4", + "Instance @ 50%": "3666,8", + "Instance @ 100%": "5264,8", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon Platinum 8176M (Skylake) processors" + }, + { + "Instance type": "u-9tb1.metal", + "Release Date": "September 2018", + "Instance vCPU": "448", + "Platform Total Number of vCPU": "448", + "Platform CPU Name": "Xeon Platinum 8176M", + "Instance Memory (in GB)": "9216", + "Platform Memory (in GB)": "24576", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "159,17", + "PkgWatt @ 10%": "403,23", + "PkgWatt @ 50%": "945,18", + "PkgWatt @ 100%": "1314,43", + "RAMWatt @ Idle": "1843,20", + "RAMWatt @ 10%": "2764,80", + "RAMWatt @ 50%": "3686,40", + "RAMWatt @ 100%": "5529,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "264,0", + "Instance @ Idle": "2266,4", + "Instance @ 10%": "3432,0", + "Instance @ 50%": "4895,6", + "Instance @ 100%": "7108,0", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon Platinum 8176M (Skylake) processors" + }, + { + "Instance type": "u-12tb1.metal", + "Release Date": "September 2018", + "Instance vCPU": "448", + "Platform Total Number of vCPU": "448", + "Platform CPU Name": "Xeon Platinum 8176M", + "Instance Memory (in GB)": "12288", + "Platform Memory (in GB)": "24576", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "159,17", + "PkgWatt @ 10%": "403,23", + "PkgWatt @ 50%": "945,18", + "PkgWatt @ 100%": "1314,43", + "RAMWatt @ Idle": "2457,60", + "RAMWatt @ 10%": "3686,40", + "RAMWatt @ 50%": "4915,20", + "RAMWatt @ 100%": "7372,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "264,0", + "Instance @ Idle": "2880,8", + "Instance @ 10%": "4353,6", + "Instance @ 50%": "6124,4", + "Instance @ 100%": "8951,2", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon Platinum 8176M (Skylake) processors" + }, + { + "Instance type": "u-18tb1.metal", + "Release Date": "May 2019", + "Instance vCPU": "448", + "Platform Total Number of vCPU": "448", + "Platform CPU Name": "Xeon Platinum 8176M", + "Instance Memory (in GB)": "18432", + "Platform Memory (in GB)": "24576", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "159,17", + "PkgWatt @ 10%": "403,23", + "PkgWatt @ 50%": "945,18", + "PkgWatt @ 100%": "1314,43", + "RAMWatt @ Idle": "3686,40", + "RAMWatt @ 10%": "5529,60", + "RAMWatt @ 50%": "7372,80", + "RAMWatt @ 100%": "11059,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "264,0", + "Instance @ Idle": "4109,6", + "Instance @ 10%": "6196,8", + "Instance @ 50%": "8582,0", + "Instance @ 100%": "12637,6", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon Platinum 8176M (Skylake) processors" + }, + { + "Instance type": "u-24tb1.metal", + "Release Date": "May 2019", + "Instance vCPU": "448", + "Platform Total Number of vCPU": "448", + "Platform CPU Name": "Xeon Platinum 8176M", + "Instance Memory (in GB)": "24576", + "Platform Memory (in GB)": "24576", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "159,17", + "PkgWatt @ 10%": "403,23", + "PkgWatt @ 50%": "945,18", + "PkgWatt @ 100%": "1314,43", + "RAMWatt @ Idle": "4915,20", + "RAMWatt @ 10%": "7372,80", + "RAMWatt @ 50%": "9830,40", + "RAMWatt @ 100%": "14745,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "264,0", + "Instance @ Idle": "5338,4", + "Instance @ 10%": "8040,0", + "Instance @ 50%": "11039,6", + "Instance @ 100%": "16324,0", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon Platinum 8176M (Skylake) processors" + }, + { + "Instance type": "x1.16xlarge", + "Release Date": "October 2016", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "128", + "Platform CPU Name": "Xeon E7-8880 v3", + "Instance Memory (in GB)": "976", + "Platform Memory (in GB)": "1952", + "Storage Info (Type and Size in GB)": "1 x 1.920 SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "36,19", + "PkgWatt @ 10%": "103,30", + "PkgWatt @ 50%": "212,47", + "PkgWatt @ 100%": "290,83", + "RAMWatt @ Idle": "195,20", + "RAMWatt @ 10%": "292,80", + "RAMWatt @ 50%": "390,40", + "RAMWatt @ 100%": "585,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "60,0", + "Instance @ Idle": "291,4", + "Instance @ 10%": "456,1", + "Instance @ 50%": "662,9", + "Instance @ 100%": "936,4", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E7-8880 v3 Processor (Haswell)" + }, + { + "Instance type": "x1.32xlarge", + "Release Date": "May 2016", + "Instance vCPU": "128", + "Platform Total Number of vCPU": "128", + "Platform CPU Name": "Xeon E7-8880 v3", + "Instance Memory (in GB)": "1952", + "Platform Memory (in GB)": "1952", + "Storage Info (Type and Size in GB)": "2 x 1.920 SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "72,37", + "PkgWatt @ 10%": "206,61", + "PkgWatt @ 50%": "424,94", + "PkgWatt @ 100%": "581,65", + "RAMWatt @ Idle": "390,40", + "RAMWatt @ 10%": "585,60", + "RAMWatt @ 50%": "780,80", + "RAMWatt @ 100%": "1171,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "120,0", + "Instance @ Idle": "582,8", + "Instance @ 10%": "912,2", + "Instance @ 50%": "1325,7", + "Instance @ 100%": "1872,9", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E7-8880 v3 Processor (Haswell)" + }, + { + "Instance type": "x1e.xlarge", + "Release Date": "November 2017", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "128", + "Platform CPU Name": "Xeon E7-8880 v3", + "Instance Memory (in GB)": "122", + "Platform Memory (in GB)": "3904", + "Storage Info (Type and Size in GB)": "1 x 120 SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,26", + "PkgWatt @ 10%": "6,46", + "PkgWatt @ 50%": "13,28", + "PkgWatt @ 100%": "18,18", + "RAMWatt @ Idle": "24,40", + "RAMWatt @ 10%": "36,60", + "RAMWatt @ 50%": "48,80", + "RAMWatt @ 100%": "73,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,8", + "Instance @ Idle": "30,4", + "Instance @ 10%": "46,8", + "Instance @ 50%": "65,8", + "Instance @ 100%": "95,1", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E7-8880 v3 Processor (Haswell)" + }, + { + "Instance type": "x1e.2xlarge", + "Release Date": "November 2017", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "128", + "Platform CPU Name": "Xeon E7-8880 v3", + "Instance Memory (in GB)": "244", + "Platform Memory (in GB)": "3904", + "Storage Info (Type and Size in GB)": "1 x 240 SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,52", + "PkgWatt @ 10%": "12,91", + "PkgWatt @ 50%": "26,56", + "PkgWatt @ 100%": "36,35", + "RAMWatt @ Idle": "48,80", + "RAMWatt @ 10%": "73,20", + "RAMWatt @ 50%": "97,60", + "RAMWatt @ 100%": "146,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "7,5", + "Instance @ Idle": "60,8", + "Instance @ 10%": "93,6", + "Instance @ 50%": "131,7", + "Instance @ 100%": "190,3", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E7-8880 v3 Processor (Haswell)" + }, + { + "Instance type": "x1e.4xlarge", + "Release Date": "November 2017", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "128", + "Platform CPU Name": "Xeon E7-8880 v3", + "Instance Memory (in GB)": "488", + "Platform Memory (in GB)": "3904", + "Storage Info (Type and Size in GB)": "1 x 480 SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "9,05", + "PkgWatt @ 10%": "25,83", + "PkgWatt @ 50%": "53,12", + "PkgWatt @ 100%": "72,71", + "RAMWatt @ Idle": "97,60", + "RAMWatt @ 10%": "146,40", + "RAMWatt @ 50%": "195,20", + "RAMWatt @ 100%": "292,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "15,0", + "Instance @ Idle": "121,6", + "Instance @ 10%": "187,2", + "Instance @ 50%": "263,3", + "Instance @ 100%": "380,5", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E7-8880 v3 Processor (Haswell)" + }, + { + "Instance type": "x1e.8xlarge", + "Release Date": "November 2017", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "128", + "Platform CPU Name": "Xeon E7-8880 v3", + "Instance Memory (in GB)": "976", + "Platform Memory (in GB)": "3904", + "Storage Info (Type and Size in GB)": "1 x 960 SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "18,09", + "PkgWatt @ 10%": "51,65", + "PkgWatt @ 50%": "106,24", + "PkgWatt @ 100%": "145,41", + "RAMWatt @ Idle": "195,20", + "RAMWatt @ 10%": "292,80", + "RAMWatt @ 50%": "390,40", + "RAMWatt @ 100%": "585,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "30,0", + "Instance @ Idle": "243,3", + "Instance @ 10%": "374,5", + "Instance @ 50%": "526,6", + "Instance @ 100%": "761,0", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E7-8880 v3 Processor (Haswell)" + }, + { + "Instance type": "x1e.16xlarge", + "Release Date": "November 2017", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "128", + "Platform CPU Name": "Xeon E7-8880 v3", + "Instance Memory (in GB)": "1952", + "Platform Memory (in GB)": "3904", + "Storage Info (Type and Size in GB)": "1 x 1.920 SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "36,19", + "PkgWatt @ 10%": "103,30", + "PkgWatt @ 50%": "212,47", + "PkgWatt @ 100%": "290,83", + "RAMWatt @ Idle": "390,40", + "RAMWatt @ 10%": "585,60", + "RAMWatt @ 50%": "780,80", + "RAMWatt @ 100%": "1171,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "60,0", + "Instance @ Idle": "486,6", + "Instance @ 10%": "748,9", + "Instance @ 50%": "1053,3", + "Instance @ 100%": "1522,0", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E7-8880 v3 Processor (Haswell)" + }, + { + "Instance type": "x1e.32xlarge", + "Release Date": "September 2017", + "Instance vCPU": "128", + "Platform Total Number of vCPU": "128", + "Platform CPU Name": "Xeon E7-8880 v3", + "Instance Memory (in GB)": "3904", + "Platform Memory (in GB)": "3904", + "Storage Info (Type and Size in GB)": "2 x 1.920 SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "72,37", + "PkgWatt @ 10%": "206,61", + "PkgWatt @ 50%": "424,94", + "PkgWatt @ 100%": "581,65", + "RAMWatt @ Idle": "780,80", + "RAMWatt @ 10%": "1171,20", + "RAMWatt @ 50%": "1561,60", + "RAMWatt @ 100%": "2342,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "120,0", + "Instance @ Idle": "973,2", + "Instance @ 10%": "1497,8", + "Instance @ 50%": "2106,5", + "Instance @ 100%": "3044,1", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E7-8880 v3 Processor (Haswell)" + }, + { + "Instance type": "x2gd.medium", + "Release Date": "March 2021", + "Instance vCPU": "1", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "1024", + "Storage Info (Type and Size in GB)": "1x59 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,27", + "PkgWatt @ 10%": "0,75", + "PkgWatt @ 50%": "1,76", + "PkgWatt @ 100%": "2,39", + "RAMWatt @ Idle": "3,20", + "RAMWatt @ 10%": "4,80", + "RAMWatt @ 50%": "6,40", + "RAMWatt @ 100%": "9,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "0,5", + "Instance @ Idle": "3,9", + "Instance @ 10%": "6,0", + "Instance @ 50%": "8,6", + "Instance @ 100%": "12,5", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "x2gd.large", + "Release Date": "March 2021", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "1024", + "Storage Info (Type and Size in GB)": "1x118 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,54", + "PkgWatt @ 10%": "1,49", + "PkgWatt @ 50%": "3,53", + "PkgWatt @ 100%": "4,77", + "RAMWatt @ Idle": "6,40", + "RAMWatt @ 10%": "9,60", + "RAMWatt @ 50%": "12,80", + "RAMWatt @ 100%": "19,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "0,9", + "Instance @ Idle": "7,9", + "Instance @ 10%": "12,0", + "Instance @ 50%": "17,3", + "Instance @ 100%": "24,9", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "x2gd.xlarge", + "Release Date": "March 2021", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "1024", + "Storage Info (Type and Size in GB)": "1x237 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,09", + "PkgWatt @ 10%": "2,98", + "PkgWatt @ 50%": "7,05", + "PkgWatt @ 100%": "9,55", + "RAMWatt @ Idle": "12,80", + "RAMWatt @ 10%": "19,20", + "RAMWatt @ 50%": "25,60", + "RAMWatt @ 100%": "38,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,9", + "Instance @ Idle": "15,8", + "Instance @ 10%": "24,1", + "Instance @ 50%": "34,5", + "Instance @ 100%": "49,8", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "x2gd.2xlarge", + "Release Date": "March 2021", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "1024", + "Storage Info (Type and Size in GB)": "1x475 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,18", + "PkgWatt @ 10%": "5,97", + "PkgWatt @ 50%": "14,10", + "PkgWatt @ 100%": "19,10", + "RAMWatt @ Idle": "25,60", + "RAMWatt @ 10%": "38,40", + "RAMWatt @ 50%": "51,20", + "RAMWatt @ 100%": "76,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,8", + "Instance @ Idle": "31,5", + "Instance @ 10%": "48,1", + "Instance @ 50%": "69,1", + "Instance @ 100%": "99,6", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "x2gd.4xlarge", + "Release Date": "March 2021", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "256", + "Platform Memory (in GB)": "1024", + "Storage Info (Type and Size in GB)": "1x950 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,35", + "PkgWatt @ 10%": "11,93", + "PkgWatt @ 50%": "28,21", + "PkgWatt @ 100%": "38,20", + "RAMWatt @ Idle": "51,20", + "RAMWatt @ 10%": "76,80", + "RAMWatt @ 50%": "102,40", + "RAMWatt @ 100%": "153,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "7,5", + "Instance @ Idle": "63,1", + "Instance @ 10%": "96,2", + "Instance @ 50%": "138,1", + "Instance @ 100%": "199,3", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "x2gd.8xlarge", + "Release Date": "March 2021", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "512", + "Platform Memory (in GB)": "1024", + "Storage Info (Type and Size in GB)": "1x1900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "8,71", + "PkgWatt @ 10%": "23,87", + "PkgWatt @ 50%": "56,42", + "PkgWatt @ 100%": "76,39", + "RAMWatt @ Idle": "102,40", + "RAMWatt @ 10%": "153,60", + "RAMWatt @ 50%": "204,80", + "RAMWatt @ 100%": "307,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "15,0", + "Instance @ Idle": "126,1", + "Instance @ 10%": "192,5", + "Instance @ 50%": "276,2", + "Instance @ 100%": "398,6", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "x2gd.12xlarge", + "Release Date": "March 2021", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "768", + "Platform Memory (in GB)": "1024", + "Storage Info (Type and Size in GB)": "2x1425 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "13,06", + "PkgWatt @ 10%": "35,80", + "PkgWatt @ 50%": "84,63", + "PkgWatt @ 100%": "114,59", + "RAMWatt @ Idle": "153,60", + "RAMWatt @ 10%": "230,40", + "RAMWatt @ 50%": "307,20", + "RAMWatt @ 100%": "460,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "22,5", + "Instance @ Idle": "189,2", + "Instance @ 10%": "288,7", + "Instance @ 50%": "414,3", + "Instance @ 100%": "597,9", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "x2gd.16xlarge", + "Release Date": "March 2021", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "1024", + "Platform Memory (in GB)": "1024", + "Storage Info (Type and Size in GB)": "2x1900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "17,42", + "PkgWatt @ 10%": "47,74", + "PkgWatt @ 50%": "112,84", + "PkgWatt @ 100%": "152,78", + "RAMWatt @ Idle": "204,80", + "RAMWatt @ 10%": "307,20", + "RAMWatt @ 50%": "409,60", + "RAMWatt @ 100%": "614,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "30,0", + "Instance @ Idle": "252,2", + "Instance @ 10%": "384,9", + "Instance @ 50%": "552,4", + "Instance @ 100%": "797,2", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "x2gd.metal", + "Release Date": "March 2021", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "1024", + "Platform Memory (in GB)": "1024", + "Storage Info (Type and Size in GB)": "2x1900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "17,42", + "PkgWatt @ 10%": "47,74", + "PkgWatt @ 50%": "112,84", + "PkgWatt @ 100%": "152,78", + "RAMWatt @ Idle": "204,80", + "RAMWatt @ 10%": "307,20", + "RAMWatt @ 50%": "409,60", + "RAMWatt @ 100%": "614,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "30,0", + "Instance @ Idle": "252,2", + "Instance @ 10%": "384,9", + "Instance @ 50%": "552,4", + "Instance @ 100%": "797,2", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "z1d.large", + "Release Date": "July 2018", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon Platinum 8151", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "1 x 75 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,00", + "PkgWatt @ 10%": "6,17", + "PkgWatt @ 50%": "15,04", + "PkgWatt @ 100%": "18,38", + "RAMWatt @ Idle": "2,08", + "RAMWatt @ 10%": "3,83", + "RAMWatt @ 50%": "7,25", + "RAMWatt @ 100%": "10,67", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "4,0", + "Instance @ Idle": "8,1", + "Instance @ 10%": "14,0", + "Instance @ 50%": "26,3", + "Instance @ 100%": "33,0", + "Hardware Information on AWS Documentation & Comments": "Up to 4.0 GHz Intel Xeon Scalable Processors" + }, + { + "Instance type": "z1d.xlarge", + "Release Date": "July 2018", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon Platinum 8151", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "1 x 150 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,00", + "PkgWatt @ 10%": "12,33", + "PkgWatt @ 50%": "30,08", + "PkgWatt @ 100%": "36,75", + "RAMWatt @ Idle": "4,17", + "RAMWatt @ 10%": "7,67", + "RAMWatt @ 50%": "14,50", + "RAMWatt @ 100%": "21,33", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "8,0", + "Instance @ Idle": "16,2", + "Instance @ 10%": "28,0", + "Instance @ 50%": "52,6", + "Instance @ 100%": "66,1", + "Hardware Information on AWS Documentation & Comments": "Up to 4.0 GHz Intel Xeon Scalable Processors" + }, + { + "Instance type": "z1d.2xlarge", + "Release Date": "July 2018", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon Platinum 8151", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "1 x 300 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "8,00", + "PkgWatt @ 10%": "24,67", + "PkgWatt @ 50%": "60,17", + "PkgWatt @ 100%": "73,50", + "RAMWatt @ Idle": "8,33", + "RAMWatt @ 10%": "15,33", + "RAMWatt @ 50%": "29,00", + "RAMWatt @ 100%": "42,67", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "16,0", + "Instance @ Idle": "32,3", + "Instance @ 10%": "56,0", + "Instance @ 50%": "105,2", + "Instance @ 100%": "132,2", + "Hardware Information on AWS Documentation & Comments": "Up to 4.0 GHz Intel Xeon Scalable Processors" + }, + { + "Instance type": "z1d.3xlarge", + "Release Date": "July 2018", + "Instance vCPU": "12", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon Platinum 8151", + "Instance Memory (in GB)": "96", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "1 x 450 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "12,00", + "PkgWatt @ 10%": "37,00", + "PkgWatt @ 50%": "90,25", + "PkgWatt @ 100%": "110,25", + "RAMWatt @ Idle": "12,50", + "RAMWatt @ 10%": "23,00", + "RAMWatt @ 50%": "43,50", + "RAMWatt @ 100%": "64,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "24,0", + "Instance @ Idle": "48,5", + "Instance @ 10%": "84,0", + "Instance @ 50%": "157,8", + "Instance @ 100%": "198,3", + "Hardware Information on AWS Documentation & Comments": "Up to 4.0 GHz Intel Xeon Scalable Processors" + }, + { + "Instance type": "z1d.6xlarge", + "Release Date": "July 2018", + "Instance vCPU": "24", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon Platinum 8151", + "Instance Memory (in GB)": "192", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "1 x 900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "24,00", + "PkgWatt @ 10%": "74,00", + "PkgWatt @ 50%": "180,50", + "PkgWatt @ 100%": "220,50", + "RAMWatt @ Idle": "25,00", + "RAMWatt @ 10%": "46,00", + "RAMWatt @ 50%": "87,00", + "RAMWatt @ 100%": "128,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "48,0", + "Instance @ Idle": "97,0", + "Instance @ 10%": "168,0", + "Instance @ 50%": "315,5", + "Instance @ 100%": "396,5", + "Hardware Information on AWS Documentation & Comments": "Up to 4.0 GHz Intel Xeon Scalable Processors" + }, + { + "Instance type": "z1d.12xlarge", + "Release Date": "July 2018", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon Platinum 8151", + "Instance Memory (in GB)": "384", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "2 x 900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "48,00", + "PkgWatt @ 10%": "148,00", + "PkgWatt @ 50%": "361,00", + "PkgWatt @ 100%": "441,00", + "RAMWatt @ Idle": "50,00", + "RAMWatt @ 10%": "92,00", + "RAMWatt @ 50%": "174,00", + "RAMWatt @ 100%": "256,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "96,0", + "Instance @ Idle": "194,0", + "Instance @ 10%": "336,0", + "Instance @ 50%": "631,0", + "Instance @ 100%": "793,0", + "Hardware Information on AWS Documentation & Comments": "Up to 4.0 GHz Intel Xeon Scalable Processors" + }, + { + "Instance type": "z1d.metal", + "Release Date": "July 2018", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon Platinum 8151", + "Instance Memory (in GB)": "384", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "2 x 900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "48,00", + "PkgWatt @ 10%": "148,00", + "PkgWatt @ 50%": "361,00", + "PkgWatt @ 100%": "441,00", + "RAMWatt @ Idle": "50,00", + "RAMWatt @ 10%": "92,00", + "RAMWatt @ 50%": "174,00", + "RAMWatt @ 100%": "256,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "96,0", + "Instance @ Idle": "194,0", + "Instance @ 10%": "336,0", + "Instance @ 50%": "631,0", + "Instance @ 100%": "793,0", + "Hardware Information on AWS Documentation & Comments": "Up to 4.0 GHz Intel Xeon Scalable Processors" + }, + { + "Instance type": "cache.t2.micro", + "Release Date": "July 2014", + "Instance vCPU": "1", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon E5-2676 v3", + "Instance Memory (in GB)": "555", + "Platform Memory (in GB)": "288", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,60", + "PkgWatt @ 10%": "1,72", + "PkgWatt @ 50%": "3,54", + "PkgWatt @ 100%": "4,85", + "RAMWatt @ Idle": "0,11", + "RAMWatt @ 10%": "0,17", + "RAMWatt @ 50%": "0,22", + "RAMWatt @ 100%": "0,33", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,0", + "Instance @ Idle": "1,7", + "Instance @ 10%": "2,9", + "Instance @ 50%": "4,8", + "Instance @ 100%": "6,2", + "Hardware Information on AWS Documentation & Comments": "3.3 GHz Intel Scalable Processor" + }, + { + "Instance type": "cache.t2.small", + "Release Date": "July 2014", + "Instance vCPU": "1", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon E5-2676 v3", + "Instance Memory (in GB)": "1.55", + "Platform Memory (in GB)": "288", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,60", + "PkgWatt @ 10%": "1,72", + "PkgWatt @ 50%": "3,54", + "PkgWatt @ 100%": "4,85", + "RAMWatt @ Idle": "0,31", + "RAMWatt @ 10%": "0,47", + "RAMWatt @ 50%": "0,62", + "RAMWatt @ 100%": "0,93", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,0", + "Instance @ Idle": "1,9", + "Instance @ 10%": "3,2", + "Instance @ 50%": "5,2", + "Instance @ 100%": "6,8", + "Hardware Information on AWS Documentation & Comments": "3.3 GHz Intel Scalable Processor" + }, + { + "Instance type": "cache.t2.medium", + "Release Date": "July 2014", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon E5-2676 v3", + "Instance Memory (in GB)": "3.22", + "Platform Memory (in GB)": "288", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,21", + "PkgWatt @ 10%": "3,44", + "PkgWatt @ 50%": "7,08", + "PkgWatt @ 100%": "9,69", + "RAMWatt @ Idle": "0,64", + "RAMWatt @ 10%": "0,97", + "RAMWatt @ 50%": "1,29", + "RAMWatt @ 100%": "1,93", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,0", + "Instance @ Idle": "3,9", + "Instance @ 10%": "6,4", + "Instance @ 50%": "10,4", + "Instance @ 100%": "13,6", + "Hardware Information on AWS Documentation & Comments": "3.3 GHz Intel Scalable Processor" + }, + { + "Instance type": "cache.t3.micro", + "Release Date": "August 2018", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "0.5", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,21", + "PkgWatt @ 10%": "3,05", + "PkgWatt @ 50%": "7,16", + "PkgWatt @ 100%": "9,96", + "RAMWatt @ Idle": "0,08", + "RAMWatt @ 10%": "0,12", + "RAMWatt @ 50%": "0,31", + "RAMWatt @ 100%": "0,50", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,0", + "Instance @ Idle": "3,3", + "Instance @ 10%": "5,2", + "Instance @ 50%": "9,5", + "Instance @ 100%": "12,5", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor" + }, + { + "Instance type": "cache.t3.small", + "Release Date": "August 2018", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "1.37", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,21", + "PkgWatt @ 10%": "3,05", + "PkgWatt @ 50%": "7,16", + "PkgWatt @ 100%": "9,96", + "RAMWatt @ Idle": "0,21", + "RAMWatt @ 10%": "0,33", + "RAMWatt @ 50%": "0,85", + "RAMWatt @ 100%": "1,37", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,0", + "Instance @ Idle": "3,4", + "Instance @ 10%": "5,4", + "Instance @ 50%": "10,0", + "Instance @ 100%": "13,3", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor" + }, + { + "Instance type": "cache.t3.medium", + "Release Date": "August 2018", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "3.09", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,21", + "PkgWatt @ 10%": "3,05", + "PkgWatt @ 50%": "7,16", + "PkgWatt @ 100%": "9,96", + "RAMWatt @ Idle": "0,47", + "RAMWatt @ 10%": "0,74", + "RAMWatt @ 50%": "1,92", + "RAMWatt @ 100%": "3,09", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,0", + "Instance @ Idle": "3,7", + "Instance @ 10%": "5,8", + "Instance @ 50%": "11,1", + "Instance @ 100%": "15,0", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor" + }, + { + "Instance type": "cache.m3.medium", + "Release Date": "January 2014", + "Instance vCPU": "1", + "Platform Total Number of vCPU": "32", + "Platform CPU Name": "Xeon E5-2670", + "Instance Memory (in GB)": "3.75", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "1 x 4 (SSD)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "1", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,87", + "PkgWatt @ 10%": "2,47", + "PkgWatt @ 50%": "5,09", + "PkgWatt @ 100%": "6,97", + "RAMWatt @ Idle": "0,75", + "RAMWatt @ 10%": "1,13", + "RAMWatt @ 50%": "1,50", + "RAMWatt @ 100%": "2,25", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,4", + "Instance @ Idle": "3,1", + "Instance @ 10%": "5,0", + "Instance @ 50%": "8,0", + "Instance @ 100%": "10,7", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2670 (Sandy Bridge or Ivy Bridge) processors" + }, + { + "Instance type": "cache.m4.large", + "Release Date": "June 2015", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "6.42", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,97", + "PkgWatt @ 10%": "2,77", + "PkgWatt @ 50%": "5,71", + "PkgWatt @ 100%": "7,81", + "RAMWatt @ Idle": "1,28", + "RAMWatt @ 10%": "1,93", + "RAMWatt @ 50%": "2,57", + "RAMWatt @ 100%": "3,85", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,6", + "Instance @ Idle": "3,9", + "Instance @ 10%": "6,3", + "Instance @ 50%": "9,9", + "Instance @ 100%": "13,3", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)" + }, + { + "Instance type": "cache.m4.xlarge", + "Release Date": "June 2015", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "14.28", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,94", + "PkgWatt @ 10%": "5,55", + "PkgWatt @ 50%": "11,41", + "PkgWatt @ 100%": "15,62", + "RAMWatt @ Idle": "2,86", + "RAMWatt @ 10%": "4,28", + "RAMWatt @ 50%": "5,71", + "RAMWatt @ 100%": "8,57", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,2", + "Instance @ Idle": "8,0", + "Instance @ 10%": "13,1", + "Instance @ 50%": "20,3", + "Instance @ 100%": "27,4", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)" + }, + { + "Instance type": "cache.m4.2xlarge", + "Release Date": "June 2015", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "29.7", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "3,89", + "PkgWatt @ 10%": "11,10", + "PkgWatt @ 50%": "22,82", + "PkgWatt @ 100%": "31,24", + "RAMWatt @ Idle": "5,94", + "RAMWatt @ 10%": "8,91", + "RAMWatt @ 50%": "11,88", + "RAMWatt @ 100%": "17,82", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "6,4", + "Instance @ Idle": "16,3", + "Instance @ 10%": "26,5", + "Instance @ 50%": "41,1", + "Instance @ 100%": "55,5", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)" + }, + { + "Instance type": "cache.m4.4xlarge", + "Release Date": "June 2015", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "60.78", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "7,77", + "PkgWatt @ 10%": "22,19", + "PkgWatt @ 50%": "45,64", + "PkgWatt @ 100%": "62,47", + "RAMWatt @ Idle": "12,16", + "RAMWatt @ 10%": "18,23", + "RAMWatt @ 50%": "24,31", + "RAMWatt @ 100%": "36,47", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "12,9", + "Instance @ Idle": "32,8", + "Instance @ 10%": "53,3", + "Instance @ 50%": "82,8", + "Instance @ 100%": "111,8", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)" + }, + { + "Instance type": "cache.m4.10xlarge", + "Release Date": "June 2015", + "Instance vCPU": "40", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon E5-2676 v3", + "Instance Memory (in GB)": "154.64", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "24,12", + "PkgWatt @ 10%": "68,87", + "PkgWatt @ 50%": "141,65", + "PkgWatt @ 100%": "193,88", + "RAMWatt @ Idle": "30,93", + "RAMWatt @ 10%": "46,39", + "RAMWatt @ 50%": "61,86", + "RAMWatt @ 100%": "92,78", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "40,0", + "Instance @ Idle": "95,1", + "Instance @ 10%": "155,3", + "Instance @ 50%": "243,5", + "Instance @ 100%": "326,7", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)" + }, + { + "Instance type": "cache.m5.large", + "Release Date": "November 2017", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "6.38", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,14", + "PkgWatt @ 10%": "2,87", + "PkgWatt @ 50%": "6,39", + "PkgWatt @ 100%": "9,28", + "RAMWatt @ Idle": "0,99", + "RAMWatt @ 10%": "1,64", + "RAMWatt @ 50%": "2,94", + "RAMWatt @ 100%": "4,24", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,8", + "Instance @ Idle": "3,9", + "Instance @ 10%": "6,3", + "Instance @ 50%": "11,1", + "Instance @ 100%": "15,3", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "cache.m5.xlarge", + "Release Date": "November 2017", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "12.93", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,28", + "PkgWatt @ 10%": "5,75", + "PkgWatt @ 50%": "12,79", + "PkgWatt @ 100%": "18,56", + "RAMWatt @ Idle": "2,01", + "RAMWatt @ 10%": "3,33", + "RAMWatt @ 50%": "5,96", + "RAMWatt @ 100%": "8,58", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,5", + "Instance @ Idle": "7,8", + "Instance @ 10%": "12,6", + "Instance @ 50%": "22,2", + "Instance @ 100%": "30,6", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "cache.m5.2xlarge", + "Release Date": "November 2017", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "26.04", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,56", + "PkgWatt @ 10%": "11,49", + "PkgWatt @ 50%": "25,58", + "PkgWatt @ 100%": "37,12", + "RAMWatt @ Idle": "4,05", + "RAMWatt @ 10%": "6,70", + "RAMWatt @ 50%": "12,00", + "RAMWatt @ 100%": "17,29", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "7,0", + "Instance @ Idle": "15,6", + "Instance @ 10%": "25,2", + "Instance @ 50%": "44,6", + "Instance @ 100%": "61,4", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "cache.m5.4xlarge", + "Release Date": "November 2017", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "52.26", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "9,12", + "PkgWatt @ 10%": "22,99", + "PkgWatt @ 50%": "51,16", + "PkgWatt @ 100%": "74,23", + "RAMWatt @ Idle": "8,13", + "RAMWatt @ 10%": "13,45", + "RAMWatt @ 50%": "24,07", + "RAMWatt @ 100%": "34,70", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "14,0", + "Instance @ Idle": "31,2", + "Instance @ 10%": "50,4", + "Instance @ 50%": "89,2", + "Instance @ 100%": "122,9", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "cache.m5.12xlarge", + "Release Date": "November 2017", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "157.12", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "27,36", + "PkgWatt @ 10%": "68,96", + "PkgWatt @ 50%": "153,47", + "PkgWatt @ 100%": "222,69", + "RAMWatt @ Idle": "24,43", + "RAMWatt @ 10%": "40,44", + "RAMWatt @ 50%": "72,38", + "RAMWatt @ 100%": "104,32", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "42,0", + "Instance @ Idle": "93,8", + "Instance @ 10%": "151,4", + "Instance @ 50%": "267,8", + "Instance @ 100%": "369,0", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "cache.m5.24xlarge", + "Release Date": "November 2017", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "314.32", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "54,71", + "PkgWatt @ 10%": "137,92", + "PkgWatt @ 50%": "306,93", + "PkgWatt @ 100%": "445,38", + "RAMWatt @ Idle": "48,88", + "RAMWatt @ 10%": "80,90", + "RAMWatt @ 50%": "144,79", + "RAMWatt @ 100%": "208,69", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "84,0", + "Instance @ Idle": "187,6", + "Instance @ 10%": "302,8", + "Instance @ 50%": "535,7", + "Instance @ 100%": "738,1", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "cache.m6g.large", + "Release Date": "December 2019", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,54", + "PkgWatt @ 10%": "1,49", + "PkgWatt @ 50%": "3,53", + "PkgWatt @ 100%": "4,77", + "RAMWatt @ Idle": "1,60", + "RAMWatt @ 10%": "2,40", + "RAMWatt @ 50%": "3,20", + "RAMWatt @ 100%": "4,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "0,9", + "Instance @ Idle": "3,1", + "Instance @ 10%": "4,8", + "Instance @ 50%": "7,7", + "Instance @ 100%": "10,5", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "cache.m6g.xlarge", + "Release Date": "December 2019", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,09", + "PkgWatt @ 10%": "2,98", + "PkgWatt @ 50%": "7,05", + "PkgWatt @ 100%": "9,55", + "RAMWatt @ Idle": "3,20", + "RAMWatt @ 10%": "4,80", + "RAMWatt @ 50%": "6,40", + "RAMWatt @ 100%": "9,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,9", + "Instance @ Idle": "6,2", + "Instance @ 10%": "9,7", + "Instance @ 50%": "15,3", + "Instance @ 100%": "21,0", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "cache.m6g.2xlarge", + "Release Date": "December 2019", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,18", + "PkgWatt @ 10%": "5,97", + "PkgWatt @ 50%": "14,10", + "PkgWatt @ 100%": "19,10", + "RAMWatt @ Idle": "6,40", + "RAMWatt @ 10%": "9,60", + "RAMWatt @ 50%": "12,80", + "RAMWatt @ 100%": "19,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,8", + "Instance @ Idle": "12,3", + "Instance @ 10%": "19,3", + "Instance @ 50%": "30,7", + "Instance @ 100%": "42,0", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "cache.m6g.4xlarge", + "Release Date": "December 2019", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,35", + "PkgWatt @ 10%": "11,93", + "PkgWatt @ 50%": "28,21", + "PkgWatt @ 100%": "38,20", + "RAMWatt @ Idle": "12,80", + "RAMWatt @ 10%": "19,20", + "RAMWatt @ 50%": "25,60", + "RAMWatt @ 100%": "38,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "7,5", + "Instance @ Idle": "24,7", + "Instance @ 10%": "38,6", + "Instance @ 50%": "61,3", + "Instance @ 100%": "84,1", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "cache.m6g.8xlarge", + "Release Date": "December 2019", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "8,71", + "PkgWatt @ 10%": "23,87", + "PkgWatt @ 50%": "56,42", + "PkgWatt @ 100%": "76,39", + "RAMWatt @ Idle": "25,60", + "RAMWatt @ 10%": "38,40", + "RAMWatt @ 50%": "51,20", + "RAMWatt @ 100%": "76,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "15,0", + "Instance @ Idle": "49,3", + "Instance @ 10%": "77,3", + "Instance @ 50%": "122,6", + "Instance @ 100%": "168,2", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "cache.m6g.12xlarge", + "Release Date": "December 2019", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "192", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "13,06", + "PkgWatt @ 10%": "35,80", + "PkgWatt @ 50%": "84,63", + "PkgWatt @ 100%": "114,59", + "RAMWatt @ Idle": "38,40", + "RAMWatt @ 10%": "57,60", + "RAMWatt @ 50%": "76,80", + "RAMWatt @ 100%": "115,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "22,5", + "Instance @ Idle": "74,0", + "Instance @ 10%": "115,9", + "Instance @ 50%": "183,9", + "Instance @ 100%": "252,3", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "cache.m6g.16xlarge", + "Release Date": "December 2019", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "256", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "17,42", + "PkgWatt @ 10%": "47,74", + "PkgWatt @ 50%": "112,84", + "PkgWatt @ 100%": "152,78", + "RAMWatt @ Idle": "51,20", + "RAMWatt @ 10%": "76,80", + "RAMWatt @ 50%": "102,40", + "RAMWatt @ 100%": "153,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "30,0", + "Instance @ Idle": "98,6", + "Instance @ 10%": "154,5", + "Instance @ 50%": "245,2", + "Instance @ 100%": "336,4", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "cache.r3.2xlarge", + "Release Date": "April 2014", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2670 v2", + "Instance Memory (in GB)": "61", + "Platform Memory (in GB)": "244", + "Storage Info (Type and Size in GB)": "1 x 160 (SSD)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "1", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "5,55", + "PkgWatt @ 10%": "15,84", + "PkgWatt @ 50%": "32,58", + "PkgWatt @ 100%": "44,59", + "RAMWatt @ Idle": "12,20", + "RAMWatt @ 10%": "18,30", + "RAMWatt @ 50%": "24,40", + "RAMWatt @ 100%": "36,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "9,2", + "Instance @ Idle": "26,9", + "Instance @ 10%": "43,3", + "Instance @ 50%": "66,2", + "Instance @ 100%": "90,4", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon Ivy Bridge Processors" + }, + { + "Instance type": "cache.r4.large", + "Release Date": "November 2016", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "12.3", + "Platform Memory (in GB)": "488", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,97", + "PkgWatt @ 10%": "2,77", + "PkgWatt @ 50%": "5,71", + "PkgWatt @ 100%": "7,81", + "RAMWatt @ Idle": "2,46", + "RAMWatt @ 10%": "3,69", + "RAMWatt @ 50%": "4,92", + "RAMWatt @ 100%": "7,38", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,6", + "Instance @ Idle": "5,0", + "Instance @ 10%": "8,1", + "Instance @ 50%": "12,2", + "Instance @ 100%": "16,8", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor" + }, + { + "Instance type": "cache.r4.xlarge", + "Release Date": "November 2016", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "25.05", + "Platform Memory (in GB)": "488", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,94", + "PkgWatt @ 10%": "5,55", + "PkgWatt @ 50%": "11,41", + "PkgWatt @ 100%": "15,62", + "RAMWatt @ Idle": "5,01", + "RAMWatt @ 10%": "7,52", + "RAMWatt @ 50%": "10,02", + "RAMWatt @ 100%": "15,03", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,2", + "Instance @ Idle": "10,2", + "Instance @ 10%": "16,3", + "Instance @ 50%": "24,7", + "Instance @ 100%": "33,9", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor" + }, + { + "Instance type": "cache.r4.2xlarge", + "Release Date": "November 2016", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "50.47", + "Platform Memory (in GB)": "488", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "3,89", + "PkgWatt @ 10%": "11,10", + "PkgWatt @ 50%": "22,82", + "PkgWatt @ 100%": "31,24", + "RAMWatt @ Idle": "10,09", + "RAMWatt @ 10%": "15,14", + "RAMWatt @ 50%": "20,19", + "RAMWatt @ 100%": "30,28", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "6,4", + "Instance @ Idle": "20,4", + "Instance @ 10%": "32,7", + "Instance @ 50%": "49,5", + "Instance @ 100%": "68,0", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor" + }, + { + "Instance type": "cache.r4.4xlarge", + "Release Date": "November 2016", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "101.38", + "Platform Memory (in GB)": "488", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "7,77", + "PkgWatt @ 10%": "22,19", + "PkgWatt @ 50%": "45,64", + "PkgWatt @ 100%": "62,47", + "RAMWatt @ Idle": "20,28", + "RAMWatt @ 10%": "30,41", + "RAMWatt @ 50%": "40,55", + "RAMWatt @ 100%": "60,83", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "12,9", + "Instance @ Idle": "40,9", + "Instance @ 10%": "65,5", + "Instance @ 50%": "99,1", + "Instance @ 100%": "136,2", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor" + }, + { + "Instance type": "cache.r4.8xlarge", + "Release Date": "November 2016", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "203.26", + "Platform Memory (in GB)": "488", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "15,55", + "PkgWatt @ 10%": "44,38", + "PkgWatt @ 50%": "91,28", + "PkgWatt @ 100%": "124,95", + "RAMWatt @ Idle": "40,65", + "RAMWatt @ 10%": "60,98", + "RAMWatt @ 50%": "81,30", + "RAMWatt @ 100%": "121,96", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "25,8", + "Instance @ Idle": "82,0", + "Instance @ 10%": "131,1", + "Instance @ 50%": "198,4", + "Instance @ 100%": "272,7", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor" + }, + { + "Instance type": "cache.r4.16xlarge", + "Release Date": "November 2016", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "407", + "Platform Memory (in GB)": "488", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "31,09", + "PkgWatt @ 10%": "88,76", + "PkgWatt @ 50%": "182,57", + "PkgWatt @ 100%": "249,90", + "RAMWatt @ Idle": "81,40", + "RAMWatt @ 10%": "122,10", + "RAMWatt @ 50%": "162,80", + "RAMWatt @ 100%": "244,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "51,6", + "Instance @ Idle": "164,0", + "Instance @ 10%": "262,4", + "Instance @ 50%": "396,9", + "Instance @ 100%": "545,7", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor" + }, + { + "Instance type": "cache.r5.large", + "Release Date": "July 2018", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "13.07", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,21", + "PkgWatt @ 10%": "3,05", + "PkgWatt @ 50%": "7,16", + "PkgWatt @ 100%": "9,96", + "RAMWatt @ Idle": "1,97", + "RAMWatt @ 10%": "3,14", + "RAMWatt @ 50%": "8,10", + "RAMWatt @ 100%": "13,06", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,0", + "Instance @ Idle": "5,2", + "Instance @ 10%": "8,2", + "Instance @ 50%": "17,3", + "Instance @ 100%": "25,0", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "cache.r5.xlarge", + "Release Date": "July 2018", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "26.32", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,41", + "PkgWatt @ 10%": "6,11", + "PkgWatt @ 50%": "14,32", + "PkgWatt @ 100%": "19,92", + "RAMWatt @ Idle": "3,96", + "RAMWatt @ 10%": "6,33", + "RAMWatt @ 50%": "16,32", + "RAMWatt @ 100%": "26,31", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "4,0", + "Instance @ Idle": "10,4", + "Instance @ 10%": "16,4", + "Instance @ 50%": "34,6", + "Instance @ 100%": "50,2", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "cache.r5.2xlarge", + "Release Date": "July 2018", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "52.82", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,82", + "PkgWatt @ 10%": "12,22", + "PkgWatt @ 50%": "28,64", + "PkgWatt @ 100%": "39,83", + "RAMWatt @ Idle": "7,95", + "RAMWatt @ 10%": "12,71", + "RAMWatt @ 50%": "32,75", + "RAMWatt @ 100%": "52,79", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "8,0", + "Instance @ Idle": "20,8", + "Instance @ 10%": "32,9", + "Instance @ 50%": "69,4", + "Instance @ 100%": "100,6", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "cache.r5.4xlarge", + "Release Date": "July 2018", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "105.81", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "9,65", + "PkgWatt @ 10%": "24,44", + "PkgWatt @ 50%": "57,28", + "PkgWatt @ 100%": "79,66", + "RAMWatt @ Idle": "15,93", + "RAMWatt @ 10%": "25,46", + "RAMWatt @ 50%": "65,61", + "RAMWatt @ 100%": "105,76", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "16,0", + "Instance @ Idle": "41,6", + "Instance @ 10%": "65,9", + "Instance @ 50%": "138,9", + "Instance @ 100%": "201,4", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "cache.r5.12xlarge", + "Release Date": "July 2018", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "317.77", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "28,94", + "PkgWatt @ 10%": "73,32", + "PkgWatt @ 50%": "171,85", + "PkgWatt @ 100%": "238,99", + "RAMWatt @ Idle": "47,84", + "RAMWatt @ 10%": "76,46", + "RAMWatt @ 50%": "197,03", + "RAMWatt @ 100%": "317,61", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "48,0", + "Instance @ Idle": "124,8", + "Instance @ 10%": "197,8", + "Instance @ 50%": "416,9", + "Instance @ 100%": "604,6", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "cache.r5.24xlarge", + "Release Date": "July 2018", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "635.61", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "57,88", + "PkgWatt @ 10%": "146,63", + "PkgWatt @ 50%": "343,70", + "PkgWatt @ 100%": "477,98", + "RAMWatt @ Idle": "95,69", + "RAMWatt @ 10%": "152,93", + "RAMWatt @ 50%": "394,11", + "RAMWatt @ 100%": "635,30", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "96,0", + "Instance @ Idle": "249,6", + "Instance @ 10%": "395,6", + "Instance @ 50%": "833,8", + "Instance @ 100%": "1209,3", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "cache.r6g.large", + "Release Date": "December 2019", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,54", + "PkgWatt @ 10%": "1,49", + "PkgWatt @ 50%": "3,53", + "PkgWatt @ 100%": "4,77", + "RAMWatt @ Idle": "3,20", + "RAMWatt @ 10%": "4,80", + "RAMWatt @ 50%": "6,40", + "RAMWatt @ 100%": "9,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "0,9", + "Instance @ Idle": "4,7", + "Instance @ 10%": "7,2", + "Instance @ 50%": "10,9", + "Instance @ 100%": "15,3", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "cache.r6g.xlarge", + "Release Date": "December 2019", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,09", + "PkgWatt @ 10%": "2,98", + "PkgWatt @ 50%": "7,05", + "PkgWatt @ 100%": "9,55", + "RAMWatt @ Idle": "6,40", + "RAMWatt @ 10%": "9,60", + "RAMWatt @ 50%": "12,80", + "RAMWatt @ 100%": "19,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,9", + "Instance @ Idle": "9,4", + "Instance @ 10%": "14,5", + "Instance @ 50%": "21,7", + "Instance @ 100%": "30,6", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "cache.r6g.2xlarge", + "Release Date": "December 2019", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,18", + "PkgWatt @ 10%": "5,97", + "PkgWatt @ 50%": "14,10", + "PkgWatt @ 100%": "19,10", + "RAMWatt @ Idle": "12,80", + "RAMWatt @ 10%": "19,20", + "RAMWatt @ 50%": "25,60", + "RAMWatt @ 100%": "38,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,8", + "Instance @ Idle": "18,7", + "Instance @ 10%": "28,9", + "Instance @ 50%": "43,5", + "Instance @ 100%": "61,2", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "cache.r6g.4xlarge", + "Release Date": "December 2019", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,35", + "PkgWatt @ 10%": "11,93", + "PkgWatt @ 50%": "28,21", + "PkgWatt @ 100%": "38,20", + "RAMWatt @ Idle": "25,60", + "RAMWatt @ 10%": "38,40", + "RAMWatt @ 50%": "51,20", + "RAMWatt @ 100%": "76,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "7,5", + "Instance @ Idle": "37,5", + "Instance @ 10%": "57,8", + "Instance @ 50%": "86,9", + "Instance @ 100%": "122,5", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "cache.r6g.8xlarge", + "Release Date": "December 2019", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "256", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "8,71", + "PkgWatt @ 10%": "23,87", + "PkgWatt @ 50%": "56,42", + "PkgWatt @ 100%": "76,39", + "RAMWatt @ Idle": "51,20", + "RAMWatt @ 10%": "76,80", + "RAMWatt @ 50%": "102,40", + "RAMWatt @ 100%": "153,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "15,0", + "Instance @ Idle": "74,9", + "Instance @ 10%": "115,7", + "Instance @ 50%": "173,8", + "Instance @ 100%": "245,0", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "cache.r6g.12xlarge", + "Release Date": "December 2019", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "384", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "13,06", + "PkgWatt @ 10%": "35,80", + "PkgWatt @ 50%": "84,63", + "PkgWatt @ 100%": "114,59", + "RAMWatt @ Idle": "76,80", + "RAMWatt @ 10%": "115,20", + "RAMWatt @ 50%": "153,60", + "RAMWatt @ 100%": "230,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "22,5", + "Instance @ Idle": "112,4", + "Instance @ 10%": "173,5", + "Instance @ 50%": "260,7", + "Instance @ 100%": "367,5", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "cache.r6g.16xlarge", + "Release Date": "December 2019", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "512", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "17,42", + "PkgWatt @ 10%": "47,74", + "PkgWatt @ 50%": "112,84", + "PkgWatt @ 100%": "152,78", + "RAMWatt @ Idle": "102,40", + "RAMWatt @ 10%": "153,60", + "RAMWatt @ 50%": "204,80", + "RAMWatt @ 100%": "307,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "30,0", + "Instance @ Idle": "149,8", + "Instance @ 10%": "231,3", + "Instance @ 50%": "347,6", + "Instance @ 100%": "490,0", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "t3.small.elasticsearch", + "Release Date": "August 2018", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "2", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,21", + "PkgWatt @ 10%": "3,05", + "PkgWatt @ 50%": "7,16", + "PkgWatt @ 100%": "9,96", + "RAMWatt @ Idle": "0,30", + "RAMWatt @ 10%": "0,48", + "RAMWatt @ 50%": "1,24", + "RAMWatt @ 100%": "2,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,0", + "Instance @ Idle": "3,5", + "Instance @ 10%": "5,5", + "Instance @ 50%": "10,4", + "Instance @ 100%": "14,0", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor" + }, + { + "Instance type": "t3.medium.elasticsearch", + "Release Date": "August 2018", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "4", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,21", + "PkgWatt @ 10%": "3,05", + "PkgWatt @ 50%": "7,16", + "PkgWatt @ 100%": "9,96", + "RAMWatt @ Idle": "0,60", + "RAMWatt @ 10%": "0,96", + "RAMWatt @ 50%": "2,48", + "RAMWatt @ 100%": "4,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,0", + "Instance @ Idle": "3,8", + "Instance @ 10%": "6,0", + "Instance @ 50%": "11,6", + "Instance @ 100%": "16,0", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor" + }, + { + "Instance type": "t2.micro.elasticsearch", + "Release Date": "July 2014", + "Instance vCPU": "1", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon E5-2676 v3", + "Instance Memory (in GB)": "1", + "Platform Memory (in GB)": "288", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,60", + "PkgWatt @ 10%": "1,72", + "PkgWatt @ 50%": "3,54", + "PkgWatt @ 100%": "4,85", + "RAMWatt @ Idle": "0,20", + "RAMWatt @ 10%": "0,30", + "RAMWatt @ 50%": "0,40", + "RAMWatt @ 100%": "0,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,0", + "Instance @ Idle": "1,8", + "Instance @ 10%": "3,0", + "Instance @ 50%": "4,9", + "Instance @ 100%": "6,4", + "Hardware Information on AWS Documentation & Comments": "3.3 GHz Intel Scalable Processor" + }, + { + "Instance type": "t2.small.elasticsearch", + "Release Date": "July 2014", + "Instance vCPU": "1", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon E5-2676 v3", + "Instance Memory (in GB)": "2", + "Platform Memory (in GB)": "288", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,60", + "PkgWatt @ 10%": "1,72", + "PkgWatt @ 50%": "3,54", + "PkgWatt @ 100%": "4,85", + "RAMWatt @ Idle": "0,40", + "RAMWatt @ 10%": "0,60", + "RAMWatt @ 50%": "0,80", + "RAMWatt @ 100%": "1,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,0", + "Instance @ Idle": "2,0", + "Instance @ 10%": "3,3", + "Instance @ 50%": "5,3", + "Instance @ 100%": "7,0", + "Hardware Information on AWS Documentation & Comments": "3.3 GHz Intel Scalable Processor" + }, + { + "Instance type": "t2.medium.elasticsearch", + "Release Date": "July 2014", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon E5-2676 v3", + "Instance Memory (in GB)": "4", + "Platform Memory (in GB)": "288", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,21", + "PkgWatt @ 10%": "3,44", + "PkgWatt @ 50%": "7,08", + "PkgWatt @ 100%": "9,69", + "RAMWatt @ Idle": "0,80", + "RAMWatt @ 10%": "1,20", + "RAMWatt @ 50%": "1,60", + "RAMWatt @ 100%": "2,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,0", + "Instance @ Idle": "4,0", + "Instance @ 10%": "6,6", + "Instance @ 50%": "10,7", + "Instance @ 100%": "14,1", + "Hardware Information on AWS Documentation & Comments": "3.3 GHz Intel Scalable Processor" + }, + { + "Instance type": "m5.large.elasticsearch", + "Release Date": "November 2017", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,14", + "PkgWatt @ 10%": "2,87", + "PkgWatt @ 50%": "6,39", + "PkgWatt @ 100%": "9,28", + "RAMWatt @ Idle": "1,24", + "RAMWatt @ 10%": "2,06", + "RAMWatt @ 50%": "3,69", + "RAMWatt @ 100%": "5,31", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,8", + "Instance @ Idle": "4,1", + "Instance @ 10%": "6,7", + "Instance @ 50%": "11,8", + "Instance @ 100%": "16,3", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "m5.xlarge.elasticsearch", + "Release Date": "November 2017", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,28", + "PkgWatt @ 10%": "5,75", + "PkgWatt @ 50%": "12,79", + "PkgWatt @ 100%": "18,56", + "RAMWatt @ Idle": "2,49", + "RAMWatt @ 10%": "4,12", + "RAMWatt @ 50%": "7,37", + "RAMWatt @ 100%": "10,62", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,5", + "Instance @ Idle": "8,3", + "Instance @ 10%": "13,4", + "Instance @ 50%": "23,7", + "Instance @ 100%": "32,7", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "m5.2xlarge.elasticsearch", + "Release Date": "November 2017", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,56", + "PkgWatt @ 10%": "11,49", + "PkgWatt @ 50%": "25,58", + "PkgWatt @ 100%": "37,12", + "RAMWatt @ Idle": "4,98", + "RAMWatt @ 10%": "8,24", + "RAMWatt @ 50%": "14,74", + "RAMWatt @ 100%": "21,25", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "7,0", + "Instance @ Idle": "16,5", + "Instance @ 10%": "26,7", + "Instance @ 50%": "47,3", + "Instance @ 100%": "65,4", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "m5.4xlarge.elasticsearch", + "Release Date": "November 2017", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "9,12", + "PkgWatt @ 10%": "22,99", + "PkgWatt @ 50%": "51,16", + "PkgWatt @ 100%": "74,23", + "RAMWatt @ Idle": "9,95", + "RAMWatt @ 10%": "16,47", + "RAMWatt @ 50%": "29,48", + "RAMWatt @ 100%": "42,49", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "14,0", + "Instance @ Idle": "33,1", + "Instance @ 10%": "53,5", + "Instance @ 50%": "94,6", + "Instance @ 100%": "130,7", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "m5.12xlarge.elasticsearch", + "Release Date": "November 2017", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "192", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "27,36", + "PkgWatt @ 10%": "68,96", + "PkgWatt @ 50%": "153,47", + "PkgWatt @ 100%": "222,69", + "RAMWatt @ Idle": "29,86", + "RAMWatt @ 10%": "49,42", + "RAMWatt @ 50%": "88,45", + "RAMWatt @ 100%": "127,48", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "42,0", + "Instance @ Idle": "99,2", + "Instance @ 10%": "160,4", + "Instance @ 50%": "283,9", + "Instance @ 100%": "392,2", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "m4.large.elasticsearch", + "Release Date": "June 2015", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,97", + "PkgWatt @ 10%": "2,77", + "PkgWatt @ 50%": "5,71", + "PkgWatt @ 100%": "7,81", + "RAMWatt @ Idle": "1,60", + "RAMWatt @ 10%": "2,40", + "RAMWatt @ 50%": "3,20", + "RAMWatt @ 100%": "4,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,6", + "Instance @ Idle": "4,2", + "Instance @ 10%": "6,8", + "Instance @ 50%": "10,5", + "Instance @ 100%": "14,2", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)" + }, + { + "Instance type": "m4.xlarge.elasticsearch", + "Release Date": "June 2015", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,94", + "PkgWatt @ 10%": "5,55", + "PkgWatt @ 50%": "11,41", + "PkgWatt @ 100%": "15,62", + "RAMWatt @ Idle": "3,20", + "RAMWatt @ 10%": "4,80", + "RAMWatt @ 50%": "6,40", + "RAMWatt @ 100%": "9,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,2", + "Instance @ Idle": "8,4", + "Instance @ 10%": "13,6", + "Instance @ 50%": "21,0", + "Instance @ 100%": "28,4", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)" + }, + { + "Instance type": "m4.2xlarge.elasticsearch", + "Release Date": "June 2015", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "3,89", + "PkgWatt @ 10%": "11,10", + "PkgWatt @ 50%": "22,82", + "PkgWatt @ 100%": "31,24", + "RAMWatt @ Idle": "6,40", + "RAMWatt @ 10%": "9,60", + "RAMWatt @ 50%": "12,80", + "RAMWatt @ 100%": "19,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "6,4", + "Instance @ Idle": "16,7", + "Instance @ 10%": "27,1", + "Instance @ 50%": "42,1", + "Instance @ 100%": "56,9", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)" + }, + { + "Instance type": "m4.4xlarge.elasticsearch", + "Release Date": "June 2015", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "7,77", + "PkgWatt @ 10%": "22,19", + "PkgWatt @ 50%": "45,64", + "PkgWatt @ 100%": "62,47", + "RAMWatt @ Idle": "12,80", + "RAMWatt @ 10%": "19,20", + "RAMWatt @ 50%": "25,60", + "RAMWatt @ 100%": "38,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "12,9", + "Instance @ Idle": "33,5", + "Instance @ 10%": "54,3", + "Instance @ 50%": "84,1", + "Instance @ 100%": "113,8", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)" + }, + { + "Instance type": "m4.10xlarge.elasticsearch", + "Release Date": "June 2015", + "Instance vCPU": "40", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon E5-2676 v3", + "Instance Memory (in GB)": "160", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "24,12", + "PkgWatt @ 10%": "68,87", + "PkgWatt @ 50%": "141,65", + "PkgWatt @ 100%": "193,88", + "RAMWatt @ Idle": "32,00", + "RAMWatt @ 10%": "48,00", + "RAMWatt @ 50%": "64,00", + "RAMWatt @ 100%": "96,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "40,0", + "Instance @ Idle": "96,1", + "Instance @ 10%": "156,9", + "Instance @ 50%": "245,6", + "Instance @ 100%": "329,9", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)" + }, + { + "Instance type": "m3.medium.elasticsearch", + "Release Date": "January 2014", + "Instance vCPU": "1", + "Platform Total Number of vCPU": "32", + "Platform CPU Name": "Xeon E5-2670", + "Instance Memory (in GB)": "3.75", + "Platform Memory (in GB)": "240", + "Storage Info (Type and Size in GB)": "1 x 4 (SSD)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,87", + "PkgWatt @ 10%": "2,47", + "PkgWatt @ 50%": "5,09", + "PkgWatt @ 100%": "6,97", + "RAMWatt @ Idle": "0,75", + "RAMWatt @ 10%": "1,13", + "RAMWatt @ 50%": "1,50", + "RAMWatt @ 100%": "2,25", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,4", + "Instance @ Idle": "3,1", + "Instance @ 10%": "5,0", + "Instance @ 50%": "8,0", + "Instance @ 100%": "10,7", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2670 (Sandy Bridge or Ivy Bridge) processors" + }, + { + "Instance type": "m3.large.elasticsearch", + "Release Date": "January 2014", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "32", + "Platform CPU Name": "Xeon E5-2670", + "Instance Memory (in GB)": "7.5", + "Platform Memory (in GB)": "240", + "Storage Info (Type and Size in GB)": "1 x 32 (SSD)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,73", + "PkgWatt @ 10%": "4,95", + "PkgWatt @ 50%": "10,18", + "PkgWatt @ 100%": "13,94", + "RAMWatt @ Idle": "1,50", + "RAMWatt @ 10%": "2,25", + "RAMWatt @ 50%": "3,00", + "RAMWatt @ 100%": "4,50", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,9", + "Instance @ Idle": "6,1", + "Instance @ 10%": "10,1", + "Instance @ 50%": "16,1", + "Instance @ 100%": "21,3", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2670 (Sandy Bridge or Ivy Bridge) processors" + }, + { + "Instance type": "m3.xlarge.elasticsearch", + "Release Date": "October 2012", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "32", + "Platform CPU Name": "Xeon E5-2670", + "Instance Memory (in GB)": "15", + "Platform Memory (in GB)": "240", + "Storage Info (Type and Size in GB)": "2 x 40 (SSD)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "3,47", + "PkgWatt @ 10%": "9,90", + "PkgWatt @ 50%": "20,36", + "PkgWatt @ 100%": "27,87", + "RAMWatt @ Idle": "3,00", + "RAMWatt @ 10%": "4,50", + "RAMWatt @ 50%": "6,00", + "RAMWatt @ 100%": "9,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "5,8", + "Instance @ Idle": "12,2", + "Instance @ 10%": "20,1", + "Instance @ 50%": "32,1", + "Instance @ 100%": "42,6", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2670 (Sandy Bridge or Ivy Bridge) processors" + }, + { + "Instance type": "m3.2xlarge.elasticsearch", + "Release Date": "October 2012", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "32", + "Platform CPU Name": "Xeon E5-2670", + "Instance Memory (in GB)": "30", + "Platform Memory (in GB)": "240", + "Storage Info (Type and Size in GB)": "2 x 80 (SSD)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "6,94", + "PkgWatt @ 10%": "19,80", + "PkgWatt @ 50%": "40,72", + "PkgWatt @ 100%": "55,74", + "RAMWatt @ Idle": "6,00", + "RAMWatt @ 10%": "9,00", + "RAMWatt @ 50%": "12,00", + "RAMWatt @ 100%": "18,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "11,5", + "Instance @ Idle": "24,4", + "Instance @ 10%": "40,3", + "Instance @ 50%": "64,2", + "Instance @ 100%": "85,2", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2670 (Sandy Bridge or Ivy Bridge) processors" + }, + { + "Instance type": "c5.large.elasticsearch", + "Release Date": "November 2016", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon Platinum 8124M", + "Instance Memory (in GB)": "4", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,41", + "PkgWatt @ 10%": "3,75", + "PkgWatt @ 50%": "8,14", + "PkgWatt @ 100%": "11,77", + "RAMWatt @ Idle": "0,78", + "RAMWatt @ 10%": "1,41", + "RAMWatt @ 50%": "2,47", + "RAMWatt @ 100%": "3,53", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,7", + "Instance @ Idle": "4,9", + "Instance @ 10%": "7,8", + "Instance @ 50%": "13,3", + "Instance @ 100%": "18,0", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)" + }, + { + "Instance type": "c5.xlarge.elasticsearch", + "Release Date": "November 2016", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon Platinum 8124M", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,81", + "PkgWatt @ 10%": "7,49", + "PkgWatt @ 50%": "16,29", + "PkgWatt @ 100%": "23,54", + "RAMWatt @ Idle": "1,56", + "RAMWatt @ 10%": "2,81", + "RAMWatt @ 50%": "4,94", + "RAMWatt @ 100%": "7,06", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "5,3", + "Instance @ Idle": "9,7", + "Instance @ 10%": "15,6", + "Instance @ 50%": "26,6", + "Instance @ 100%": "35,9", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)" + }, + { + "Instance type": "c5.2xlarge.elasticsearch", + "Release Date": "November 2016", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon Platinum 8124M", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "5,63", + "PkgWatt @ 10%": "14,98", + "PkgWatt @ 50%": "32,58", + "PkgWatt @ 100%": "47,08", + "RAMWatt @ Idle": "3,11", + "RAMWatt @ 10%": "5,62", + "RAMWatt @ 50%": "9,87", + "RAMWatt @ 100%": "14,12", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "10,7", + "Instance @ Idle": "19,4", + "Instance @ 10%": "31,3", + "Instance @ 50%": "53,1", + "Instance @ 100%": "71,9", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)" + }, + { + "Instance type": "c5.4xlarge.elasticsearch", + "Release Date": "November 2016", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon Platinum 8124M", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "11,26", + "PkgWatt @ 10%": "29,97", + "PkgWatt @ 50%": "65,16", + "PkgWatt @ 100%": "94,15", + "RAMWatt @ Idle": "6,22", + "RAMWatt @ 10%": "11,24", + "RAMWatt @ 50%": "19,74", + "RAMWatt @ 100%": "28,24", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "21,3", + "Instance @ Idle": "38,8", + "Instance @ 10%": "62,5", + "Instance @ 50%": "106,2", + "Instance @ 100%": "143,7", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)" + }, + { + "Instance type": "c5.9xlarge.elasticsearch", + "Release Date": "November 2019", + "Instance vCPU": "36", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon Platinum 8124M", + "Instance Memory (in GB)": "72", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "25,33", + "PkgWatt @ 10%": "67,43", + "PkgWatt @ 50%": "146,61", + "PkgWatt @ 100%": "211,84", + "RAMWatt @ Idle": "14,00", + "RAMWatt @ 10%": "25,29", + "RAMWatt @ 50%": "44,42", + "RAMWatt @ 100%": "63,54", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "48,0", + "Instance @ Idle": "87,3", + "Instance @ 10%": "140,7", + "Instance @ 50%": "239,0", + "Instance @ 100%": "323,4", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)" + }, + { + "Instance type": "c5.18xlarge.elasticsearch", + "Release Date": "November 2019", + "Instance vCPU": "72", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon Platinum 8124M", + "Instance Memory (in GB)": "144", + "Platform Memory (in GB)": "192", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "50,66", + "PkgWatt @ 10%": "134,85", + "PkgWatt @ 50%": "293,21", + "PkgWatt @ 100%": "423,68", + "RAMWatt @ Idle": "28,01", + "RAMWatt @ 10%": "50,59", + "RAMWatt @ 50%": "88,83", + "RAMWatt @ 100%": "127,07", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "96,0", + "Instance @ Idle": "174,7", + "Instance @ 10%": "281,4", + "Instance @ 50%": "478,0", + "Instance @ 100%": "646,8", + "Hardware Information on AWS Documentation & Comments": "Up to 3.5GHz 2nd generation Intel Xeon Scalable Processors (Cascade Lake) or 1st generation Intel Xeon Platinum 8000 series (Skylake-SP)" + }, + { + "Instance type": "c4.large.elasticsearch", + "Release Date": "January 2015", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2666 v3", + "Instance Memory (in GB)": "3.75", + "Platform Memory (in GB)": "60", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,63", + "PkgWatt @ 10%": "4,65", + "PkgWatt @ 50%": "9,56", + "PkgWatt @ 100%": "13,09", + "RAMWatt @ Idle": "0,75", + "RAMWatt @ 10%": "1,13", + "RAMWatt @ 50%": "1,50", + "RAMWatt @ 100%": "2,25", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,7", + "Instance @ Idle": "5,1", + "Instance @ 10%": "8,5", + "Instance @ 50%": "13,8", + "Instance @ 100%": "18,0", + "Hardware Information on AWS Documentation & Comments": "2.9 GHz Intel Xeon E5-2666 v3 Processor" + }, + { + "Instance type": "c4.xlarge.elasticsearch", + "Release Date": "January 2015", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2666 v3", + "Instance Memory (in GB)": "7.5", + "Platform Memory (in GB)": "60", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "3,26", + "PkgWatt @ 10%": "9,30", + "PkgWatt @ 50%": "19,12", + "PkgWatt @ 100%": "26,17", + "RAMWatt @ Idle": "1,50", + "RAMWatt @ 10%": "2,25", + "RAMWatt @ 50%": "3,00", + "RAMWatt @ 100%": "4,50", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "5,4", + "Instance @ Idle": "10,2", + "Instance @ 10%": "16,9", + "Instance @ 50%": "27,5", + "Instance @ 100%": "36,1", + "Hardware Information on AWS Documentation & Comments": "2.9 GHz Intel Xeon E5-2666 v3 Processor" + }, + { + "Instance type": "c4.2xlarge.elasticsearch", + "Release Date": "January 2015", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2666 v3", + "Instance Memory (in GB)": "15", + "Platform Memory (in GB)": "60", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "6,51", + "PkgWatt @ 10%": "18,59", + "PkgWatt @ 50%": "38,25", + "PkgWatt @ 100%": "52,35", + "RAMWatt @ Idle": "3,00", + "RAMWatt @ 10%": "4,50", + "RAMWatt @ 50%": "6,00", + "RAMWatt @ 100%": "9,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "10,8", + "Instance @ Idle": "20,3", + "Instance @ 10%": "33,9", + "Instance @ 50%": "55,0", + "Instance @ 100%": "72,1", + "Hardware Information on AWS Documentation & Comments": "2.9 GHz Intel Xeon E5-2666 v3 Processor" + }, + { + "Instance type": "c4.4xlarge.elasticsearch", + "Release Date": "January 2015", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2666 v3", + "Instance Memory (in GB)": "30", + "Platform Memory (in GB)": "60", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "13,03", + "PkgWatt @ 10%": "37,19", + "PkgWatt @ 50%": "76,49", + "PkgWatt @ 100%": "104,70", + "RAMWatt @ Idle": "6,00", + "RAMWatt @ 10%": "9,00", + "RAMWatt @ 50%": "12,00", + "RAMWatt @ 100%": "18,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "21,6", + "Instance @ Idle": "40,6", + "Instance @ 10%": "67,8", + "Instance @ 50%": "110,1", + "Instance @ 100%": "144,3", + "Hardware Information on AWS Documentation & Comments": "2.9 GHz Intel Xeon E5-2666 v3 Processor" + }, + { + "Instance type": "c4.8xlarge.elasticsearch", + "Release Date": "January 2015", + "Instance vCPU": "36", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2666 v3", + "Instance Memory (in GB)": "60", + "Platform Memory (in GB)": "60", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "29,31", + "PkgWatt @ 10%": "83,68", + "PkgWatt @ 50%": "172,10", + "PkgWatt @ 100%": "235,57", + "RAMWatt @ Idle": "12,00", + "RAMWatt @ 10%": "18,00", + "RAMWatt @ 50%": "24,00", + "RAMWatt @ 100%": "36,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "48,6", + "Instance @ Idle": "89,9", + "Instance @ 10%": "150,3", + "Instance @ 50%": "244,7", + "Instance @ 100%": "320,2", + "Hardware Information on AWS Documentation & Comments": "2.9 GHz Intel Xeon E5-2666 v3 Processor" + }, + { + "Instance type": "r5.large.elasticsearch", + "Release Date": "July 2018", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,21", + "PkgWatt @ 10%": "3,05", + "PkgWatt @ 50%": "7,16", + "PkgWatt @ 100%": "9,96", + "RAMWatt @ Idle": "2,41", + "RAMWatt @ 10%": "3,85", + "RAMWatt @ 50%": "9,92", + "RAMWatt @ 100%": "15,99", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,0", + "Instance @ Idle": "5,6", + "Instance @ 10%": "8,9", + "Instance @ 50%": "19,1", + "Instance @ 100%": "27,9", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "r5.xlarge.elasticsearch", + "Release Date": "July 2018", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,41", + "PkgWatt @ 10%": "6,11", + "PkgWatt @ 50%": "14,32", + "PkgWatt @ 100%": "19,92", + "RAMWatt @ Idle": "4,82", + "RAMWatt @ 10%": "7,70", + "RAMWatt @ 50%": "19,84", + "RAMWatt @ 100%": "31,98", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "4,0", + "Instance @ Idle": "11,2", + "Instance @ 10%": "17,8", + "Instance @ 50%": "38,2", + "Instance @ 100%": "55,9", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "r5.2xlarge.elasticsearch", + "Release Date": "July 2018", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,82", + "PkgWatt @ 10%": "12,22", + "PkgWatt @ 50%": "28,64", + "PkgWatt @ 100%": "39,83", + "RAMWatt @ Idle": "9,64", + "RAMWatt @ 10%": "15,40", + "RAMWatt @ 50%": "39,68", + "RAMWatt @ 100%": "63,97", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "8,0", + "Instance @ Idle": "22,5", + "Instance @ 10%": "35,6", + "Instance @ 50%": "76,3", + "Instance @ 100%": "111,8", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "r5.4xlarge.elasticsearch", + "Release Date": "July 2018", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "9,65", + "PkgWatt @ 10%": "24,44", + "PkgWatt @ 50%": "57,28", + "PkgWatt @ 100%": "79,66", + "RAMWatt @ Idle": "19,27", + "RAMWatt @ 10%": "30,80", + "RAMWatt @ 50%": "79,37", + "RAMWatt @ 100%": "127,94", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "16,0", + "Instance @ Idle": "44,9", + "Instance @ 10%": "71,2", + "Instance @ 50%": "152,7", + "Instance @ 100%": "223,6", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "r5.12xlarge.elasticsearch", + "Release Date": "July 2018", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "384", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "28,94", + "PkgWatt @ 10%": "73,32", + "PkgWatt @ 50%": "171,85", + "PkgWatt @ 100%": "238,99", + "RAMWatt @ Idle": "57,81", + "RAMWatt @ 10%": "92,39", + "RAMWatt @ 50%": "238,10", + "RAMWatt @ 100%": "383,81", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "48,0", + "Instance @ Idle": "134,8", + "Instance @ 10%": "213,7", + "Instance @ 50%": "458,0", + "Instance @ 100%": "670,8", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "r4.large.elasticsearch", + "Release Date": "November 2016", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "15.25", + "Platform Memory (in GB)": "488", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,97", + "PkgWatt @ 10%": "2,77", + "PkgWatt @ 50%": "5,71", + "PkgWatt @ 100%": "7,81", + "RAMWatt @ Idle": "3,05", + "RAMWatt @ 10%": "4,58", + "RAMWatt @ 50%": "6,10", + "RAMWatt @ 100%": "9,15", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,6", + "Instance @ Idle": "5,6", + "Instance @ 10%": "9,0", + "Instance @ 50%": "13,4", + "Instance @ 100%": "18,6", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor" + }, + { + "Instance type": "r4.xlarge.elasticsearch", + "Release Date": "November 2016", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "30.5", + "Platform Memory (in GB)": "488", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,94", + "PkgWatt @ 10%": "5,55", + "PkgWatt @ 50%": "11,41", + "PkgWatt @ 100%": "15,62", + "RAMWatt @ Idle": "6,10", + "RAMWatt @ 10%": "9,15", + "RAMWatt @ 50%": "12,20", + "RAMWatt @ 100%": "18,30", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,2", + "Instance @ Idle": "11,3", + "Instance @ 10%": "17,9", + "Instance @ 50%": "26,8", + "Instance @ 100%": "37,1", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor" + }, + { + "Instance type": "r4.2xlarge.elasticsearch", + "Release Date": "November 2016", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "61", + "Platform Memory (in GB)": "488", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "3,89", + "PkgWatt @ 10%": "11,10", + "PkgWatt @ 50%": "22,82", + "PkgWatt @ 100%": "31,24", + "RAMWatt @ Idle": "12,20", + "RAMWatt @ 10%": "18,30", + "RAMWatt @ 50%": "24,40", + "RAMWatt @ 100%": "36,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "6,4", + "Instance @ Idle": "22,5", + "Instance @ 10%": "35,8", + "Instance @ 50%": "53,7", + "Instance @ 100%": "74,3", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor" + }, + { + "Instance type": "r4.4xlarge.elasticsearch", + "Release Date": "November 2016", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "122", + "Platform Memory (in GB)": "488", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "7,77", + "PkgWatt @ 10%": "22,19", + "PkgWatt @ 50%": "45,64", + "PkgWatt @ 100%": "62,47", + "RAMWatt @ Idle": "24,40", + "RAMWatt @ 10%": "36,60", + "RAMWatt @ 50%": "48,80", + "RAMWatt @ 100%": "73,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "12,9", + "Instance @ Idle": "45,1", + "Instance @ 10%": "71,7", + "Instance @ 50%": "107,3", + "Instance @ 100%": "148,6", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor" + }, + { + "Instance type": "r4.8xlarge.elasticsearch", + "Release Date": "November 2016", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "244", + "Platform Memory (in GB)": "488", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "15,55", + "PkgWatt @ 10%": "44,38", + "PkgWatt @ 50%": "91,28", + "PkgWatt @ 100%": "124,95", + "RAMWatt @ Idle": "48,80", + "RAMWatt @ 10%": "73,20", + "RAMWatt @ 50%": "97,60", + "RAMWatt @ 100%": "146,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "25,8", + "Instance @ Idle": "90,1", + "Instance @ 10%": "143,4", + "Instance @ 50%": "214,7", + "Instance @ 100%": "297,1", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor" + }, + { + "Instance type": "r4.16xlarge.elasticsearch", + "Release Date": "November 2016", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "488", + "Platform Memory (in GB)": "488", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "31,09", + "PkgWatt @ 10%": "88,76", + "PkgWatt @ 50%": "182,57", + "PkgWatt @ 100%": "249,90", + "RAMWatt @ Idle": "97,60", + "RAMWatt @ 10%": "146,40", + "RAMWatt @ 50%": "195,20", + "RAMWatt @ 100%": "292,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "51,6", + "Instance @ Idle": "180,2", + "Instance @ 10%": "286,7", + "Instance @ 50%": "429,3", + "Instance @ 100%": "594,3", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor" + }, + { + "Instance type": "r3.large.elasticsearch", + "Release Date": "April 2014", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2670 v2", + "Instance Memory (in GB)": "15.25", + "Platform Memory (in GB)": "244", + "Storage Info (Type and Size in GB)": "1 x 32 (SSD)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,39", + "PkgWatt @ 10%": "3,96", + "PkgWatt @ 50%": "8,14", + "PkgWatt @ 100%": "11,15", + "RAMWatt @ Idle": "3,05", + "RAMWatt @ 10%": "4,58", + "RAMWatt @ 50%": "6,10", + "RAMWatt @ 100%": "9,15", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,3", + "Instance @ Idle": "6,7", + "Instance @ 10%": "10,8", + "Instance @ 50%": "16,5", + "Instance @ 100%": "22,6", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon Ivy Bridge Processors" + }, + { + "Instance type": "r3.xlarge.elasticsearch", + "Release Date": "April 2014", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2670 v2", + "Instance Memory (in GB)": "30.5", + "Platform Memory (in GB)": "244", + "Storage Info (Type and Size in GB)": "1 x 80 (SSD)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,77", + "PkgWatt @ 10%": "7,92", + "PkgWatt @ 50%": "16,29", + "PkgWatt @ 100%": "22,30", + "RAMWatt @ Idle": "6,10", + "RAMWatt @ 10%": "9,15", + "RAMWatt @ 50%": "12,20", + "RAMWatt @ 100%": "18,30", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "4,6", + "Instance @ Idle": "13,5", + "Instance @ 10%": "21,7", + "Instance @ 50%": "33,1", + "Instance @ 100%": "45,2", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon Ivy Bridge Processors" + }, + { + "Instance type": "r3.2xlarge.elasticsearch", + "Release Date": "April 2014", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2670 v2", + "Instance Memory (in GB)": "61", + "Platform Memory (in GB)": "244", + "Storage Info (Type and Size in GB)": "1 x 160 (SSD)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "5,55", + "PkgWatt @ 10%": "15,84", + "PkgWatt @ 50%": "32,58", + "PkgWatt @ 100%": "44,59", + "RAMWatt @ Idle": "12,20", + "RAMWatt @ 10%": "18,30", + "RAMWatt @ 50%": "24,40", + "RAMWatt @ 100%": "36,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "9,2", + "Instance @ Idle": "26,9", + "Instance @ 10%": "43,3", + "Instance @ 50%": "66,2", + "Instance @ 100%": "90,4", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon Ivy Bridge Processors" + }, + { + "Instance type": "r3.4xlarge.elasticsearch", + "Release Date": "April 2014", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2670 v2", + "Instance Memory (in GB)": "122", + "Platform Memory (in GB)": "244", + "Storage Info (Type and Size in GB)": "1 x 320 (SSD)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "11,10", + "PkgWatt @ 10%": "31,68", + "PkgWatt @ 50%": "65,16", + "PkgWatt @ 100%": "89,19", + "RAMWatt @ Idle": "24,40", + "RAMWatt @ 10%": "36,60", + "RAMWatt @ 50%": "48,80", + "RAMWatt @ 100%": "73,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "18,4", + "Instance @ Idle": "53,9", + "Instance @ 10%": "86,7", + "Instance @ 50%": "132,4", + "Instance @ 100%": "180,8", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon Ivy Bridge Processors" + }, + { + "Instance type": "r3.8xlarge.elasticsearch", + "Release Date": "April 2014", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2670 v2", + "Instance Memory (in GB)": "244", + "Platform Memory (in GB)": "244", + "Storage Info (Type and Size in GB)": "2 x 320 (SSD)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "22,19", + "PkgWatt @ 10%": "63,36", + "PkgWatt @ 50%": "130,32", + "PkgWatt @ 100%": "178,37", + "RAMWatt @ Idle": "48,80", + "RAMWatt @ 10%": "73,20", + "RAMWatt @ 50%": "97,60", + "RAMWatt @ 100%": "146,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "36,8", + "Instance @ Idle": "107,8", + "Instance @ 10%": "173,4", + "Instance @ 50%": "264,7", + "Instance @ 100%": "361,6", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon Ivy Bridge Processors" + }, + { + "Instance type": "i3.large.elasticsearch", + "Release Date": "November 2016", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "15.25", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "1 x 475 (SSD NVMe)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "8", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,97", + "PkgWatt @ 10%": "2,77", + "PkgWatt @ 50%": "5,71", + "PkgWatt @ 100%": "7,81", + "RAMWatt @ Idle": "3,05", + "RAMWatt @ 10%": "4,58", + "RAMWatt @ 50%": "6,10", + "RAMWatt @ 100%": "9,15", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,6", + "Instance @ Idle": "5,6", + "Instance @ 10%": "9,0", + "Instance @ 50%": "13,4", + "Instance @ 100%": "18,6", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2686 v4 (Broadwell)" + }, + { + "Instance type": "i3.xlarge.elasticsearch", + "Release Date": "November 2016", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "30.5", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "1 x 950 (SSD NVMe)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "8", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,94", + "PkgWatt @ 10%": "5,55", + "PkgWatt @ 50%": "11,41", + "PkgWatt @ 100%": "15,62", + "RAMWatt @ Idle": "6,10", + "RAMWatt @ 10%": "9,15", + "RAMWatt @ 50%": "12,20", + "RAMWatt @ 100%": "18,30", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,2", + "Instance @ Idle": "11,3", + "Instance @ 10%": "17,9", + "Instance @ 50%": "26,8", + "Instance @ 100%": "37,1", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2686 v4 (Broadwell)" + }, + { + "Instance type": "i3.2xlarge.elasticsearch", + "Release Date": "November 2016", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "61", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "1 x 1 900 (SSD NVMe)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "8", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "3,89", + "PkgWatt @ 10%": "11,10", + "PkgWatt @ 50%": "22,82", + "PkgWatt @ 100%": "31,24", + "RAMWatt @ Idle": "12,20", + "RAMWatt @ 10%": "18,30", + "RAMWatt @ 50%": "24,40", + "RAMWatt @ 100%": "36,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "6,4", + "Instance @ Idle": "22,5", + "Instance @ 10%": "35,8", + "Instance @ 50%": "53,7", + "Instance @ 100%": "74,3", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2686 v4 (Broadwell)" + }, + { + "Instance type": "i3.4xlarge.elasticsearch", + "Release Date": "November 2016", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "122", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "2 x 1 900 (SSD NVMe)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "8", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "7,77", + "PkgWatt @ 10%": "22,19", + "PkgWatt @ 50%": "45,64", + "PkgWatt @ 100%": "62,47", + "RAMWatt @ Idle": "24,40", + "RAMWatt @ 10%": "36,60", + "RAMWatt @ 50%": "48,80", + "RAMWatt @ 100%": "73,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "12,9", + "Instance @ Idle": "45,1", + "Instance @ 10%": "71,7", + "Instance @ 50%": "107,3", + "Instance @ 100%": "148,6", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2686 v4 (Broadwell)" + }, + { + "Instance type": "i3.8xlarge.elasticsearch", + "Release Date": "November 2016", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "244", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "4 x 1 900 (SSD NVMe)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "8", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "15,55", + "PkgWatt @ 10%": "44,38", + "PkgWatt @ 50%": "91,28", + "PkgWatt @ 100%": "124,95", + "RAMWatt @ Idle": "48,80", + "RAMWatt @ 10%": "73,20", + "RAMWatt @ 50%": "97,60", + "RAMWatt @ 100%": "146,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "25,8", + "Instance @ Idle": "90,1", + "Instance @ 10%": "143,4", + "Instance @ 50%": "214,7", + "Instance @ 100%": "297,1", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2686 v4 (Broadwell)" + }, + { + "Instance type": "i3.16xlarge.elasticsearch", + "Release Date": "November 2016", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "488", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "8 x 1 900 (SSD NVMe)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "8", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "31,09", + "PkgWatt @ 10%": "88,76", + "PkgWatt @ 50%": "182,57", + "PkgWatt @ 100%": "249,90", + "RAMWatt @ Idle": "97,60", + "RAMWatt @ 10%": "146,40", + "RAMWatt @ 50%": "195,20", + "RAMWatt @ 100%": "292,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "51,6", + "Instance @ Idle": "180,2", + "Instance @ 10%": "286,7", + "Instance @ 50%": "429,3", + "Instance @ 100%": "594,3", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2686 v4 (Broadwell)" + }, + { + "Instance type": "i2.xlarge.elasticsearch", + "Release Date": "December 2013", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2670 v2", + "Instance Memory (in GB)": "30.5", + "Platform Memory (in GB)": "244", + "Storage Info (Type and Size in GB)": "1 x 800 (SSD)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,77", + "PkgWatt @ 10%": "7,92", + "PkgWatt @ 50%": "16,29", + "PkgWatt @ 100%": "22,30", + "RAMWatt @ Idle": "6,10", + "RAMWatt @ 10%": "9,15", + "RAMWatt @ 50%": "12,20", + "RAMWatt @ 100%": "18,30", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "4,6", + "Instance @ Idle": "13,5", + "Instance @ 10%": "21,7", + "Instance @ 50%": "33,1", + "Instance @ 100%": "45,2", + "Hardware Information on AWS Documentation & Comments": "Intel E5-2670 v2 (Ivy Bridge) processor" + }, + { + "Instance type": "i2.2xlarge.elasticsearch", + "Release Date": "December 2013", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2670 v2", + "Instance Memory (in GB)": "61", + "Platform Memory (in GB)": "244", + "Storage Info (Type and Size in GB)": "2 x 800 (SSD)", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "5,55", + "PkgWatt @ 10%": "15,84", + "PkgWatt @ 50%": "32,58", + "PkgWatt @ 100%": "44,59", + "RAMWatt @ Idle": "12,20", + "RAMWatt @ 10%": "18,30", + "RAMWatt @ 50%": "24,40", + "RAMWatt @ 100%": "36,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "9,2", + "Instance @ Idle": "26,9", + "Instance @ 10%": "43,3", + "Instance @ 50%": "66,2", + "Instance @ 100%": "90,4", + "Hardware Information on AWS Documentation & Comments": "Intel E5-2670 v2 (Ivy Bridge) processor" + }, + { + "Instance type": "m6g.large.elasticsearch", + "Release Date": "December 2019", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,54", + "PkgWatt @ 10%": "1,49", + "PkgWatt @ 50%": "3,53", + "PkgWatt @ 100%": "4,77", + "RAMWatt @ Idle": "1,60", + "RAMWatt @ 10%": "2,40", + "RAMWatt @ 50%": "3,20", + "RAMWatt @ 100%": "4,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "0,9", + "Instance @ Idle": "3,1", + "Instance @ 10%": "4,8", + "Instance @ 50%": "7,7", + "Instance @ 100%": "10,5", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "m6g.xlarge.elasticsearch", + "Release Date": "December 2019", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,09", + "PkgWatt @ 10%": "2,98", + "PkgWatt @ 50%": "7,05", + "PkgWatt @ 100%": "9,55", + "RAMWatt @ Idle": "3,20", + "RAMWatt @ 10%": "4,80", + "RAMWatt @ 50%": "6,40", + "RAMWatt @ 100%": "9,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,9", + "Instance @ Idle": "6,2", + "Instance @ 10%": "9,7", + "Instance @ 50%": "15,3", + "Instance @ 100%": "21,0", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "m6g.2xlarge.elasticsearch", + "Release Date": "December 2019", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,18", + "PkgWatt @ 10%": "5,97", + "PkgWatt @ 50%": "14,10", + "PkgWatt @ 100%": "19,10", + "RAMWatt @ Idle": "6,40", + "RAMWatt @ 10%": "9,60", + "RAMWatt @ 50%": "12,80", + "RAMWatt @ 100%": "19,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,8", + "Instance @ Idle": "12,3", + "Instance @ 10%": "19,3", + "Instance @ 50%": "30,7", + "Instance @ 100%": "42,0", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "m6g.4xlarge.elasticsearch", + "Release Date": "December 2019", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,35", + "PkgWatt @ 10%": "11,93", + "PkgWatt @ 50%": "28,21", + "PkgWatt @ 100%": "38,20", + "RAMWatt @ Idle": "12,80", + "RAMWatt @ 10%": "19,20", + "RAMWatt @ 50%": "25,60", + "RAMWatt @ 100%": "38,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "7,5", + "Instance @ Idle": "24,7", + "Instance @ 10%": "38,6", + "Instance @ 50%": "61,3", + "Instance @ 100%": "84,1", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "m6g.8xlarge.elasticsearch", + "Release Date": "December 2019", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "8,71", + "PkgWatt @ 10%": "23,87", + "PkgWatt @ 50%": "56,42", + "PkgWatt @ 100%": "76,39", + "RAMWatt @ Idle": "25,60", + "RAMWatt @ 10%": "38,40", + "RAMWatt @ 50%": "51,20", + "RAMWatt @ 100%": "76,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "15,0", + "Instance @ Idle": "49,3", + "Instance @ 10%": "77,3", + "Instance @ 50%": "122,6", + "Instance @ 100%": "168,2", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "m6g.12xlarge.elasticsearch", + "Release Date": "December 2019", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "192", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "13,06", + "PkgWatt @ 10%": "35,80", + "PkgWatt @ 50%": "84,63", + "PkgWatt @ 100%": "114,59", + "RAMWatt @ Idle": "38,40", + "RAMWatt @ 10%": "57,60", + "RAMWatt @ 50%": "76,80", + "RAMWatt @ 100%": "115,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "22,5", + "Instance @ Idle": "74,0", + "Instance @ 10%": "115,9", + "Instance @ 50%": "183,9", + "Instance @ 100%": "252,3", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "c6g.large.elasticsearch", + "Release Date": "December 2019", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "4", + "Platform Memory (in GB)": "128", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,54", + "PkgWatt @ 10%": "1,49", + "PkgWatt @ 50%": "3,53", + "PkgWatt @ 100%": "4,77", + "RAMWatt @ Idle": "0,80", + "RAMWatt @ 10%": "1,20", + "RAMWatt @ 50%": "1,60", + "RAMWatt @ 100%": "2,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "0,9", + "Instance @ Idle": "2,3", + "Instance @ 10%": "3,6", + "Instance @ 50%": "6,1", + "Instance @ 100%": "8,1", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "c6g.xlarge.elasticsearch", + "Release Date": "December 2019", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "128", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,09", + "PkgWatt @ 10%": "2,98", + "PkgWatt @ 50%": "7,05", + "PkgWatt @ 100%": "9,55", + "RAMWatt @ Idle": "1,60", + "RAMWatt @ 10%": "2,40", + "RAMWatt @ 50%": "3,20", + "RAMWatt @ 100%": "4,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,9", + "Instance @ Idle": "4,6", + "Instance @ 10%": "7,3", + "Instance @ 50%": "12,1", + "Instance @ 100%": "16,2", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "c6g.2xlarge.elasticsearch", + "Release Date": "December 2019", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "128", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,18", + "PkgWatt @ 10%": "5,97", + "PkgWatt @ 50%": "14,10", + "PkgWatt @ 100%": "19,10", + "RAMWatt @ Idle": "3,20", + "RAMWatt @ 10%": "4,80", + "RAMWatt @ 50%": "6,40", + "RAMWatt @ 100%": "9,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,8", + "Instance @ Idle": "9,1", + "Instance @ 10%": "14,5", + "Instance @ 50%": "24,3", + "Instance @ 100%": "32,4", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "c6g.4xlarge.elasticsearch", + "Release Date": "December 2019", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "128", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,35", + "PkgWatt @ 10%": "11,93", + "PkgWatt @ 50%": "28,21", + "PkgWatt @ 100%": "38,20", + "RAMWatt @ Idle": "6,40", + "RAMWatt @ 10%": "9,60", + "RAMWatt @ 50%": "12,80", + "RAMWatt @ 100%": "19,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "7,5", + "Instance @ Idle": "18,3", + "Instance @ 10%": "29,0", + "Instance @ 50%": "48,5", + "Instance @ 100%": "64,9", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "c6g.8xlarge.elasticsearch", + "Release Date": "December 2019", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "128", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "8,71", + "PkgWatt @ 10%": "23,87", + "PkgWatt @ 50%": "56,42", + "PkgWatt @ 100%": "76,39", + "RAMWatt @ Idle": "12,80", + "RAMWatt @ 10%": "19,20", + "RAMWatt @ 50%": "25,60", + "RAMWatt @ 100%": "38,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "15,0", + "Instance @ Idle": "36,5", + "Instance @ 10%": "58,1", + "Instance @ 50%": "97,0", + "Instance @ 100%": "129,8", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "c6g.12xlarge.elasticsearch", + "Release Date": "December 2019", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "96", + "Platform Memory (in GB)": "128", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "13,06", + "PkgWatt @ 10%": "35,80", + "PkgWatt @ 50%": "84,63", + "PkgWatt @ 100%": "114,59", + "RAMWatt @ Idle": "19,20", + "RAMWatt @ 10%": "28,80", + "RAMWatt @ 50%": "38,40", + "RAMWatt @ 100%": "57,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "22,5", + "Instance @ Idle": "54,8", + "Instance @ 10%": "87,1", + "Instance @ 50%": "145,5", + "Instance @ 100%": "194,7", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "r6g.large.elasticsearch", + "Release Date": "December 2019", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,54", + "PkgWatt @ 10%": "1,49", + "PkgWatt @ 50%": "3,53", + "PkgWatt @ 100%": "4,77", + "RAMWatt @ Idle": "3,20", + "RAMWatt @ 10%": "4,80", + "RAMWatt @ 50%": "6,40", + "RAMWatt @ 100%": "9,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "0,9", + "Instance @ Idle": "4,7", + "Instance @ 10%": "7,2", + "Instance @ 50%": "10,9", + "Instance @ 100%": "15,3", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "r6g.xlarge.elasticsearch", + "Release Date": "December 2019", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,09", + "PkgWatt @ 10%": "2,98", + "PkgWatt @ 50%": "7,05", + "PkgWatt @ 100%": "9,55", + "RAMWatt @ Idle": "6,40", + "RAMWatt @ 10%": "9,60", + "RAMWatt @ 50%": "12,80", + "RAMWatt @ 100%": "19,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,9", + "Instance @ Idle": "9,4", + "Instance @ 10%": "14,5", + "Instance @ 50%": "21,7", + "Instance @ 100%": "30,6", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "r6g.2xlarge.elasticsearch", + "Release Date": "December 2019", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,18", + "PkgWatt @ 10%": "5,97", + "PkgWatt @ 50%": "14,10", + "PkgWatt @ 100%": "19,10", + "RAMWatt @ Idle": "12,80", + "RAMWatt @ 10%": "19,20", + "RAMWatt @ 50%": "25,60", + "RAMWatt @ 100%": "38,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,8", + "Instance @ Idle": "18,7", + "Instance @ 10%": "28,9", + "Instance @ 50%": "43,5", + "Instance @ 100%": "61,2", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "r6g.4xlarge.elasticsearch", + "Release Date": "December 2019", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,35", + "PkgWatt @ 10%": "11,93", + "PkgWatt @ 50%": "28,21", + "PkgWatt @ 100%": "38,20", + "RAMWatt @ Idle": "25,60", + "RAMWatt @ 10%": "38,40", + "RAMWatt @ 50%": "51,20", + "RAMWatt @ 100%": "76,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "7,5", + "Instance @ Idle": "37,5", + "Instance @ 10%": "57,8", + "Instance @ 50%": "86,9", + "Instance @ 100%": "122,5", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "r6g.8xlarge.elasticsearch", + "Release Date": "December 2019", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "256", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "8,71", + "PkgWatt @ 10%": "23,87", + "PkgWatt @ 50%": "56,42", + "PkgWatt @ 100%": "76,39", + "RAMWatt @ Idle": "51,20", + "RAMWatt @ 10%": "76,80", + "RAMWatt @ 50%": "102,40", + "RAMWatt @ 100%": "153,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "15,0", + "Instance @ Idle": "74,9", + "Instance @ 10%": "115,7", + "Instance @ 50%": "173,8", + "Instance @ 100%": "245,0", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "r6g.12xlarge.elasticsearch", + "Release Date": "December 2019", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "384", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "13,06", + "PkgWatt @ 10%": "35,80", + "PkgWatt @ 50%": "84,63", + "PkgWatt @ 100%": "114,59", + "RAMWatt @ Idle": "76,80", + "RAMWatt @ 10%": "115,20", + "RAMWatt @ 50%": "153,60", + "RAMWatt @ 100%": "230,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "22,5", + "Instance @ Idle": "112,4", + "Instance @ 10%": "173,5", + "Instance @ 50%": "260,7", + "Instance @ 100%": "367,5", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "r6gd.large.elasticsearch", + "Release Date": "December 2019", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "1 x 118 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,54", + "PkgWatt @ 10%": "1,49", + "PkgWatt @ 50%": "3,53", + "PkgWatt @ 100%": "4,77", + "RAMWatt @ Idle": "3,20", + "RAMWatt @ 10%": "4,80", + "RAMWatt @ 50%": "6,40", + "RAMWatt @ 100%": "9,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "0,9", + "Instance @ Idle": "4,7", + "Instance @ 10%": "7,2", + "Instance @ 50%": "10,9", + "Instance @ 100%": "15,3", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "r6gd.xlarge.elasticsearch", + "Release Date": "December 2019", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "1 x 237 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,09", + "PkgWatt @ 10%": "2,98", + "PkgWatt @ 50%": "7,05", + "PkgWatt @ 100%": "9,55", + "RAMWatt @ Idle": "6,40", + "RAMWatt @ 10%": "9,60", + "RAMWatt @ 50%": "12,80", + "RAMWatt @ 100%": "19,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,9", + "Instance @ Idle": "9,4", + "Instance @ 10%": "14,5", + "Instance @ 50%": "21,7", + "Instance @ 100%": "30,6", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "r6gd.2xlarge.elasticsearch", + "Release Date": "December 2019", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "1 x 474 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,18", + "PkgWatt @ 10%": "5,97", + "PkgWatt @ 50%": "14,10", + "PkgWatt @ 100%": "19,10", + "RAMWatt @ Idle": "12,80", + "RAMWatt @ 10%": "19,20", + "RAMWatt @ 50%": "25,60", + "RAMWatt @ 100%": "38,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,8", + "Instance @ Idle": "18,7", + "Instance @ 10%": "28,9", + "Instance @ 50%": "43,5", + "Instance @ 100%": "61,2", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "r6gd.4xlarge.elasticsearch", + "Release Date": "December 2019", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "1 x 950 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,35", + "PkgWatt @ 10%": "11,93", + "PkgWatt @ 50%": "28,21", + "PkgWatt @ 100%": "38,20", + "RAMWatt @ Idle": "25,60", + "RAMWatt @ 10%": "38,40", + "RAMWatt @ 50%": "51,20", + "RAMWatt @ 100%": "76,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "7,5", + "Instance @ Idle": "37,5", + "Instance @ 10%": "57,8", + "Instance @ 50%": "86,9", + "Instance @ 100%": "122,5", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "r6gd.8xlarge.elasticsearch", + "Release Date": "December 2019", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "256", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "1 x 1900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "8,71", + "PkgWatt @ 10%": "23,87", + "PkgWatt @ 50%": "56,42", + "PkgWatt @ 100%": "76,39", + "RAMWatt @ Idle": "51,20", + "RAMWatt @ 10%": "76,80", + "RAMWatt @ 50%": "102,40", + "RAMWatt @ 100%": "153,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "15,0", + "Instance @ Idle": "74,9", + "Instance @ 10%": "115,7", + "Instance @ 50%": "173,8", + "Instance @ 100%": "245,0", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "r6gd.12xlarge.elasticsearch", + "Release Date": "December 2019", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "384", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "2 x 1425 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "13,06", + "PkgWatt @ 10%": "35,80", + "PkgWatt @ 50%": "84,63", + "PkgWatt @ 100%": "114,59", + "RAMWatt @ Idle": "76,80", + "RAMWatt @ 10%": "115,20", + "RAMWatt @ 50%": "153,60", + "RAMWatt @ 100%": "230,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "22,5", + "Instance @ Idle": "112,4", + "Instance @ 10%": "173,5", + "Instance @ 50%": "260,7", + "Instance @ 100%": "367,5", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "r6gd.16xlarge.elasticsearch", + "Release Date": "December 2019", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "512", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "2 x 1900 NVMe SSD", + "Storage Type": "SSD", + "Platform Storage Drive Quantity": "2", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "17,42", + "PkgWatt @ 10%": "47,74", + "PkgWatt @ 50%": "112,84", + "PkgWatt @ 100%": "152,78", + "RAMWatt @ Idle": "102,40", + "RAMWatt @ 10%": "153,60", + "RAMWatt @ 50%": "204,80", + "RAMWatt @ 100%": "307,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "30,0", + "Instance @ Idle": "149,8", + "Instance @ 10%": "231,3", + "Instance @ 50%": "347,6", + "Instance @ 100%": "490,0", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "db.m6g.large", + "Release Date": "December 2019", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,54", + "PkgWatt @ 10%": "1,49", + "PkgWatt @ 50%": "3,53", + "PkgWatt @ 100%": "4,77", + "RAMWatt @ Idle": "1,60", + "RAMWatt @ 10%": "2,40", + "RAMWatt @ 50%": "3,20", + "RAMWatt @ 100%": "4,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "0,9", + "Instance @ Idle": "3,1", + "Instance @ 10%": "4,8", + "Instance @ 50%": "7,7", + "Instance @ 100%": "10,5", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "db.m6g.xlarge", + "Release Date": "December 2019", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,09", + "PkgWatt @ 10%": "2,98", + "PkgWatt @ 50%": "7,05", + "PkgWatt @ 100%": "9,55", + "RAMWatt @ Idle": "3,20", + "RAMWatt @ 10%": "4,80", + "RAMWatt @ 50%": "6,40", + "RAMWatt @ 100%": "9,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,9", + "Instance @ Idle": "6,2", + "Instance @ 10%": "9,7", + "Instance @ 50%": "15,3", + "Instance @ 100%": "21,0", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "db.m6g.2xlarge", + "Release Date": "December 2019", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,18", + "PkgWatt @ 10%": "5,97", + "PkgWatt @ 50%": "14,10", + "PkgWatt @ 100%": "19,10", + "RAMWatt @ Idle": "6,40", + "RAMWatt @ 10%": "9,60", + "RAMWatt @ 50%": "12,80", + "RAMWatt @ 100%": "19,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,8", + "Instance @ Idle": "12,3", + "Instance @ 10%": "19,3", + "Instance @ 50%": "30,7", + "Instance @ 100%": "42,0", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "db.m6g.4xlarge", + "Release Date": "December 2019", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,35", + "PkgWatt @ 10%": "11,93", + "PkgWatt @ 50%": "28,21", + "PkgWatt @ 100%": "38,20", + "RAMWatt @ Idle": "12,80", + "RAMWatt @ 10%": "19,20", + "RAMWatt @ 50%": "25,60", + "RAMWatt @ 100%": "38,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "7,5", + "Instance @ Idle": "24,7", + "Instance @ 10%": "38,6", + "Instance @ 50%": "61,3", + "Instance @ 100%": "84,1", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "db.m6g.8xlarge", + "Release Date": "December 2019", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "8,71", + "PkgWatt @ 10%": "23,87", + "PkgWatt @ 50%": "56,42", + "PkgWatt @ 100%": "76,39", + "RAMWatt @ Idle": "25,60", + "RAMWatt @ 10%": "38,40", + "RAMWatt @ 50%": "51,20", + "RAMWatt @ 100%": "76,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "15,0", + "Instance @ Idle": "49,3", + "Instance @ 10%": "77,3", + "Instance @ 50%": "122,6", + "Instance @ 100%": "168,2", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "db.m6g.12xlarge", + "Release Date": "December 2019", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "192", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "13,06", + "PkgWatt @ 10%": "35,80", + "PkgWatt @ 50%": "84,63", + "PkgWatt @ 100%": "114,59", + "RAMWatt @ Idle": "38,40", + "RAMWatt @ 10%": "57,60", + "RAMWatt @ 50%": "76,80", + "RAMWatt @ 100%": "115,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "22,5", + "Instance @ Idle": "74,0", + "Instance @ 10%": "115,9", + "Instance @ 50%": "183,9", + "Instance @ 100%": "252,3", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "db.m6g.16xlarge", + "Release Date": "December 2019", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "256", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "17,42", + "PkgWatt @ 10%": "47,74", + "PkgWatt @ 50%": "112,84", + "PkgWatt @ 100%": "152,78", + "RAMWatt @ Idle": "51,20", + "RAMWatt @ 10%": "76,80", + "RAMWatt @ 50%": "102,40", + "RAMWatt @ 100%": "153,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "30,0", + "Instance @ Idle": "98,6", + "Instance @ 10%": "154,5", + "Instance @ 50%": "245,2", + "Instance @ 100%": "336,4", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "db.m5.large", + "Release Date": "November 2017", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,14", + "PkgWatt @ 10%": "2,87", + "PkgWatt @ 50%": "6,39", + "PkgWatt @ 100%": "9,28", + "RAMWatt @ Idle": "1,24", + "RAMWatt @ 10%": "2,06", + "RAMWatt @ 50%": "3,69", + "RAMWatt @ 100%": "5,31", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,8", + "Instance @ Idle": "4,1", + "Instance @ 10%": "6,7", + "Instance @ 50%": "11,8", + "Instance @ 100%": "16,3", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "db.m5.xlarge", + "Release Date": "November 2017", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,28", + "PkgWatt @ 10%": "5,75", + "PkgWatt @ 50%": "12,79", + "PkgWatt @ 100%": "18,56", + "RAMWatt @ Idle": "2,49", + "RAMWatt @ 10%": "4,12", + "RAMWatt @ 50%": "7,37", + "RAMWatt @ 100%": "10,62", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,5", + "Instance @ Idle": "8,3", + "Instance @ 10%": "13,4", + "Instance @ 50%": "23,7", + "Instance @ 100%": "32,7", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "db.m5.2xlarge", + "Release Date": "November 2017", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,56", + "PkgWatt @ 10%": "11,49", + "PkgWatt @ 50%": "25,58", + "PkgWatt @ 100%": "37,12", + "RAMWatt @ Idle": "4,98", + "RAMWatt @ 10%": "8,24", + "RAMWatt @ 50%": "14,74", + "RAMWatt @ 100%": "21,25", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "7,0", + "Instance @ Idle": "16,5", + "Instance @ 10%": "26,7", + "Instance @ 50%": "47,3", + "Instance @ 100%": "65,4", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "db.m5.4xlarge", + "Release Date": "November 2017", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "9,12", + "PkgWatt @ 10%": "22,99", + "PkgWatt @ 50%": "51,16", + "PkgWatt @ 100%": "74,23", + "RAMWatt @ Idle": "9,95", + "RAMWatt @ 10%": "16,47", + "RAMWatt @ 50%": "29,48", + "RAMWatt @ 100%": "42,49", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "14,0", + "Instance @ Idle": "33,1", + "Instance @ 10%": "53,5", + "Instance @ 50%": "94,6", + "Instance @ 100%": "130,7", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "db.m5.8xlarge", + "Release Date": "June 2019", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "18,24", + "PkgWatt @ 10%": "45,97", + "PkgWatt @ 50%": "102,31", + "PkgWatt @ 100%": "148,46", + "RAMWatt @ Idle": "19,91", + "RAMWatt @ 10%": "32,94", + "RAMWatt @ 50%": "58,96", + "RAMWatt @ 100%": "84,98", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "28,0", + "Instance @ Idle": "66,1", + "Instance @ 10%": "106,9", + "Instance @ 50%": "189,3", + "Instance @ 100%": "261,4", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "db.m5.12xlarge", + "Release Date": "November 2017", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "192", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "27,36", + "PkgWatt @ 10%": "68,96", + "PkgWatt @ 50%": "153,47", + "PkgWatt @ 100%": "222,69", + "RAMWatt @ Idle": "29,86", + "RAMWatt @ 10%": "49,42", + "RAMWatt @ 50%": "88,45", + "RAMWatt @ 100%": "127,48", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "42,0", + "Instance @ Idle": "99,2", + "Instance @ 10%": "160,4", + "Instance @ 50%": "283,9", + "Instance @ 100%": "392,2", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "db.m5.16xlarge", + "Release Date": "June 2019", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "256", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "36,47", + "PkgWatt @ 10%": "91,95", + "PkgWatt @ 50%": "204,62", + "PkgWatt @ 100%": "296,92", + "RAMWatt @ Idle": "39,81", + "RAMWatt @ 10%": "65,89", + "RAMWatt @ 50%": "117,93", + "RAMWatt @ 100%": "169,97", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "56,0", + "Instance @ Idle": "132,3", + "Instance @ 10%": "213,8", + "Instance @ 50%": "378,5", + "Instance @ 100%": "522,9", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "db.m5.24xlarge", + "Release Date": "November 2017", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8259CL", + "Instance Memory (in GB)": "384", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "54,71", + "PkgWatt @ 10%": "137,92", + "PkgWatt @ 50%": "306,93", + "PkgWatt @ 100%": "445,38", + "RAMWatt @ Idle": "59,72", + "RAMWatt @ 10%": "98,83", + "RAMWatt @ 50%": "176,89", + "RAMWatt @ 100%": "254,95", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "84,0", + "Instance @ Idle": "198,4", + "Instance @ 10%": "320,8", + "Instance @ 50%": "567,8", + "Instance @ 100%": "784,3", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8175M" + }, + { + "Instance type": "db.m4.large", + "Release Date": "June 2015", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,97", + "PkgWatt @ 10%": "2,77", + "PkgWatt @ 50%": "5,71", + "PkgWatt @ 100%": "7,81", + "RAMWatt @ Idle": "1,60", + "RAMWatt @ 10%": "2,40", + "RAMWatt @ 50%": "3,20", + "RAMWatt @ 100%": "4,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,6", + "Instance @ Idle": "4,2", + "Instance @ 10%": "6,8", + "Instance @ 50%": "10,5", + "Instance @ 100%": "14,2", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)" + }, + { + "Instance type": "db.m4.xlarge", + "Release Date": "June 2015", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,94", + "PkgWatt @ 10%": "5,55", + "PkgWatt @ 50%": "11,41", + "PkgWatt @ 100%": "15,62", + "RAMWatt @ Idle": "3,20", + "RAMWatt @ 10%": "4,80", + "RAMWatt @ 50%": "6,40", + "RAMWatt @ 100%": "9,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,2", + "Instance @ Idle": "8,4", + "Instance @ 10%": "13,6", + "Instance @ 50%": "21,0", + "Instance @ 100%": "28,4", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)" + }, + { + "Instance type": "db.m4.2xlarge", + "Release Date": "June 2015", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "3,89", + "PkgWatt @ 10%": "11,10", + "PkgWatt @ 50%": "22,82", + "PkgWatt @ 100%": "31,24", + "RAMWatt @ Idle": "6,40", + "RAMWatt @ 10%": "9,60", + "RAMWatt @ 50%": "12,80", + "RAMWatt @ 100%": "19,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "6,4", + "Instance @ Idle": "16,7", + "Instance @ 10%": "27,1", + "Instance @ 50%": "42,1", + "Instance @ 100%": "56,9", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)" + }, + { + "Instance type": "db.m4.4xlarge", + "Release Date": "June 2015", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "7,77", + "PkgWatt @ 10%": "22,19", + "PkgWatt @ 50%": "45,64", + "PkgWatt @ 100%": "62,47", + "RAMWatt @ Idle": "12,80", + "RAMWatt @ 10%": "19,20", + "RAMWatt @ 50%": "25,60", + "RAMWatt @ 100%": "38,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "12,9", + "Instance @ Idle": "33,5", + "Instance @ 10%": "54,3", + "Instance @ 50%": "84,1", + "Instance @ 100%": "113,8", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)" + }, + { + "Instance type": "db.m4.10xlarge", + "Release Date": "June 2015", + "Instance vCPU": "40", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon E5-2676 v3", + "Instance Memory (in GB)": "160", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "24,12", + "PkgWatt @ 10%": "68,87", + "PkgWatt @ 50%": "141,65", + "PkgWatt @ 100%": "193,88", + "RAMWatt @ Idle": "32,00", + "RAMWatt @ 10%": "48,00", + "RAMWatt @ 50%": "64,00", + "RAMWatt @ 100%": "96,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "40,0", + "Instance @ Idle": "96,1", + "Instance @ 10%": "156,9", + "Instance @ 50%": "245,6", + "Instance @ 100%": "329,9", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)" + }, + { + "Instance type": "db.m4.16xlarge", + "Release Date": "September 2016", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "256", + "Platform Memory (in GB)": "256", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "31,09", + "PkgWatt @ 10%": "88,76", + "PkgWatt @ 50%": "182,57", + "PkgWatt @ 100%": "249,90", + "RAMWatt @ Idle": "51,20", + "RAMWatt @ 10%": "76,80", + "RAMWatt @ 50%": "102,40", + "RAMWatt @ 100%": "153,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "51,6", + "Instance @ Idle": "133,8", + "Instance @ 10%": "217,1", + "Instance @ 50%": "336,5", + "Instance @ 100%": "455,1", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 (Broadwell) or 2.4 GHz Intel Xeon E5-2676 v3 (Haswell)" + }, + { + "Instance type": "db.m3.medium", + "Release Date": "January 2014", + "Instance vCPU": "1", + "Platform Total Number of vCPU": "32", + "Platform CPU Name": "Xeon E5-2670", + "Instance Memory (in GB)": "3.75", + "Platform Memory (in GB)": "240", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,87", + "PkgWatt @ 10%": "2,47", + "PkgWatt @ 50%": "5,09", + "PkgWatt @ 100%": "6,97", + "RAMWatt @ Idle": "0,75", + "RAMWatt @ 10%": "1,13", + "RAMWatt @ 50%": "1,50", + "RAMWatt @ 100%": "2,25", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,4", + "Instance @ Idle": "3,1", + "Instance @ 10%": "5,0", + "Instance @ 50%": "8,0", + "Instance @ 100%": "10,7", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2670 (Sandy Bridge or Ivy Bridge) processors" + }, + { + "Instance type": "db.m3.large", + "Release Date": "January 2014", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "32", + "Platform CPU Name": "Xeon E5-2670", + "Instance Memory (in GB)": "7.5", + "Platform Memory (in GB)": "240", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,73", + "PkgWatt @ 10%": "4,95", + "PkgWatt @ 50%": "10,18", + "PkgWatt @ 100%": "13,94", + "RAMWatt @ Idle": "1,50", + "RAMWatt @ 10%": "2,25", + "RAMWatt @ 50%": "3,00", + "RAMWatt @ 100%": "4,50", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,9", + "Instance @ Idle": "6,1", + "Instance @ 10%": "10,1", + "Instance @ 50%": "16,1", + "Instance @ 100%": "21,3", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2670 (Sandy Bridge or Ivy Bridge) processors" + }, + { + "Instance type": "db.m3.xlarge", + "Release Date": "October 2012", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "32", + "Platform CPU Name": "Xeon E5-2670", + "Instance Memory (in GB)": "15", + "Platform Memory (in GB)": "240", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "3,47", + "PkgWatt @ 10%": "9,90", + "PkgWatt @ 50%": "20,36", + "PkgWatt @ 100%": "27,87", + "RAMWatt @ Idle": "3,00", + "RAMWatt @ 10%": "4,50", + "RAMWatt @ 50%": "6,00", + "RAMWatt @ 100%": "9,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "5,8", + "Instance @ Idle": "12,2", + "Instance @ 10%": "20,1", + "Instance @ 50%": "32,1", + "Instance @ 100%": "42,6", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2670 (Sandy Bridge or Ivy Bridge) processors" + }, + { + "Instance type": "db.m3.2xlarge", + "Release Date": "October 2012", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "32", + "Platform CPU Name": "Xeon E5-2670", + "Instance Memory (in GB)": "30", + "Platform Memory (in GB)": "240", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "6,94", + "PkgWatt @ 10%": "19,80", + "PkgWatt @ 50%": "40,72", + "PkgWatt @ 100%": "55,74", + "RAMWatt @ Idle": "6,00", + "RAMWatt @ 10%": "9,00", + "RAMWatt @ 50%": "12,00", + "RAMWatt @ 100%": "18,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "11,5", + "Instance @ Idle": "24,4", + "Instance @ 10%": "40,3", + "Instance @ 50%": "64,2", + "Instance @ 100%": "85,2", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon E5-2670 (Sandy Bridge or Ivy Bridge) processors" + }, + { + "Instance type": "db.m1.small", + "Release Date": "August 2006", + "Instance vCPU": "1", + "Platform Total Number of vCPU": "32", + "Platform CPU Name": "Xeon E5-2650", + "Instance Memory (in GB)": "1.7", + "Platform Memory (in GB)": "120", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,72", + "PkgWatt @ 10%": "2,04", + "PkgWatt @ 50%": "4,21", + "PkgWatt @ 100%": "5,76", + "RAMWatt @ Idle": "0,34", + "RAMWatt @ 10%": "0,51", + "RAMWatt @ 50%": "0,68", + "RAMWatt @ 100%": "1,02", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,2", + "Instance @ Idle": "2,2", + "Instance @ 10%": "3,7", + "Instance @ 50%": "6,1", + "Instance @ 100%": "8,0", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "db.m1.medium", + "Release Date": "March 2012", + "Instance vCPU": "1", + "Platform Total Number of vCPU": "32", + "Platform CPU Name": "Xeon E5-2650", + "Instance Memory (in GB)": "3.75", + "Platform Memory (in GB)": "120", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,72", + "PkgWatt @ 10%": "2,04", + "PkgWatt @ 50%": "4,21", + "PkgWatt @ 100%": "5,76", + "RAMWatt @ Idle": "0,75", + "RAMWatt @ 10%": "1,13", + "RAMWatt @ 50%": "1,50", + "RAMWatt @ 100%": "2,25", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,2", + "Instance @ Idle": "2,7", + "Instance @ 10%": "4,4", + "Instance @ 50%": "6,9", + "Instance @ 100%": "9,2", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "db.m1.large", + "Release Date": "October 2007", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "32", + "Platform CPU Name": "Xeon E5-2650", + "Instance Memory (in GB)": "7.5", + "Platform Memory (in GB)": "120", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,43", + "PkgWatt @ 10%": "4,09", + "PkgWatt @ 50%": "8,41", + "PkgWatt @ 100%": "11,51", + "RAMWatt @ Idle": "1,50", + "RAMWatt @ 10%": "2,25", + "RAMWatt @ 50%": "3,00", + "RAMWatt @ 100%": "4,50", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,4", + "Instance @ Idle": "5,3", + "Instance @ 10%": "8,7", + "Instance @ 50%": "13,8", + "Instance @ 100%": "18,4", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "db.m1.xlarge", + "Release Date": "October 2007", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "32", + "Platform CPU Name": "Xeon E5-2650", + "Instance Memory (in GB)": "15", + "Platform Memory (in GB)": "120", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,86", + "PkgWatt @ 10%": "8,18", + "PkgWatt @ 50%": "16,82", + "PkgWatt @ 100%": "23,02", + "RAMWatt @ Idle": "3,00", + "RAMWatt @ 10%": "4,50", + "RAMWatt @ 50%": "6,00", + "RAMWatt @ 100%": "9,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "4,8", + "Instance @ Idle": "10,6", + "Instance @ 10%": "17,4", + "Instance @ 50%": "27,6", + "Instance @ 100%": "36,8", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "db.z1d.12xlarge", + "Release Date": "July 2018", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon Platinum 8151", + "Instance Memory (in GB)": "384", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "48,00", + "PkgWatt @ 10%": "148,00", + "PkgWatt @ 50%": "361,00", + "PkgWatt @ 100%": "441,00", + "RAMWatt @ Idle": "50,00", + "RAMWatt @ 10%": "92,00", + "RAMWatt @ 50%": "174,00", + "RAMWatt @ 100%": "256,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "96,0", + "Instance @ Idle": "194,0", + "Instance @ 10%": "336,0", + "Instance @ 50%": "631,0", + "Instance @ 100%": "793,0", + "Hardware Information on AWS Documentation & Comments": "Up to 4.0 GHz Intel Xeon Scalable Processors" + }, + { + "Instance type": "db.z1d.large", + "Release Date": "July 2018", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon Platinum 8151", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,00", + "PkgWatt @ 10%": "6,17", + "PkgWatt @ 50%": "15,04", + "PkgWatt @ 100%": "18,38", + "RAMWatt @ Idle": "2,08", + "RAMWatt @ 10%": "3,83", + "RAMWatt @ 50%": "7,25", + "RAMWatt @ 100%": "10,67", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "4,0", + "Instance @ Idle": "8,1", + "Instance @ 10%": "14,0", + "Instance @ 50%": "26,3", + "Instance @ 100%": "33,0", + "Hardware Information on AWS Documentation & Comments": "Up to 4.0 GHz Intel Xeon Scalable Processors" + }, + { + "Instance type": "db.z1d.xlarge", + "Release Date": "July 2018", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon Platinum 8151", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,00", + "PkgWatt @ 10%": "12,33", + "PkgWatt @ 50%": "30,08", + "PkgWatt @ 100%": "36,75", + "RAMWatt @ Idle": "4,17", + "RAMWatt @ 10%": "7,67", + "RAMWatt @ 50%": "14,50", + "RAMWatt @ 100%": "21,33", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "8,0", + "Instance @ Idle": "16,2", + "Instance @ 10%": "28,0", + "Instance @ 50%": "52,6", + "Instance @ 100%": "66,1", + "Hardware Information on AWS Documentation & Comments": "Up to 4.0 GHz Intel Xeon Scalable Processors" + }, + { + "Instance type": "db.z1d.2xlarge", + "Release Date": "July 2018", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon Platinum 8151", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "8,00", + "PkgWatt @ 10%": "24,67", + "PkgWatt @ 50%": "60,17", + "PkgWatt @ 100%": "73,50", + "RAMWatt @ Idle": "8,33", + "RAMWatt @ 10%": "15,33", + "RAMWatt @ 50%": "29,00", + "RAMWatt @ 100%": "42,67", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "16,0", + "Instance @ Idle": "32,3", + "Instance @ 10%": "56,0", + "Instance @ 50%": "105,2", + "Instance @ 100%": "132,2", + "Hardware Information on AWS Documentation & Comments": "Up to 4.0 GHz Intel Xeon Scalable Processors" + }, + { + "Instance type": "db.z1d.3xlarge", + "Release Date": "July 2018", + "Instance vCPU": "12", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon Platinum 8151", + "Instance Memory (in GB)": "96", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "12,00", + "PkgWatt @ 10%": "37,00", + "PkgWatt @ 50%": "90,25", + "PkgWatt @ 100%": "110,25", + "RAMWatt @ Idle": "12,50", + "RAMWatt @ 10%": "23,00", + "RAMWatt @ 50%": "43,50", + "RAMWatt @ 100%": "64,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "24,0", + "Instance @ Idle": "48,5", + "Instance @ 10%": "84,0", + "Instance @ 50%": "157,8", + "Instance @ 100%": "198,3", + "Hardware Information on AWS Documentation & Comments": "Up to 4.0 GHz Intel Xeon Scalable Processors" + }, + { + "Instance type": "db.z1d.6xlarge", + "Release Date": "July 2018", + "Instance vCPU": "24", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon Platinum 8151", + "Instance Memory (in GB)": "192", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "24,00", + "PkgWatt @ 10%": "74,00", + "PkgWatt @ 50%": "180,50", + "PkgWatt @ 100%": "220,50", + "RAMWatt @ Idle": "25,00", + "RAMWatt @ 10%": "46,00", + "RAMWatt @ 50%": "87,00", + "RAMWatt @ 100%": "128,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "48,0", + "Instance @ Idle": "97,0", + "Instance @ 10%": "168,0", + "Instance @ 50%": "315,5", + "Instance @ 100%": "396,5", + "Hardware Information on AWS Documentation & Comments": "Up to 4.0 GHz Intel Xeon Scalable Processors" + }, + { + "Instance type": "db.x1e.xlarge", + "Release Date": "November 2017", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "128", + "Platform CPU Name": "Xeon E7-8880 v3", + "Instance Memory (in GB)": "122", + "Platform Memory (in GB)": "3904", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,26", + "PkgWatt @ 10%": "6,46", + "PkgWatt @ 50%": "13,28", + "PkgWatt @ 100%": "18,18", + "RAMWatt @ Idle": "24,40", + "RAMWatt @ 10%": "36,60", + "RAMWatt @ 50%": "48,80", + "RAMWatt @ 100%": "73,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,8", + "Instance @ Idle": "30,4", + "Instance @ 10%": "46,8", + "Instance @ 50%": "65,8", + "Instance @ 100%": "95,1", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E7-8880 v3 Processor (Haswell)" + }, + { + "Instance type": "db.x1e.2xlarge", + "Release Date": "November 2017", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "128", + "Platform CPU Name": "Xeon E7-8880 v3", + "Instance Memory (in GB)": "244", + "Platform Memory (in GB)": "3904", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,52", + "PkgWatt @ 10%": "12,91", + "PkgWatt @ 50%": "26,56", + "PkgWatt @ 100%": "36,35", + "RAMWatt @ Idle": "48,80", + "RAMWatt @ 10%": "73,20", + "RAMWatt @ 50%": "97,60", + "RAMWatt @ 100%": "146,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "7,5", + "Instance @ Idle": "60,8", + "Instance @ 10%": "93,6", + "Instance @ 50%": "131,7", + "Instance @ 100%": "190,3", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E7-8880 v3 Processor (Haswell)" + }, + { + "Instance type": "db.x1e.4xlarge", + "Release Date": "November 2017", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "128", + "Platform CPU Name": "Xeon E7-8880 v3", + "Instance Memory (in GB)": "488", + "Platform Memory (in GB)": "3904", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "9,05", + "PkgWatt @ 10%": "25,83", + "PkgWatt @ 50%": "53,12", + "PkgWatt @ 100%": "72,71", + "RAMWatt @ Idle": "97,60", + "RAMWatt @ 10%": "146,40", + "RAMWatt @ 50%": "195,20", + "RAMWatt @ 100%": "292,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "15,0", + "Instance @ Idle": "121,6", + "Instance @ 10%": "187,2", + "Instance @ 50%": "263,3", + "Instance @ 100%": "380,5", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E7-8880 v3 Processor (Haswell)" + }, + { + "Instance type": "db.x1e.8xlarge", + "Release Date": "November 2017", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "128", + "Platform CPU Name": "Xeon E7-8880 v3", + "Instance Memory (in GB)": "976", + "Platform Memory (in GB)": "3904", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "18,09", + "PkgWatt @ 10%": "51,65", + "PkgWatt @ 50%": "106,24", + "PkgWatt @ 100%": "145,41", + "RAMWatt @ Idle": "195,20", + "RAMWatt @ 10%": "292,80", + "RAMWatt @ 50%": "390,40", + "RAMWatt @ 100%": "585,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "30,0", + "Instance @ Idle": "243,3", + "Instance @ 10%": "374,5", + "Instance @ 50%": "526,6", + "Instance @ 100%": "761,0", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E7-8880 v3 Processor (Haswell)" + }, + { + "Instance type": "db.x1e.16xlarge", + "Release Date": "November 2017", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "128", + "Platform CPU Name": "Xeon E7-8880 v3", + "Instance Memory (in GB)": "1952", + "Platform Memory (in GB)": "3904", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "36,19", + "PkgWatt @ 10%": "103,30", + "PkgWatt @ 50%": "212,47", + "PkgWatt @ 100%": "290,83", + "RAMWatt @ Idle": "390,40", + "RAMWatt @ 10%": "585,60", + "RAMWatt @ 50%": "780,80", + "RAMWatt @ 100%": "1171,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "60,0", + "Instance @ Idle": "486,6", + "Instance @ 10%": "748,9", + "Instance @ 50%": "1053,3", + "Instance @ 100%": "1522,0", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E7-8880 v3 Processor (Haswell)" + }, + { + "Instance type": "db.x1e.32xlarge", + "Release Date": "September 2017", + "Instance vCPU": "128", + "Platform Total Number of vCPU": "128", + "Platform CPU Name": "Xeon E7-8880 v3", + "Instance Memory (in GB)": "3904", + "Platform Memory (in GB)": "3904", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "72,37", + "PkgWatt @ 10%": "206,61", + "PkgWatt @ 50%": "424,94", + "PkgWatt @ 100%": "581,65", + "RAMWatt @ Idle": "780,80", + "RAMWatt @ 10%": "1171,20", + "RAMWatt @ 50%": "1561,60", + "RAMWatt @ 100%": "2342,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "120,0", + "Instance @ Idle": "973,2", + "Instance @ 10%": "1497,8", + "Instance @ 50%": "2106,5", + "Instance @ 100%": "3044,1", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E7-8880 v3 Processor (Haswell)" + }, + { + "Instance type": "db.x1.32xlarge", + "Release Date": "May 2016", + "Instance vCPU": "128", + "Platform Total Number of vCPU": "128", + "Platform CPU Name": "Xeon E7-8880 v3", + "Instance Memory (in GB)": "1952", + "Platform Memory (in GB)": "1952", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "72,37", + "PkgWatt @ 10%": "206,61", + "PkgWatt @ 50%": "424,94", + "PkgWatt @ 100%": "581,65", + "RAMWatt @ Idle": "390,40", + "RAMWatt @ 10%": "585,60", + "RAMWatt @ 50%": "780,80", + "RAMWatt @ 100%": "1171,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "120,0", + "Instance @ Idle": "582,8", + "Instance @ 10%": "912,2", + "Instance @ 50%": "1325,7", + "Instance @ 100%": "1872,9", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E7-8880 v3 Processor (Haswell)" + }, + { + "Instance type": "db.x1.16xlarge", + "Release Date": "October 2016", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "128", + "Platform CPU Name": "Xeon E7-8880 v3", + "Instance Memory (in GB)": "976", + "Platform Memory (in GB)": "1952", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "36,19", + "PkgWatt @ 10%": "103,30", + "PkgWatt @ 50%": "212,47", + "PkgWatt @ 100%": "290,83", + "RAMWatt @ Idle": "195,20", + "RAMWatt @ 10%": "292,80", + "RAMWatt @ 50%": "390,40", + "RAMWatt @ 100%": "585,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "60,0", + "Instance @ Idle": "291,4", + "Instance @ 10%": "456,1", + "Instance @ 50%": "662,9", + "Instance @ 100%": "936,4", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E7-8880 v3 Processor (Haswell)" + }, + { + "Instance type": "db.r6g.large", + "Release Date": "December 2019", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,54", + "PkgWatt @ 10%": "1,49", + "PkgWatt @ 50%": "3,53", + "PkgWatt @ 100%": "4,77", + "RAMWatt @ Idle": "3,20", + "RAMWatt @ 10%": "4,80", + "RAMWatt @ 50%": "6,40", + "RAMWatt @ 100%": "9,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "0,9", + "Instance @ Idle": "4,7", + "Instance @ 10%": "7,2", + "Instance @ 50%": "10,9", + "Instance @ 100%": "15,3", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "db.r6g.xlarge", + "Release Date": "December 2019", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,09", + "PkgWatt @ 10%": "2,98", + "PkgWatt @ 50%": "7,05", + "PkgWatt @ 100%": "9,55", + "RAMWatt @ Idle": "6,40", + "RAMWatt @ 10%": "9,60", + "RAMWatt @ 50%": "12,80", + "RAMWatt @ 100%": "19,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,9", + "Instance @ Idle": "9,4", + "Instance @ 10%": "14,5", + "Instance @ 50%": "21,7", + "Instance @ 100%": "30,6", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "db.r6g.2xlarge", + "Release Date": "December 2019", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,18", + "PkgWatt @ 10%": "5,97", + "PkgWatt @ 50%": "14,10", + "PkgWatt @ 100%": "19,10", + "RAMWatt @ Idle": "12,80", + "RAMWatt @ 10%": "19,20", + "RAMWatt @ 50%": "25,60", + "RAMWatt @ 100%": "38,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,8", + "Instance @ Idle": "18,7", + "Instance @ 10%": "28,9", + "Instance @ 50%": "43,5", + "Instance @ 100%": "61,2", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "db.r6g.4xlarge", + "Release Date": "December 2019", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,35", + "PkgWatt @ 10%": "11,93", + "PkgWatt @ 50%": "28,21", + "PkgWatt @ 100%": "38,20", + "RAMWatt @ Idle": "25,60", + "RAMWatt @ 10%": "38,40", + "RAMWatt @ 50%": "51,20", + "RAMWatt @ 100%": "76,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "7,5", + "Instance @ Idle": "37,5", + "Instance @ 10%": "57,8", + "Instance @ 50%": "86,9", + "Instance @ 100%": "122,5", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "db.r6g.12xlarge", + "Release Date": "December 2019", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "384", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "13,06", + "PkgWatt @ 10%": "35,80", + "PkgWatt @ 50%": "84,63", + "PkgWatt @ 100%": "114,59", + "RAMWatt @ Idle": "76,80", + "RAMWatt @ 10%": "115,20", + "RAMWatt @ 50%": "153,60", + "RAMWatt @ 100%": "230,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "22,5", + "Instance @ Idle": "112,4", + "Instance @ 10%": "173,5", + "Instance @ 50%": "260,7", + "Instance @ 100%": "367,5", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "db.r6g.16xlarge", + "Release Date": "December 2019", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "64", + "Platform CPU Name": "Graviton2", + "Instance Memory (in GB)": "512", + "Platform Memory (in GB)": "512", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "17,42", + "PkgWatt @ 10%": "47,74", + "PkgWatt @ 50%": "112,84", + "PkgWatt @ 100%": "152,78", + "RAMWatt @ Idle": "102,40", + "RAMWatt @ 10%": "153,60", + "RAMWatt @ 50%": "204,80", + "RAMWatt @ 100%": "307,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "30,0", + "Instance @ Idle": "149,8", + "Instance @ 10%": "231,3", + "Instance @ 50%": "347,6", + "Instance @ 100%": "490,0", + "Hardware Information on AWS Documentation & Comments": "AWS Graviton2 (ARM)" + }, + { + "Instance type": "db.r5.large", + "Release Date": "July 2018", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,21", + "PkgWatt @ 10%": "3,05", + "PkgWatt @ 50%": "7,16", + "PkgWatt @ 100%": "9,96", + "RAMWatt @ Idle": "2,41", + "RAMWatt @ 10%": "3,85", + "RAMWatt @ 50%": "9,92", + "RAMWatt @ 100%": "15,99", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,0", + "Instance @ Idle": "5,6", + "Instance @ 10%": "8,9", + "Instance @ 50%": "19,1", + "Instance @ 100%": "27,9", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "db.r5.xlarge", + "Release Date": "July 2018", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,41", + "PkgWatt @ 10%": "6,11", + "PkgWatt @ 50%": "14,32", + "PkgWatt @ 100%": "19,92", + "RAMWatt @ Idle": "4,82", + "RAMWatt @ 10%": "7,70", + "RAMWatt @ 50%": "19,84", + "RAMWatt @ 100%": "31,98", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "4,0", + "Instance @ Idle": "11,2", + "Instance @ 10%": "17,8", + "Instance @ 50%": "38,2", + "Instance @ 100%": "55,9", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "db.r5.2xlarge", + "Release Date": "July 2018", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "64", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,82", + "PkgWatt @ 10%": "12,22", + "PkgWatt @ 50%": "28,64", + "PkgWatt @ 100%": "39,83", + "RAMWatt @ Idle": "9,64", + "RAMWatt @ 10%": "15,40", + "RAMWatt @ 50%": "39,68", + "RAMWatt @ 100%": "63,97", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "8,0", + "Instance @ Idle": "22,5", + "Instance @ 10%": "35,6", + "Instance @ 50%": "76,3", + "Instance @ 100%": "111,8", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "db.r5.4xlarge", + "Release Date": "July 2018", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "128", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "9,65", + "PkgWatt @ 10%": "24,44", + "PkgWatt @ 50%": "57,28", + "PkgWatt @ 100%": "79,66", + "RAMWatt @ Idle": "19,27", + "RAMWatt @ 10%": "30,80", + "RAMWatt @ 50%": "79,37", + "RAMWatt @ 100%": "127,94", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "16,0", + "Instance @ Idle": "44,9", + "Instance @ 10%": "71,2", + "Instance @ 50%": "152,7", + "Instance @ 100%": "223,6", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "db.r5.8xlarge", + "Release Date": "June 2019", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "256", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "19,29", + "PkgWatt @ 10%": "48,88", + "PkgWatt @ 50%": "114,57", + "PkgWatt @ 100%": "159,33", + "RAMWatt @ Idle": "38,54", + "RAMWatt @ 10%": "61,59", + "RAMWatt @ 50%": "158,73", + "RAMWatt @ 100%": "255,87", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "32,0", + "Instance @ Idle": "89,8", + "Instance @ 10%": "142,5", + "Instance @ 50%": "305,3", + "Instance @ 100%": "447,2", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "db.r5.12xlarge", + "Release Date": "July 2018", + "Instance vCPU": "48", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "384", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "28,94", + "PkgWatt @ 10%": "73,32", + "PkgWatt @ 50%": "171,85", + "PkgWatt @ 100%": "238,99", + "RAMWatt @ Idle": "57,81", + "RAMWatt @ 10%": "92,39", + "RAMWatt @ 50%": "238,10", + "RAMWatt @ 100%": "383,81", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "48,0", + "Instance @ Idle": "134,8", + "Instance @ 10%": "213,7", + "Instance @ 50%": "458,0", + "Instance @ 100%": "670,8", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "db.r5.16xlarge", + "Release Date": "June 2019", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "512", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "38,59", + "PkgWatt @ 10%": "97,75", + "PkgWatt @ 50%": "229,13", + "PkgWatt @ 100%": "318,65", + "RAMWatt @ Idle": "77,08", + "RAMWatt @ 10%": "123,19", + "RAMWatt @ 50%": "317,47", + "RAMWatt @ 100%": "511,75", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "64,0", + "Instance @ Idle": "179,7", + "Instance @ 10%": "284,9", + "Instance @ 50%": "610,6", + "Instance @ 100%": "894,4", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "db.r5.24xlarge", + "Release Date": "July 2018", + "Instance vCPU": "96", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "768", + "Platform Memory (in GB)": "768", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "57,88", + "PkgWatt @ 10%": "146,63", + "PkgWatt @ 50%": "343,70", + "PkgWatt @ 100%": "477,98", + "RAMWatt @ Idle": "115,62", + "RAMWatt @ 10%": "184,78", + "RAMWatt @ 50%": "476,20", + "RAMWatt @ 100%": "767,62", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "96,0", + "Instance @ Idle": "269,5", + "Instance @ 10%": "427,4", + "Instance @ 50%": "915,9", + "Instance @ 100%": "1341,6", + "Hardware Information on AWS Documentation & Comments": "Up to 3.1 GHz Intel Xeon Platinum 8000 series processors (Skylake-SP or Cascade Lake)" + }, + { + "Instance type": "db.r4.large", + "Release Date": "November 2016", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "15.25", + "Platform Memory (in GB)": "488", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,97", + "PkgWatt @ 10%": "2,77", + "PkgWatt @ 50%": "5,71", + "PkgWatt @ 100%": "7,81", + "RAMWatt @ Idle": "3,05", + "RAMWatt @ 10%": "4,58", + "RAMWatt @ 50%": "6,10", + "RAMWatt @ 100%": "9,15", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,6", + "Instance @ Idle": "5,6", + "Instance @ 10%": "9,0", + "Instance @ 50%": "13,4", + "Instance @ 100%": "18,6", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor" + }, + { + "Instance type": "db.r4.xlarge", + "Release Date": "November 2016", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "30.5", + "Platform Memory (in GB)": "488", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,94", + "PkgWatt @ 10%": "5,55", + "PkgWatt @ 50%": "11,41", + "PkgWatt @ 100%": "15,62", + "RAMWatt @ Idle": "6,10", + "RAMWatt @ 10%": "9,15", + "RAMWatt @ 50%": "12,20", + "RAMWatt @ 100%": "18,30", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "3,2", + "Instance @ Idle": "11,3", + "Instance @ 10%": "17,9", + "Instance @ 50%": "26,8", + "Instance @ 100%": "37,1", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor" + }, + { + "Instance type": "db.r4.2xlarge", + "Release Date": "November 2016", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "61", + "Platform Memory (in GB)": "488", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "3,89", + "PkgWatt @ 10%": "11,10", + "PkgWatt @ 50%": "22,82", + "PkgWatt @ 100%": "31,24", + "RAMWatt @ Idle": "12,20", + "RAMWatt @ 10%": "18,30", + "RAMWatt @ 50%": "24,40", + "RAMWatt @ 100%": "36,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "6,4", + "Instance @ Idle": "22,5", + "Instance @ 10%": "35,8", + "Instance @ 50%": "53,7", + "Instance @ 100%": "74,3", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor" + }, + { + "Instance type": "db.r4.4xlarge", + "Release Date": "November 2016", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "122", + "Platform Memory (in GB)": "488", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "7,77", + "PkgWatt @ 10%": "22,19", + "PkgWatt @ 50%": "45,64", + "PkgWatt @ 100%": "62,47", + "RAMWatt @ Idle": "24,40", + "RAMWatt @ 10%": "36,60", + "RAMWatt @ 50%": "48,80", + "RAMWatt @ 100%": "73,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "12,9", + "Instance @ Idle": "45,1", + "Instance @ 10%": "71,7", + "Instance @ 50%": "107,3", + "Instance @ 100%": "148,6", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor" + }, + { + "Instance type": "db.r4.8xlarge", + "Release Date": "November 2016", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "244", + "Platform Memory (in GB)": "488", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "15,55", + "PkgWatt @ 10%": "44,38", + "PkgWatt @ 50%": "91,28", + "PkgWatt @ 100%": "124,95", + "RAMWatt @ Idle": "48,80", + "RAMWatt @ 10%": "73,20", + "RAMWatt @ 50%": "97,60", + "RAMWatt @ 100%": "146,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "25,8", + "Instance @ Idle": "90,1", + "Instance @ 10%": "143,4", + "Instance @ 50%": "214,7", + "Instance @ 100%": "297,1", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor" + }, + { + "Instance type": "db.r4.16xlarge", + "Release Date": "November 2016", + "Instance vCPU": "64", + "Platform Total Number of vCPU": "72", + "Platform CPU Name": "Xeon E5-2686 v4", + "Instance Memory (in GB)": "488", + "Platform Memory (in GB)": "488", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "31,09", + "PkgWatt @ 10%": "88,76", + "PkgWatt @ 50%": "182,57", + "PkgWatt @ 100%": "249,90", + "RAMWatt @ Idle": "97,60", + "RAMWatt @ 10%": "146,40", + "RAMWatt @ 50%": "195,20", + "RAMWatt @ 100%": "292,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "51,6", + "Instance @ Idle": "180,2", + "Instance @ 10%": "286,7", + "Instance @ 50%": "429,3", + "Instance @ 100%": "594,3", + "Hardware Information on AWS Documentation & Comments": "2.3 GHz Intel Xeon E5-2686 v4 Processor" + }, + { + "Instance type": "db.r3.large", + "Release Date": "April 2014", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2670 v2", + "Instance Memory (in GB)": "15.25", + "Platform Memory (in GB)": "244", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,39", + "PkgWatt @ 10%": "3,96", + "PkgWatt @ 50%": "8,14", + "PkgWatt @ 100%": "11,15", + "RAMWatt @ Idle": "3,05", + "RAMWatt @ 10%": "4,58", + "RAMWatt @ 50%": "6,10", + "RAMWatt @ 100%": "9,15", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,3", + "Instance @ Idle": "6,7", + "Instance @ 10%": "10,8", + "Instance @ 50%": "16,5", + "Instance @ 100%": "22,6", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon Ivy Bridge Processors" + }, + { + "Instance type": "db.r3.xlarge", + "Release Date": "April 2014", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2670 v2", + "Instance Memory (in GB)": "30.5", + "Platform Memory (in GB)": "244", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,77", + "PkgWatt @ 10%": "7,92", + "PkgWatt @ 50%": "16,29", + "PkgWatt @ 100%": "22,30", + "RAMWatt @ Idle": "6,10", + "RAMWatt @ 10%": "9,15", + "RAMWatt @ 50%": "12,20", + "RAMWatt @ 100%": "18,30", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "4,6", + "Instance @ Idle": "13,5", + "Instance @ 10%": "21,7", + "Instance @ 50%": "33,1", + "Instance @ 100%": "45,2", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon Ivy Bridge Processors" + }, + { + "Instance type": "db.r3.2xlarge", + "Release Date": "April 2014", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2670 v2", + "Instance Memory (in GB)": "61", + "Platform Memory (in GB)": "244", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "5,55", + "PkgWatt @ 10%": "15,84", + "PkgWatt @ 50%": "32,58", + "PkgWatt @ 100%": "44,59", + "RAMWatt @ Idle": "12,20", + "RAMWatt @ 10%": "18,30", + "RAMWatt @ 50%": "24,40", + "RAMWatt @ 100%": "36,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "9,2", + "Instance @ Idle": "26,9", + "Instance @ 10%": "43,3", + "Instance @ 50%": "66,2", + "Instance @ 100%": "90,4", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon Ivy Bridge Processors" + }, + { + "Instance type": "db.r3.4xlarge", + "Release Date": "April 2014", + "Instance vCPU": "16", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2670 v2", + "Instance Memory (in GB)": "122", + "Platform Memory (in GB)": "244", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "11,10", + "PkgWatt @ 10%": "31,68", + "PkgWatt @ 50%": "65,16", + "PkgWatt @ 100%": "89,19", + "RAMWatt @ Idle": "24,40", + "RAMWatt @ 10%": "36,60", + "RAMWatt @ 50%": "48,80", + "RAMWatt @ 100%": "73,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "18,4", + "Instance @ Idle": "53,9", + "Instance @ 10%": "86,7", + "Instance @ 50%": "132,4", + "Instance @ 100%": "180,8", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon Ivy Bridge Processors" + }, + { + "Instance type": "db.r3.8xlarge", + "Release Date": "April 2014", + "Instance vCPU": "32", + "Platform Total Number of vCPU": "40", + "Platform CPU Name": "Xeon E5-2670 v2", + "Instance Memory (in GB)": "244", + "Platform Memory (in GB)": "244", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "22,19", + "PkgWatt @ 10%": "63,36", + "PkgWatt @ 50%": "130,32", + "PkgWatt @ 100%": "178,37", + "RAMWatt @ Idle": "48,80", + "RAMWatt @ 10%": "73,20", + "RAMWatt @ 50%": "97,60", + "RAMWatt @ 100%": "146,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "36,8", + "Instance @ Idle": "107,8", + "Instance @ 10%": "173,4", + "Instance @ 50%": "264,7", + "Instance @ 100%": "361,6", + "Hardware Information on AWS Documentation & Comments": "Intel Xeon Ivy Bridge Processors" + }, + { + "Instance type": "db.m2.xlarge", + "Release Date": "February 2010", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "32", + "Platform CPU Name": "Xeon E5-2665", + "Instance Memory (in GB)": "17.1", + "Platform Memory (in GB)": "280", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,73", + "PkgWatt @ 10%": "4,95", + "PkgWatt @ 50%": "10,18", + "PkgWatt @ 100%": "13,94", + "RAMWatt @ Idle": "3,42", + "RAMWatt @ 10%": "5,13", + "RAMWatt @ 50%": "6,84", + "RAMWatt @ 100%": "10,26", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,9", + "Instance @ Idle": "8,0", + "Instance @ 10%": "13,0", + "Instance @ 50%": "19,9", + "Instance @ 100%": "27,1", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "db.m2.2xlarge", + "Release Date": "October 2009", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "32", + "Platform CPU Name": "Xeon E5-2665", + "Instance Memory (in GB)": "34.2", + "Platform Memory (in GB)": "280", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "3,47", + "PkgWatt @ 10%": "9,90", + "PkgWatt @ 50%": "20,36", + "PkgWatt @ 100%": "27,87", + "RAMWatt @ Idle": "6,84", + "RAMWatt @ 10%": "10,26", + "RAMWatt @ 50%": "13,68", + "RAMWatt @ 100%": "20,52", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "5,8", + "Instance @ Idle": "16,1", + "Instance @ 10%": "25,9", + "Instance @ 50%": "39,8", + "Instance @ 100%": "54,1", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "db.m2.4xlarge", + "Release Date": "October 2009", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "32", + "Platform CPU Name": "Xeon E5-2665", + "Instance Memory (in GB)": "68.4", + "Platform Memory (in GB)": "280", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "6,94", + "PkgWatt @ 10%": "19,80", + "PkgWatt @ 50%": "40,72", + "PkgWatt @ 100%": "55,74", + "RAMWatt @ Idle": "13,68", + "RAMWatt @ 10%": "20,52", + "RAMWatt @ 50%": "27,36", + "RAMWatt @ 100%": "41,04", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "11,5", + "Instance @ Idle": "32,1", + "Instance @ 10%": "51,8", + "Instance @ 50%": "79,6", + "Instance @ 100%": "108,3", + "Hardware Information on AWS Documentation & Comments": "" + }, + { + "Instance type": "db.t3.micro", + "Release Date": "August 2018", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "1", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,21", + "PkgWatt @ 10%": "3,05", + "PkgWatt @ 50%": "7,16", + "PkgWatt @ 100%": "9,96", + "RAMWatt @ Idle": "0,15", + "RAMWatt @ 10%": "0,24", + "RAMWatt @ 50%": "0,62", + "RAMWatt @ 100%": "1,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,0", + "Instance @ Idle": "3,4", + "Instance @ 10%": "5,3", + "Instance @ 50%": "9,8", + "Instance @ 100%": "13,0", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor" + }, + { + "Instance type": "db.t3.small", + "Release Date": "August 2018", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "2", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,21", + "PkgWatt @ 10%": "3,05", + "PkgWatt @ 50%": "7,16", + "PkgWatt @ 100%": "9,96", + "RAMWatt @ Idle": "0,30", + "RAMWatt @ 10%": "0,48", + "RAMWatt @ 50%": "1,24", + "RAMWatt @ 100%": "2,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,0", + "Instance @ Idle": "3,5", + "Instance @ 10%": "5,5", + "Instance @ 50%": "10,4", + "Instance @ 100%": "14,0", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor" + }, + { + "Instance type": "db.t3.medium", + "Release Date": "August 2018", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "4", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,21", + "PkgWatt @ 10%": "3,05", + "PkgWatt @ 50%": "7,16", + "PkgWatt @ 100%": "9,96", + "RAMWatt @ Idle": "0,60", + "RAMWatt @ 10%": "0,96", + "RAMWatt @ 50%": "2,48", + "RAMWatt @ 100%": "4,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,0", + "Instance @ Idle": "3,8", + "Instance @ 10%": "6,0", + "Instance @ 50%": "11,6", + "Instance @ 100%": "16,0", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor" + }, + { + "Instance type": "db.t3.large", + "Release Date": "August 2018", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,21", + "PkgWatt @ 10%": "3,05", + "PkgWatt @ 50%": "7,16", + "PkgWatt @ 100%": "9,96", + "RAMWatt @ Idle": "1,20", + "RAMWatt @ 10%": "1,92", + "RAMWatt @ 50%": "4,96", + "RAMWatt @ 100%": "8,00", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,0", + "Instance @ Idle": "4,4", + "Instance @ 10%": "7,0", + "Instance @ 50%": "14,1", + "Instance @ 100%": "20,0", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor" + }, + { + "Instance type": "db.t3.xlarge", + "Release Date": "August 2018", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,41", + "PkgWatt @ 10%": "6,11", + "PkgWatt @ 50%": "14,32", + "PkgWatt @ 100%": "19,92", + "RAMWatt @ Idle": "2,41", + "RAMWatt @ 10%": "3,85", + "RAMWatt @ 50%": "9,92", + "RAMWatt @ 100%": "15,99", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "4,0", + "Instance @ Idle": "8,8", + "Instance @ 10%": "14,0", + "Instance @ 50%": "28,2", + "Instance @ 100%": "39,9", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor" + }, + { + "Instance type": "db.t3.2xlarge", + "Release Date": "August 2018", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "96", + "Platform CPU Name": "Xeon Platinum 8175M", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "384", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,82", + "PkgWatt @ 10%": "12,22", + "PkgWatt @ 50%": "28,64", + "PkgWatt @ 100%": "39,83", + "RAMWatt @ Idle": "4,82", + "RAMWatt @ 10%": "7,70", + "RAMWatt @ 50%": "19,84", + "RAMWatt @ 100%": "31,98", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "8,0", + "Instance @ Idle": "17,6", + "Instance @ 10%": "27,9", + "Instance @ 50%": "56,5", + "Instance @ 100%": "79,8", + "Hardware Information on AWS Documentation & Comments": "2.5 GHz Intel Scalable Processor" + }, + { + "Instance type": "db.t2.micro", + "Release Date": "July 2014", + "Instance vCPU": "1", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon E5-2676 v3", + "Instance Memory (in GB)": "1", + "Platform Memory (in GB)": "288", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,60", + "PkgWatt @ 10%": "1,72", + "PkgWatt @ 50%": "3,54", + "PkgWatt @ 100%": "4,85", + "RAMWatt @ Idle": "0,20", + "RAMWatt @ 10%": "0,30", + "RAMWatt @ 50%": "0,40", + "RAMWatt @ 100%": "0,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,0", + "Instance @ Idle": "1,8", + "Instance @ 10%": "3,0", + "Instance @ 50%": "4,9", + "Instance @ 100%": "6,4", + "Hardware Information on AWS Documentation & Comments": "3.3 GHz Intel Scalable Processor" + }, + { + "Instance type": "db.t2.small", + "Release Date": "July 2014", + "Instance vCPU": "1", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon E5-2676 v3", + "Instance Memory (in GB)": "2", + "Platform Memory (in GB)": "288", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "0,60", + "PkgWatt @ 10%": "1,72", + "PkgWatt @ 50%": "3,54", + "PkgWatt @ 100%": "4,85", + "RAMWatt @ Idle": "0,40", + "RAMWatt @ 10%": "0,60", + "RAMWatt @ 50%": "0,80", + "RAMWatt @ 100%": "1,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "1,0", + "Instance @ Idle": "2,0", + "Instance @ 10%": "3,3", + "Instance @ 50%": "5,3", + "Instance @ 100%": "7,0", + "Hardware Information on AWS Documentation & Comments": "3.3 GHz Intel Scalable Processor" + }, + { + "Instance type": "db.t2.medium", + "Release Date": "July 2014", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon E5-2676 v3", + "Instance Memory (in GB)": "4", + "Platform Memory (in GB)": "288", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,21", + "PkgWatt @ 10%": "3,44", + "PkgWatt @ 50%": "7,08", + "PkgWatt @ 100%": "9,69", + "RAMWatt @ Idle": "0,80", + "RAMWatt @ 10%": "1,20", + "RAMWatt @ 50%": "1,60", + "RAMWatt @ 100%": "2,40", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,0", + "Instance @ Idle": "4,0", + "Instance @ 10%": "6,6", + "Instance @ 50%": "10,7", + "Instance @ 100%": "14,1", + "Hardware Information on AWS Documentation & Comments": "3.3 GHz Intel Scalable Processor" + }, + { + "Instance type": "db.t2.large", + "Release Date": "June 2015", + "Instance vCPU": "2", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon E5-2676 v3", + "Instance Memory (in GB)": "8", + "Platform Memory (in GB)": "288", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "1,21", + "PkgWatt @ 10%": "3,44", + "PkgWatt @ 50%": "7,08", + "PkgWatt @ 100%": "9,69", + "RAMWatt @ Idle": "1,60", + "RAMWatt @ 10%": "2,40", + "RAMWatt @ 50%": "3,20", + "RAMWatt @ 100%": "4,80", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "2,0", + "Instance @ Idle": "4,8", + "Instance @ 10%": "7,8", + "Instance @ 50%": "12,3", + "Instance @ 100%": "16,5", + "Hardware Information on AWS Documentation & Comments": "3.3 GHz Intel Scalable Processor" + }, + { + "Instance type": "db.t2.xlarge", + "Release Date": "November 2016", + "Instance vCPU": "4", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon E5-2676 v3", + "Instance Memory (in GB)": "16", + "Platform Memory (in GB)": "288", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "2,41", + "PkgWatt @ 10%": "6,89", + "PkgWatt @ 50%": "14,16", + "PkgWatt @ 100%": "19,39", + "RAMWatt @ Idle": "3,20", + "RAMWatt @ 10%": "4,80", + "RAMWatt @ 50%": "6,40", + "RAMWatt @ 100%": "9,60", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "4,0", + "Instance @ Idle": "9,6", + "Instance @ 10%": "15,7", + "Instance @ 50%": "24,6", + "Instance @ 100%": "33,0", + "Hardware Information on AWS Documentation & Comments": "3.3 GHz Intel Scalable Processor" + }, + { + "Instance type": "db.t2.2xlarge", + "Release Date": "November 2016", + "Instance vCPU": "8", + "Platform Total Number of vCPU": "48", + "Platform CPU Name": "Xeon E5-2676 v3", + "Instance Memory (in GB)": "32", + "Platform Memory (in GB)": "288", + "Storage Info (Type and Size in GB)": "EBS-Only", + "Storage Type": "EBS", + "Platform Storage Drive Quantity": "0", + "Platform GPU Quantity": "N/A", + "Platform GPU Name": "N/A", + "Instance Number of GPU": "N/A", + "Instance GPU memory (in GB)": "N/A", + "PkgWatt @ Idle": "4,82", + "PkgWatt @ 10%": "13,77", + "PkgWatt @ 50%": "28,33", + "PkgWatt @ 100%": "38,78", + "RAMWatt @ Idle": "6,40", + "RAMWatt @ 10%": "9,60", + "RAMWatt @ 50%": "12,80", + "RAMWatt @ 100%": "19,20", + "GPUWatt @ Idle": "0,0", + "GPUWatt @ 10%": "0,0", + "GPUWatt @ 50%": "0,0", + "GPUWatt @ 100%": "0,0", + "Delta Full Machine": "8,0", + "Instance @ Idle": "19,2", + "Instance @ 10%": "31,4", + "Instance @ 50%": "49,1", + "Instance @ 100%": "66,0", + "Hardware Information on AWS Documentation & Comments": "3.3 GHz Intel Scalable Processor" + } +] diff --git a/src/lib/ccf/azure-embodied.json b/src/lib/ccf/azure-embodied.json index 46df60d6d..10b1f4616 100644 --- a/src/lib/ccf/azure-embodied.json +++ b/src/lib/ccf/azure-embodied.json @@ -1 +1,6547 @@ -[{"": "0", "family": "Av2 Standard", "type": "A1 v2", "microarchitecture": "Unknown", "additional_memory": "66.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1216.62"}, {"": "1", "family": "Av2 Standard", "type": "A2 v2", "microarchitecture": "Unknown", "additional_memory": "66.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1216.62"}, {"": "2", "family": "Av2 Standard", "type": "A2m v2", "microarchitecture": "Unknown", "additional_memory": "66.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1216.62"}, {"": "3", "family": "Av2 Standard", "type": "A4 v2", "microarchitecture": "Unknown", "additional_memory": "66.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1216.62"}, {"": "4", "family": "Av2 Standard", "type": "A4m v2", "microarchitecture": "Unknown", "additional_memory": "66.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1216.62"}, {"": "5", "family": "Av2 Standard", "type": "A8 v2", "microarchitecture": "Unknown", "additional_memory": "66.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1216.62"}, {"": "6", "family": "Av2 Standard", "type": "A8m v2", "microarchitecture": "Unknown", "additional_memory": "66.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1216.62"}, {"": "7", "family": "Bs-series", "type": "B12MS", "microarchitecture": "Unknown", "additional_memory": "88.83", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1238.83"}, {"": "8", "family": "Bs-series", "type": "B16MS", "microarchitecture": "Unknown", "additional_memory": "88.83", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1238.83"}, {"": "9", "family": "Bs-series", "type": "B1LS", "microarchitecture": "Unknown", "additional_memory": "88.83", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1238.83"}, {"": "10", "family": "Bs-series", "type": "B1MS", "microarchitecture": "Unknown", "additional_memory": "88.83", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1238.83"}, {"": "11", "family": "Bs-series", "type": "B1S", "microarchitecture": "Unknown", "additional_memory": "88.83", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1238.83"}, {"": "12", "family": "Bs-series", "type": "B20MS", "microarchitecture": "Unknown", "additional_memory": "88.83", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1238.83"}, {"": "13", "family": "Bs-series", "type": "B2MS", "microarchitecture": "Unknown", "additional_memory": "88.83", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1238.83"}, {"": "14", "family": "Bs-series", "type": "B2S", "microarchitecture": "Unknown", "additional_memory": "88.83", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1238.83"}, {"": "15", "family": "Bs-series", "type": "B4MS", "microarchitecture": "Unknown", "additional_memory": "88.83", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1238.83"}, {"": "16", "family": "Bs-series", "type": "B8MS", "microarchitecture": "Unknown", "additional_memory": "88.83", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1238.83"}, {"": "17", "family": "Constrained vCPUs capable", "type": "DS11-1 v2", "microarchitecture": "Unknown", "additional_memory": "0.0", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1150.0"}, {"": "18", "family": "Constrained vCPUs capable", "type": "DS12-1 v2", "microarchitecture": "Unknown", "additional_memory": "16.66", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1166.66"}, {"": "19", "family": "Constrained vCPUs capable", "type": "DS12-2 v2", "microarchitecture": "Unknown", "additional_memory": "16.66", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1166.66"}, {"": "20", "family": "Constrained vCPUs capable", "type": "DS13-2 v2", "microarchitecture": "Unknown", "additional_memory": "55.52", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1205.52"}, {"": "21", "family": "Constrained vCPUs capable", "type": "DS13-4 v2", "microarchitecture": "Unknown", "additional_memory": "55.52", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1205.52"}, {"": "22", "family": "Constrained vCPUs capable", "type": "DS14-4 v2", "microarchitecture": "Unknown", "additional_memory": "133.25", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1283.25"}, {"": "23", "family": "Constrained vCPUs capable", "type": "DS14-8 v2", "microarchitecture": "Unknown", "additional_memory": "133.25", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1283.25"}, {"": "24", "family": "Constrained vCPUs capable", "type": "E16-4as v4", "microarchitecture": "Unknown", "additional_memory": "155.46", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1305.46"}, {"": "25", "family": "Constrained vCPUs capable", "type": "E16-4ds v4", "microarchitecture": "Unknown", "additional_memory": "155.46", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1305.46"}, {"": "26", "family": "Constrained vCPUs capable", "type": "E16-4s v3", "microarchitecture": "Unknown", "additional_memory": "155.46", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1305.46"}, {"": "27", "family": "Constrained vCPUs capable", "type": "E16-4s v4", "microarchitecture": "Unknown", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "28", "family": "Constrained vCPUs capable", "type": "E16-8as v4", "microarchitecture": "Unknown", "additional_memory": "155.46", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1305.46"}, {"": "29", "family": "Constrained vCPUs capable", "type": "E16-8ds v4", "microarchitecture": "Unknown", "additional_memory": "155.46", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1305.46"}, {"": "30", "family": "Constrained vCPUs capable", "type": "E16-8s v3", "microarchitecture": "Unknown", "additional_memory": "155.46", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1305.46"}, {"": "31", "family": "Constrained vCPUs capable", "type": "E16-8s v4", "microarchitecture": "Unknown", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "32", "family": "Constrained vCPUs capable", "type": "E32-16as v4", "microarchitecture": "Unknown", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "33", "family": "Constrained vCPUs capable", "type": "E32-16ds v4", "microarchitecture": "Unknown", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "34", "family": "Constrained vCPUs capable", "type": "E32-16s v3", "microarchitecture": "Unknown", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "35", "family": "Constrained vCPUs capable", "type": "E32-16s v4", "microarchitecture": "Unknown", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "36", "family": "Constrained vCPUs capable", "type": "E32-8as v4", "microarchitecture": "Unknown", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "37", "family": "Constrained vCPUs capable", "type": "E32-8ds v4", "microarchitecture": "Unknown", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "38", "family": "Constrained vCPUs capable", "type": "E32-8s v3", "microarchitecture": "Unknown", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "39", "family": "Constrained vCPUs capable", "type": "E32-8s v4", "microarchitecture": "Unknown", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "40", "family": "Constrained vCPUs capable", "type": "E4-2as v4", "microarchitecture": "Unknown", "additional_memory": "22.21", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1172.21"}, {"": "41", "family": "Constrained vCPUs capable", "type": "E4-2ds v4", "microarchitecture": "Unknown", "additional_memory": "22.21", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1172.21"}, {"": "42", "family": "Constrained vCPUs capable", "type": "E4-2s v3", "microarchitecture": "Unknown", "additional_memory": "22.21", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1172.21"}, {"": "43", "family": "Constrained vCPUs capable", "type": "E4-2s v4", "microarchitecture": "Unknown", "additional_memory": "22.21", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1122.21"}, {"": "44", "family": "Constrained vCPUs capable", "type": "E64-16as v4", "microarchitecture": "Unknown", "additional_memory": "688.46", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1838.46"}, {"": "45", "family": "Constrained vCPUs capable", "type": "E64-16ds v4", "microarchitecture": "Unknown", "additional_memory": "677.35", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1827.35"}, {"": "46", "family": "Constrained vCPUs capable", "type": "E64-16s v3", "microarchitecture": "Unknown", "additional_memory": "577.42", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1727.42"}, {"": "47", "family": "Constrained vCPUs capable", "type": "E64-16s v4", "microarchitecture": "Unknown", "additional_memory": "677.35", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.35"}, {"": "48", "family": "Constrained vCPUs capable", "type": "E64-32as v4", "microarchitecture": "Unknown", "additional_memory": "688.46", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1838.46"}, {"": "49", "family": "Constrained vCPUs capable", "type": "E64-32ds v4", "microarchitecture": "Unknown", "additional_memory": "677.35", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1827.35"}, {"": "50", "family": "Constrained vCPUs capable", "type": "E64-32s v3", "microarchitecture": "Unknown", "additional_memory": "577.42", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1727.42"}, {"": "51", "family": "Constrained vCPUs capable", "type": "E64-32s v4", "microarchitecture": "Unknown", "additional_memory": "677.35", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.35"}, {"": "52", "family": "Constrained vCPUs capable", "type": "E8-2as v4", "microarchitecture": "Unknown", "additional_memory": "66.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1216.62"}, {"": "53", "family": "Constrained vCPUs capable", "type": "E8-2ds v4", "microarchitecture": "Unknown", "additional_memory": "66.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1216.62"}, {"": "54", "family": "Constrained vCPUs capable", "type": "E8-2s v3", "microarchitecture": "Unknown", "additional_memory": "66.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1216.62"}, {"": "55", "family": "Constrained vCPUs capable", "type": "E8-2s v4", "microarchitecture": "Unknown", "additional_memory": "66.62", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1166.62"}, {"": "56", "family": "Constrained vCPUs capable", "type": "E8-4as v4", "microarchitecture": "Unknown", "additional_memory": "66.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1216.62"}, {"": "57", "family": "Constrained vCPUs capable", "type": "E8-4ds v4", "microarchitecture": "Unknown", "additional_memory": "66.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1216.62"}, {"": "58", "family": "Constrained vCPUs capable", "type": "E8-4s v3", "microarchitecture": "Unknown", "additional_memory": "66.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1216.62"}, {"": "59", "family": "Constrained vCPUs capable", "type": "E8-4s v4", "microarchitecture": "Unknown", "additional_memory": "66.62", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1166.62"}, {"": "60", "family": "Constrained vCPUs capable", "type": "E96-24as v4", "microarchitecture": "Unknown", "additional_memory": "910.54", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2060.54"}, {"": "61", "family": "Constrained vCPUs capable", "type": "E96-48as v4", "microarchitecture": "Unknown", "additional_memory": "910.54", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2060.54"}, {"": "62", "family": "Constrained vCPUs capable", "type": "Gs4-4", "microarchitecture": "Unknown", "additional_memory": "288.71", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1438.71"}, {"": "63", "family": "Constrained vCPUs capable", "type": "Gs4-8", "microarchitecture": "Unknown", "additional_memory": "288.71", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1438.71"}, {"": "64", "family": "Constrained vCPUs capable", "type": "Gs5-16", "microarchitecture": "Unknown", "additional_memory": "599.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1749.62"}, {"": "65", "family": "Constrained vCPUs capable", "type": "Gs5-8", "microarchitecture": "Unknown", "additional_memory": "599.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1749.62"}, {"": "66", "family": "Constrained vCPUs capable", "type": "HB120-16rs v3", "microarchitecture": "EPYC 3rd Gen", "additional_memory": "599.62", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1699.62"}, {"": "67", "family": "Constrained vCPUs capable", "type": "HB120-32rs v3", "microarchitecture": "EPYC 3rd Gen", "additional_memory": "599.62", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1699.62"}, {"": "68", "family": "Constrained vCPUs capable", "type": "HB120-64rs v3", "microarchitecture": "EPYC 3rd Gen", "additional_memory": "599.62", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1699.62"}, {"": "69", "family": "Constrained vCPUs capable", "type": "HB120-96rs v3", "microarchitecture": "EPYC 3rd Gen", "additional_memory": "599.62", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1699.62"}, {"": "70", "family": "Constrained vCPUs capable", "type": "M128-32ms", "microarchitecture": "Unknown", "additional_memory": "5252.27", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6402.27"}, {"": "71", "family": "Constrained vCPUs capable", "type": "M128-64ms", "microarchitecture": "Unknown", "additional_memory": "5252.27", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6402.27"}, {"": "72", "family": "Constrained vCPUs capable", "type": "M16-4ms", "microarchitecture": "Unknown", "additional_memory": "585.74", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1735.74"}, {"": "73", "family": "Constrained vCPUs capable", "type": "M16-8ms", "microarchitecture": "Unknown", "additional_memory": "585.74", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1735.74"}, {"": "74", "family": "Constrained vCPUs capable", "type": "M32-16ms", "microarchitecture": "Unknown", "additional_memory": "1192.31", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2342.31"}, {"": "75", "family": "Constrained vCPUs capable", "type": "M32-8ms", "microarchitecture": "Unknown", "additional_memory": "1192.31", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2342.31"}, {"": "76", "family": "Constrained vCPUs capable", "type": "M64-16ms", "microarchitecture": "Unknown", "additional_memory": "2406.83", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "3556.83"}, {"": "77", "family": "Constrained vCPUs capable", "type": "M64-32ms", "microarchitecture": "Unknown", "additional_memory": "2406.83", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "3556.83"}, {"": "78", "family": "Constrained vCPUs capable", "type": "M8-2ms", "microarchitecture": "Unknown", "additional_memory": "281.77", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1431.77"}, {"": "79", "family": "Constrained vCPUs capable", "type": "M8-4ms", "microarchitecture": "Unknown", "additional_memory": "281.77", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1431.77"}, {"": "80", "family": "D1-5 v2", "type": "D1 v2", "microarchitecture": "Haswell", "additional_memory": "55.52", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1205.52"}, {"": "81", "family": "D1-5 v2", "type": "D1 v2", "microarchitecture": "Cascade Lake", "additional_memory": "55.52", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1205.52"}, {"": "82", "family": "D1-5 v2", "type": "D1 v2", "microarchitecture": "Skylake", "additional_memory": "55.52", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1205.52"}, {"": "83", "family": "D1-5 v2", "type": "D1 v2", "microarchitecture": "Broadwell", "additional_memory": "55.52", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1205.52"}, {"": "84", "family": "D1-5 v2", "type": "D2 v2", "microarchitecture": "Haswell", "additional_memory": "55.52", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1205.52"}, {"": "85", "family": "D1-5 v2", "type": "D2 v2", "microarchitecture": "Cascade Lake", "additional_memory": "55.52", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1205.52"}, {"": "86", "family": "D1-5 v2", "type": "D2 v2", "microarchitecture": "Skylake", "additional_memory": "55.52", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1205.52"}, {"": "87", "family": "D1-5 v2", "type": "D2 v2", "microarchitecture": "Broadwell", "additional_memory": "55.52", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1205.52"}, {"": "88", "family": "D1-5 v2", "type": "D3 v2", "microarchitecture": "Haswell", "additional_memory": "55.52", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1205.52"}, {"": "89", "family": "D1-5 v2", "type": "D3 v2", "microarchitecture": "Cascade Lake", "additional_memory": "55.52", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1205.52"}, {"": "90", "family": "D1-5 v2", "type": "D3 v2", "microarchitecture": "Skylake", "additional_memory": "55.52", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1205.52"}, {"": "91", "family": "D1-5 v2", "type": "D3 v2", "microarchitecture": "Broadwell", "additional_memory": "55.52", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1205.52"}, {"": "92", "family": "D1-5 v2", "type": "D4 v2", "microarchitecture": "Haswell", "additional_memory": "55.52", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1205.52"}, {"": "93", "family": "D1-5 v2", "type": "D4 v2", "microarchitecture": "Cascade Lake", "additional_memory": "55.52", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1205.52"}, {"": "94", "family": "D1-5 v2", "type": "D4 v2", "microarchitecture": "Skylake", "additional_memory": "55.52", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1205.52"}, {"": "95", "family": "D1-5 v2", "type": "D4 v2", "microarchitecture": "Broadwell", "additional_memory": "55.52", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1205.52"}, {"": "96", "family": "D1-5 v2", "type": "D5 v2", "microarchitecture": "Haswell", "additional_memory": "55.52", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1205.52"}, {"": "97", "family": "D1-5 v2", "type": "D5 v2", "microarchitecture": "Cascade Lake", "additional_memory": "55.52", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1205.52"}, {"": "98", "family": "D1-5 v2", "type": "D5 v2", "microarchitecture": "Skylake", "additional_memory": "55.52", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1205.52"}, {"": "99", "family": "D1-5 v2", "type": "D5 v2", "microarchitecture": "Broadwell", "additional_memory": "55.52", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1205.52"}, {"": "100", "family": "D11-15 v2", "type": "D11 v2", "microarchitecture": "Haswell", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "101", "family": "D11-15 v2", "type": "D11 v2", "microarchitecture": "Cascade Lake", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "102", "family": "D11-15 v2", "type": "D11 v2", "microarchitecture": "Skylake", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "103", "family": "D11-15 v2", "type": "D11 v2", "microarchitecture": "Broadwell", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "104", "family": "D11-15 v2", "type": "D12 v2", "microarchitecture": "Haswell", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "105", "family": "D11-15 v2", "type": "D12 v2", "microarchitecture": "Cascade Lake", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "106", "family": "D11-15 v2", "type": "D12 v2", "microarchitecture": "Skylake", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "107", "family": "D11-15 v2", "type": "D12 v2", "microarchitecture": "Broadwell", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "108", "family": "D11-15 v2", "type": "D13 v2", "microarchitecture": "Haswell", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "109", "family": "D11-15 v2", "type": "D13 v2", "microarchitecture": "Cascade Lake", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "110", "family": "D11-15 v2", "type": "D13 v2", "microarchitecture": "Skylake", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "111", "family": "D11-15 v2", "type": "D13 v2", "microarchitecture": "Broadwell", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "112", "family": "D11-15 v2", "type": "D14 v2", "microarchitecture": "Haswell", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "113", "family": "D11-15 v2", "type": "D14 v2", "microarchitecture": "Cascade Lake", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "114", "family": "D11-15 v2", "type": "D14 v2", "microarchitecture": "Skylake", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "115", "family": "D11-15 v2", "type": "D14 v2", "microarchitecture": "Broadwell", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "116", "family": "D11-15 v2", "type": "D15 v2", "microarchitecture": "Haswell", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "117", "family": "D11-15 v2", "type": "D15 v2", "microarchitecture": "Cascade Lake", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "118", "family": "D11-15 v2", "type": "D15 v2", "microarchitecture": "Skylake", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "119", "family": "D11-15 v2", "type": "D15 v2", "microarchitecture": "Broadwell", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "120", "family": "D11-15 v2", "type": "D15i v2 1", "microarchitecture": "Haswell", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "121", "family": "D11-15 v2", "type": "D15i v2 1", "microarchitecture": "Cascade Lake", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "122", "family": "D11-15 v2", "type": "D15i v2 1", "microarchitecture": "Skylake", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "123", "family": "D11-15 v2", "type": "D15i v2 1", "microarchitecture": "Broadwell", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "124", "family": "D11S-15S v2", "type": "DS11 v2", "microarchitecture": "Haswell", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "125", "family": "D11S-15S v2", "type": "DS11 v2", "microarchitecture": "Cascade Lake", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "126", "family": "D11S-15S v2", "type": "DS11 v2", "microarchitecture": "Skylake", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "127", "family": "D11S-15S v2", "type": "DS11 v2", "microarchitecture": "Broadwell", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "128", "family": "D11S-15S v2", "type": "DS12 v2", "microarchitecture": "Haswell", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "129", "family": "D11S-15S v2", "type": "DS12 v2", "microarchitecture": "Cascade Lake", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "130", "family": "D11S-15S v2", "type": "DS12 v2", "microarchitecture": "Skylake", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "131", "family": "D11S-15S v2", "type": "DS12 v2", "microarchitecture": "Broadwell", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "132", "family": "D11S-15S v2", "type": "DS13 v2", "microarchitecture": "Haswell", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "133", "family": "D11S-15S v2", "type": "DS13 v2", "microarchitecture": "Cascade Lake", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "134", "family": "D11S-15S v2", "type": "DS13 v2", "microarchitecture": "Skylake", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "135", "family": "D11S-15S v2", "type": "DS13 v2", "microarchitecture": "Broadwell", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "136", "family": "D11S-15S v2", "type": "DS14 v2", "microarchitecture": "Haswell", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "137", "family": "D11S-15S v2", "type": "DS14 v2", "microarchitecture": "Cascade Lake", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "138", "family": "D11S-15S v2", "type": "DS14 v2", "microarchitecture": "Skylake", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "139", "family": "D11S-15S v2", "type": "DS14 v2", "microarchitecture": "Broadwell", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "140", "family": "D11S-15S v2", "type": "DS15 v2", "microarchitecture": "Haswell", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "141", "family": "D11S-15S v2", "type": "DS15 v2", "microarchitecture": "Cascade Lake", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "142", "family": "D11S-15S v2", "type": "DS15 v2", "microarchitecture": "Skylake", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "143", "family": "D11S-15S v2", "type": "DS15 v2", "microarchitecture": "Broadwell", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "144", "family": "D11S-15S v2", "type": "DS15i v2 1", "microarchitecture": "Haswell", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "145", "family": "D11S-15S v2", "type": "DS15i v2 1", "microarchitecture": "Cascade Lake", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "146", "family": "D11S-15S v2", "type": "DS15i v2 1", "microarchitecture": "Skylake", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "147", "family": "D11S-15S v2", "type": "DS15i v2 1", "microarchitecture": "Broadwell", "additional_memory": "172.11", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1322.11"}, {"": "148", "family": "D1s-5s v2", "type": "DS1 v2", "microarchitecture": "Haswell", "additional_memory": "55.52", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.52"}, {"": "149", "family": "D1s-5s v2", "type": "DS1 v2", "microarchitecture": "Cascade Lake", "additional_memory": "55.52", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.52"}, {"": "150", "family": "D1s-5s v2", "type": "DS1 v2", "microarchitecture": "Skylake", "additional_memory": "55.52", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.52"}, {"": "151", "family": "D1s-5s v2", "type": "DS1 v2", "microarchitecture": "Broadwell", "additional_memory": "55.52", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.52"}, {"": "152", "family": "D1s-5s v2", "type": "DS2 v2", "microarchitecture": "Haswell", "additional_memory": "55.52", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.52"}, {"": "153", "family": "D1s-5s v2", "type": "DS2 v2", "microarchitecture": "Cascade Lake", "additional_memory": "55.52", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.52"}, {"": "154", "family": "D1s-5s v2", "type": "DS2 v2", "microarchitecture": "Skylake", "additional_memory": "55.52", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.52"}, {"": "155", "family": "D1s-5s v2", "type": "DS2 v2", "microarchitecture": "Broadwell", "additional_memory": "55.52", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.52"}, {"": "156", "family": "D1s-5s v2", "type": "DS3 v2", "microarchitecture": "Haswell", "additional_memory": "55.52", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.52"}, {"": "157", "family": "D1s-5s v2", "type": "DS3 v2", "microarchitecture": "Cascade Lake", "additional_memory": "55.52", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.52"}, {"": "158", "family": "D1s-5s v2", "type": "DS3 v2", "microarchitecture": "Skylake", "additional_memory": "55.52", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.52"}, {"": "159", "family": "D1s-5s v2", "type": "DS3 v2", "microarchitecture": "Broadwell", "additional_memory": "55.52", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.52"}, {"": "160", "family": "D1s-5s v2", "type": "DS4 v2", "microarchitecture": "Haswell", "additional_memory": "55.52", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.52"}, {"": "161", "family": "D1s-5s v2", "type": "DS4 v2", "microarchitecture": "Cascade Lake", "additional_memory": "55.52", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.52"}, {"": "162", "family": "D1s-5s v2", "type": "DS4 v2", "microarchitecture": "Skylake", "additional_memory": "55.52", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.52"}, {"": "163", "family": "D1s-5s v2", "type": "DS4 v2", "microarchitecture": "Broadwell", "additional_memory": "55.52", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.52"}, {"": "164", "family": "D1s-5s v2", "type": "DS5 v2", "microarchitecture": "Haswell", "additional_memory": "55.52", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.52"}, {"": "165", "family": "D1s-5s v2", "type": "DS5 v2", "microarchitecture": "Cascade Lake", "additional_memory": "55.52", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.52"}, {"": "166", "family": "D1s-5s v2", "type": "DS5 v2", "microarchitecture": "Skylake", "additional_memory": "55.52", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.52"}, {"": "167", "family": "D1s-5s v2", "type": "DS5 v2", "microarchitecture": "Broadwell", "additional_memory": "55.52", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.52"}, {"": "168", "family": "D2 \u2013 D64 v4", "type": "D16 v4", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "169", "family": "D2 \u2013 D64 v4", "type": "D2 v4", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "170", "family": "D2 \u2013 D64 v4", "type": "D32 v4", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "171", "family": "D2 \u2013 D64 v4", "type": "D4 v4", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "172", "family": "D2 \u2013 D64 v4", "type": "D48 v4", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "173", "family": "D2 \u2013 D64 v4", "type": "D64 v4", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "174", "family": "D2 \u2013 D64 v4", "type": "D8 v4", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "175", "family": "D2-64 v3", "type": "D16 v3", "microarchitecture": "Haswell", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "176", "family": "D2-64 v3", "type": "D16 v3", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "177", "family": "D2-64 v3", "type": "D16 v3", "microarchitecture": "Skylake", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "178", "family": "D2-64 v3", "type": "D16 v3", "microarchitecture": "Broadwell", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "179", "family": "D2-64 v3", "type": "D2 v3", "microarchitecture": "Haswell", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "180", "family": "D2-64 v3", "type": "D2 v3", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "181", "family": "D2-64 v3", "type": "D2 v3", "microarchitecture": "Skylake", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "182", "family": "D2-64 v3", "type": "D2 v3", "microarchitecture": "Broadwell", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "183", "family": "D2-64 v3", "type": "D32 v3", "microarchitecture": "Haswell", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "184", "family": "D2-64 v3", "type": "D32 v3", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "185", "family": "D2-64 v3", "type": "D32 v3", "microarchitecture": "Skylake", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "186", "family": "D2-64 v3", "type": "D32 v3", "microarchitecture": "Broadwell", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "187", "family": "D2-64 v3", "type": "D4 v3", "microarchitecture": "Haswell", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "188", "family": "D2-64 v3", "type": "D4 v3", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "189", "family": "D2-64 v3", "type": "D4 v3", "microarchitecture": "Skylake", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "190", "family": "D2-64 v3", "type": "D4 v3", "microarchitecture": "Broadwell", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "191", "family": "D2-64 v3", "type": "D48 v3", "microarchitecture": "Haswell", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "192", "family": "D2-64 v3", "type": "D48 v3", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "193", "family": "D2-64 v3", "type": "D48 v3", "microarchitecture": "Skylake", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "194", "family": "D2-64 v3", "type": "D48 v3", "microarchitecture": "Broadwell", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "195", "family": "D2-64 v3", "type": "D64 v3", "microarchitecture": "Haswell", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "196", "family": "D2-64 v3", "type": "D64 v3", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "197", "family": "D2-64 v3", "type": "D64 v3", "microarchitecture": "Skylake", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "198", "family": "D2-64 v3", "type": "D64 v3", "microarchitecture": "Broadwell", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "199", "family": "D2-64 v3", "type": "D8 v3", "microarchitecture": "Haswell", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "200", "family": "D2-64 v3", "type": "D8 v3", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "201", "family": "D2-64 v3", "type": "D8 v3", "microarchitecture": "Skylake", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "202", "family": "D2-64 v3", "type": "D8 v3", "microarchitecture": "Broadwell", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "203", "family": "D2a \u2013 D96a v4", "type": "D16a v4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "510.79", "additional_storage": "50.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1560.79"}, {"": "204", "family": "D2a \u2013 D96a v4", "type": "D2a v4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "510.79", "additional_storage": "50.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1560.79"}, {"": "205", "family": "D2a \u2013 D96a v4", "type": "D32a v4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "510.79", "additional_storage": "50.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1560.79"}, {"": "206", "family": "D2a \u2013 D96a v4", "type": "D48a v4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "510.79", "additional_storage": "50.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1560.79"}, {"": "207", "family": "D2a \u2013 D96a v4", "type": "D4a v4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "510.79", "additional_storage": "50.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1560.79"}, {"": "208", "family": "D2a \u2013 D96a v4", "type": "D64a v4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "510.79", "additional_storage": "50.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1560.79"}, {"": "209", "family": "D2a \u2013 D96a v4", "type": "D8a v4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "510.79", "additional_storage": "50.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1560.79"}, {"": "210", "family": "D2a \u2013 D96a v4", "type": "D96a v4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "510.79", "additional_storage": "50.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1560.79"}, {"": "211", "family": "D2as \u2013 D96as v4", "type": "D16as v4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "510.79", "additional_storage": "50.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1560.79"}, {"": "212", "family": "D2as \u2013 D96as v4", "type": "D2as v4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "510.79", "additional_storage": "50.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1560.79"}, {"": "213", "family": "D2as \u2013 D96as v4", "type": "D32as v4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "510.79", "additional_storage": "50.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1560.79"}, {"": "214", "family": "D2as \u2013 D96as v4", "type": "D48as v4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "510.79", "additional_storage": "50.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1560.79"}, {"": "215", "family": "D2as \u2013 D96as v4", "type": "D4as v4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "510.79", "additional_storage": "50.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1560.79"}, {"": "216", "family": "D2as \u2013 D96as v4", "type": "D64as v4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "510.79", "additional_storage": "50.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1560.79"}, {"": "217", "family": "D2as \u2013 D96as v4", "type": "D8as v4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "510.79", "additional_storage": "50.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1560.79"}, {"": "218", "family": "D2as \u2013 D96as v4", "type": "D96as v4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "510.79", "additional_storage": "50.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1560.79"}, {"": "219", "family": "D2d \u2013 D64d v4", "type": "D16d v4", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "220", "family": "D2d \u2013 D64d v4", "type": "D2d v4", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "221", "family": "D2d \u2013 D64d v4", "type": "D32d v4", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "222", "family": "D2d \u2013 D64d v4", "type": "D48d v4", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "223", "family": "D2d \u2013 D64d v4", "type": "D4d v4", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "224", "family": "D2d \u2013 D64d v4", "type": "D64d v4", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "225", "family": "D2d \u2013 D64d v4", "type": "D8d v4", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "226", "family": "D2ds \u2013 D64ds v4", "type": "D16ds v4", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1533.12"}, {"": "227", "family": "D2ds \u2013 D64ds v4", "type": "D2ds v4", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1533.12"}, {"": "228", "family": "D2ds \u2013 D64ds v4", "type": "D32ds v4", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1533.12"}, {"": "229", "family": "D2ds \u2013 D64ds v4", "type": "D48ds v4", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1533.12"}, {"": "230", "family": "D2ds \u2013 D64ds v4", "type": "D4ds v4", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1533.12"}, {"": "231", "family": "D2ds \u2013 D64ds v4", "type": "D64ds v4", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1533.12"}, {"": "232", "family": "D2ds \u2013 D64ds v4", "type": "D8ds v4", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1533.12"}, {"": "233", "family": "D2s \u2013 D64s v4", "type": "D16s v4", "microarchitecture": "Haswell", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "234", "family": "D2s \u2013 D64s v4", "type": "D16s v4", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "235", "family": "D2s \u2013 D64s v4", "type": "D16s v4", "microarchitecture": "Skylake", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "236", "family": "D2s \u2013 D64s v4", "type": "D16s v4", "microarchitecture": "Broadwell", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "237", "family": "D2s \u2013 D64s v4", "type": "D2s v4", "microarchitecture": "Haswell", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "238", "family": "D2s \u2013 D64s v4", "type": "D2s v4", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "239", "family": "D2s \u2013 D64s v4", "type": "D2s v4", "microarchitecture": "Skylake", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "240", "family": "D2s \u2013 D64s v4", "type": "D2s v4", "microarchitecture": "Broadwell", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "241", "family": "D2s \u2013 D64s v4", "type": "D32s v4", "microarchitecture": "Haswell", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "242", "family": "D2s \u2013 D64s v4", "type": "D32s v4", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "243", "family": "D2s \u2013 D64s v4", "type": "D32s v4", "microarchitecture": "Skylake", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "244", "family": "D2s \u2013 D64s v4", "type": "D32s v4", "microarchitecture": "Broadwell", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "245", "family": "D2s \u2013 D64s v4", "type": "D48s v4", "microarchitecture": "Haswell", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "246", "family": "D2s \u2013 D64s v4", "type": "D48s v4", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "247", "family": "D2s \u2013 D64s v4", "type": "D48s v4", "microarchitecture": "Skylake", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "248", "family": "D2s \u2013 D64s v4", "type": "D48s v4", "microarchitecture": "Broadwell", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "249", "family": "D2s \u2013 D64s v4", "type": "D4s v4", "microarchitecture": "Haswell", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "250", "family": "D2s \u2013 D64s v4", "type": "D4s v4", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "251", "family": "D2s \u2013 D64s v4", "type": "D4s v4", "microarchitecture": "Skylake", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "252", "family": "D2s \u2013 D64s v4", "type": "D4s v4", "microarchitecture": "Broadwell", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "253", "family": "D2s \u2013 D64s v4", "type": "D64s v4", "microarchitecture": "Haswell", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "254", "family": "D2s \u2013 D64s v4", "type": "D64s v4", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "255", "family": "D2s \u2013 D64s v4", "type": "D64s v4", "microarchitecture": "Skylake", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "256", "family": "D2s \u2013 D64s v4", "type": "D64s v4", "microarchitecture": "Broadwell", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "257", "family": "D2s \u2013 D64s v4", "type": "D8s v4", "microarchitecture": "Haswell", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "258", "family": "D2s \u2013 D64s v4", "type": "D8s v4", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "259", "family": "D2s \u2013 D64s v4", "type": "D8s v4", "microarchitecture": "Skylake", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "260", "family": "D2s \u2013 D64s v4", "type": "D8s v4", "microarchitecture": "Broadwell", "additional_memory": "333.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1433.12"}, {"": "261", "family": "D2s-64s v3", "type": "D16s v3", "microarchitecture": "Haswell", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "262", "family": "D2s-64s v3", "type": "D16s v3", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "263", "family": "D2s-64s v3", "type": "D16s v3", "microarchitecture": "Skylake", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "264", "family": "D2s-64s v3", "type": "D16s v3", "microarchitecture": "Broadwell", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "265", "family": "D2s-64s v3", "type": "D2s v3", "microarchitecture": "Haswell", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "266", "family": "D2s-64s v3", "type": "D2s v3", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "267", "family": "D2s-64s v3", "type": "D2s v3", "microarchitecture": "Skylake", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "268", "family": "D2s-64s v3", "type": "D2s v3", "microarchitecture": "Broadwell", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "269", "family": "D2s-64s v3", "type": "D32s v3", "microarchitecture": "Haswell", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "270", "family": "D2s-64s v3", "type": "D32s v3", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "271", "family": "D2s-64s v3", "type": "D32s v3", "microarchitecture": "Skylake", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "272", "family": "D2s-64s v3", "type": "D32s v3", "microarchitecture": "Broadwell", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "273", "family": "D2s-64s v3", "type": "D48s v3", "microarchitecture": "Haswell", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "274", "family": "D2s-64s v3", "type": "D48s v3", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "275", "family": "D2s-64s v3", "type": "D48s v3", "microarchitecture": "Skylake", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "276", "family": "D2s-64s v3", "type": "D48s v3", "microarchitecture": "Broadwell", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "277", "family": "D2s-64s v3", "type": "D4s v3", "microarchitecture": "Haswell", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "278", "family": "D2s-64s v3", "type": "D4s v3", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "279", "family": "D2s-64s v3", "type": "D4s v3", "microarchitecture": "Skylake", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "280", "family": "D2s-64s v3", "type": "D4s v3", "microarchitecture": "Broadwell", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "281", "family": "D2s-64s v3", "type": "D64s v3", "microarchitecture": "Haswell", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "282", "family": "D2s-64s v3", "type": "D64s v3", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "283", "family": "D2s-64s v3", "type": "D64s v3", "microarchitecture": "Skylake", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "284", "family": "D2s-64s v3", "type": "D64s v3", "microarchitecture": "Broadwell", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "285", "family": "D2s-64s v3", "type": "D8s v3", "microarchitecture": "Haswell", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "286", "family": "D2s-64s v3", "type": "D8s v3", "microarchitecture": "Cascade Lake", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "287", "family": "D2s-64s v3", "type": "D8s v3", "microarchitecture": "Skylake", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "288", "family": "D2s-64s v3", "type": "D8s v3", "microarchitecture": "Broadwell", "additional_memory": "333.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1483.12"}, {"": "289", "family": "DCsv2-series", "type": "DC1s v2", "microarchitecture": "Coffee Lake", "additional_memory": "22.21", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1172.21"}, {"": "290", "family": "DCsv2-series", "type": "DC2s v2", "microarchitecture": "Coffee Lake", "additional_memory": "22.21", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1172.21"}, {"": "291", "family": "DCsv2-series", "type": "DC4s v2", "microarchitecture": "Coffee Lake", "additional_memory": "22.21", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1172.21"}, {"": "292", "family": "DCsv2-series", "type": "DC8 v2", "microarchitecture": "Coffee Lake", "additional_memory": "22.21", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1172.21"}, {"": "293", "family": "E2 \u2013 E64 v4", "type": "E16 v4", "microarchitecture": "Cascade Lake", "additional_memory": "910.54", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.54"}, {"": "294", "family": "E2 \u2013 E64 v4", "type": "E2 v4", "microarchitecture": "Cascade Lake", "additional_memory": "910.54", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.54"}, {"": "295", "family": "E2 \u2013 E64 v4", "type": "E32 v4", "microarchitecture": "Cascade Lake", "additional_memory": "910.54", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.54"}, {"": "296", "family": "E2 \u2013 E64 v4", "type": "E4 v4", "microarchitecture": "Cascade Lake", "additional_memory": "910.54", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.54"}, {"": "297", "family": "E2 \u2013 E64 v4", "type": "E48 v4", "microarchitecture": "Cascade Lake", "additional_memory": "910.54", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.54"}, {"": "298", "family": "E2 \u2013 E64 v4", "type": "E64 v4", "microarchitecture": "Cascade Lake", "additional_memory": "910.54", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.54"}, {"": "299", "family": "E2 \u2013 E64 v4", "type": "E8 v4", "microarchitecture": "Cascade Lake", "additional_memory": "910.54", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.54"}, {"": "300", "family": "E2 \u2013 E96 v5", "type": "E16 v5", "microarchitecture": "Unknown", "additional_memory": "910.54", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.54"}, {"": "301", "family": "E2 \u2013 E96 v5", "type": "E2 v5", "microarchitecture": "Unknown", "additional_memory": "910.54", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.54"}, {"": "302", "family": "E2 \u2013 E96 v5", "type": "E20 v5", "microarchitecture": "Unknown", "additional_memory": "910.54", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.54"}, {"": "303", "family": "E2 \u2013 E96 v5", "type": "E32 v5", "microarchitecture": "Unknown", "additional_memory": "910.54", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.54"}, {"": "304", "family": "E2 \u2013 E96 v5", "type": "E4 v5", "microarchitecture": "Unknown", "additional_memory": "910.54", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.54"}, {"": "305", "family": "E2 \u2013 E96 v5", "type": "E48 v5", "microarchitecture": "Unknown", "additional_memory": "910.54", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.54"}, {"": "306", "family": "E2 \u2013 E96 v5", "type": "E64 v5", "microarchitecture": "Unknown", "additional_memory": "910.54", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.54"}, {"": "307", "family": "E2 \u2013 E96 v5", "type": "E8 v5", "microarchitecture": "Unknown", "additional_memory": "910.54", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.54"}, {"": "308", "family": "E2 \u2013 E96 v5", "type": "E96 v5", "microarchitecture": "Unknown", "additional_memory": "910.54", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2010.54"}, {"": "309", "family": "E2-64 v3", "type": "E16 v3", "microarchitecture": "Broadwell", "additional_memory": "577.42", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1727.42"}, {"": "310", "family": "E2-64 v3", "type": "E16 v3", "microarchitecture": "Cascade Lake", "additional_memory": "577.42", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1727.42"}, {"": "311", "family": "E2-64 v3", "type": "E16 v3", "microarchitecture": "Skylake", "additional_memory": "577.42", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1727.42"}, {"": "312", "family": "E2-64 v3", "type": "E2 v3", "microarchitecture": "Broadwell", "additional_memory": "577.42", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1727.42"}, {"": "313", "family": "E2-64 v3", "type": "E2 v3", "microarchitecture": "Cascade Lake", "additional_memory": "577.42", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1727.42"}, {"": "314", "family": "E2-64 v3", "type": "E2 v3", "microarchitecture": "Skylake", "additional_memory": "577.42", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1727.42"}, {"": "315", "family": "E2-64 v3", "type": "E20 v3", "microarchitecture": "Broadwell", "additional_memory": "577.42", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1727.42"}, {"": "316", "family": "E2-64 v3", "type": "E20 v3", "microarchitecture": "Cascade Lake", "additional_memory": "577.42", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1727.42"}, {"": "317", "family": "E2-64 v3", "type": "E20 v3", "microarchitecture": "Skylake", "additional_memory": "577.42", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1727.42"}, {"": "318", "family": "E2-64 v3", "type": "E32 v3", "microarchitecture": "Broadwell", "additional_memory": "577.42", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1727.42"}, {"": "319", "family": "E2-64 v3", "type": "E32 v3", "microarchitecture": "Cascade Lake", "additional_memory": "577.42", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1727.42"}, {"": "320", "family": "E2-64 v3", "type": "E32 v3", "microarchitecture": "Skylake", "additional_memory": "577.42", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1727.42"}, {"": "321", "family": "E2-64 v3", "type": "E4 v3", "microarchitecture": "Broadwell", "additional_memory": "577.42", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1727.42"}, {"": "322", "family": "E2-64 v3", "type": "E4 v3", "microarchitecture": "Cascade Lake", "additional_memory": "577.42", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1727.42"}, {"": "323", "family": "E2-64 v3", "type": "E4 v3", "microarchitecture": "Skylake", "additional_memory": "577.42", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1727.42"}, {"": "324", "family": "E2-64 v3", "type": "E48 v3", "microarchitecture": "Broadwell", "additional_memory": "577.42", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1727.42"}, {"": "325", "family": "E2-64 v3", "type": "E48 v3", "microarchitecture": "Cascade Lake", "additional_memory": "577.42", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1727.42"}, {"": "326", "family": "E2-64 v3", "type": "E48 v3", "microarchitecture": "Skylake", "additional_memory": "577.42", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1727.42"}, {"": "327", "family": "E2-64 v3", "type": "E64 v3", "microarchitecture": "Broadwell", "additional_memory": "577.42", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1727.42"}, {"": "328", "family": "E2-64 v3", "type": "E64 v3", "microarchitecture": "Cascade Lake", "additional_memory": "577.42", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1727.42"}, {"": "329", "family": "E2-64 v3", "type": "E64 v3", "microarchitecture": "Skylake", "additional_memory": "577.42", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1727.42"}, {"": "330", "family": "E2-64 v3", "type": "E64i v3 1", "microarchitecture": "Broadwell", "additional_memory": "577.42", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1727.42"}, {"": "331", "family": "E2-64 v3", "type": "E64i v3 1", "microarchitecture": "Cascade Lake", "additional_memory": "577.42", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1727.42"}, {"": "332", "family": "E2-64 v3", "type": "E64i v3 1", "microarchitecture": "Skylake", "additional_memory": "577.42", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1727.42"}, {"": "333", "family": "E2-64 v3", "type": "E8 v3", "microarchitecture": "Broadwell", "additional_memory": "577.42", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1727.42"}, {"": "334", "family": "E2-64 v3", "type": "E8 v3", "microarchitecture": "Cascade Lake", "additional_memory": "577.42", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1727.42"}, {"": "335", "family": "E2-64 v3", "type": "E8 v3", "microarchitecture": "Skylake", "additional_memory": "577.42", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1727.42"}, {"": "336", "family": "E2a \u2013 E96a v4", "type": "E16a v4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "910.54", "additional_storage": "50.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1960.54"}, {"": "337", "family": "E2a \u2013 E96a v4", "type": "E20a v4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "910.54", "additional_storage": "50.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1960.54"}, {"": "338", "family": "E2a \u2013 E96a v4", "type": "E2a v4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "910.54", "additional_storage": "50.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1960.54"}, {"": "339", "family": "E2a \u2013 E96a v4", "type": "E32a v4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "910.54", "additional_storage": "50.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1960.54"}, {"": "340", "family": "E2a \u2013 E96a v4", "type": "E48a v4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "910.54", "additional_storage": "50.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1960.54"}, {"": "341", "family": "E2a \u2013 E96a v4", "type": "E4a v4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "910.54", "additional_storage": "50.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1960.54"}, {"": "342", "family": "E2a \u2013 E96a v4", "type": "E64a v4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "910.54", "additional_storage": "50.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1960.54"}, {"": "343", "family": "E2a \u2013 E96a v4", "type": "E8a v4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "910.54", "additional_storage": "50.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1960.54"}, {"": "344", "family": "E2a \u2013 E96a v4", "type": "E96a v4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "910.54", "additional_storage": "50.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1960.54"}, {"": "345", "family": "E2as \u2013 E96as v4", "type": "E16as v4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "910.54", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2010.54"}, {"": "346", "family": "E2as \u2013 E96as v4", "type": "E20as v4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "910.54", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2010.54"}, {"": "347", "family": "E2as \u2013 E96as v4", "type": "E2as v4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "910.54", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2010.54"}, {"": "348", "family": "E2as \u2013 E96as v4", "type": "E32as v4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "910.54", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2010.54"}, {"": "349", "family": "E2as \u2013 E96as v4", "type": "E48as v4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "910.54", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2010.54"}, {"": "350", "family": "E2as \u2013 E96as v4", "type": "E4as v4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "910.54", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2010.54"}, {"": "351", "family": "E2as \u2013 E96as v4", "type": "E64as v4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "910.54", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2010.54"}, {"": "352", "family": "E2as \u2013 E96as v4", "type": "E8as v4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "910.54", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2010.54"}, {"": "353", "family": "E2as \u2013 E96as v4", "type": "E96as v4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "910.54", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2010.54"}, {"": "354", "family": "E2d \u2013 E64d v4", "type": "E16d v4", "microarchitecture": "Cascade Lake", "additional_memory": "677.35", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1877.35"}, {"": "355", "family": "E2d \u2013 E64d v4", "type": "E20d v4", "microarchitecture": "Cascade Lake", "additional_memory": "677.35", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1877.35"}, {"": "356", "family": "E2d \u2013 E64d v4", "type": "E2d v4", "microarchitecture": "Cascade Lake", "additional_memory": "677.35", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1877.35"}, {"": "357", "family": "E2d \u2013 E64d v4", "type": "E32d v4", "microarchitecture": "Cascade Lake", "additional_memory": "677.35", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1877.35"}, {"": "358", "family": "E2d \u2013 E64d v4", "type": "E48d v4", "microarchitecture": "Cascade Lake", "additional_memory": "677.35", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1877.35"}, {"": "359", "family": "E2d \u2013 E64d v4", "type": "E4d v4", "microarchitecture": "Cascade Lake", "additional_memory": "677.35", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1877.35"}, {"": "360", "family": "E2d \u2013 E64d v4", "type": "E64d v4", "microarchitecture": "Cascade Lake", "additional_memory": "677.35", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1877.35"}, {"": "361", "family": "E2d \u2013 E64d v4", "type": "E8d v4", "microarchitecture": "Cascade Lake", "additional_memory": "677.35", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1877.35"}, {"": "362", "family": "E2ds \u2013 E64ds v4", "type": "E16ds v4", "microarchitecture": "Cascade Lake", "additional_memory": "677.35", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1877.35"}, {"": "363", "family": "E2ds \u2013 E64ds v4", "type": "E20ds v4", "microarchitecture": "Cascade Lake", "additional_memory": "677.35", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1877.35"}, {"": "364", "family": "E2ds \u2013 E64ds v4", "type": "E2ds v4", "microarchitecture": "Cascade Lake", "additional_memory": "677.35", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1877.35"}, {"": "365", "family": "E2ds \u2013 E64ds v4", "type": "E32ds v4", "microarchitecture": "Cascade Lake", "additional_memory": "677.35", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1877.35"}, {"": "366", "family": "E2ds \u2013 E64ds v4", "type": "E48ds v4", "microarchitecture": "Cascade Lake", "additional_memory": "677.35", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1877.35"}, {"": "367", "family": "E2ds \u2013 E64ds v4", "type": "E4ds v4", "microarchitecture": "Cascade Lake", "additional_memory": "677.35", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1877.35"}, {"": "368", "family": "E2ds \u2013 E64ds v4", "type": "E64ds v4", "microarchitecture": "Cascade Lake", "additional_memory": "677.35", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1877.35"}, {"": "369", "family": "E2ds \u2013 E64ds v4", "type": "E80ids v4 1", "microarchitecture": "Cascade Lake", "additional_memory": "677.35", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1877.35"}, {"": "370", "family": "E2ds \u2013 E64ds v4", "type": "E8ds v4", "microarchitecture": "Cascade Lake", "additional_memory": "677.35", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1877.35"}, {"": "371", "family": "E2s \u2013 E64s v4", "type": "E16s v4", "microarchitecture": "Cascade Lake", "additional_memory": "677.35", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.35"}, {"": "372", "family": "E2s \u2013 E64s v4", "type": "E20s v4", "microarchitecture": "Cascade Lake", "additional_memory": "677.35", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.35"}, {"": "373", "family": "E2s \u2013 E64s v4", "type": "E2s v4", "microarchitecture": "Cascade Lake", "additional_memory": "677.35", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.35"}, {"": "374", "family": "E2s \u2013 E64s v4", "type": "E32s v4", "microarchitecture": "Cascade Lake", "additional_memory": "677.35", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.35"}, {"": "375", "family": "E2s \u2013 E64s v4", "type": "E48s v4", "microarchitecture": "Cascade Lake", "additional_memory": "677.35", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.35"}, {"": "376", "family": "E2s \u2013 E64s v4", "type": "E4s v4", "microarchitecture": "Cascade Lake", "additional_memory": "677.35", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.35"}, {"": "377", "family": "E2s \u2013 E64s v4", "type": "E64s v4", "microarchitecture": "Cascade Lake", "additional_memory": "677.35", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.35"}, {"": "378", "family": "E2s \u2013 E64s v4", "type": "E80is v4 1", "microarchitecture": "Cascade Lake", "additional_memory": "677.35", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1827.35"}, {"": "379", "family": "E2s \u2013 E64s v4", "type": "E8s v4", "microarchitecture": "Cascade Lake", "additional_memory": "677.35", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.35"}, {"": "380", "family": "E2s-64s v3", "type": "E16s v3", "microarchitecture": "Broadwell", "additional_memory": "577.42", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.42"}, {"": "381", "family": "E2s-64s v3", "type": "E16s v3", "microarchitecture": "Cascade Lake", "additional_memory": "577.42", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.42"}, {"": "382", "family": "E2s-64s v3", "type": "E16s v3", "microarchitecture": "Skylake", "additional_memory": "577.42", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.42"}, {"": "383", "family": "E2s-64s v3", "type": "E20s v3", "microarchitecture": "Broadwell", "additional_memory": "577.42", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.42"}, {"": "384", "family": "E2s-64s v3", "type": "E20s v3", "microarchitecture": "Cascade Lake", "additional_memory": "577.42", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.42"}, {"": "385", "family": "E2s-64s v3", "type": "E20s v3", "microarchitecture": "Skylake", "additional_memory": "577.42", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.42"}, {"": "386", "family": "E2s-64s v3", "type": "E2s v3", "microarchitecture": "Broadwell", "additional_memory": "577.42", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.42"}, {"": "387", "family": "E2s-64s v3", "type": "E2s v3", "microarchitecture": "Cascade Lake", "additional_memory": "577.42", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.42"}, {"": "388", "family": "E2s-64s v3", "type": "E2s v3", "microarchitecture": "Skylake", "additional_memory": "577.42", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.42"}, {"": "389", "family": "E2s-64s v3", "type": "E32s v3", "microarchitecture": "Broadwell", "additional_memory": "577.42", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.42"}, {"": "390", "family": "E2s-64s v3", "type": "E32s v3", "microarchitecture": "Cascade Lake", "additional_memory": "577.42", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.42"}, {"": "391", "family": "E2s-64s v3", "type": "E32s v3", "microarchitecture": "Skylake", "additional_memory": "577.42", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.42"}, {"": "392", "family": "E2s-64s v3", "type": "E48s v3", "microarchitecture": "Broadwell", "additional_memory": "577.42", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.42"}, {"": "393", "family": "E2s-64s v3", "type": "E48s v3", "microarchitecture": "Cascade Lake", "additional_memory": "577.42", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.42"}, {"": "394", "family": "E2s-64s v3", "type": "E48s v3", "microarchitecture": "Skylake", "additional_memory": "577.42", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.42"}, {"": "395", "family": "E2s-64s v3", "type": "E4s v3", "microarchitecture": "Broadwell", "additional_memory": "577.42", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.42"}, {"": "396", "family": "E2s-64s v3", "type": "E4s v3", "microarchitecture": "Cascade Lake", "additional_memory": "577.42", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.42"}, {"": "397", "family": "E2s-64s v3", "type": "E4s v3", "microarchitecture": "Skylake", "additional_memory": "577.42", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.42"}, {"": "398", "family": "E2s-64s v3", "type": "E64is v3 1", "microarchitecture": "Broadwell", "additional_memory": "577.42", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.42"}, {"": "399", "family": "E2s-64s v3", "type": "E64is v3 1", "microarchitecture": "Cascade Lake", "additional_memory": "577.42", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.42"}, {"": "400", "family": "E2s-64s v3", "type": "E64is v3 1", "microarchitecture": "Skylake", "additional_memory": "577.42", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.42"}, {"": "401", "family": "E2s-64s v3", "type": "E64s v3", "microarchitecture": "Broadwell", "additional_memory": "577.42", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.42"}, {"": "402", "family": "E2s-64s v3", "type": "E64s v3", "microarchitecture": "Cascade Lake", "additional_memory": "577.42", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.42"}, {"": "403", "family": "E2s-64s v3", "type": "E64s v3", "microarchitecture": "Skylake", "additional_memory": "577.42", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.42"}, {"": "404", "family": "E2s-64s v3", "type": "E8s v3", "microarchitecture": "Broadwell", "additional_memory": "577.42", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.42"}, {"": "405", "family": "E2s-64s v3", "type": "E8s v3", "microarchitecture": "Cascade Lake", "additional_memory": "577.42", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.42"}, {"": "406", "family": "E2s-64s v3", "type": "E8s v3", "microarchitecture": "Skylake", "additional_memory": "577.42", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1777.42"}, {"": "407", "family": "F-series", "type": "F1", "microarchitecture": "Haswell", "additional_memory": "22.21", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1222.21"}, {"": "408", "family": "F-series", "type": "F1", "microarchitecture": "Cascade Lake", "additional_memory": "22.21", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1222.21"}, {"": "409", "family": "F-series", "type": "F1", "microarchitecture": "Skylake", "additional_memory": "22.21", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1222.21"}, {"": "410", "family": "F-series", "type": "F1", "microarchitecture": "Broadwell", "additional_memory": "22.21", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1222.21"}, {"": "411", "family": "F-series", "type": "F16", "microarchitecture": "Haswell", "additional_memory": "22.21", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1222.21"}, {"": "412", "family": "F-series", "type": "F16", "microarchitecture": "Cascade Lake", "additional_memory": "22.21", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1222.21"}, {"": "413", "family": "F-series", "type": "F16", "microarchitecture": "Skylake", "additional_memory": "22.21", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1222.21"}, {"": "414", "family": "F-series", "type": "F16", "microarchitecture": "Broadwell", "additional_memory": "22.21", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1222.21"}, {"": "415", "family": "F-series", "type": "F2", "microarchitecture": "Haswell", "additional_memory": "22.21", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1222.21"}, {"": "416", "family": "F-series", "type": "F2", "microarchitecture": "Cascade Lake", "additional_memory": "22.21", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1222.21"}, {"": "417", "family": "F-series", "type": "F2", "microarchitecture": "Skylake", "additional_memory": "22.21", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1222.21"}, {"": "418", "family": "F-series", "type": "F2", "microarchitecture": "Broadwell", "additional_memory": "22.21", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1222.21"}, {"": "419", "family": "F-series", "type": "F4", "microarchitecture": "Haswell", "additional_memory": "22.21", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1222.21"}, {"": "420", "family": "F-series", "type": "F4", "microarchitecture": "Cascade Lake", "additional_memory": "22.21", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1222.21"}, {"": "421", "family": "F-series", "type": "F4", "microarchitecture": "Skylake", "additional_memory": "22.21", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1222.21"}, {"": "422", "family": "F-series", "type": "F4", "microarchitecture": "Broadwell", "additional_memory": "22.21", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1222.21"}, {"": "423", "family": "F-series", "type": "F8", "microarchitecture": "Haswell", "additional_memory": "22.21", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1222.21"}, {"": "424", "family": "F-series", "type": "F8", "microarchitecture": "Cascade Lake", "additional_memory": "22.21", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1222.21"}, {"": "425", "family": "F-series", "type": "F8", "microarchitecture": "Skylake", "additional_memory": "22.21", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1222.21"}, {"": "426", "family": "F-series", "type": "F8", "microarchitecture": "Broadwell", "additional_memory": "22.21", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1222.21"}, {"": "427", "family": "Fs-Series", "type": "F16s", "microarchitecture": "Unknown", "additional_memory": "22.21", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1222.21"}, {"": "428", "family": "Fs-Series", "type": "F1s", "microarchitecture": "Unknown", "additional_memory": "22.21", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1222.21"}, {"": "429", "family": "Fs-Series", "type": "F2s", "microarchitecture": "Unknown", "additional_memory": "22.21", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1222.21"}, {"": "430", "family": "Fs-Series", "type": "F4s", "microarchitecture": "Unknown", "additional_memory": "22.21", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1222.21"}, {"": "431", "family": "Fs-Series", "type": "F8s", "microarchitecture": "Unknown", "additional_memory": "22.21", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1222.21"}, {"": "432", "family": "Fsv2-series", "type": "F16s v2", "microarchitecture": "Skylake", "additional_memory": "177.67", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1377.67"}, {"": "433", "family": "Fsv2-series", "type": "F16s v2", "microarchitecture": "Cascade Lake", "additional_memory": "177.67", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1377.67"}, {"": "434", "family": "Fsv2-series", "type": "F2s v2", "microarchitecture": "Skylake", "additional_memory": "177.67", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1377.67"}, {"": "435", "family": "Fsv2-series", "type": "F2s v2", "microarchitecture": "Cascade Lake", "additional_memory": "177.67", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1377.67"}, {"": "436", "family": "Fsv2-series", "type": "F32s v2", "microarchitecture": "Skylake", "additional_memory": "177.67", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1377.67"}, {"": "437", "family": "Fsv2-series", "type": "F32s v2", "microarchitecture": "Cascade Lake", "additional_memory": "177.67", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1377.67"}, {"": "438", "family": "Fsv2-series", "type": "F48s v2", "microarchitecture": "Skylake", "additional_memory": "177.67", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1377.67"}, {"": "439", "family": "Fsv2-series", "type": "F48s v2", "microarchitecture": "Cascade Lake", "additional_memory": "177.67", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1377.67"}, {"": "440", "family": "Fsv2-series", "type": "F4s v2", "microarchitecture": "Skylake", "additional_memory": "177.67", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1377.67"}, {"": "441", "family": "Fsv2-series", "type": "F4s v2", "microarchitecture": "Cascade Lake", "additional_memory": "177.67", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1377.67"}, {"": "442", "family": "Fsv2-series", "type": "F64s v2", "microarchitecture": "Skylake", "additional_memory": "177.67", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1377.67"}, {"": "443", "family": "Fsv2-series", "type": "F64s v2", "microarchitecture": "Cascade Lake", "additional_memory": "177.67", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1377.67"}, {"": "444", "family": "Fsv2-series", "type": "F72s v2", "microarchitecture": "Skylake", "additional_memory": "177.67", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1377.67"}, {"": "445", "family": "Fsv2-series", "type": "F72s v2", "microarchitecture": "Cascade Lake", "additional_memory": "177.67", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1377.67"}, {"": "446", "family": "Fsv2-series", "type": "F8s v2", "microarchitecture": "Skylake", "additional_memory": "599.62", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1799.62"}, {"": "447", "family": "Fsv2-series", "type": "F8s v2", "microarchitecture": "Cascade Lake", "additional_memory": "599.62", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1799.62"}, {"": "448", "family": "G-series", "type": "G1", "microarchitecture": "Haswell", "additional_memory": "599.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1749.62"}, {"": "449", "family": "G-series", "type": "G2", "microarchitecture": "Haswell", "additional_memory": "599.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1749.62"}, {"": "450", "family": "G-series", "type": "G3", "microarchitecture": "Haswell", "additional_memory": "599.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1749.62"}, {"": "451", "family": "G-series", "type": "G4", "microarchitecture": "Haswell", "additional_memory": "599.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1749.62"}, {"": "452", "family": "G-series", "type": "G5", "microarchitecture": "Haswell", "additional_memory": "599.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1749.62"}, {"": "453", "family": "Gs-Series", "type": "Gs1", "microarchitecture": "Unknown", "additional_memory": "599.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1749.62"}, {"": "454", "family": "Gs-Series", "type": "Gs2", "microarchitecture": "Unknown", "additional_memory": "599.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1749.62"}, {"": "455", "family": "Gs-Series", "type": "Gs3", "microarchitecture": "Unknown", "additional_memory": "599.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1749.62"}, {"": "456", "family": "Gs-Series", "type": "Gs4", "microarchitecture": "Unknown", "additional_memory": "599.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1749.62"}, {"": "457", "family": "Gs-Series", "type": "Gs5", "microarchitecture": "Unknown", "additional_memory": "599.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1749.62"}, {"": "458", "family": "H-series", "type": "H16", "microarchitecture": "Haswell", "additional_memory": "288.71", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1438.71"}, {"": "459", "family": "H-series", "type": "H16m", "microarchitecture": "Haswell", "additional_memory": "288.71", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1438.71"}, {"": "460", "family": "H-series", "type": "H16mr", "microarchitecture": "Haswell", "additional_memory": "288.71", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1438.71"}, {"": "461", "family": "H-series", "type": "H16r", "microarchitecture": "Haswell", "additional_memory": "288.71", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1438.71"}, {"": "462", "family": "H-series", "type": "H8", "microarchitecture": "Haswell", "additional_memory": "288.71", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1438.71"}, {"": "463", "family": "H-series", "type": "H8m", "microarchitecture": "Haswell", "additional_memory": "288.71", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1438.71"}, {"": "464", "family": "H-series promo", "type": "H16 Promo", "microarchitecture": "Haswell", "additional_memory": "288.71", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1438.71"}, {"": "465", "family": "H-series promo", "type": "H16m Promo", "microarchitecture": "Haswell", "additional_memory": "288.71", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1438.71"}, {"": "466", "family": "H-series promo", "type": "H16mr Promo", "microarchitecture": "Haswell", "additional_memory": "288.71", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1438.71"}, {"": "467", "family": "H-series promo", "type": "H16r Promo", "microarchitecture": "Haswell", "additional_memory": "288.71", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1438.71"}, {"": "468", "family": "H-series promo", "type": "H8 Promo", "microarchitecture": "Haswell", "additional_memory": "288.71", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1438.71"}, {"": "469", "family": "H-series promo", "type": "H8m Promo", "microarchitecture": "Haswell", "additional_memory": "288.71", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1438.71"}, {"": "470", "family": "HBv2-series", "type": "HB120rs v2", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "644.04", "additional_storage": "50.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1694.04"}, {"": "471", "family": "HBv3-series", "type": "HB120rs v3", "microarchitecture": "EPYC 3rd Gen", "additional_memory": "599.62", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1699.62"}, {"": "472", "family": "Ls-series", "type": "L16s", "microarchitecture": "Haswell", "additional_memory": "333.12", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1533.12"}, {"": "473", "family": "Ls-series", "type": "L32s", "microarchitecture": "Haswell", "additional_memory": "333.12", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1533.12"}, {"": "474", "family": "Ls-series", "type": "L4s", "microarchitecture": "Haswell", "additional_memory": "333.12", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1533.12"}, {"": "475", "family": "Ls-series", "type": "L8s", "microarchitecture": "Haswell", "additional_memory": "333.12", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1533.12"}, {"": "476", "family": "Lsv2-series", "type": "L16s v2", "microarchitecture": "EPYC 1st Gen", "additional_memory": "866.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2016.12"}, {"": "477", "family": "Lsv2-series", "type": "L32s v2", "microarchitecture": "EPYC 1st Gen", "additional_memory": "866.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2016.12"}, {"": "478", "family": "Lsv2-series", "type": "L48s v2", "microarchitecture": "EPYC 1st Gen", "additional_memory": "866.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2016.12"}, {"": "479", "family": "Lsv2-series", "type": "L64s v2", "microarchitecture": "EPYC 1st Gen", "additional_memory": "866.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2016.12"}, {"": "480", "family": "Lsv2-series", "type": "L80s v2", "microarchitecture": "EPYC 1st Gen", "additional_memory": "866.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2016.12"}, {"": "481", "family": "Lsv2-series", "type": "L8s v2", "microarchitecture": "EPYC 1st Gen", "additional_memory": "866.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2016.12"}, {"": "482", "family": "M-series", "type": "M128 1", "microarchitecture": "Cascade Lake", "additional_memory": "5379.97", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6529.97"}, {"": "483", "family": "M-series", "type": "M128 1", "microarchitecture": "Haswell", "additional_memory": "5379.97", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6529.97"}, {"": "484", "family": "M-series", "type": "M128m 1", "microarchitecture": "Cascade Lake", "additional_memory": "5379.97", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6529.97"}, {"": "485", "family": "M-series", "type": "M128m 1", "microarchitecture": "Haswell", "additional_memory": "5379.97", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6529.97"}, {"": "486", "family": "M-series", "type": "M128ms", "microarchitecture": "Cascade Lake", "additional_memory": "5379.97", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6529.97"}, {"": "487", "family": "M-series", "type": "M128ms", "microarchitecture": "Haswell", "additional_memory": "5379.97", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6529.97"}, {"": "488", "family": "M-series", "type": "M128s", "microarchitecture": "Cascade Lake", "additional_memory": "5379.97", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6529.97"}, {"": "489", "family": "M-series", "type": "M128s", "microarchitecture": "Haswell", "additional_memory": "5379.97", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6529.97"}, {"": "490", "family": "M-series", "type": "M16ms", "microarchitecture": "Cascade Lake", "additional_memory": "5379.97", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6529.97"}, {"": "491", "family": "M-series", "type": "M16ms", "microarchitecture": "Haswell", "additional_memory": "5379.97", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6529.97"}, {"": "492", "family": "M-series", "type": "M32ls", "microarchitecture": "Cascade Lake", "additional_memory": "5379.97", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6529.97"}, {"": "493", "family": "M-series", "type": "M32ls", "microarchitecture": "Haswell", "additional_memory": "5379.97", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6529.97"}, {"": "494", "family": "M-series", "type": "M32ms", "microarchitecture": "Cascade Lake", "additional_memory": "5379.97", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6529.97"}, {"": "495", "family": "M-series", "type": "M32ms", "microarchitecture": "Haswell", "additional_memory": "5379.97", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6529.97"}, {"": "496", "family": "M-series", "type": "M32ts", "microarchitecture": "Cascade Lake", "additional_memory": "5379.97", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6529.97"}, {"": "497", "family": "M-series", "type": "M32ts", "microarchitecture": "Haswell", "additional_memory": "5379.97", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6529.97"}, {"": "498", "family": "M-series", "type": "M64 1", "microarchitecture": "Cascade Lake", "additional_memory": "5379.97", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6529.97"}, {"": "499", "family": "M-series", "type": "M64 1", "microarchitecture": "Haswell", "additional_memory": "5379.97", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6529.97"}, {"": "500", "family": "M-series", "type": "M64ls", "microarchitecture": "Cascade Lake", "additional_memory": "5379.97", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6529.97"}, {"": "501", "family": "M-series", "type": "M64ls", "microarchitecture": "Haswell", "additional_memory": "5379.97", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6529.97"}, {"": "502", "family": "M-series", "type": "M64m 1", "microarchitecture": "Cascade Lake", "additional_memory": "5379.97", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6529.97"}, {"": "503", "family": "M-series", "type": "M64m 1", "microarchitecture": "Haswell", "additional_memory": "5379.97", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6529.97"}, {"": "504", "family": "M-series", "type": "M64ms", "microarchitecture": "Cascade Lake", "additional_memory": "5379.97", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6529.97"}, {"": "505", "family": "M-series", "type": "M64ms", "microarchitecture": "Haswell", "additional_memory": "5379.97", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6529.97"}, {"": "506", "family": "M-series", "type": "M64s", "microarchitecture": "Cascade Lake", "additional_memory": "5379.97", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6529.97"}, {"": "507", "family": "M-series", "type": "M64s", "microarchitecture": "Haswell", "additional_memory": "5379.97", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6529.97"}, {"": "508", "family": "M-series", "type": "M8ms", "microarchitecture": "Cascade Lake", "additional_memory": "5379.97", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6529.97"}, {"": "509", "family": "M-series", "type": "M8ms", "microarchitecture": "Haswell", "additional_memory": "5379.97", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6529.97"}, {"": "510", "family": "Mdsv2-series", "type": "M128dms v2", "microarchitecture": "Cascade Lake", "additional_memory": "5663.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6813.12"}, {"": "511", "family": "Mdsv2-series", "type": "M128ds v2", "microarchitecture": "Cascade Lake", "additional_memory": "5663.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6813.12"}, {"": "512", "family": "Mdsv2-series", "type": "M192idms v2", "microarchitecture": "Cascade Lake", "additional_memory": "5663.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6813.12"}, {"": "513", "family": "Mdsv2-series", "type": "M192ids v2", "microarchitecture": "Cascade Lake", "additional_memory": "5663.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6813.12"}, {"": "514", "family": "Mdsv2-series", "type": "M32dms v2", "microarchitecture": "Cascade Lake", "additional_memory": "5663.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6813.12"}, {"": "515", "family": "Mdsv2-series", "type": "M64dms v2", "microarchitecture": "Cascade Lake", "additional_memory": "5663.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6813.12"}, {"": "516", "family": "Mdsv2-series", "type": "M64ds v2", "microarchitecture": "Cascade Lake", "additional_memory": "5663.12", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6813.12"}, {"": "517", "family": "Msv2-series", "type": "M128ms v2", "microarchitecture": "Cascade Lake", "additional_memory": "5663.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6763.12"}, {"": "518", "family": "Msv2-series", "type": "M128s v2", "microarchitecture": "Cascade Lake", "additional_memory": "5663.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6763.12"}, {"": "519", "family": "Msv2-series", "type": "M192ims v2", "microarchitecture": "Cascade Lake", "additional_memory": "5663.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6763.12"}, {"": "520", "family": "Msv2-series", "type": "M192is v2", "microarchitecture": "Cascade Lake", "additional_memory": "5663.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6763.12"}, {"": "521", "family": "Msv2-series", "type": "M32ms v2", "microarchitecture": "Cascade Lake", "additional_memory": "5663.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6763.12"}, {"": "522", "family": "Msv2-series", "type": "M64ms v2", "microarchitecture": "Cascade Lake", "additional_memory": "5663.12", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "6763.12"}, {"": "523", "family": "Msv2-series", "type": "M64s v2", "microarchitecture": "Cascade Lake", "additional_memory": "15801.23", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "16901.23"}, {"": "524", "family": "Mv2-series", "type": "M208ms v2", "microarchitecture": "Skylake", "additional_memory": "15801.23", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "16951.23"}, {"": "525", "family": "Mv2-series", "type": "M208s v2", "microarchitecture": "Skylake", "additional_memory": "15801.23", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "16951.23"}, {"": "526", "family": "Mv2-series", "type": "M416ms v2", "microarchitecture": "Skylake", "additional_memory": "15801.23", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "16951.23"}, {"": "527", "family": "Mv2-series", "type": "M416s v2", "microarchitecture": "Skylake", "additional_memory": "15801.23", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "16951.23"}, {"": "528", "family": "NC-series", "type": "NC12", "microarchitecture": "Unknown", "additional_memory": "288.71", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "2038.71"}, {"": "529", "family": "NC-series", "type": "NC24", "microarchitecture": "Unknown", "additional_memory": "288.71", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "2038.71"}, {"": "530", "family": "NC-series", "type": "NC24r", "microarchitecture": "Unknown", "additional_memory": "288.71", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "2038.71"}, {"": "531", "family": "NC-series", "type": "NC6", "microarchitecture": "Unknown", "additional_memory": "288.71", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "2038.71"}, {"": "532", "family": "NC-series Promo", "type": "NC12 Promo", "microarchitecture": "Unknown", "additional_memory": "288.71", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "2038.71"}, {"": "533", "family": "NC-series Promo", "type": "NC24 Promo", "microarchitecture": "Unknown", "additional_memory": "288.71", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "2038.71"}, {"": "534", "family": "NC-series Promo", "type": "NC24r Promo", "microarchitecture": "Unknown", "additional_memory": "288.71", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "2038.71"}, {"": "535", "family": "NC-series Promo", "type": "NC6 Promo", "microarchitecture": "Unknown", "additional_memory": "288.71", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "2038.71"}, {"": "536", "family": "NCas_T4_v3 Series", "type": "NC16as T4 v3", "microarchitecture": "Unknown", "additional_memory": "599.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "2349.62"}, {"": "537", "family": "NCas_T4_v3 Series", "type": "NC4as T4 v3", "microarchitecture": "Unknown", "additional_memory": "599.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "2349.62"}, {"": "538", "family": "NCas_T4_v3 Series", "type": "NC64as T4 v3", "microarchitecture": "Unknown", "additional_memory": "599.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "2349.62"}, {"": "539", "family": "NCas_T4_v3 Series", "type": "NC8as T4 v3", "microarchitecture": "Unknown", "additional_memory": "599.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "2349.62"}, {"": "540", "family": "NCsv2-series", "type": "NC12s v2", "microarchitecture": "Unknown", "additional_memory": "599.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "2349.62"}, {"": "541", "family": "NCsv2-series", "type": "NC24rs v2", "microarchitecture": "Unknown", "additional_memory": "599.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "2349.62"}, {"": "542", "family": "NCsv2-series", "type": "NC24s v2", "microarchitecture": "Unknown", "additional_memory": "599.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "2349.62"}, {"": "543", "family": "NCsv2-series", "type": "NC6s v2", "microarchitecture": "Unknown", "additional_memory": "599.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "2349.62"}, {"": "544", "family": "NCsv3-series", "type": "NC12s v3", "microarchitecture": "Unknown", "additional_memory": "599.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "2349.62"}, {"": "545", "family": "NCsv3-series", "type": "NC24rs v3", "microarchitecture": "Unknown", "additional_memory": "599.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "2349.62"}, {"": "546", "family": "NCsv3-series", "type": "NC24s v3", "microarchitecture": "Unknown", "additional_memory": "599.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "2349.62"}, {"": "547", "family": "NCsv3-series", "type": "NC6s v3", "microarchitecture": "Unknown", "additional_memory": "599.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "2349.62"}, {"": "548", "family": "NDs-series", "type": "ND12s", "microarchitecture": "Unknown", "additional_memory": "599.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "2349.62"}, {"": "549", "family": "NDs-series", "type": "ND24rs", "microarchitecture": "Unknown", "additional_memory": "599.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "2349.62"}, {"": "550", "family": "NDs-series", "type": "ND24s", "microarchitecture": "Unknown", "additional_memory": "599.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "2349.62"}, {"": "551", "family": "NDs-series", "type": "ND6s", "microarchitecture": "Unknown", "additional_memory": "599.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "2349.62"}, {"": "552", "family": "NDv2 Series", "type": "ND40rs v2", "microarchitecture": "Unknown", "additional_memory": "910.54", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "1200.0", "total": "3260.54"}, {"": "553", "family": "NP-Series", "type": "NP10s", "microarchitecture": "Unknown", "additional_memory": "1043.79", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2193.79"}, {"": "554", "family": "NP-Series", "type": "NP20s", "microarchitecture": "Unknown", "additional_memory": "1043.79", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2193.79"}, {"": "555", "family": "NP-Series", "type": "NP40s", "microarchitecture": "Unknown", "additional_memory": "1043.79", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2193.79"}, {"": "556", "family": "NV-series", "type": "NV12", "microarchitecture": "Unknown", "additional_memory": "288.71", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "2038.71"}, {"": "557", "family": "NV-series", "type": "NV24", "microarchitecture": "Unknown", "additional_memory": "288.71", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "2038.71"}, {"": "558", "family": "NV-series", "type": "NV6", "microarchitecture": "Unknown", "additional_memory": "288.71", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "2038.71"}, {"": "559", "family": "NVv3-series", "type": "NV12s v3", "microarchitecture": "Unknown", "additional_memory": "599.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "2349.62"}, {"": "560", "family": "NVv3-series", "type": "NV24s v3", "microarchitecture": "Unknown", "additional_memory": "599.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "2349.62"}, {"": "561", "family": "NVv3-series", "type": "NV48s v3", "microarchitecture": "Unknown", "additional_memory": "599.62", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "600.0", "total": "2349.62"}, {"": "562", "family": "SAP HANA on Azure Large Instances", "type": "S192", "microarchitecture": "Broadwell", "additional_memory": "16634.04", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "17784.04"}, {"": "563", "family": "SAP HANA on Azure Large Instances", "type": "S192m", "microarchitecture": "Broadwell", "additional_memory": "16634.04", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "17784.04"}, {"": "564", "family": "SAP HANA on Azure Large Instances", "type": "S192xm", "microarchitecture": "Broadwell", "additional_memory": "16634.04", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "17784.04"}, {"": "565", "family": "SAP HANA on Azure Large Instances", "type": "S384", "microarchitecture": "Broadwell", "additional_memory": "16634.04", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "17784.04"}, {"": "566", "family": "SAP HANA on Azure Large Instances", "type": "S384m", "microarchitecture": "Broadwell", "additional_memory": "16634.04", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "17784.04"}, {"": "567", "family": "SAP HANA on Azure Large Instances", "type": "S384xm", "microarchitecture": "Broadwell", "additional_memory": "16634.04", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "17784.04"}, {"": "568", "family": "SAP HANA on Azure Large Instances", "type": "S384xxm", "microarchitecture": "Broadwell", "additional_memory": "16634.04", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "17784.04"}, {"": "569", "family": "SAP HANA on Azure Large Instances", "type": "S576m", "microarchitecture": "Broadwell", "additional_memory": "16634.04", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "17784.04"}, {"": "570", "family": "SAP HANA on Azure Large Instances", "type": "S96", "microarchitecture": "Broadwell", "additional_memory": "16634.04", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "17784.04"}, {"": "571", "family": "SAP HANA on Azure Large Instances (second generation)", "type": "S224", "microarchitecture": "Cascade Lake", "additional_memory": "51145.79", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "52295.79"}, {"": "572", "family": "SAP HANA on Azure Large Instances (second generation)", "type": "S224m", "microarchitecture": "Cascade Lake", "additional_memory": "51145.79", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "52295.79"}, {"": "573", "family": "SAP HANA on Azure Large Instances (second generation)", "type": "S224om", "microarchitecture": "Cascade Lake", "additional_memory": "51145.79", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "52295.79"}, {"": "574", "family": "SAP HANA on Azure Large Instances (second generation)", "type": "S224oo", "microarchitecture": "Cascade Lake", "additional_memory": "51145.79", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "52295.79"}, {"": "575", "family": "SAP HANA on Azure Large Instances (second generation)", "type": "S224oom", "microarchitecture": "Cascade Lake", "additional_memory": "51145.79", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "52295.79"}, {"": "576", "family": "SAP HANA on Azure Large Instances (second generation)", "type": "S224ooo", "microarchitecture": "Cascade Lake", "additional_memory": "51145.79", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "52295.79"}, {"": "577", "family": "SAP HANA on Azure Large Instances (second generation)", "type": "S448", "microarchitecture": "Cascade Lake", "additional_memory": "51145.79", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "52295.79"}, {"": "578", "family": "SAP HANA on Azure Large Instances (second generation)", "type": "S448m", "microarchitecture": "Cascade Lake", "additional_memory": "51145.79", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "52295.79"}, {"": "579", "family": "SAP HANA on Azure Large Instances (second generation)", "type": "S448om", "microarchitecture": "Cascade Lake", "additional_memory": "51145.79", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "52295.79"}, {"": "580", "family": "SAP HANA on Azure Large Instances (second generation)", "type": "S448oo", "microarchitecture": "Cascade Lake", "additional_memory": "51145.79", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "52295.79"}, {"": "581", "family": "SAP HANA on Azure Large Instances (second generation)", "type": "S448oom", "microarchitecture": "Cascade Lake", "additional_memory": "51145.79", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "52295.79"}, {"": "582", "family": "SAP HANA on Azure Large Instances (second generation)", "type": "S448ooo", "microarchitecture": "Cascade Lake", "additional_memory": "51145.79", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "52295.79"}, {"": "583", "family": "SAP HANA on Azure Large Instances (second generation)", "type": "S672", "microarchitecture": "Cascade Lake", "additional_memory": "51145.79", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "52295.79"}, {"": "584", "family": "SAP HANA on Azure Large Instances (second generation)", "type": "S672m", "microarchitecture": "Cascade Lake", "additional_memory": "51145.79", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "52295.79"}, {"": "585", "family": "SAP HANA on Azure Large Instances (second generation)", "type": "S672om", "microarchitecture": "Cascade Lake", "additional_memory": "51145.79", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "52295.79"}, {"": "586", "family": "SAP HANA on Azure Large Instances (second generation)", "type": "S672oo", "microarchitecture": "Cascade Lake", "additional_memory": "51145.79", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "52295.79"}, {"": "587", "family": "SAP HANA on Azure Large Instances (second generation)", "type": "S672oom", "microarchitecture": "Cascade Lake", "additional_memory": "51145.79", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "52295.79"}, {"": "588", "family": "SAP HANA on Azure Large Instances (second generation)", "type": "S672ooo", "microarchitecture": "Cascade Lake", "additional_memory": "51145.79", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "52295.79"}, {"": "589", "family": "SAP HANA on Azure Large Instances (second generation)", "type": "S896", "microarchitecture": "Cascade Lake", "additional_memory": "51145.79", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "52295.79"}, {"": "590", "family": "SAP HANA on Azure Large Instances (second generation)", "type": "S896m", "microarchitecture": "Cascade Lake", "additional_memory": "51145.79", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "52295.79"}, {"": "591", "family": "SAP HANA on Azure Large Instances (second generation)", "type": "S896om", "microarchitecture": "Cascade Lake", "additional_memory": "51145.79", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "52295.79"}, {"": "592", "family": "SAP HANA on Azure Large Instances (second generation)", "type": "S896oo", "microarchitecture": "Cascade Lake", "additional_memory": "51145.79", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "52295.79"}, {"": "593", "family": "SAP HANA on Azure Large Instances (second generation)", "type": "S896oom", "microarchitecture": "Cascade Lake", "additional_memory": "51145.79", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "52295.79"}, {"": "594", "family": "SAP HANA on Azure Large Instances (second generation)", "type": "S896ooo", "microarchitecture": "Cascade Lake", "additional_memory": "51145.79", "additional_storage": "50.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "52295.79"}] +[ + { + "": "0", + "family": "Av2 Standard", + "type": "A1 v2", + "microarchitecture": "Unknown", + "additional_memory": "66.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1216.62" + }, + { + "": "1", + "family": "Av2 Standard", + "type": "A2 v2", + "microarchitecture": "Unknown", + "additional_memory": "66.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1216.62" + }, + { + "": "2", + "family": "Av2 Standard", + "type": "A2m v2", + "microarchitecture": "Unknown", + "additional_memory": "66.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1216.62" + }, + { + "": "3", + "family": "Av2 Standard", + "type": "A4 v2", + "microarchitecture": "Unknown", + "additional_memory": "66.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1216.62" + }, + { + "": "4", + "family": "Av2 Standard", + "type": "A4m v2", + "microarchitecture": "Unknown", + "additional_memory": "66.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1216.62" + }, + { + "": "5", + "family": "Av2 Standard", + "type": "A8 v2", + "microarchitecture": "Unknown", + "additional_memory": "66.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1216.62" + }, + { + "": "6", + "family": "Av2 Standard", + "type": "A8m v2", + "microarchitecture": "Unknown", + "additional_memory": "66.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1216.62" + }, + { + "": "7", + "family": "Bs-series", + "type": "B12MS", + "microarchitecture": "Unknown", + "additional_memory": "88.83", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1238.83" + }, + { + "": "8", + "family": "Bs-series", + "type": "B16MS", + "microarchitecture": "Unknown", + "additional_memory": "88.83", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1238.83" + }, + { + "": "9", + "family": "Bs-series", + "type": "B1LS", + "microarchitecture": "Unknown", + "additional_memory": "88.83", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1238.83" + }, + { + "": "10", + "family": "Bs-series", + "type": "B1MS", + "microarchitecture": "Unknown", + "additional_memory": "88.83", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1238.83" + }, + { + "": "11", + "family": "Bs-series", + "type": "B1S", + "microarchitecture": "Unknown", + "additional_memory": "88.83", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1238.83" + }, + { + "": "12", + "family": "Bs-series", + "type": "B20MS", + "microarchitecture": "Unknown", + "additional_memory": "88.83", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1238.83" + }, + { + "": "13", + "family": "Bs-series", + "type": "B2MS", + "microarchitecture": "Unknown", + "additional_memory": "88.83", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1238.83" + }, + { + "": "14", + "family": "Bs-series", + "type": "B2S", + "microarchitecture": "Unknown", + "additional_memory": "88.83", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1238.83" + }, + { + "": "15", + "family": "Bs-series", + "type": "B4MS", + "microarchitecture": "Unknown", + "additional_memory": "88.83", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1238.83" + }, + { + "": "16", + "family": "Bs-series", + "type": "B8MS", + "microarchitecture": "Unknown", + "additional_memory": "88.83", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1238.83" + }, + { + "": "17", + "family": "Constrained vCPUs capable", + "type": "DS11-1 v2", + "microarchitecture": "Unknown", + "additional_memory": "0.0", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1150.0" + }, + { + "": "18", + "family": "Constrained vCPUs capable", + "type": "DS12-1 v2", + "microarchitecture": "Unknown", + "additional_memory": "16.66", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1166.66" + }, + { + "": "19", + "family": "Constrained vCPUs capable", + "type": "DS12-2 v2", + "microarchitecture": "Unknown", + "additional_memory": "16.66", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1166.66" + }, + { + "": "20", + "family": "Constrained vCPUs capable", + "type": "DS13-2 v2", + "microarchitecture": "Unknown", + "additional_memory": "55.52", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1205.52" + }, + { + "": "21", + "family": "Constrained vCPUs capable", + "type": "DS13-4 v2", + "microarchitecture": "Unknown", + "additional_memory": "55.52", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1205.52" + }, + { + "": "22", + "family": "Constrained vCPUs capable", + "type": "DS14-4 v2", + "microarchitecture": "Unknown", + "additional_memory": "133.25", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1283.25" + }, + { + "": "23", + "family": "Constrained vCPUs capable", + "type": "DS14-8 v2", + "microarchitecture": "Unknown", + "additional_memory": "133.25", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1283.25" + }, + { + "": "24", + "family": "Constrained vCPUs capable", + "type": "E16-4as v4", + "microarchitecture": "Unknown", + "additional_memory": "155.46", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1305.46" + }, + { + "": "25", + "family": "Constrained vCPUs capable", + "type": "E16-4ds v4", + "microarchitecture": "Unknown", + "additional_memory": "155.46", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1305.46" + }, + { + "": "26", + "family": "Constrained vCPUs capable", + "type": "E16-4s v3", + "microarchitecture": "Unknown", + "additional_memory": "155.46", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1305.46" + }, + { + "": "27", + "family": "Constrained vCPUs capable", + "type": "E16-4s v4", + "microarchitecture": "Unknown", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "28", + "family": "Constrained vCPUs capable", + "type": "E16-8as v4", + "microarchitecture": "Unknown", + "additional_memory": "155.46", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1305.46" + }, + { + "": "29", + "family": "Constrained vCPUs capable", + "type": "E16-8ds v4", + "microarchitecture": "Unknown", + "additional_memory": "155.46", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1305.46" + }, + { + "": "30", + "family": "Constrained vCPUs capable", + "type": "E16-8s v3", + "microarchitecture": "Unknown", + "additional_memory": "155.46", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1305.46" + }, + { + "": "31", + "family": "Constrained vCPUs capable", + "type": "E16-8s v4", + "microarchitecture": "Unknown", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "32", + "family": "Constrained vCPUs capable", + "type": "E32-16as v4", + "microarchitecture": "Unknown", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "33", + "family": "Constrained vCPUs capable", + "type": "E32-16ds v4", + "microarchitecture": "Unknown", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "34", + "family": "Constrained vCPUs capable", + "type": "E32-16s v3", + "microarchitecture": "Unknown", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "35", + "family": "Constrained vCPUs capable", + "type": "E32-16s v4", + "microarchitecture": "Unknown", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "36", + "family": "Constrained vCPUs capable", + "type": "E32-8as v4", + "microarchitecture": "Unknown", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "37", + "family": "Constrained vCPUs capable", + "type": "E32-8ds v4", + "microarchitecture": "Unknown", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "38", + "family": "Constrained vCPUs capable", + "type": "E32-8s v3", + "microarchitecture": "Unknown", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "39", + "family": "Constrained vCPUs capable", + "type": "E32-8s v4", + "microarchitecture": "Unknown", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "40", + "family": "Constrained vCPUs capable", + "type": "E4-2as v4", + "microarchitecture": "Unknown", + "additional_memory": "22.21", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1172.21" + }, + { + "": "41", + "family": "Constrained vCPUs capable", + "type": "E4-2ds v4", + "microarchitecture": "Unknown", + "additional_memory": "22.21", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1172.21" + }, + { + "": "42", + "family": "Constrained vCPUs capable", + "type": "E4-2s v3", + "microarchitecture": "Unknown", + "additional_memory": "22.21", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1172.21" + }, + { + "": "43", + "family": "Constrained vCPUs capable", + "type": "E4-2s v4", + "microarchitecture": "Unknown", + "additional_memory": "22.21", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1122.21" + }, + { + "": "44", + "family": "Constrained vCPUs capable", + "type": "E64-16as v4", + "microarchitecture": "Unknown", + "additional_memory": "688.46", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1838.46" + }, + { + "": "45", + "family": "Constrained vCPUs capable", + "type": "E64-16ds v4", + "microarchitecture": "Unknown", + "additional_memory": "677.35", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1827.35" + }, + { + "": "46", + "family": "Constrained vCPUs capable", + "type": "E64-16s v3", + "microarchitecture": "Unknown", + "additional_memory": "577.42", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1727.42" + }, + { + "": "47", + "family": "Constrained vCPUs capable", + "type": "E64-16s v4", + "microarchitecture": "Unknown", + "additional_memory": "677.35", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.35" + }, + { + "": "48", + "family": "Constrained vCPUs capable", + "type": "E64-32as v4", + "microarchitecture": "Unknown", + "additional_memory": "688.46", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1838.46" + }, + { + "": "49", + "family": "Constrained vCPUs capable", + "type": "E64-32ds v4", + "microarchitecture": "Unknown", + "additional_memory": "677.35", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1827.35" + }, + { + "": "50", + "family": "Constrained vCPUs capable", + "type": "E64-32s v3", + "microarchitecture": "Unknown", + "additional_memory": "577.42", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1727.42" + }, + { + "": "51", + "family": "Constrained vCPUs capable", + "type": "E64-32s v4", + "microarchitecture": "Unknown", + "additional_memory": "677.35", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.35" + }, + { + "": "52", + "family": "Constrained vCPUs capable", + "type": "E8-2as v4", + "microarchitecture": "Unknown", + "additional_memory": "66.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1216.62" + }, + { + "": "53", + "family": "Constrained vCPUs capable", + "type": "E8-2ds v4", + "microarchitecture": "Unknown", + "additional_memory": "66.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1216.62" + }, + { + "": "54", + "family": "Constrained vCPUs capable", + "type": "E8-2s v3", + "microarchitecture": "Unknown", + "additional_memory": "66.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1216.62" + }, + { + "": "55", + "family": "Constrained vCPUs capable", + "type": "E8-2s v4", + "microarchitecture": "Unknown", + "additional_memory": "66.62", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1166.62" + }, + { + "": "56", + "family": "Constrained vCPUs capable", + "type": "E8-4as v4", + "microarchitecture": "Unknown", + "additional_memory": "66.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1216.62" + }, + { + "": "57", + "family": "Constrained vCPUs capable", + "type": "E8-4ds v4", + "microarchitecture": "Unknown", + "additional_memory": "66.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1216.62" + }, + { + "": "58", + "family": "Constrained vCPUs capable", + "type": "E8-4s v3", + "microarchitecture": "Unknown", + "additional_memory": "66.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1216.62" + }, + { + "": "59", + "family": "Constrained vCPUs capable", + "type": "E8-4s v4", + "microarchitecture": "Unknown", + "additional_memory": "66.62", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1166.62" + }, + { + "": "60", + "family": "Constrained vCPUs capable", + "type": "E96-24as v4", + "microarchitecture": "Unknown", + "additional_memory": "910.54", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2060.54" + }, + { + "": "61", + "family": "Constrained vCPUs capable", + "type": "E96-48as v4", + "microarchitecture": "Unknown", + "additional_memory": "910.54", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2060.54" + }, + { + "": "62", + "family": "Constrained vCPUs capable", + "type": "Gs4-4", + "microarchitecture": "Unknown", + "additional_memory": "288.71", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1438.71" + }, + { + "": "63", + "family": "Constrained vCPUs capable", + "type": "Gs4-8", + "microarchitecture": "Unknown", + "additional_memory": "288.71", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1438.71" + }, + { + "": "64", + "family": "Constrained vCPUs capable", + "type": "Gs5-16", + "microarchitecture": "Unknown", + "additional_memory": "599.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1749.62" + }, + { + "": "65", + "family": "Constrained vCPUs capable", + "type": "Gs5-8", + "microarchitecture": "Unknown", + "additional_memory": "599.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1749.62" + }, + { + "": "66", + "family": "Constrained vCPUs capable", + "type": "HB120-16rs v3", + "microarchitecture": "EPYC 3rd Gen", + "additional_memory": "599.62", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1699.62" + }, + { + "": "67", + "family": "Constrained vCPUs capable", + "type": "HB120-32rs v3", + "microarchitecture": "EPYC 3rd Gen", + "additional_memory": "599.62", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1699.62" + }, + { + "": "68", + "family": "Constrained vCPUs capable", + "type": "HB120-64rs v3", + "microarchitecture": "EPYC 3rd Gen", + "additional_memory": "599.62", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1699.62" + }, + { + "": "69", + "family": "Constrained vCPUs capable", + "type": "HB120-96rs v3", + "microarchitecture": "EPYC 3rd Gen", + "additional_memory": "599.62", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1699.62" + }, + { + "": "70", + "family": "Constrained vCPUs capable", + "type": "M128-32ms", + "microarchitecture": "Unknown", + "additional_memory": "5252.27", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6402.27" + }, + { + "": "71", + "family": "Constrained vCPUs capable", + "type": "M128-64ms", + "microarchitecture": "Unknown", + "additional_memory": "5252.27", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6402.27" + }, + { + "": "72", + "family": "Constrained vCPUs capable", + "type": "M16-4ms", + "microarchitecture": "Unknown", + "additional_memory": "585.74", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1735.74" + }, + { + "": "73", + "family": "Constrained vCPUs capable", + "type": "M16-8ms", + "microarchitecture": "Unknown", + "additional_memory": "585.74", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1735.74" + }, + { + "": "74", + "family": "Constrained vCPUs capable", + "type": "M32-16ms", + "microarchitecture": "Unknown", + "additional_memory": "1192.31", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2342.31" + }, + { + "": "75", + "family": "Constrained vCPUs capable", + "type": "M32-8ms", + "microarchitecture": "Unknown", + "additional_memory": "1192.31", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2342.31" + }, + { + "": "76", + "family": "Constrained vCPUs capable", + "type": "M64-16ms", + "microarchitecture": "Unknown", + "additional_memory": "2406.83", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "3556.83" + }, + { + "": "77", + "family": "Constrained vCPUs capable", + "type": "M64-32ms", + "microarchitecture": "Unknown", + "additional_memory": "2406.83", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "3556.83" + }, + { + "": "78", + "family": "Constrained vCPUs capable", + "type": "M8-2ms", + "microarchitecture": "Unknown", + "additional_memory": "281.77", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1431.77" + }, + { + "": "79", + "family": "Constrained vCPUs capable", + "type": "M8-4ms", + "microarchitecture": "Unknown", + "additional_memory": "281.77", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1431.77" + }, + { + "": "80", + "family": "D1-5 v2", + "type": "D1 v2", + "microarchitecture": "Haswell", + "additional_memory": "55.52", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1205.52" + }, + { + "": "81", + "family": "D1-5 v2", + "type": "D1 v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "55.52", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1205.52" + }, + { + "": "82", + "family": "D1-5 v2", + "type": "D1 v2", + "microarchitecture": "Skylake", + "additional_memory": "55.52", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1205.52" + }, + { + "": "83", + "family": "D1-5 v2", + "type": "D1 v2", + "microarchitecture": "Broadwell", + "additional_memory": "55.52", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1205.52" + }, + { + "": "84", + "family": "D1-5 v2", + "type": "D2 v2", + "microarchitecture": "Haswell", + "additional_memory": "55.52", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1205.52" + }, + { + "": "85", + "family": "D1-5 v2", + "type": "D2 v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "55.52", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1205.52" + }, + { + "": "86", + "family": "D1-5 v2", + "type": "D2 v2", + "microarchitecture": "Skylake", + "additional_memory": "55.52", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1205.52" + }, + { + "": "87", + "family": "D1-5 v2", + "type": "D2 v2", + "microarchitecture": "Broadwell", + "additional_memory": "55.52", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1205.52" + }, + { + "": "88", + "family": "D1-5 v2", + "type": "D3 v2", + "microarchitecture": "Haswell", + "additional_memory": "55.52", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1205.52" + }, + { + "": "89", + "family": "D1-5 v2", + "type": "D3 v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "55.52", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1205.52" + }, + { + "": "90", + "family": "D1-5 v2", + "type": "D3 v2", + "microarchitecture": "Skylake", + "additional_memory": "55.52", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1205.52" + }, + { + "": "91", + "family": "D1-5 v2", + "type": "D3 v2", + "microarchitecture": "Broadwell", + "additional_memory": "55.52", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1205.52" + }, + { + "": "92", + "family": "D1-5 v2", + "type": "D4 v2", + "microarchitecture": "Haswell", + "additional_memory": "55.52", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1205.52" + }, + { + "": "93", + "family": "D1-5 v2", + "type": "D4 v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "55.52", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1205.52" + }, + { + "": "94", + "family": "D1-5 v2", + "type": "D4 v2", + "microarchitecture": "Skylake", + "additional_memory": "55.52", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1205.52" + }, + { + "": "95", + "family": "D1-5 v2", + "type": "D4 v2", + "microarchitecture": "Broadwell", + "additional_memory": "55.52", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1205.52" + }, + { + "": "96", + "family": "D1-5 v2", + "type": "D5 v2", + "microarchitecture": "Haswell", + "additional_memory": "55.52", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1205.52" + }, + { + "": "97", + "family": "D1-5 v2", + "type": "D5 v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "55.52", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1205.52" + }, + { + "": "98", + "family": "D1-5 v2", + "type": "D5 v2", + "microarchitecture": "Skylake", + "additional_memory": "55.52", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1205.52" + }, + { + "": "99", + "family": "D1-5 v2", + "type": "D5 v2", + "microarchitecture": "Broadwell", + "additional_memory": "55.52", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1205.52" + }, + { + "": "100", + "family": "D11-15 v2", + "type": "D11 v2", + "microarchitecture": "Haswell", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "101", + "family": "D11-15 v2", + "type": "D11 v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "102", + "family": "D11-15 v2", + "type": "D11 v2", + "microarchitecture": "Skylake", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "103", + "family": "D11-15 v2", + "type": "D11 v2", + "microarchitecture": "Broadwell", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "104", + "family": "D11-15 v2", + "type": "D12 v2", + "microarchitecture": "Haswell", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "105", + "family": "D11-15 v2", + "type": "D12 v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "106", + "family": "D11-15 v2", + "type": "D12 v2", + "microarchitecture": "Skylake", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "107", + "family": "D11-15 v2", + "type": "D12 v2", + "microarchitecture": "Broadwell", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "108", + "family": "D11-15 v2", + "type": "D13 v2", + "microarchitecture": "Haswell", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "109", + "family": "D11-15 v2", + "type": "D13 v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "110", + "family": "D11-15 v2", + "type": "D13 v2", + "microarchitecture": "Skylake", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "111", + "family": "D11-15 v2", + "type": "D13 v2", + "microarchitecture": "Broadwell", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "112", + "family": "D11-15 v2", + "type": "D14 v2", + "microarchitecture": "Haswell", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "113", + "family": "D11-15 v2", + "type": "D14 v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "114", + "family": "D11-15 v2", + "type": "D14 v2", + "microarchitecture": "Skylake", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "115", + "family": "D11-15 v2", + "type": "D14 v2", + "microarchitecture": "Broadwell", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "116", + "family": "D11-15 v2", + "type": "D15 v2", + "microarchitecture": "Haswell", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "117", + "family": "D11-15 v2", + "type": "D15 v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "118", + "family": "D11-15 v2", + "type": "D15 v2", + "microarchitecture": "Skylake", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "119", + "family": "D11-15 v2", + "type": "D15 v2", + "microarchitecture": "Broadwell", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "120", + "family": "D11-15 v2", + "type": "D15i v2 1", + "microarchitecture": "Haswell", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "121", + "family": "D11-15 v2", + "type": "D15i v2 1", + "microarchitecture": "Cascade Lake", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "122", + "family": "D11-15 v2", + "type": "D15i v2 1", + "microarchitecture": "Skylake", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "123", + "family": "D11-15 v2", + "type": "D15i v2 1", + "microarchitecture": "Broadwell", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "124", + "family": "D11S-15S v2", + "type": "DS11 v2", + "microarchitecture": "Haswell", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "125", + "family": "D11S-15S v2", + "type": "DS11 v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "126", + "family": "D11S-15S v2", + "type": "DS11 v2", + "microarchitecture": "Skylake", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "127", + "family": "D11S-15S v2", + "type": "DS11 v2", + "microarchitecture": "Broadwell", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "128", + "family": "D11S-15S v2", + "type": "DS12 v2", + "microarchitecture": "Haswell", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "129", + "family": "D11S-15S v2", + "type": "DS12 v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "130", + "family": "D11S-15S v2", + "type": "DS12 v2", + "microarchitecture": "Skylake", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "131", + "family": "D11S-15S v2", + "type": "DS12 v2", + "microarchitecture": "Broadwell", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "132", + "family": "D11S-15S v2", + "type": "DS13 v2", + "microarchitecture": "Haswell", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "133", + "family": "D11S-15S v2", + "type": "DS13 v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "134", + "family": "D11S-15S v2", + "type": "DS13 v2", + "microarchitecture": "Skylake", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "135", + "family": "D11S-15S v2", + "type": "DS13 v2", + "microarchitecture": "Broadwell", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "136", + "family": "D11S-15S v2", + "type": "DS14 v2", + "microarchitecture": "Haswell", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "137", + "family": "D11S-15S v2", + "type": "DS14 v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "138", + "family": "D11S-15S v2", + "type": "DS14 v2", + "microarchitecture": "Skylake", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "139", + "family": "D11S-15S v2", + "type": "DS14 v2", + "microarchitecture": "Broadwell", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "140", + "family": "D11S-15S v2", + "type": "DS15 v2", + "microarchitecture": "Haswell", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "141", + "family": "D11S-15S v2", + "type": "DS15 v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "142", + "family": "D11S-15S v2", + "type": "DS15 v2", + "microarchitecture": "Skylake", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "143", + "family": "D11S-15S v2", + "type": "DS15 v2", + "microarchitecture": "Broadwell", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "144", + "family": "D11S-15S v2", + "type": "DS15i v2 1", + "microarchitecture": "Haswell", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "145", + "family": "D11S-15S v2", + "type": "DS15i v2 1", + "microarchitecture": "Cascade Lake", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "146", + "family": "D11S-15S v2", + "type": "DS15i v2 1", + "microarchitecture": "Skylake", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "147", + "family": "D11S-15S v2", + "type": "DS15i v2 1", + "microarchitecture": "Broadwell", + "additional_memory": "172.11", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1322.11" + }, + { + "": "148", + "family": "D1s-5s v2", + "type": "DS1 v2", + "microarchitecture": "Haswell", + "additional_memory": "55.52", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.52" + }, + { + "": "149", + "family": "D1s-5s v2", + "type": "DS1 v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "55.52", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.52" + }, + { + "": "150", + "family": "D1s-5s v2", + "type": "DS1 v2", + "microarchitecture": "Skylake", + "additional_memory": "55.52", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.52" + }, + { + "": "151", + "family": "D1s-5s v2", + "type": "DS1 v2", + "microarchitecture": "Broadwell", + "additional_memory": "55.52", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.52" + }, + { + "": "152", + "family": "D1s-5s v2", + "type": "DS2 v2", + "microarchitecture": "Haswell", + "additional_memory": "55.52", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.52" + }, + { + "": "153", + "family": "D1s-5s v2", + "type": "DS2 v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "55.52", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.52" + }, + { + "": "154", + "family": "D1s-5s v2", + "type": "DS2 v2", + "microarchitecture": "Skylake", + "additional_memory": "55.52", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.52" + }, + { + "": "155", + "family": "D1s-5s v2", + "type": "DS2 v2", + "microarchitecture": "Broadwell", + "additional_memory": "55.52", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.52" + }, + { + "": "156", + "family": "D1s-5s v2", + "type": "DS3 v2", + "microarchitecture": "Haswell", + "additional_memory": "55.52", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.52" + }, + { + "": "157", + "family": "D1s-5s v2", + "type": "DS3 v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "55.52", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.52" + }, + { + "": "158", + "family": "D1s-5s v2", + "type": "DS3 v2", + "microarchitecture": "Skylake", + "additional_memory": "55.52", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.52" + }, + { + "": "159", + "family": "D1s-5s v2", + "type": "DS3 v2", + "microarchitecture": "Broadwell", + "additional_memory": "55.52", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.52" + }, + { + "": "160", + "family": "D1s-5s v2", + "type": "DS4 v2", + "microarchitecture": "Haswell", + "additional_memory": "55.52", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.52" + }, + { + "": "161", + "family": "D1s-5s v2", + "type": "DS4 v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "55.52", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.52" + }, + { + "": "162", + "family": "D1s-5s v2", + "type": "DS4 v2", + "microarchitecture": "Skylake", + "additional_memory": "55.52", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.52" + }, + { + "": "163", + "family": "D1s-5s v2", + "type": "DS4 v2", + "microarchitecture": "Broadwell", + "additional_memory": "55.52", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.52" + }, + { + "": "164", + "family": "D1s-5s v2", + "type": "DS5 v2", + "microarchitecture": "Haswell", + "additional_memory": "55.52", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.52" + }, + { + "": "165", + "family": "D1s-5s v2", + "type": "DS5 v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "55.52", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.52" + }, + { + "": "166", + "family": "D1s-5s v2", + "type": "DS5 v2", + "microarchitecture": "Skylake", + "additional_memory": "55.52", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.52" + }, + { + "": "167", + "family": "D1s-5s v2", + "type": "DS5 v2", + "microarchitecture": "Broadwell", + "additional_memory": "55.52", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.52" + }, + { + "": "168", + "family": "D2 \u2013 D64 v4", + "type": "D16 v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "169", + "family": "D2 \u2013 D64 v4", + "type": "D2 v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "170", + "family": "D2 \u2013 D64 v4", + "type": "D32 v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "171", + "family": "D2 \u2013 D64 v4", + "type": "D4 v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "172", + "family": "D2 \u2013 D64 v4", + "type": "D48 v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "173", + "family": "D2 \u2013 D64 v4", + "type": "D64 v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "174", + "family": "D2 \u2013 D64 v4", + "type": "D8 v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "175", + "family": "D2-64 v3", + "type": "D16 v3", + "microarchitecture": "Haswell", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "176", + "family": "D2-64 v3", + "type": "D16 v3", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "177", + "family": "D2-64 v3", + "type": "D16 v3", + "microarchitecture": "Skylake", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "178", + "family": "D2-64 v3", + "type": "D16 v3", + "microarchitecture": "Broadwell", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "179", + "family": "D2-64 v3", + "type": "D2 v3", + "microarchitecture": "Haswell", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "180", + "family": "D2-64 v3", + "type": "D2 v3", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "181", + "family": "D2-64 v3", + "type": "D2 v3", + "microarchitecture": "Skylake", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "182", + "family": "D2-64 v3", + "type": "D2 v3", + "microarchitecture": "Broadwell", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "183", + "family": "D2-64 v3", + "type": "D32 v3", + "microarchitecture": "Haswell", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "184", + "family": "D2-64 v3", + "type": "D32 v3", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "185", + "family": "D2-64 v3", + "type": "D32 v3", + "microarchitecture": "Skylake", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "186", + "family": "D2-64 v3", + "type": "D32 v3", + "microarchitecture": "Broadwell", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "187", + "family": "D2-64 v3", + "type": "D4 v3", + "microarchitecture": "Haswell", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "188", + "family": "D2-64 v3", + "type": "D4 v3", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "189", + "family": "D2-64 v3", + "type": "D4 v3", + "microarchitecture": "Skylake", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "190", + "family": "D2-64 v3", + "type": "D4 v3", + "microarchitecture": "Broadwell", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "191", + "family": "D2-64 v3", + "type": "D48 v3", + "microarchitecture": "Haswell", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "192", + "family": "D2-64 v3", + "type": "D48 v3", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "193", + "family": "D2-64 v3", + "type": "D48 v3", + "microarchitecture": "Skylake", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "194", + "family": "D2-64 v3", + "type": "D48 v3", + "microarchitecture": "Broadwell", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "195", + "family": "D2-64 v3", + "type": "D64 v3", + "microarchitecture": "Haswell", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "196", + "family": "D2-64 v3", + "type": "D64 v3", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "197", + "family": "D2-64 v3", + "type": "D64 v3", + "microarchitecture": "Skylake", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "198", + "family": "D2-64 v3", + "type": "D64 v3", + "microarchitecture": "Broadwell", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "199", + "family": "D2-64 v3", + "type": "D8 v3", + "microarchitecture": "Haswell", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "200", + "family": "D2-64 v3", + "type": "D8 v3", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "201", + "family": "D2-64 v3", + "type": "D8 v3", + "microarchitecture": "Skylake", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "202", + "family": "D2-64 v3", + "type": "D8 v3", + "microarchitecture": "Broadwell", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "203", + "family": "D2a \u2013 D96a v4", + "type": "D16a v4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "510.79", + "additional_storage": "50.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1560.79" + }, + { + "": "204", + "family": "D2a \u2013 D96a v4", + "type": "D2a v4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "510.79", + "additional_storage": "50.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1560.79" + }, + { + "": "205", + "family": "D2a \u2013 D96a v4", + "type": "D32a v4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "510.79", + "additional_storage": "50.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1560.79" + }, + { + "": "206", + "family": "D2a \u2013 D96a v4", + "type": "D48a v4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "510.79", + "additional_storage": "50.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1560.79" + }, + { + "": "207", + "family": "D2a \u2013 D96a v4", + "type": "D4a v4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "510.79", + "additional_storage": "50.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1560.79" + }, + { + "": "208", + "family": "D2a \u2013 D96a v4", + "type": "D64a v4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "510.79", + "additional_storage": "50.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1560.79" + }, + { + "": "209", + "family": "D2a \u2013 D96a v4", + "type": "D8a v4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "510.79", + "additional_storage": "50.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1560.79" + }, + { + "": "210", + "family": "D2a \u2013 D96a v4", + "type": "D96a v4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "510.79", + "additional_storage": "50.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1560.79" + }, + { + "": "211", + "family": "D2as \u2013 D96as v4", + "type": "D16as v4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "510.79", + "additional_storage": "50.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1560.79" + }, + { + "": "212", + "family": "D2as \u2013 D96as v4", + "type": "D2as v4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "510.79", + "additional_storage": "50.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1560.79" + }, + { + "": "213", + "family": "D2as \u2013 D96as v4", + "type": "D32as v4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "510.79", + "additional_storage": "50.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1560.79" + }, + { + "": "214", + "family": "D2as \u2013 D96as v4", + "type": "D48as v4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "510.79", + "additional_storage": "50.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1560.79" + }, + { + "": "215", + "family": "D2as \u2013 D96as v4", + "type": "D4as v4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "510.79", + "additional_storage": "50.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1560.79" + }, + { + "": "216", + "family": "D2as \u2013 D96as v4", + "type": "D64as v4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "510.79", + "additional_storage": "50.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1560.79" + }, + { + "": "217", + "family": "D2as \u2013 D96as v4", + "type": "D8as v4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "510.79", + "additional_storage": "50.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1560.79" + }, + { + "": "218", + "family": "D2as \u2013 D96as v4", + "type": "D96as v4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "510.79", + "additional_storage": "50.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1560.79" + }, + { + "": "219", + "family": "D2d \u2013 D64d v4", + "type": "D16d v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "220", + "family": "D2d \u2013 D64d v4", + "type": "D2d v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "221", + "family": "D2d \u2013 D64d v4", + "type": "D32d v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "222", + "family": "D2d \u2013 D64d v4", + "type": "D48d v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "223", + "family": "D2d \u2013 D64d v4", + "type": "D4d v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "224", + "family": "D2d \u2013 D64d v4", + "type": "D64d v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "225", + "family": "D2d \u2013 D64d v4", + "type": "D8d v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "226", + "family": "D2ds \u2013 D64ds v4", + "type": "D16ds v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1533.12" + }, + { + "": "227", + "family": "D2ds \u2013 D64ds v4", + "type": "D2ds v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1533.12" + }, + { + "": "228", + "family": "D2ds \u2013 D64ds v4", + "type": "D32ds v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1533.12" + }, + { + "": "229", + "family": "D2ds \u2013 D64ds v4", + "type": "D48ds v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1533.12" + }, + { + "": "230", + "family": "D2ds \u2013 D64ds v4", + "type": "D4ds v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1533.12" + }, + { + "": "231", + "family": "D2ds \u2013 D64ds v4", + "type": "D64ds v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1533.12" + }, + { + "": "232", + "family": "D2ds \u2013 D64ds v4", + "type": "D8ds v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1533.12" + }, + { + "": "233", + "family": "D2s \u2013 D64s v4", + "type": "D16s v4", + "microarchitecture": "Haswell", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "234", + "family": "D2s \u2013 D64s v4", + "type": "D16s v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "235", + "family": "D2s \u2013 D64s v4", + "type": "D16s v4", + "microarchitecture": "Skylake", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "236", + "family": "D2s \u2013 D64s v4", + "type": "D16s v4", + "microarchitecture": "Broadwell", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "237", + "family": "D2s \u2013 D64s v4", + "type": "D2s v4", + "microarchitecture": "Haswell", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "238", + "family": "D2s \u2013 D64s v4", + "type": "D2s v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "239", + "family": "D2s \u2013 D64s v4", + "type": "D2s v4", + "microarchitecture": "Skylake", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "240", + "family": "D2s \u2013 D64s v4", + "type": "D2s v4", + "microarchitecture": "Broadwell", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "241", + "family": "D2s \u2013 D64s v4", + "type": "D32s v4", + "microarchitecture": "Haswell", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "242", + "family": "D2s \u2013 D64s v4", + "type": "D32s v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "243", + "family": "D2s \u2013 D64s v4", + "type": "D32s v4", + "microarchitecture": "Skylake", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "244", + "family": "D2s \u2013 D64s v4", + "type": "D32s v4", + "microarchitecture": "Broadwell", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "245", + "family": "D2s \u2013 D64s v4", + "type": "D48s v4", + "microarchitecture": "Haswell", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "246", + "family": "D2s \u2013 D64s v4", + "type": "D48s v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "247", + "family": "D2s \u2013 D64s v4", + "type": "D48s v4", + "microarchitecture": "Skylake", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "248", + "family": "D2s \u2013 D64s v4", + "type": "D48s v4", + "microarchitecture": "Broadwell", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "249", + "family": "D2s \u2013 D64s v4", + "type": "D4s v4", + "microarchitecture": "Haswell", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "250", + "family": "D2s \u2013 D64s v4", + "type": "D4s v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "251", + "family": "D2s \u2013 D64s v4", + "type": "D4s v4", + "microarchitecture": "Skylake", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "252", + "family": "D2s \u2013 D64s v4", + "type": "D4s v4", + "microarchitecture": "Broadwell", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "253", + "family": "D2s \u2013 D64s v4", + "type": "D64s v4", + "microarchitecture": "Haswell", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "254", + "family": "D2s \u2013 D64s v4", + "type": "D64s v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "255", + "family": "D2s \u2013 D64s v4", + "type": "D64s v4", + "microarchitecture": "Skylake", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "256", + "family": "D2s \u2013 D64s v4", + "type": "D64s v4", + "microarchitecture": "Broadwell", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "257", + "family": "D2s \u2013 D64s v4", + "type": "D8s v4", + "microarchitecture": "Haswell", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "258", + "family": "D2s \u2013 D64s v4", + "type": "D8s v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "259", + "family": "D2s \u2013 D64s v4", + "type": "D8s v4", + "microarchitecture": "Skylake", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "260", + "family": "D2s \u2013 D64s v4", + "type": "D8s v4", + "microarchitecture": "Broadwell", + "additional_memory": "333.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1433.12" + }, + { + "": "261", + "family": "D2s-64s v3", + "type": "D16s v3", + "microarchitecture": "Haswell", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "262", + "family": "D2s-64s v3", + "type": "D16s v3", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "263", + "family": "D2s-64s v3", + "type": "D16s v3", + "microarchitecture": "Skylake", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "264", + "family": "D2s-64s v3", + "type": "D16s v3", + "microarchitecture": "Broadwell", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "265", + "family": "D2s-64s v3", + "type": "D2s v3", + "microarchitecture": "Haswell", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "266", + "family": "D2s-64s v3", + "type": "D2s v3", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "267", + "family": "D2s-64s v3", + "type": "D2s v3", + "microarchitecture": "Skylake", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "268", + "family": "D2s-64s v3", + "type": "D2s v3", + "microarchitecture": "Broadwell", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "269", + "family": "D2s-64s v3", + "type": "D32s v3", + "microarchitecture": "Haswell", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "270", + "family": "D2s-64s v3", + "type": "D32s v3", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "271", + "family": "D2s-64s v3", + "type": "D32s v3", + "microarchitecture": "Skylake", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "272", + "family": "D2s-64s v3", + "type": "D32s v3", + "microarchitecture": "Broadwell", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "273", + "family": "D2s-64s v3", + "type": "D48s v3", + "microarchitecture": "Haswell", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "274", + "family": "D2s-64s v3", + "type": "D48s v3", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "275", + "family": "D2s-64s v3", + "type": "D48s v3", + "microarchitecture": "Skylake", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "276", + "family": "D2s-64s v3", + "type": "D48s v3", + "microarchitecture": "Broadwell", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "277", + "family": "D2s-64s v3", + "type": "D4s v3", + "microarchitecture": "Haswell", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "278", + "family": "D2s-64s v3", + "type": "D4s v3", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "279", + "family": "D2s-64s v3", + "type": "D4s v3", + "microarchitecture": "Skylake", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "280", + "family": "D2s-64s v3", + "type": "D4s v3", + "microarchitecture": "Broadwell", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "281", + "family": "D2s-64s v3", + "type": "D64s v3", + "microarchitecture": "Haswell", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "282", + "family": "D2s-64s v3", + "type": "D64s v3", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "283", + "family": "D2s-64s v3", + "type": "D64s v3", + "microarchitecture": "Skylake", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "284", + "family": "D2s-64s v3", + "type": "D64s v3", + "microarchitecture": "Broadwell", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "285", + "family": "D2s-64s v3", + "type": "D8s v3", + "microarchitecture": "Haswell", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "286", + "family": "D2s-64s v3", + "type": "D8s v3", + "microarchitecture": "Cascade Lake", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "287", + "family": "D2s-64s v3", + "type": "D8s v3", + "microarchitecture": "Skylake", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "288", + "family": "D2s-64s v3", + "type": "D8s v3", + "microarchitecture": "Broadwell", + "additional_memory": "333.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1483.12" + }, + { + "": "289", + "family": "DCsv2-series", + "type": "DC1s v2", + "microarchitecture": "Coffee Lake", + "additional_memory": "22.21", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1172.21" + }, + { + "": "290", + "family": "DCsv2-series", + "type": "DC2s v2", + "microarchitecture": "Coffee Lake", + "additional_memory": "22.21", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1172.21" + }, + { + "": "291", + "family": "DCsv2-series", + "type": "DC4s v2", + "microarchitecture": "Coffee Lake", + "additional_memory": "22.21", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1172.21" + }, + { + "": "292", + "family": "DCsv2-series", + "type": "DC8 v2", + "microarchitecture": "Coffee Lake", + "additional_memory": "22.21", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1172.21" + }, + { + "": "293", + "family": "E2 \u2013 E64 v4", + "type": "E16 v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "910.54", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.54" + }, + { + "": "294", + "family": "E2 \u2013 E64 v4", + "type": "E2 v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "910.54", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.54" + }, + { + "": "295", + "family": "E2 \u2013 E64 v4", + "type": "E32 v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "910.54", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.54" + }, + { + "": "296", + "family": "E2 \u2013 E64 v4", + "type": "E4 v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "910.54", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.54" + }, + { + "": "297", + "family": "E2 \u2013 E64 v4", + "type": "E48 v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "910.54", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.54" + }, + { + "": "298", + "family": "E2 \u2013 E64 v4", + "type": "E64 v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "910.54", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.54" + }, + { + "": "299", + "family": "E2 \u2013 E64 v4", + "type": "E8 v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "910.54", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.54" + }, + { + "": "300", + "family": "E2 \u2013 E96 v5", + "type": "E16 v5", + "microarchitecture": "Unknown", + "additional_memory": "910.54", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.54" + }, + { + "": "301", + "family": "E2 \u2013 E96 v5", + "type": "E2 v5", + "microarchitecture": "Unknown", + "additional_memory": "910.54", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.54" + }, + { + "": "302", + "family": "E2 \u2013 E96 v5", + "type": "E20 v5", + "microarchitecture": "Unknown", + "additional_memory": "910.54", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.54" + }, + { + "": "303", + "family": "E2 \u2013 E96 v5", + "type": "E32 v5", + "microarchitecture": "Unknown", + "additional_memory": "910.54", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.54" + }, + { + "": "304", + "family": "E2 \u2013 E96 v5", + "type": "E4 v5", + "microarchitecture": "Unknown", + "additional_memory": "910.54", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.54" + }, + { + "": "305", + "family": "E2 \u2013 E96 v5", + "type": "E48 v5", + "microarchitecture": "Unknown", + "additional_memory": "910.54", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.54" + }, + { + "": "306", + "family": "E2 \u2013 E96 v5", + "type": "E64 v5", + "microarchitecture": "Unknown", + "additional_memory": "910.54", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.54" + }, + { + "": "307", + "family": "E2 \u2013 E96 v5", + "type": "E8 v5", + "microarchitecture": "Unknown", + "additional_memory": "910.54", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.54" + }, + { + "": "308", + "family": "E2 \u2013 E96 v5", + "type": "E96 v5", + "microarchitecture": "Unknown", + "additional_memory": "910.54", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2010.54" + }, + { + "": "309", + "family": "E2-64 v3", + "type": "E16 v3", + "microarchitecture": "Broadwell", + "additional_memory": "577.42", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1727.42" + }, + { + "": "310", + "family": "E2-64 v3", + "type": "E16 v3", + "microarchitecture": "Cascade Lake", + "additional_memory": "577.42", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1727.42" + }, + { + "": "311", + "family": "E2-64 v3", + "type": "E16 v3", + "microarchitecture": "Skylake", + "additional_memory": "577.42", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1727.42" + }, + { + "": "312", + "family": "E2-64 v3", + "type": "E2 v3", + "microarchitecture": "Broadwell", + "additional_memory": "577.42", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1727.42" + }, + { + "": "313", + "family": "E2-64 v3", + "type": "E2 v3", + "microarchitecture": "Cascade Lake", + "additional_memory": "577.42", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1727.42" + }, + { + "": "314", + "family": "E2-64 v3", + "type": "E2 v3", + "microarchitecture": "Skylake", + "additional_memory": "577.42", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1727.42" + }, + { + "": "315", + "family": "E2-64 v3", + "type": "E20 v3", + "microarchitecture": "Broadwell", + "additional_memory": "577.42", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1727.42" + }, + { + "": "316", + "family": "E2-64 v3", + "type": "E20 v3", + "microarchitecture": "Cascade Lake", + "additional_memory": "577.42", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1727.42" + }, + { + "": "317", + "family": "E2-64 v3", + "type": "E20 v3", + "microarchitecture": "Skylake", + "additional_memory": "577.42", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1727.42" + }, + { + "": "318", + "family": "E2-64 v3", + "type": "E32 v3", + "microarchitecture": "Broadwell", + "additional_memory": "577.42", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1727.42" + }, + { + "": "319", + "family": "E2-64 v3", + "type": "E32 v3", + "microarchitecture": "Cascade Lake", + "additional_memory": "577.42", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1727.42" + }, + { + "": "320", + "family": "E2-64 v3", + "type": "E32 v3", + "microarchitecture": "Skylake", + "additional_memory": "577.42", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1727.42" + }, + { + "": "321", + "family": "E2-64 v3", + "type": "E4 v3", + "microarchitecture": "Broadwell", + "additional_memory": "577.42", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1727.42" + }, + { + "": "322", + "family": "E2-64 v3", + "type": "E4 v3", + "microarchitecture": "Cascade Lake", + "additional_memory": "577.42", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1727.42" + }, + { + "": "323", + "family": "E2-64 v3", + "type": "E4 v3", + "microarchitecture": "Skylake", + "additional_memory": "577.42", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1727.42" + }, + { + "": "324", + "family": "E2-64 v3", + "type": "E48 v3", + "microarchitecture": "Broadwell", + "additional_memory": "577.42", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1727.42" + }, + { + "": "325", + "family": "E2-64 v3", + "type": "E48 v3", + "microarchitecture": "Cascade Lake", + "additional_memory": "577.42", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1727.42" + }, + { + "": "326", + "family": "E2-64 v3", + "type": "E48 v3", + "microarchitecture": "Skylake", + "additional_memory": "577.42", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1727.42" + }, + { + "": "327", + "family": "E2-64 v3", + "type": "E64 v3", + "microarchitecture": "Broadwell", + "additional_memory": "577.42", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1727.42" + }, + { + "": "328", + "family": "E2-64 v3", + "type": "E64 v3", + "microarchitecture": "Cascade Lake", + "additional_memory": "577.42", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1727.42" + }, + { + "": "329", + "family": "E2-64 v3", + "type": "E64 v3", + "microarchitecture": "Skylake", + "additional_memory": "577.42", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1727.42" + }, + { + "": "330", + "family": "E2-64 v3", + "type": "E64i v3 1", + "microarchitecture": "Broadwell", + "additional_memory": "577.42", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1727.42" + }, + { + "": "331", + "family": "E2-64 v3", + "type": "E64i v3 1", + "microarchitecture": "Cascade Lake", + "additional_memory": "577.42", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1727.42" + }, + { + "": "332", + "family": "E2-64 v3", + "type": "E64i v3 1", + "microarchitecture": "Skylake", + "additional_memory": "577.42", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1727.42" + }, + { + "": "333", + "family": "E2-64 v3", + "type": "E8 v3", + "microarchitecture": "Broadwell", + "additional_memory": "577.42", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1727.42" + }, + { + "": "334", + "family": "E2-64 v3", + "type": "E8 v3", + "microarchitecture": "Cascade Lake", + "additional_memory": "577.42", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1727.42" + }, + { + "": "335", + "family": "E2-64 v3", + "type": "E8 v3", + "microarchitecture": "Skylake", + "additional_memory": "577.42", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1727.42" + }, + { + "": "336", + "family": "E2a \u2013 E96a v4", + "type": "E16a v4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "910.54", + "additional_storage": "50.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1960.54" + }, + { + "": "337", + "family": "E2a \u2013 E96a v4", + "type": "E20a v4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "910.54", + "additional_storage": "50.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1960.54" + }, + { + "": "338", + "family": "E2a \u2013 E96a v4", + "type": "E2a v4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "910.54", + "additional_storage": "50.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1960.54" + }, + { + "": "339", + "family": "E2a \u2013 E96a v4", + "type": "E32a v4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "910.54", + "additional_storage": "50.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1960.54" + }, + { + "": "340", + "family": "E2a \u2013 E96a v4", + "type": "E48a v4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "910.54", + "additional_storage": "50.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1960.54" + }, + { + "": "341", + "family": "E2a \u2013 E96a v4", + "type": "E4a v4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "910.54", + "additional_storage": "50.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1960.54" + }, + { + "": "342", + "family": "E2a \u2013 E96a v4", + "type": "E64a v4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "910.54", + "additional_storage": "50.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1960.54" + }, + { + "": "343", + "family": "E2a \u2013 E96a v4", + "type": "E8a v4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "910.54", + "additional_storage": "50.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1960.54" + }, + { + "": "344", + "family": "E2a \u2013 E96a v4", + "type": "E96a v4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "910.54", + "additional_storage": "50.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1960.54" + }, + { + "": "345", + "family": "E2as \u2013 E96as v4", + "type": "E16as v4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "910.54", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2010.54" + }, + { + "": "346", + "family": "E2as \u2013 E96as v4", + "type": "E20as v4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "910.54", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2010.54" + }, + { + "": "347", + "family": "E2as \u2013 E96as v4", + "type": "E2as v4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "910.54", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2010.54" + }, + { + "": "348", + "family": "E2as \u2013 E96as v4", + "type": "E32as v4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "910.54", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2010.54" + }, + { + "": "349", + "family": "E2as \u2013 E96as v4", + "type": "E48as v4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "910.54", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2010.54" + }, + { + "": "350", + "family": "E2as \u2013 E96as v4", + "type": "E4as v4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "910.54", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2010.54" + }, + { + "": "351", + "family": "E2as \u2013 E96as v4", + "type": "E64as v4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "910.54", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2010.54" + }, + { + "": "352", + "family": "E2as \u2013 E96as v4", + "type": "E8as v4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "910.54", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2010.54" + }, + { + "": "353", + "family": "E2as \u2013 E96as v4", + "type": "E96as v4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "910.54", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2010.54" + }, + { + "": "354", + "family": "E2d \u2013 E64d v4", + "type": "E16d v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "677.35", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1877.35" + }, + { + "": "355", + "family": "E2d \u2013 E64d v4", + "type": "E20d v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "677.35", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1877.35" + }, + { + "": "356", + "family": "E2d \u2013 E64d v4", + "type": "E2d v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "677.35", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1877.35" + }, + { + "": "357", + "family": "E2d \u2013 E64d v4", + "type": "E32d v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "677.35", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1877.35" + }, + { + "": "358", + "family": "E2d \u2013 E64d v4", + "type": "E48d v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "677.35", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1877.35" + }, + { + "": "359", + "family": "E2d \u2013 E64d v4", + "type": "E4d v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "677.35", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1877.35" + }, + { + "": "360", + "family": "E2d \u2013 E64d v4", + "type": "E64d v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "677.35", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1877.35" + }, + { + "": "361", + "family": "E2d \u2013 E64d v4", + "type": "E8d v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "677.35", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1877.35" + }, + { + "": "362", + "family": "E2ds \u2013 E64ds v4", + "type": "E16ds v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "677.35", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1877.35" + }, + { + "": "363", + "family": "E2ds \u2013 E64ds v4", + "type": "E20ds v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "677.35", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1877.35" + }, + { + "": "364", + "family": "E2ds \u2013 E64ds v4", + "type": "E2ds v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "677.35", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1877.35" + }, + { + "": "365", + "family": "E2ds \u2013 E64ds v4", + "type": "E32ds v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "677.35", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1877.35" + }, + { + "": "366", + "family": "E2ds \u2013 E64ds v4", + "type": "E48ds v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "677.35", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1877.35" + }, + { + "": "367", + "family": "E2ds \u2013 E64ds v4", + "type": "E4ds v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "677.35", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1877.35" + }, + { + "": "368", + "family": "E2ds \u2013 E64ds v4", + "type": "E64ds v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "677.35", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1877.35" + }, + { + "": "369", + "family": "E2ds \u2013 E64ds v4", + "type": "E80ids v4 1", + "microarchitecture": "Cascade Lake", + "additional_memory": "677.35", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1877.35" + }, + { + "": "370", + "family": "E2ds \u2013 E64ds v4", + "type": "E8ds v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "677.35", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1877.35" + }, + { + "": "371", + "family": "E2s \u2013 E64s v4", + "type": "E16s v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "677.35", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.35" + }, + { + "": "372", + "family": "E2s \u2013 E64s v4", + "type": "E20s v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "677.35", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.35" + }, + { + "": "373", + "family": "E2s \u2013 E64s v4", + "type": "E2s v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "677.35", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.35" + }, + { + "": "374", + "family": "E2s \u2013 E64s v4", + "type": "E32s v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "677.35", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.35" + }, + { + "": "375", + "family": "E2s \u2013 E64s v4", + "type": "E48s v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "677.35", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.35" + }, + { + "": "376", + "family": "E2s \u2013 E64s v4", + "type": "E4s v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "677.35", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.35" + }, + { + "": "377", + "family": "E2s \u2013 E64s v4", + "type": "E64s v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "677.35", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.35" + }, + { + "": "378", + "family": "E2s \u2013 E64s v4", + "type": "E80is v4 1", + "microarchitecture": "Cascade Lake", + "additional_memory": "677.35", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1827.35" + }, + { + "": "379", + "family": "E2s \u2013 E64s v4", + "type": "E8s v4", + "microarchitecture": "Cascade Lake", + "additional_memory": "677.35", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.35" + }, + { + "": "380", + "family": "E2s-64s v3", + "type": "E16s v3", + "microarchitecture": "Broadwell", + "additional_memory": "577.42", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.42" + }, + { + "": "381", + "family": "E2s-64s v3", + "type": "E16s v3", + "microarchitecture": "Cascade Lake", + "additional_memory": "577.42", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.42" + }, + { + "": "382", + "family": "E2s-64s v3", + "type": "E16s v3", + "microarchitecture": "Skylake", + "additional_memory": "577.42", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.42" + }, + { + "": "383", + "family": "E2s-64s v3", + "type": "E20s v3", + "microarchitecture": "Broadwell", + "additional_memory": "577.42", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.42" + }, + { + "": "384", + "family": "E2s-64s v3", + "type": "E20s v3", + "microarchitecture": "Cascade Lake", + "additional_memory": "577.42", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.42" + }, + { + "": "385", + "family": "E2s-64s v3", + "type": "E20s v3", + "microarchitecture": "Skylake", + "additional_memory": "577.42", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.42" + }, + { + "": "386", + "family": "E2s-64s v3", + "type": "E2s v3", + "microarchitecture": "Broadwell", + "additional_memory": "577.42", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.42" + }, + { + "": "387", + "family": "E2s-64s v3", + "type": "E2s v3", + "microarchitecture": "Cascade Lake", + "additional_memory": "577.42", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.42" + }, + { + "": "388", + "family": "E2s-64s v3", + "type": "E2s v3", + "microarchitecture": "Skylake", + "additional_memory": "577.42", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.42" + }, + { + "": "389", + "family": "E2s-64s v3", + "type": "E32s v3", + "microarchitecture": "Broadwell", + "additional_memory": "577.42", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.42" + }, + { + "": "390", + "family": "E2s-64s v3", + "type": "E32s v3", + "microarchitecture": "Cascade Lake", + "additional_memory": "577.42", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.42" + }, + { + "": "391", + "family": "E2s-64s v3", + "type": "E32s v3", + "microarchitecture": "Skylake", + "additional_memory": "577.42", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.42" + }, + { + "": "392", + "family": "E2s-64s v3", + "type": "E48s v3", + "microarchitecture": "Broadwell", + "additional_memory": "577.42", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.42" + }, + { + "": "393", + "family": "E2s-64s v3", + "type": "E48s v3", + "microarchitecture": "Cascade Lake", + "additional_memory": "577.42", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.42" + }, + { + "": "394", + "family": "E2s-64s v3", + "type": "E48s v3", + "microarchitecture": "Skylake", + "additional_memory": "577.42", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.42" + }, + { + "": "395", + "family": "E2s-64s v3", + "type": "E4s v3", + "microarchitecture": "Broadwell", + "additional_memory": "577.42", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.42" + }, + { + "": "396", + "family": "E2s-64s v3", + "type": "E4s v3", + "microarchitecture": "Cascade Lake", + "additional_memory": "577.42", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.42" + }, + { + "": "397", + "family": "E2s-64s v3", + "type": "E4s v3", + "microarchitecture": "Skylake", + "additional_memory": "577.42", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.42" + }, + { + "": "398", + "family": "E2s-64s v3", + "type": "E64is v3 1", + "microarchitecture": "Broadwell", + "additional_memory": "577.42", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.42" + }, + { + "": "399", + "family": "E2s-64s v3", + "type": "E64is v3 1", + "microarchitecture": "Cascade Lake", + "additional_memory": "577.42", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.42" + }, + { + "": "400", + "family": "E2s-64s v3", + "type": "E64is v3 1", + "microarchitecture": "Skylake", + "additional_memory": "577.42", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.42" + }, + { + "": "401", + "family": "E2s-64s v3", + "type": "E64s v3", + "microarchitecture": "Broadwell", + "additional_memory": "577.42", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.42" + }, + { + "": "402", + "family": "E2s-64s v3", + "type": "E64s v3", + "microarchitecture": "Cascade Lake", + "additional_memory": "577.42", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.42" + }, + { + "": "403", + "family": "E2s-64s v3", + "type": "E64s v3", + "microarchitecture": "Skylake", + "additional_memory": "577.42", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.42" + }, + { + "": "404", + "family": "E2s-64s v3", + "type": "E8s v3", + "microarchitecture": "Broadwell", + "additional_memory": "577.42", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.42" + }, + { + "": "405", + "family": "E2s-64s v3", + "type": "E8s v3", + "microarchitecture": "Cascade Lake", + "additional_memory": "577.42", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.42" + }, + { + "": "406", + "family": "E2s-64s v3", + "type": "E8s v3", + "microarchitecture": "Skylake", + "additional_memory": "577.42", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1777.42" + }, + { + "": "407", + "family": "F-series", + "type": "F1", + "microarchitecture": "Haswell", + "additional_memory": "22.21", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1222.21" + }, + { + "": "408", + "family": "F-series", + "type": "F1", + "microarchitecture": "Cascade Lake", + "additional_memory": "22.21", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1222.21" + }, + { + "": "409", + "family": "F-series", + "type": "F1", + "microarchitecture": "Skylake", + "additional_memory": "22.21", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1222.21" + }, + { + "": "410", + "family": "F-series", + "type": "F1", + "microarchitecture": "Broadwell", + "additional_memory": "22.21", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1222.21" + }, + { + "": "411", + "family": "F-series", + "type": "F16", + "microarchitecture": "Haswell", + "additional_memory": "22.21", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1222.21" + }, + { + "": "412", + "family": "F-series", + "type": "F16", + "microarchitecture": "Cascade Lake", + "additional_memory": "22.21", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1222.21" + }, + { + "": "413", + "family": "F-series", + "type": "F16", + "microarchitecture": "Skylake", + "additional_memory": "22.21", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1222.21" + }, + { + "": "414", + "family": "F-series", + "type": "F16", + "microarchitecture": "Broadwell", + "additional_memory": "22.21", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1222.21" + }, + { + "": "415", + "family": "F-series", + "type": "F2", + "microarchitecture": "Haswell", + "additional_memory": "22.21", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1222.21" + }, + { + "": "416", + "family": "F-series", + "type": "F2", + "microarchitecture": "Cascade Lake", + "additional_memory": "22.21", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1222.21" + }, + { + "": "417", + "family": "F-series", + "type": "F2", + "microarchitecture": "Skylake", + "additional_memory": "22.21", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1222.21" + }, + { + "": "418", + "family": "F-series", + "type": "F2", + "microarchitecture": "Broadwell", + "additional_memory": "22.21", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1222.21" + }, + { + "": "419", + "family": "F-series", + "type": "F4", + "microarchitecture": "Haswell", + "additional_memory": "22.21", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1222.21" + }, + { + "": "420", + "family": "F-series", + "type": "F4", + "microarchitecture": "Cascade Lake", + "additional_memory": "22.21", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1222.21" + }, + { + "": "421", + "family": "F-series", + "type": "F4", + "microarchitecture": "Skylake", + "additional_memory": "22.21", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1222.21" + }, + { + "": "422", + "family": "F-series", + "type": "F4", + "microarchitecture": "Broadwell", + "additional_memory": "22.21", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1222.21" + }, + { + "": "423", + "family": "F-series", + "type": "F8", + "microarchitecture": "Haswell", + "additional_memory": "22.21", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1222.21" + }, + { + "": "424", + "family": "F-series", + "type": "F8", + "microarchitecture": "Cascade Lake", + "additional_memory": "22.21", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1222.21" + }, + { + "": "425", + "family": "F-series", + "type": "F8", + "microarchitecture": "Skylake", + "additional_memory": "22.21", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1222.21" + }, + { + "": "426", + "family": "F-series", + "type": "F8", + "microarchitecture": "Broadwell", + "additional_memory": "22.21", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1222.21" + }, + { + "": "427", + "family": "Fs-Series", + "type": "F16s", + "microarchitecture": "Unknown", + "additional_memory": "22.21", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1222.21" + }, + { + "": "428", + "family": "Fs-Series", + "type": "F1s", + "microarchitecture": "Unknown", + "additional_memory": "22.21", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1222.21" + }, + { + "": "429", + "family": "Fs-Series", + "type": "F2s", + "microarchitecture": "Unknown", + "additional_memory": "22.21", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1222.21" + }, + { + "": "430", + "family": "Fs-Series", + "type": "F4s", + "microarchitecture": "Unknown", + "additional_memory": "22.21", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1222.21" + }, + { + "": "431", + "family": "Fs-Series", + "type": "F8s", + "microarchitecture": "Unknown", + "additional_memory": "22.21", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1222.21" + }, + { + "": "432", + "family": "Fsv2-series", + "type": "F16s v2", + "microarchitecture": "Skylake", + "additional_memory": "177.67", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1377.67" + }, + { + "": "433", + "family": "Fsv2-series", + "type": "F16s v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "177.67", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1377.67" + }, + { + "": "434", + "family": "Fsv2-series", + "type": "F2s v2", + "microarchitecture": "Skylake", + "additional_memory": "177.67", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1377.67" + }, + { + "": "435", + "family": "Fsv2-series", + "type": "F2s v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "177.67", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1377.67" + }, + { + "": "436", + "family": "Fsv2-series", + "type": "F32s v2", + "microarchitecture": "Skylake", + "additional_memory": "177.67", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1377.67" + }, + { + "": "437", + "family": "Fsv2-series", + "type": "F32s v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "177.67", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1377.67" + }, + { + "": "438", + "family": "Fsv2-series", + "type": "F48s v2", + "microarchitecture": "Skylake", + "additional_memory": "177.67", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1377.67" + }, + { + "": "439", + "family": "Fsv2-series", + "type": "F48s v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "177.67", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1377.67" + }, + { + "": "440", + "family": "Fsv2-series", + "type": "F4s v2", + "microarchitecture": "Skylake", + "additional_memory": "177.67", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1377.67" + }, + { + "": "441", + "family": "Fsv2-series", + "type": "F4s v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "177.67", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1377.67" + }, + { + "": "442", + "family": "Fsv2-series", + "type": "F64s v2", + "microarchitecture": "Skylake", + "additional_memory": "177.67", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1377.67" + }, + { + "": "443", + "family": "Fsv2-series", + "type": "F64s v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "177.67", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1377.67" + }, + { + "": "444", + "family": "Fsv2-series", + "type": "F72s v2", + "microarchitecture": "Skylake", + "additional_memory": "177.67", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1377.67" + }, + { + "": "445", + "family": "Fsv2-series", + "type": "F72s v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "177.67", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1377.67" + }, + { + "": "446", + "family": "Fsv2-series", + "type": "F8s v2", + "microarchitecture": "Skylake", + "additional_memory": "599.62", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1799.62" + }, + { + "": "447", + "family": "Fsv2-series", + "type": "F8s v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "599.62", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1799.62" + }, + { + "": "448", + "family": "G-series", + "type": "G1", + "microarchitecture": "Haswell", + "additional_memory": "599.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1749.62" + }, + { + "": "449", + "family": "G-series", + "type": "G2", + "microarchitecture": "Haswell", + "additional_memory": "599.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1749.62" + }, + { + "": "450", + "family": "G-series", + "type": "G3", + "microarchitecture": "Haswell", + "additional_memory": "599.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1749.62" + }, + { + "": "451", + "family": "G-series", + "type": "G4", + "microarchitecture": "Haswell", + "additional_memory": "599.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1749.62" + }, + { + "": "452", + "family": "G-series", + "type": "G5", + "microarchitecture": "Haswell", + "additional_memory": "599.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1749.62" + }, + { + "": "453", + "family": "Gs-Series", + "type": "Gs1", + "microarchitecture": "Unknown", + "additional_memory": "599.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1749.62" + }, + { + "": "454", + "family": "Gs-Series", + "type": "Gs2", + "microarchitecture": "Unknown", + "additional_memory": "599.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1749.62" + }, + { + "": "455", + "family": "Gs-Series", + "type": "Gs3", + "microarchitecture": "Unknown", + "additional_memory": "599.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1749.62" + }, + { + "": "456", + "family": "Gs-Series", + "type": "Gs4", + "microarchitecture": "Unknown", + "additional_memory": "599.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1749.62" + }, + { + "": "457", + "family": "Gs-Series", + "type": "Gs5", + "microarchitecture": "Unknown", + "additional_memory": "599.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1749.62" + }, + { + "": "458", + "family": "H-series", + "type": "H16", + "microarchitecture": "Haswell", + "additional_memory": "288.71", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1438.71" + }, + { + "": "459", + "family": "H-series", + "type": "H16m", + "microarchitecture": "Haswell", + "additional_memory": "288.71", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1438.71" + }, + { + "": "460", + "family": "H-series", + "type": "H16mr", + "microarchitecture": "Haswell", + "additional_memory": "288.71", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1438.71" + }, + { + "": "461", + "family": "H-series", + "type": "H16r", + "microarchitecture": "Haswell", + "additional_memory": "288.71", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1438.71" + }, + { + "": "462", + "family": "H-series", + "type": "H8", + "microarchitecture": "Haswell", + "additional_memory": "288.71", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1438.71" + }, + { + "": "463", + "family": "H-series", + "type": "H8m", + "microarchitecture": "Haswell", + "additional_memory": "288.71", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1438.71" + }, + { + "": "464", + "family": "H-series promo", + "type": "H16 Promo", + "microarchitecture": "Haswell", + "additional_memory": "288.71", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1438.71" + }, + { + "": "465", + "family": "H-series promo", + "type": "H16m Promo", + "microarchitecture": "Haswell", + "additional_memory": "288.71", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1438.71" + }, + { + "": "466", + "family": "H-series promo", + "type": "H16mr Promo", + "microarchitecture": "Haswell", + "additional_memory": "288.71", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1438.71" + }, + { + "": "467", + "family": "H-series promo", + "type": "H16r Promo", + "microarchitecture": "Haswell", + "additional_memory": "288.71", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1438.71" + }, + { + "": "468", + "family": "H-series promo", + "type": "H8 Promo", + "microarchitecture": "Haswell", + "additional_memory": "288.71", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1438.71" + }, + { + "": "469", + "family": "H-series promo", + "type": "H8m Promo", + "microarchitecture": "Haswell", + "additional_memory": "288.71", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1438.71" + }, + { + "": "470", + "family": "HBv2-series", + "type": "HB120rs v2", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "644.04", + "additional_storage": "50.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1694.04" + }, + { + "": "471", + "family": "HBv3-series", + "type": "HB120rs v3", + "microarchitecture": "EPYC 3rd Gen", + "additional_memory": "599.62", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1699.62" + }, + { + "": "472", + "family": "Ls-series", + "type": "L16s", + "microarchitecture": "Haswell", + "additional_memory": "333.12", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1533.12" + }, + { + "": "473", + "family": "Ls-series", + "type": "L32s", + "microarchitecture": "Haswell", + "additional_memory": "333.12", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1533.12" + }, + { + "": "474", + "family": "Ls-series", + "type": "L4s", + "microarchitecture": "Haswell", + "additional_memory": "333.12", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1533.12" + }, + { + "": "475", + "family": "Ls-series", + "type": "L8s", + "microarchitecture": "Haswell", + "additional_memory": "333.12", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1533.12" + }, + { + "": "476", + "family": "Lsv2-series", + "type": "L16s v2", + "microarchitecture": "EPYC 1st Gen", + "additional_memory": "866.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2016.12" + }, + { + "": "477", + "family": "Lsv2-series", + "type": "L32s v2", + "microarchitecture": "EPYC 1st Gen", + "additional_memory": "866.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2016.12" + }, + { + "": "478", + "family": "Lsv2-series", + "type": "L48s v2", + "microarchitecture": "EPYC 1st Gen", + "additional_memory": "866.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2016.12" + }, + { + "": "479", + "family": "Lsv2-series", + "type": "L64s v2", + "microarchitecture": "EPYC 1st Gen", + "additional_memory": "866.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2016.12" + }, + { + "": "480", + "family": "Lsv2-series", + "type": "L80s v2", + "microarchitecture": "EPYC 1st Gen", + "additional_memory": "866.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2016.12" + }, + { + "": "481", + "family": "Lsv2-series", + "type": "L8s v2", + "microarchitecture": "EPYC 1st Gen", + "additional_memory": "866.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2016.12" + }, + { + "": "482", + "family": "M-series", + "type": "M128 1", + "microarchitecture": "Cascade Lake", + "additional_memory": "5379.97", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6529.97" + }, + { + "": "483", + "family": "M-series", + "type": "M128 1", + "microarchitecture": "Haswell", + "additional_memory": "5379.97", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6529.97" + }, + { + "": "484", + "family": "M-series", + "type": "M128m 1", + "microarchitecture": "Cascade Lake", + "additional_memory": "5379.97", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6529.97" + }, + { + "": "485", + "family": "M-series", + "type": "M128m 1", + "microarchitecture": "Haswell", + "additional_memory": "5379.97", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6529.97" + }, + { + "": "486", + "family": "M-series", + "type": "M128ms", + "microarchitecture": "Cascade Lake", + "additional_memory": "5379.97", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6529.97" + }, + { + "": "487", + "family": "M-series", + "type": "M128ms", + "microarchitecture": "Haswell", + "additional_memory": "5379.97", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6529.97" + }, + { + "": "488", + "family": "M-series", + "type": "M128s", + "microarchitecture": "Cascade Lake", + "additional_memory": "5379.97", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6529.97" + }, + { + "": "489", + "family": "M-series", + "type": "M128s", + "microarchitecture": "Haswell", + "additional_memory": "5379.97", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6529.97" + }, + { + "": "490", + "family": "M-series", + "type": "M16ms", + "microarchitecture": "Cascade Lake", + "additional_memory": "5379.97", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6529.97" + }, + { + "": "491", + "family": "M-series", + "type": "M16ms", + "microarchitecture": "Haswell", + "additional_memory": "5379.97", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6529.97" + }, + { + "": "492", + "family": "M-series", + "type": "M32ls", + "microarchitecture": "Cascade Lake", + "additional_memory": "5379.97", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6529.97" + }, + { + "": "493", + "family": "M-series", + "type": "M32ls", + "microarchitecture": "Haswell", + "additional_memory": "5379.97", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6529.97" + }, + { + "": "494", + "family": "M-series", + "type": "M32ms", + "microarchitecture": "Cascade Lake", + "additional_memory": "5379.97", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6529.97" + }, + { + "": "495", + "family": "M-series", + "type": "M32ms", + "microarchitecture": "Haswell", + "additional_memory": "5379.97", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6529.97" + }, + { + "": "496", + "family": "M-series", + "type": "M32ts", + "microarchitecture": "Cascade Lake", + "additional_memory": "5379.97", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6529.97" + }, + { + "": "497", + "family": "M-series", + "type": "M32ts", + "microarchitecture": "Haswell", + "additional_memory": "5379.97", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6529.97" + }, + { + "": "498", + "family": "M-series", + "type": "M64 1", + "microarchitecture": "Cascade Lake", + "additional_memory": "5379.97", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6529.97" + }, + { + "": "499", + "family": "M-series", + "type": "M64 1", + "microarchitecture": "Haswell", + "additional_memory": "5379.97", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6529.97" + }, + { + "": "500", + "family": "M-series", + "type": "M64ls", + "microarchitecture": "Cascade Lake", + "additional_memory": "5379.97", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6529.97" + }, + { + "": "501", + "family": "M-series", + "type": "M64ls", + "microarchitecture": "Haswell", + "additional_memory": "5379.97", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6529.97" + }, + { + "": "502", + "family": "M-series", + "type": "M64m 1", + "microarchitecture": "Cascade Lake", + "additional_memory": "5379.97", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6529.97" + }, + { + "": "503", + "family": "M-series", + "type": "M64m 1", + "microarchitecture": "Haswell", + "additional_memory": "5379.97", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6529.97" + }, + { + "": "504", + "family": "M-series", + "type": "M64ms", + "microarchitecture": "Cascade Lake", + "additional_memory": "5379.97", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6529.97" + }, + { + "": "505", + "family": "M-series", + "type": "M64ms", + "microarchitecture": "Haswell", + "additional_memory": "5379.97", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6529.97" + }, + { + "": "506", + "family": "M-series", + "type": "M64s", + "microarchitecture": "Cascade Lake", + "additional_memory": "5379.97", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6529.97" + }, + { + "": "507", + "family": "M-series", + "type": "M64s", + "microarchitecture": "Haswell", + "additional_memory": "5379.97", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6529.97" + }, + { + "": "508", + "family": "M-series", + "type": "M8ms", + "microarchitecture": "Cascade Lake", + "additional_memory": "5379.97", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6529.97" + }, + { + "": "509", + "family": "M-series", + "type": "M8ms", + "microarchitecture": "Haswell", + "additional_memory": "5379.97", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6529.97" + }, + { + "": "510", + "family": "Mdsv2-series", + "type": "M128dms v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "5663.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6813.12" + }, + { + "": "511", + "family": "Mdsv2-series", + "type": "M128ds v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "5663.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6813.12" + }, + { + "": "512", + "family": "Mdsv2-series", + "type": "M192idms v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "5663.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6813.12" + }, + { + "": "513", + "family": "Mdsv2-series", + "type": "M192ids v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "5663.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6813.12" + }, + { + "": "514", + "family": "Mdsv2-series", + "type": "M32dms v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "5663.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6813.12" + }, + { + "": "515", + "family": "Mdsv2-series", + "type": "M64dms v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "5663.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6813.12" + }, + { + "": "516", + "family": "Mdsv2-series", + "type": "M64ds v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "5663.12", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6813.12" + }, + { + "": "517", + "family": "Msv2-series", + "type": "M128ms v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "5663.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6763.12" + }, + { + "": "518", + "family": "Msv2-series", + "type": "M128s v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "5663.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6763.12" + }, + { + "": "519", + "family": "Msv2-series", + "type": "M192ims v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "5663.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6763.12" + }, + { + "": "520", + "family": "Msv2-series", + "type": "M192is v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "5663.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6763.12" + }, + { + "": "521", + "family": "Msv2-series", + "type": "M32ms v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "5663.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6763.12" + }, + { + "": "522", + "family": "Msv2-series", + "type": "M64ms v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "5663.12", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "6763.12" + }, + { + "": "523", + "family": "Msv2-series", + "type": "M64s v2", + "microarchitecture": "Cascade Lake", + "additional_memory": "15801.23", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "16901.23" + }, + { + "": "524", + "family": "Mv2-series", + "type": "M208ms v2", + "microarchitecture": "Skylake", + "additional_memory": "15801.23", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "16951.23" + }, + { + "": "525", + "family": "Mv2-series", + "type": "M208s v2", + "microarchitecture": "Skylake", + "additional_memory": "15801.23", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "16951.23" + }, + { + "": "526", + "family": "Mv2-series", + "type": "M416ms v2", + "microarchitecture": "Skylake", + "additional_memory": "15801.23", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "16951.23" + }, + { + "": "527", + "family": "Mv2-series", + "type": "M416s v2", + "microarchitecture": "Skylake", + "additional_memory": "15801.23", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "16951.23" + }, + { + "": "528", + "family": "NC-series", + "type": "NC12", + "microarchitecture": "Unknown", + "additional_memory": "288.71", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "2038.71" + }, + { + "": "529", + "family": "NC-series", + "type": "NC24", + "microarchitecture": "Unknown", + "additional_memory": "288.71", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "2038.71" + }, + { + "": "530", + "family": "NC-series", + "type": "NC24r", + "microarchitecture": "Unknown", + "additional_memory": "288.71", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "2038.71" + }, + { + "": "531", + "family": "NC-series", + "type": "NC6", + "microarchitecture": "Unknown", + "additional_memory": "288.71", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "2038.71" + }, + { + "": "532", + "family": "NC-series Promo", + "type": "NC12 Promo", + "microarchitecture": "Unknown", + "additional_memory": "288.71", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "2038.71" + }, + { + "": "533", + "family": "NC-series Promo", + "type": "NC24 Promo", + "microarchitecture": "Unknown", + "additional_memory": "288.71", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "2038.71" + }, + { + "": "534", + "family": "NC-series Promo", + "type": "NC24r Promo", + "microarchitecture": "Unknown", + "additional_memory": "288.71", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "2038.71" + }, + { + "": "535", + "family": "NC-series Promo", + "type": "NC6 Promo", + "microarchitecture": "Unknown", + "additional_memory": "288.71", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "2038.71" + }, + { + "": "536", + "family": "NCas_T4_v3 Series", + "type": "NC16as T4 v3", + "microarchitecture": "Unknown", + "additional_memory": "599.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "2349.62" + }, + { + "": "537", + "family": "NCas_T4_v3 Series", + "type": "NC4as T4 v3", + "microarchitecture": "Unknown", + "additional_memory": "599.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "2349.62" + }, + { + "": "538", + "family": "NCas_T4_v3 Series", + "type": "NC64as T4 v3", + "microarchitecture": "Unknown", + "additional_memory": "599.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "2349.62" + }, + { + "": "539", + "family": "NCas_T4_v3 Series", + "type": "NC8as T4 v3", + "microarchitecture": "Unknown", + "additional_memory": "599.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "2349.62" + }, + { + "": "540", + "family": "NCsv2-series", + "type": "NC12s v2", + "microarchitecture": "Unknown", + "additional_memory": "599.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "2349.62" + }, + { + "": "541", + "family": "NCsv2-series", + "type": "NC24rs v2", + "microarchitecture": "Unknown", + "additional_memory": "599.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "2349.62" + }, + { + "": "542", + "family": "NCsv2-series", + "type": "NC24s v2", + "microarchitecture": "Unknown", + "additional_memory": "599.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "2349.62" + }, + { + "": "543", + "family": "NCsv2-series", + "type": "NC6s v2", + "microarchitecture": "Unknown", + "additional_memory": "599.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "2349.62" + }, + { + "": "544", + "family": "NCsv3-series", + "type": "NC12s v3", + "microarchitecture": "Unknown", + "additional_memory": "599.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "2349.62" + }, + { + "": "545", + "family": "NCsv3-series", + "type": "NC24rs v3", + "microarchitecture": "Unknown", + "additional_memory": "599.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "2349.62" + }, + { + "": "546", + "family": "NCsv3-series", + "type": "NC24s v3", + "microarchitecture": "Unknown", + "additional_memory": "599.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "2349.62" + }, + { + "": "547", + "family": "NCsv3-series", + "type": "NC6s v3", + "microarchitecture": "Unknown", + "additional_memory": "599.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "2349.62" + }, + { + "": "548", + "family": "NDs-series", + "type": "ND12s", + "microarchitecture": "Unknown", + "additional_memory": "599.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "2349.62" + }, + { + "": "549", + "family": "NDs-series", + "type": "ND24rs", + "microarchitecture": "Unknown", + "additional_memory": "599.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "2349.62" + }, + { + "": "550", + "family": "NDs-series", + "type": "ND24s", + "microarchitecture": "Unknown", + "additional_memory": "599.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "2349.62" + }, + { + "": "551", + "family": "NDs-series", + "type": "ND6s", + "microarchitecture": "Unknown", + "additional_memory": "599.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "2349.62" + }, + { + "": "552", + "family": "NDv2 Series", + "type": "ND40rs v2", + "microarchitecture": "Unknown", + "additional_memory": "910.54", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "1200.0", + "total": "3260.54" + }, + { + "": "553", + "family": "NP-Series", + "type": "NP10s", + "microarchitecture": "Unknown", + "additional_memory": "1043.79", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2193.79" + }, + { + "": "554", + "family": "NP-Series", + "type": "NP20s", + "microarchitecture": "Unknown", + "additional_memory": "1043.79", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2193.79" + }, + { + "": "555", + "family": "NP-Series", + "type": "NP40s", + "microarchitecture": "Unknown", + "additional_memory": "1043.79", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2193.79" + }, + { + "": "556", + "family": "NV-series", + "type": "NV12", + "microarchitecture": "Unknown", + "additional_memory": "288.71", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "2038.71" + }, + { + "": "557", + "family": "NV-series", + "type": "NV24", + "microarchitecture": "Unknown", + "additional_memory": "288.71", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "2038.71" + }, + { + "": "558", + "family": "NV-series", + "type": "NV6", + "microarchitecture": "Unknown", + "additional_memory": "288.71", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "2038.71" + }, + { + "": "559", + "family": "NVv3-series", + "type": "NV12s v3", + "microarchitecture": "Unknown", + "additional_memory": "599.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "2349.62" + }, + { + "": "560", + "family": "NVv3-series", + "type": "NV24s v3", + "microarchitecture": "Unknown", + "additional_memory": "599.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "2349.62" + }, + { + "": "561", + "family": "NVv3-series", + "type": "NV48s v3", + "microarchitecture": "Unknown", + "additional_memory": "599.62", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "600.0", + "total": "2349.62" + }, + { + "": "562", + "family": "SAP HANA on Azure Large Instances", + "type": "S192", + "microarchitecture": "Broadwell", + "additional_memory": "16634.04", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "17784.04" + }, + { + "": "563", + "family": "SAP HANA on Azure Large Instances", + "type": "S192m", + "microarchitecture": "Broadwell", + "additional_memory": "16634.04", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "17784.04" + }, + { + "": "564", + "family": "SAP HANA on Azure Large Instances", + "type": "S192xm", + "microarchitecture": "Broadwell", + "additional_memory": "16634.04", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "17784.04" + }, + { + "": "565", + "family": "SAP HANA on Azure Large Instances", + "type": "S384", + "microarchitecture": "Broadwell", + "additional_memory": "16634.04", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "17784.04" + }, + { + "": "566", + "family": "SAP HANA on Azure Large Instances", + "type": "S384m", + "microarchitecture": "Broadwell", + "additional_memory": "16634.04", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "17784.04" + }, + { + "": "567", + "family": "SAP HANA on Azure Large Instances", + "type": "S384xm", + "microarchitecture": "Broadwell", + "additional_memory": "16634.04", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "17784.04" + }, + { + "": "568", + "family": "SAP HANA on Azure Large Instances", + "type": "S384xxm", + "microarchitecture": "Broadwell", + "additional_memory": "16634.04", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "17784.04" + }, + { + "": "569", + "family": "SAP HANA on Azure Large Instances", + "type": "S576m", + "microarchitecture": "Broadwell", + "additional_memory": "16634.04", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "17784.04" + }, + { + "": "570", + "family": "SAP HANA on Azure Large Instances", + "type": "S96", + "microarchitecture": "Broadwell", + "additional_memory": "16634.04", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "17784.04" + }, + { + "": "571", + "family": "SAP HANA on Azure Large Instances (second generation)", + "type": "S224", + "microarchitecture": "Cascade Lake", + "additional_memory": "51145.79", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "52295.79" + }, + { + "": "572", + "family": "SAP HANA on Azure Large Instances (second generation)", + "type": "S224m", + "microarchitecture": "Cascade Lake", + "additional_memory": "51145.79", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "52295.79" + }, + { + "": "573", + "family": "SAP HANA on Azure Large Instances (second generation)", + "type": "S224om", + "microarchitecture": "Cascade Lake", + "additional_memory": "51145.79", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "52295.79" + }, + { + "": "574", + "family": "SAP HANA on Azure Large Instances (second generation)", + "type": "S224oo", + "microarchitecture": "Cascade Lake", + "additional_memory": "51145.79", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "52295.79" + }, + { + "": "575", + "family": "SAP HANA on Azure Large Instances (second generation)", + "type": "S224oom", + "microarchitecture": "Cascade Lake", + "additional_memory": "51145.79", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "52295.79" + }, + { + "": "576", + "family": "SAP HANA on Azure Large Instances (second generation)", + "type": "S224ooo", + "microarchitecture": "Cascade Lake", + "additional_memory": "51145.79", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "52295.79" + }, + { + "": "577", + "family": "SAP HANA on Azure Large Instances (second generation)", + "type": "S448", + "microarchitecture": "Cascade Lake", + "additional_memory": "51145.79", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "52295.79" + }, + { + "": "578", + "family": "SAP HANA on Azure Large Instances (second generation)", + "type": "S448m", + "microarchitecture": "Cascade Lake", + "additional_memory": "51145.79", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "52295.79" + }, + { + "": "579", + "family": "SAP HANA on Azure Large Instances (second generation)", + "type": "S448om", + "microarchitecture": "Cascade Lake", + "additional_memory": "51145.79", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "52295.79" + }, + { + "": "580", + "family": "SAP HANA on Azure Large Instances (second generation)", + "type": "S448oo", + "microarchitecture": "Cascade Lake", + "additional_memory": "51145.79", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "52295.79" + }, + { + "": "581", + "family": "SAP HANA on Azure Large Instances (second generation)", + "type": "S448oom", + "microarchitecture": "Cascade Lake", + "additional_memory": "51145.79", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "52295.79" + }, + { + "": "582", + "family": "SAP HANA on Azure Large Instances (second generation)", + "type": "S448ooo", + "microarchitecture": "Cascade Lake", + "additional_memory": "51145.79", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "52295.79" + }, + { + "": "583", + "family": "SAP HANA on Azure Large Instances (second generation)", + "type": "S672", + "microarchitecture": "Cascade Lake", + "additional_memory": "51145.79", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "52295.79" + }, + { + "": "584", + "family": "SAP HANA on Azure Large Instances (second generation)", + "type": "S672m", + "microarchitecture": "Cascade Lake", + "additional_memory": "51145.79", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "52295.79" + }, + { + "": "585", + "family": "SAP HANA on Azure Large Instances (second generation)", + "type": "S672om", + "microarchitecture": "Cascade Lake", + "additional_memory": "51145.79", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "52295.79" + }, + { + "": "586", + "family": "SAP HANA on Azure Large Instances (second generation)", + "type": "S672oo", + "microarchitecture": "Cascade Lake", + "additional_memory": "51145.79", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "52295.79" + }, + { + "": "587", + "family": "SAP HANA on Azure Large Instances (second generation)", + "type": "S672oom", + "microarchitecture": "Cascade Lake", + "additional_memory": "51145.79", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "52295.79" + }, + { + "": "588", + "family": "SAP HANA on Azure Large Instances (second generation)", + "type": "S672ooo", + "microarchitecture": "Cascade Lake", + "additional_memory": "51145.79", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "52295.79" + }, + { + "": "589", + "family": "SAP HANA on Azure Large Instances (second generation)", + "type": "S896", + "microarchitecture": "Cascade Lake", + "additional_memory": "51145.79", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "52295.79" + }, + { + "": "590", + "family": "SAP HANA on Azure Large Instances (second generation)", + "type": "S896m", + "microarchitecture": "Cascade Lake", + "additional_memory": "51145.79", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "52295.79" + }, + { + "": "591", + "family": "SAP HANA on Azure Large Instances (second generation)", + "type": "S896om", + "microarchitecture": "Cascade Lake", + "additional_memory": "51145.79", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "52295.79" + }, + { + "": "592", + "family": "SAP HANA on Azure Large Instances (second generation)", + "type": "S896oo", + "microarchitecture": "Cascade Lake", + "additional_memory": "51145.79", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "52295.79" + }, + { + "": "593", + "family": "SAP HANA on Azure Large Instances (second generation)", + "type": "S896oom", + "microarchitecture": "Cascade Lake", + "additional_memory": "51145.79", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "52295.79" + }, + { + "": "594", + "family": "SAP HANA on Azure Large Instances (second generation)", + "type": "S896ooo", + "microarchitecture": "Cascade Lake", + "additional_memory": "51145.79", + "additional_storage": "50.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "52295.79" + } +] diff --git a/src/lib/ccf/azure-instances.json b/src/lib/ccf/azure-instances.json index 8c7db92a2..37d77e5a5 100644 --- a/src/lib/ccf/azure-instances.json +++ b/src/lib/ccf/azure-instances.json @@ -1 +1,8332 @@ -[{"Series": "Av2 Standard", "Virtual Machine": "A1 v2", "Microarchitecture": "Unknown", "Instance vCPUs": "1", "Instance Memory": "2", "Platform vCPUs (highest vCPU possible)": "8", "Platform Memory": "64", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Av2 Standard", "Virtual Machine": "A2 v2", "Microarchitecture": "Unknown", "Instance vCPUs": "2", "Instance Memory": "4", "Platform vCPUs (highest vCPU possible)": "8", "Platform Memory": "64", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Av2 Standard", "Virtual Machine": "A2m v2", "Microarchitecture": "Unknown", "Instance vCPUs": "2", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "8", "Platform Memory": "64", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Av2 Standard", "Virtual Machine": "A4 v2", "Microarchitecture": "Unknown", "Instance vCPUs": "4", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "8", "Platform Memory": "64", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Av2 Standard", "Virtual Machine": "A4m v2", "Microarchitecture": "Unknown", "Instance vCPUs": "4", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "8", "Platform Memory": "64", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Av2 Standard", "Virtual Machine": "A8 v2", "Microarchitecture": "Unknown", "Instance vCPUs": "8", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "8", "Platform Memory": "64", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Av2 Standard", "Virtual Machine": "A8m v2", "Microarchitecture": "Unknown", "Instance vCPUs": "8", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "8", "Platform Memory": "64", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Bs-series", "Virtual Machine": "B12MS", "Microarchitecture": "Unknown", "Instance vCPUs": "12", "Instance Memory": "48", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "80", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Bs-series", "Virtual Machine": "B16MS", "Microarchitecture": "Unknown", "Instance vCPUs": "16", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "80", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Bs-series", "Virtual Machine": "B1LS", "Microarchitecture": "Unknown", "Instance vCPUs": "1", "Instance Memory": "0.5", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "80", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Bs-series", "Virtual Machine": "B1MS", "Microarchitecture": "Unknown", "Instance vCPUs": "1", "Instance Memory": "2", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "80", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Bs-series", "Virtual Machine": "B1S", "Microarchitecture": "Unknown", "Instance vCPUs": "1", "Instance Memory": "1", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "80", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Bs-series", "Virtual Machine": "B20MS", "Microarchitecture": "Unknown", "Instance vCPUs": "20", "Instance Memory": "80", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "80", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Bs-series", "Virtual Machine": "B2MS", "Microarchitecture": "Unknown", "Instance vCPUs": "2", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "80", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Bs-series", "Virtual Machine": "B2S", "Microarchitecture": "Unknown", "Instance vCPUs": "2", "Instance Memory": "4", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "80", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Bs-series", "Virtual Machine": "B4MS", "Microarchitecture": "Unknown", "Instance vCPUs": "4", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "80", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Bs-series", "Virtual Machine": "B8MS", "Microarchitecture": "Unknown", "Instance vCPUs": "8", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "80", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "DS11-1 v2", "Microarchitecture": "Unknown", "Instance vCPUs": "0.5", "Instance Memory": "14", "Platform vCPUs (highest vCPU possible)": "2", "Platform Memory": "14", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "DS12-1 v2", "Microarchitecture": "Unknown", "Instance vCPUs": "0.25", "Instance Memory": "28", "Platform vCPUs (highest vCPU possible)": "4", "Platform Memory": "28", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "DS12-2 v2", "Microarchitecture": "Unknown", "Instance vCPUs": "0.5", "Instance Memory": "28", "Platform vCPUs (highest vCPU possible)": "4", "Platform Memory": "28", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "DS13-2 v2", "Microarchitecture": "Unknown", "Instance vCPUs": "0.25", "Instance Memory": "56", "Platform vCPUs (highest vCPU possible)": "8", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "DS13-4 v2", "Microarchitecture": "Unknown", "Instance vCPUs": "0.5", "Instance Memory": "56", "Platform vCPUs (highest vCPU possible)": "8", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "DS14-4 v2", "Microarchitecture": "Unknown", "Instance vCPUs": "0.25", "Instance Memory": "112", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "112", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "DS14-8 v2", "Microarchitecture": "Unknown", "Instance vCPUs": "0.5", "Instance Memory": "112", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "112", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E16-4as v4", "Microarchitecture": "Unknown", "Instance vCPUs": "0.25", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "128", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E16-4ds v4", "Microarchitecture": "Unknown", "Instance vCPUs": "0.25", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "128", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E16-4s v3", "Microarchitecture": "Unknown", "Instance vCPUs": "0.25", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "128", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E16-4s v4", "Microarchitecture": "Unknown", "Instance vCPUs": "0.25", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "128", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E16-8as v4", "Microarchitecture": "Unknown", "Instance vCPUs": "0.5", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "128", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E16-8ds v4", "Microarchitecture": "Unknown", "Instance vCPUs": "0.5", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "128", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E16-8s v3", "Microarchitecture": "Unknown", "Instance vCPUs": "0.5", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "128", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E16-8s v4", "Microarchitecture": "Unknown", "Instance vCPUs": "0.5", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "128", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E32-16as v4", "Microarchitecture": "Unknown", "Instance vCPUs": "0.5", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E32-16ds v4", "Microarchitecture": "Unknown", "Instance vCPUs": "0.5", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E32-16s v3", "Microarchitecture": "Unknown", "Instance vCPUs": "0.5", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E32-16s v4", "Microarchitecture": "Unknown", "Instance vCPUs": "0.5", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E32-8as v4", "Microarchitecture": "Unknown", "Instance vCPUs": "0.25", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E32-8ds v4", "Microarchitecture": "Unknown", "Instance vCPUs": "0.25", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E32-8s v3", "Microarchitecture": "Unknown", "Instance vCPUs": "0.25", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E32-8s v4", "Microarchitecture": "Unknown", "Instance vCPUs": "0.25", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E4-2as v4", "Microarchitecture": "Unknown", "Instance vCPUs": "0.5", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "4", "Platform Memory": "32", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E4-2ds v4", "Microarchitecture": "Unknown", "Instance vCPUs": "0.5", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "4", "Platform Memory": "32", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E4-2s v3", "Microarchitecture": "Unknown", "Instance vCPUs": "0.5", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "4", "Platform Memory": "32", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E4-2s v4", "Microarchitecture": "Unknown", "Instance vCPUs": "0.5", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "4", "Platform Memory": "32", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E64-16as v4", "Microarchitecture": "Unknown", "Instance vCPUs": "0.25", "Instance Memory": "512", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "512", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E64-16ds v4", "Microarchitecture": "Unknown", "Instance vCPUs": "0.25", "Instance Memory": "504", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "504", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E64-16s v3", "Microarchitecture": "Unknown", "Instance vCPUs": "0.25", "Instance Memory": "432", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E64-16s v4", "Microarchitecture": "Unknown", "Instance vCPUs": "0.25", "Instance Memory": "504", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "504", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E64-32as v4", "Microarchitecture": "Unknown", "Instance vCPUs": "0.5", "Instance Memory": "512", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "512", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E64-32ds v4", "Microarchitecture": "Unknown", "Instance vCPUs": "0.5", "Instance Memory": "504", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "504", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E64-32s v3", "Microarchitecture": "Unknown", "Instance vCPUs": "0.5", "Instance Memory": "432", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E64-32s v4", "Microarchitecture": "Unknown", "Instance vCPUs": "0.5", "Instance Memory": "504", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "504", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E8-2as v4", "Microarchitecture": "Unknown", "Instance vCPUs": "0.25", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "8", "Platform Memory": "64", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E8-2ds v4", "Microarchitecture": "Unknown", "Instance vCPUs": "0.25", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "8", "Platform Memory": "64", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E8-2s v3", "Microarchitecture": "Unknown", "Instance vCPUs": "0.25", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "8", "Platform Memory": "64", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E8-2s v4", "Microarchitecture": "Unknown", "Instance vCPUs": "0.25", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "8", "Platform Memory": "64", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E8-4as v4", "Microarchitecture": "Unknown", "Instance vCPUs": "0.5", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "8", "Platform Memory": "64", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E8-4ds v4", "Microarchitecture": "Unknown", "Instance vCPUs": "0.5", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "8", "Platform Memory": "64", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E8-4s v3", "Microarchitecture": "Unknown", "Instance vCPUs": "0.5", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "8", "Platform Memory": "64", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E8-4s v4", "Microarchitecture": "Unknown", "Instance vCPUs": "0.5", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "8", "Platform Memory": "64", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E96-24as v4", "Microarchitecture": "Unknown", "Instance vCPUs": "0.25", "Instance Memory": "672", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "E96-48as v4", "Microarchitecture": "Unknown", "Instance vCPUs": "0.5", "Instance Memory": "672", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "Gs4-4", "Microarchitecture": "Unknown", "Instance vCPUs": "0.25", "Instance Memory": "224", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "224", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "Gs4-8", "Microarchitecture": "Unknown", "Instance vCPUs": "0.5", "Instance Memory": "224", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "224", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "Gs5-16", "Microarchitecture": "Unknown", "Instance vCPUs": "0.5", "Instance Memory": "448", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "Gs5-8", "Microarchitecture": "Unknown", "Instance vCPUs": "0.25", "Instance Memory": "448", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "HB120-16rs v3", "Microarchitecture": "EPYC 3rd Gen", "Instance vCPUs": "0.1333333333", "Instance Memory": "448", "Platform vCPUs (highest vCPU possible)": "120", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "HB120-32rs v3", "Microarchitecture": "EPYC 3rd Gen", "Instance vCPUs": "0.2666666667", "Instance Memory": "448", "Platform vCPUs (highest vCPU possible)": "120", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "HB120-64rs v3", "Microarchitecture": "EPYC 3rd Gen", "Instance vCPUs": "0.5333333333", "Instance Memory": "448", "Platform vCPUs (highest vCPU possible)": "120", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "HB120-96rs v3", "Microarchitecture": "EPYC 3rd Gen", "Instance vCPUs": "0.8", "Instance Memory": "448", "Platform vCPUs (highest vCPU possible)": "120", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "M128-32ms", "Microarchitecture": "Unknown", "Instance vCPUs": "0.25", "Instance Memory": "3800", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "3800", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "M128-64ms", "Microarchitecture": "Unknown", "Instance vCPUs": "0.5", "Instance Memory": "3800", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "3800", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "M16-4ms", "Microarchitecture": "Unknown", "Instance vCPUs": "0.25", "Instance Memory": "438", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "438", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "M16-8ms", "Microarchitecture": "Unknown", "Instance vCPUs": "0.5", "Instance Memory": "438", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "438", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "M32-16ms", "Microarchitecture": "Unknown", "Instance vCPUs": "0.5", "Instance Memory": "875", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "875", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "M32-8ms", "Microarchitecture": "Unknown", "Instance vCPUs": "0.25", "Instance Memory": "875", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "875", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "M64-16ms", "Microarchitecture": "Unknown", "Instance vCPUs": "0.25", "Instance Memory": "1750", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "1750", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "M64-32ms", "Microarchitecture": "Unknown", "Instance vCPUs": "0.5", "Instance Memory": "1750", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "1750", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "M8-2ms", "Microarchitecture": "Unknown", "Instance vCPUs": "0.25", "Instance Memory": "219", "Platform vCPUs (highest vCPU possible)": "8", "Platform Memory": "219", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Constrained vCPUs capable", "Virtual Machine": "M8-4ms", "Microarchitecture": "Unknown", "Instance vCPUs": "0.5", "Instance Memory": "219", "Platform vCPUs (highest vCPU possible)": "8", "Platform Memory": "219", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1-5 v2", "Virtual Machine": "D1 v2", "Microarchitecture": "Haswell", "Instance vCPUs": "1", "Instance Memory": "3.5", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1-5 v2", "Virtual Machine": "D1 v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "1", "Instance Memory": "3.5", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1-5 v2", "Virtual Machine": "D1 v2", "Microarchitecture": "Skylake", "Instance vCPUs": "1", "Instance Memory": "3.5", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1-5 v2", "Virtual Machine": "D1 v2", "Microarchitecture": "Broadwell", "Instance vCPUs": "1", "Instance Memory": "3.5", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1-5 v2", "Virtual Machine": "D2 v2", "Microarchitecture": "Haswell", "Instance vCPUs": "2", "Instance Memory": "7", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1-5 v2", "Virtual Machine": "D2 v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "2", "Instance Memory": "7", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1-5 v2", "Virtual Machine": "D2 v2", "Microarchitecture": "Skylake", "Instance vCPUs": "2", "Instance Memory": "7", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1-5 v2", "Virtual Machine": "D2 v2", "Microarchitecture": "Broadwell", "Instance vCPUs": "2", "Instance Memory": "7", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1-5 v2", "Virtual Machine": "D3 v2", "Microarchitecture": "Haswell", "Instance vCPUs": "4", "Instance Memory": "14", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1-5 v2", "Virtual Machine": "D3 v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "4", "Instance Memory": "14", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1-5 v2", "Virtual Machine": "D3 v2", "Microarchitecture": "Skylake", "Instance vCPUs": "4", "Instance Memory": "14", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1-5 v2", "Virtual Machine": "D3 v2", "Microarchitecture": "Broadwell", "Instance vCPUs": "4", "Instance Memory": "14", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1-5 v2", "Virtual Machine": "D4 v2", "Microarchitecture": "Haswell", "Instance vCPUs": "8", "Instance Memory": "28", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1-5 v2", "Virtual Machine": "D4 v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "8", "Instance Memory": "28", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1-5 v2", "Virtual Machine": "D4 v2", "Microarchitecture": "Skylake", "Instance vCPUs": "8", "Instance Memory": "28", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1-5 v2", "Virtual Machine": "D4 v2", "Microarchitecture": "Broadwell", "Instance vCPUs": "8", "Instance Memory": "28", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1-5 v2", "Virtual Machine": "D5 v2", "Microarchitecture": "Haswell", "Instance vCPUs": "16", "Instance Memory": "56", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1-5 v2", "Virtual Machine": "D5 v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "16", "Instance Memory": "56", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1-5 v2", "Virtual Machine": "D5 v2", "Microarchitecture": "Skylake", "Instance vCPUs": "16", "Instance Memory": "56", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1-5 v2", "Virtual Machine": "D5 v2", "Microarchitecture": "Broadwell", "Instance vCPUs": "16", "Instance Memory": "56", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11-15 v2", "Virtual Machine": "D11 v2", "Microarchitecture": "Haswell", "Instance vCPUs": "2", "Instance Memory": "14", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11-15 v2", "Virtual Machine": "D11 v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "2", "Instance Memory": "14", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11-15 v2", "Virtual Machine": "D11 v2", "Microarchitecture": "Skylake", "Instance vCPUs": "2", "Instance Memory": "14", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11-15 v2", "Virtual Machine": "D11 v2", "Microarchitecture": "Broadwell", "Instance vCPUs": "2", "Instance Memory": "14", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11-15 v2", "Virtual Machine": "D12 v2", "Microarchitecture": "Haswell", "Instance vCPUs": "4", "Instance Memory": "28", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11-15 v2", "Virtual Machine": "D12 v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "4", "Instance Memory": "28", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11-15 v2", "Virtual Machine": "D12 v2", "Microarchitecture": "Skylake", "Instance vCPUs": "4", "Instance Memory": "28", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11-15 v2", "Virtual Machine": "D12 v2", "Microarchitecture": "Broadwell", "Instance vCPUs": "4", "Instance Memory": "28", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11-15 v2", "Virtual Machine": "D13 v2", "Microarchitecture": "Haswell", "Instance vCPUs": "8", "Instance Memory": "56", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11-15 v2", "Virtual Machine": "D13 v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "8", "Instance Memory": "56", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11-15 v2", "Virtual Machine": "D13 v2", "Microarchitecture": "Skylake", "Instance vCPUs": "8", "Instance Memory": "56", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11-15 v2", "Virtual Machine": "D13 v2", "Microarchitecture": "Broadwell", "Instance vCPUs": "8", "Instance Memory": "56", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11-15 v2", "Virtual Machine": "D14 v2", "Microarchitecture": "Haswell", "Instance vCPUs": "16", "Instance Memory": "112", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11-15 v2", "Virtual Machine": "D14 v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "16", "Instance Memory": "112", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11-15 v2", "Virtual Machine": "D14 v2", "Microarchitecture": "Skylake", "Instance vCPUs": "16", "Instance Memory": "112", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11-15 v2", "Virtual Machine": "D14 v2", "Microarchitecture": "Broadwell", "Instance vCPUs": "16", "Instance Memory": "112", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11-15 v2", "Virtual Machine": "D15 v2", "Microarchitecture": "Haswell", "Instance vCPUs": "20", "Instance Memory": "140", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11-15 v2", "Virtual Machine": "D15 v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "20", "Instance Memory": "140", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11-15 v2", "Virtual Machine": "D15 v2", "Microarchitecture": "Skylake", "Instance vCPUs": "20", "Instance Memory": "140", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11-15 v2", "Virtual Machine": "D15 v2", "Microarchitecture": "Broadwell", "Instance vCPUs": "20", "Instance Memory": "140", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11-15 v2", "Virtual Machine": "D15i v2 1", "Microarchitecture": "Haswell", "Instance vCPUs": "20", "Instance Memory": "140", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11-15 v2", "Virtual Machine": "D15i v2 1", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "20", "Instance Memory": "140", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11-15 v2", "Virtual Machine": "D15i v2 1", "Microarchitecture": "Skylake", "Instance vCPUs": "20", "Instance Memory": "140", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11-15 v2", "Virtual Machine": "D15i v2 1", "Microarchitecture": "Broadwell", "Instance vCPUs": "20", "Instance Memory": "140", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11S-15S v2", "Virtual Machine": "DS11 v2", "Microarchitecture": "Haswell", "Instance vCPUs": "2", "Instance Memory": "14", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11S-15S v2", "Virtual Machine": "DS11 v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "2", "Instance Memory": "14", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11S-15S v2", "Virtual Machine": "DS11 v2", "Microarchitecture": "Skylake", "Instance vCPUs": "2", "Instance Memory": "14", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11S-15S v2", "Virtual Machine": "DS11 v2", "Microarchitecture": "Broadwell", "Instance vCPUs": "2", "Instance Memory": "14", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11S-15S v2", "Virtual Machine": "DS12 v2", "Microarchitecture": "Haswell", "Instance vCPUs": "4", "Instance Memory": "28", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11S-15S v2", "Virtual Machine": "DS12 v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "4", "Instance Memory": "28", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11S-15S v2", "Virtual Machine": "DS12 v2", "Microarchitecture": "Skylake", "Instance vCPUs": "4", "Instance Memory": "28", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11S-15S v2", "Virtual Machine": "DS12 v2", "Microarchitecture": "Broadwell", "Instance vCPUs": "4", "Instance Memory": "28", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11S-15S v2", "Virtual Machine": "DS13 v2", "Microarchitecture": "Haswell", "Instance vCPUs": "8", "Instance Memory": "56", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11S-15S v2", "Virtual Machine": "DS13 v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "8", "Instance Memory": "56", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11S-15S v2", "Virtual Machine": "DS13 v2", "Microarchitecture": "Skylake", "Instance vCPUs": "8", "Instance Memory": "56", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11S-15S v2", "Virtual Machine": "DS13 v2", "Microarchitecture": "Broadwell", "Instance vCPUs": "8", "Instance Memory": "56", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11S-15S v2", "Virtual Machine": "DS14 v2", "Microarchitecture": "Haswell", "Instance vCPUs": "16", "Instance Memory": "112", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11S-15S v2", "Virtual Machine": "DS14 v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "16", "Instance Memory": "112", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11S-15S v2", "Virtual Machine": "DS14 v2", "Microarchitecture": "Skylake", "Instance vCPUs": "16", "Instance Memory": "112", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11S-15S v2", "Virtual Machine": "DS14 v2", "Microarchitecture": "Broadwell", "Instance vCPUs": "16", "Instance Memory": "112", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11S-15S v2", "Virtual Machine": "DS15 v2", "Microarchitecture": "Haswell", "Instance vCPUs": "20", "Instance Memory": "140", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11S-15S v2", "Virtual Machine": "DS15 v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "20", "Instance Memory": "140", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11S-15S v2", "Virtual Machine": "DS15 v2", "Microarchitecture": "Skylake", "Instance vCPUs": "20", "Instance Memory": "140", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11S-15S v2", "Virtual Machine": "DS15 v2", "Microarchitecture": "Broadwell", "Instance vCPUs": "20", "Instance Memory": "140", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11S-15S v2", "Virtual Machine": "DS15i v2 1", "Microarchitecture": "Haswell", "Instance vCPUs": "20", "Instance Memory": "140", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11S-15S v2", "Virtual Machine": "DS15i v2 1", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "20", "Instance Memory": "140", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11S-15S v2", "Virtual Machine": "DS15i v2 1", "Microarchitecture": "Skylake", "Instance vCPUs": "20", "Instance Memory": "140", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D11S-15S v2", "Virtual Machine": "DS15i v2 1", "Microarchitecture": "Broadwell", "Instance vCPUs": "20", "Instance Memory": "140", "Platform vCPUs (highest vCPU possible)": "20", "Platform Memory": "140", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1s-5s v2", "Virtual Machine": "DS1 v2", "Microarchitecture": "Haswell", "Instance vCPUs": "1", "Instance Memory": "3.5", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1s-5s v2", "Virtual Machine": "DS1 v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "1", "Instance Memory": "3.5", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1s-5s v2", "Virtual Machine": "DS1 v2", "Microarchitecture": "Skylake", "Instance vCPUs": "1", "Instance Memory": "3.5", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1s-5s v2", "Virtual Machine": "DS1 v2", "Microarchitecture": "Broadwell", "Instance vCPUs": "1", "Instance Memory": "3.5", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1s-5s v2", "Virtual Machine": "DS2 v2", "Microarchitecture": "Haswell", "Instance vCPUs": "2", "Instance Memory": "7", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1s-5s v2", "Virtual Machine": "DS2 v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "2", "Instance Memory": "7", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1s-5s v2", "Virtual Machine": "DS2 v2", "Microarchitecture": "Skylake", "Instance vCPUs": "2", "Instance Memory": "7", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1s-5s v2", "Virtual Machine": "DS2 v2", "Microarchitecture": "Broadwell", "Instance vCPUs": "2", "Instance Memory": "7", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1s-5s v2", "Virtual Machine": "DS3 v2", "Microarchitecture": "Haswell", "Instance vCPUs": "4", "Instance Memory": "14", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1s-5s v2", "Virtual Machine": "DS3 v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "4", "Instance Memory": "14", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1s-5s v2", "Virtual Machine": "DS3 v2", "Microarchitecture": "Skylake", "Instance vCPUs": "4", "Instance Memory": "14", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1s-5s v2", "Virtual Machine": "DS3 v2", "Microarchitecture": "Broadwell", "Instance vCPUs": "4", "Instance Memory": "14", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1s-5s v2", "Virtual Machine": "DS4 v2", "Microarchitecture": "Haswell", "Instance vCPUs": "8", "Instance Memory": "28", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1s-5s v2", "Virtual Machine": "DS4 v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "8", "Instance Memory": "28", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1s-5s v2", "Virtual Machine": "DS4 v2", "Microarchitecture": "Skylake", "Instance vCPUs": "8", "Instance Memory": "28", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1s-5s v2", "Virtual Machine": "DS4 v2", "Microarchitecture": "Broadwell", "Instance vCPUs": "8", "Instance Memory": "28", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1s-5s v2", "Virtual Machine": "DS5 v2", "Microarchitecture": "Haswell", "Instance vCPUs": "16", "Instance Memory": "56", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1s-5s v2", "Virtual Machine": "DS5 v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "16", "Instance Memory": "56", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1s-5s v2", "Virtual Machine": "DS5 v2", "Microarchitecture": "Skylake", "Instance vCPUs": "16", "Instance Memory": "56", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D1s-5s v2", "Virtual Machine": "DS5 v2", "Microarchitecture": "Broadwell", "Instance vCPUs": "16", "Instance Memory": "56", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "56", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2 \u2013 D64 v4", "Virtual Machine": "D16 v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "16", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2 \u2013 D64 v4", "Virtual Machine": "D2 v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "2", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "256", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2 \u2013 D64 v4", "Virtual Machine": "D32 v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "32", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "256", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2 \u2013 D64 v4", "Virtual Machine": "D4 v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "4", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "256", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2 \u2013 D64 v4", "Virtual Machine": "D48 v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "48", "Instance Memory": "192", "Platform vCPUs (highest vCPU possible)": "256", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2 \u2013 D64 v4", "Virtual Machine": "D64 v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "64", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "256", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2 \u2013 D64 v4", "Virtual Machine": "D8 v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "8", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "256", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2-64 v3", "Virtual Machine": "D16 v3", "Microarchitecture": "Haswell", "Instance vCPUs": "16", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2-64 v3", "Virtual Machine": "D16 v3", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "16", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2-64 v3", "Virtual Machine": "D16 v3", "Microarchitecture": "Skylake", "Instance vCPUs": "16", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2-64 v3", "Virtual Machine": "D16 v3", "Microarchitecture": "Broadwell", "Instance vCPUs": "16", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2-64 v3", "Virtual Machine": "D2 v3", "Microarchitecture": "Haswell", "Instance vCPUs": "2", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2-64 v3", "Virtual Machine": "D2 v3", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "2", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2-64 v3", "Virtual Machine": "D2 v3", "Microarchitecture": "Skylake", "Instance vCPUs": "2", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2-64 v3", "Virtual Machine": "D2 v3", "Microarchitecture": "Broadwell", "Instance vCPUs": "2", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2-64 v3", "Virtual Machine": "D32 v3", "Microarchitecture": "Haswell", "Instance vCPUs": "32", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2-64 v3", "Virtual Machine": "D32 v3", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "32", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2-64 v3", "Virtual Machine": "D32 v3", "Microarchitecture": "Skylake", "Instance vCPUs": "32", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2-64 v3", "Virtual Machine": "D32 v3", "Microarchitecture": "Broadwell", "Instance vCPUs": "32", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2-64 v3", "Virtual Machine": "D4 v3", "Microarchitecture": "Haswell", "Instance vCPUs": "4", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2-64 v3", "Virtual Machine": "D4 v3", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "4", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2-64 v3", "Virtual Machine": "D4 v3", "Microarchitecture": "Skylake", "Instance vCPUs": "4", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2-64 v3", "Virtual Machine": "D4 v3", "Microarchitecture": "Broadwell", "Instance vCPUs": "4", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2-64 v3", "Virtual Machine": "D48 v3", "Microarchitecture": "Haswell", "Instance vCPUs": "48", "Instance Memory": "192", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2-64 v3", "Virtual Machine": "D48 v3", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "48", "Instance Memory": "192", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2-64 v3", "Virtual Machine": "D48 v3", "Microarchitecture": "Skylake", "Instance vCPUs": "48", "Instance Memory": "192", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2-64 v3", "Virtual Machine": "D48 v3", "Microarchitecture": "Broadwell", "Instance vCPUs": "48", "Instance Memory": "192", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2-64 v3", "Virtual Machine": "D64 v3", "Microarchitecture": "Haswell", "Instance vCPUs": "64", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2-64 v3", "Virtual Machine": "D64 v3", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "64", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2-64 v3", "Virtual Machine": "D64 v3", "Microarchitecture": "Skylake", "Instance vCPUs": "64", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2-64 v3", "Virtual Machine": "D64 v3", "Microarchitecture": "Broadwell", "Instance vCPUs": "64", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2-64 v3", "Virtual Machine": "D8 v3", "Microarchitecture": "Haswell", "Instance vCPUs": "8", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2-64 v3", "Virtual Machine": "D8 v3", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "8", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2-64 v3", "Virtual Machine": "D8 v3", "Microarchitecture": "Skylake", "Instance vCPUs": "8", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2-64 v3", "Virtual Machine": "D8 v3", "Microarchitecture": "Broadwell", "Instance vCPUs": "8", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2a \u2013 D96a v4", "Virtual Machine": "D16a v4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "16", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "384", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2a \u2013 D96a v4", "Virtual Machine": "D2a v4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "2", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "384", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2a \u2013 D96a v4", "Virtual Machine": "D32a v4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "32", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "384", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2a \u2013 D96a v4", "Virtual Machine": "D48a v4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "48", "Instance Memory": "192", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "384", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2a \u2013 D96a v4", "Virtual Machine": "D4a v4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "4", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "384", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2a \u2013 D96a v4", "Virtual Machine": "D64a v4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "64", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "384", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2a \u2013 D96a v4", "Virtual Machine": "D8a v4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "8", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "384", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2a \u2013 D96a v4", "Virtual Machine": "D96a v4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "96", "Instance Memory": "384", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "384", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2as \u2013 D96as v4", "Virtual Machine": "D16as v4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "16", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "384", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2as \u2013 D96as v4", "Virtual Machine": "D2as v4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "2", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "384", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2as \u2013 D96as v4", "Virtual Machine": "D32as v4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "32", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "384", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2as \u2013 D96as v4", "Virtual Machine": "D48as v4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "48", "Instance Memory": "192", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "384", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2as \u2013 D96as v4", "Virtual Machine": "D4as v4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "4", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "384", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2as \u2013 D96as v4", "Virtual Machine": "D64as v4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "64", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "384", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2as \u2013 D96as v4", "Virtual Machine": "D8as v4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "8", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "384", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2as \u2013 D96as v4", "Virtual Machine": "D96as v4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "96", "Instance Memory": "384", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "384", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2d \u2013 D64d v4", "Virtual Machine": "D16d v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "16", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2d \u2013 D64d v4", "Virtual Machine": "D2d v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "2", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2d \u2013 D64d v4", "Virtual Machine": "D32d v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "32", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2d \u2013 D64d v4", "Virtual Machine": "D48d v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "48", "Instance Memory": "192", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2d \u2013 D64d v4", "Virtual Machine": "D4d v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "4", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2d \u2013 D64d v4", "Virtual Machine": "D64d v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "64", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2d \u2013 D64d v4", "Virtual Machine": "D8d v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "8", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2ds \u2013 D64ds v4", "Virtual Machine": "D16ds v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "16", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2ds \u2013 D64ds v4", "Virtual Machine": "D2ds v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "2", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2ds \u2013 D64ds v4", "Virtual Machine": "D32ds v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "32", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2ds \u2013 D64ds v4", "Virtual Machine": "D48ds v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "48", "Instance Memory": "192", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2ds \u2013 D64ds v4", "Virtual Machine": "D4ds v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "4", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2ds \u2013 D64ds v4", "Virtual Machine": "D64ds v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "64", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2ds \u2013 D64ds v4", "Virtual Machine": "D8ds v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "8", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s \u2013 D64s v4", "Virtual Machine": "D16s v4", "Microarchitecture": "Haswell", "Instance vCPUs": "16", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s \u2013 D64s v4", "Virtual Machine": "D16s v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "16", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s \u2013 D64s v4", "Virtual Machine": "D16s v4", "Microarchitecture": "Skylake", "Instance vCPUs": "16", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s \u2013 D64s v4", "Virtual Machine": "D16s v4", "Microarchitecture": "Broadwell", "Instance vCPUs": "16", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s \u2013 D64s v4", "Virtual Machine": "D2s v4", "Microarchitecture": "Haswell", "Instance vCPUs": "2", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s \u2013 D64s v4", "Virtual Machine": "D2s v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "2", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s \u2013 D64s v4", "Virtual Machine": "D2s v4", "Microarchitecture": "Skylake", "Instance vCPUs": "2", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s \u2013 D64s v4", "Virtual Machine": "D2s v4", "Microarchitecture": "Broadwell", "Instance vCPUs": "2", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s \u2013 D64s v4", "Virtual Machine": "D32s v4", "Microarchitecture": "Haswell", "Instance vCPUs": "32", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s \u2013 D64s v4", "Virtual Machine": "D32s v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "32", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s \u2013 D64s v4", "Virtual Machine": "D32s v4", "Microarchitecture": "Skylake", "Instance vCPUs": "32", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s \u2013 D64s v4", "Virtual Machine": "D32s v4", "Microarchitecture": "Broadwell", "Instance vCPUs": "32", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s \u2013 D64s v4", "Virtual Machine": "D48s v4", "Microarchitecture": "Haswell", "Instance vCPUs": "48", "Instance Memory": "192", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s \u2013 D64s v4", "Virtual Machine": "D48s v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "48", "Instance Memory": "192", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s \u2013 D64s v4", "Virtual Machine": "D48s v4", "Microarchitecture": "Skylake", "Instance vCPUs": "48", "Instance Memory": "192", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s \u2013 D64s v4", "Virtual Machine": "D48s v4", "Microarchitecture": "Broadwell", "Instance vCPUs": "48", "Instance Memory": "192", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s \u2013 D64s v4", "Virtual Machine": "D4s v4", "Microarchitecture": "Haswell", "Instance vCPUs": "4", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s \u2013 D64s v4", "Virtual Machine": "D4s v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "4", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s \u2013 D64s v4", "Virtual Machine": "D4s v4", "Microarchitecture": "Skylake", "Instance vCPUs": "4", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s \u2013 D64s v4", "Virtual Machine": "D4s v4", "Microarchitecture": "Broadwell", "Instance vCPUs": "4", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s \u2013 D64s v4", "Virtual Machine": "D64s v4", "Microarchitecture": "Haswell", "Instance vCPUs": "64", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s \u2013 D64s v4", "Virtual Machine": "D64s v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "64", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s \u2013 D64s v4", "Virtual Machine": "D64s v4", "Microarchitecture": "Skylake", "Instance vCPUs": "64", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s \u2013 D64s v4", "Virtual Machine": "D64s v4", "Microarchitecture": "Broadwell", "Instance vCPUs": "64", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s \u2013 D64s v4", "Virtual Machine": "D8s v4", "Microarchitecture": "Haswell", "Instance vCPUs": "8", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s \u2013 D64s v4", "Virtual Machine": "D8s v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "8", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s \u2013 D64s v4", "Virtual Machine": "D8s v4", "Microarchitecture": "Skylake", "Instance vCPUs": "8", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s \u2013 D64s v4", "Virtual Machine": "D8s v4", "Microarchitecture": "Broadwell", "Instance vCPUs": "8", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s-64s v3", "Virtual Machine": "D16s v3", "Microarchitecture": "Haswell", "Instance vCPUs": "16", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s-64s v3", "Virtual Machine": "D16s v3", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "16", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s-64s v3", "Virtual Machine": "D16s v3", "Microarchitecture": "Skylake", "Instance vCPUs": "16", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s-64s v3", "Virtual Machine": "D16s v3", "Microarchitecture": "Broadwell", "Instance vCPUs": "16", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s-64s v3", "Virtual Machine": "D2s v3", "Microarchitecture": "Haswell", "Instance vCPUs": "2", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s-64s v3", "Virtual Machine": "D2s v3", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "2", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s-64s v3", "Virtual Machine": "D2s v3", "Microarchitecture": "Skylake", "Instance vCPUs": "2", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s-64s v3", "Virtual Machine": "D2s v3", "Microarchitecture": "Broadwell", "Instance vCPUs": "2", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s-64s v3", "Virtual Machine": "D32s v3", "Microarchitecture": "Haswell", "Instance vCPUs": "32", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s-64s v3", "Virtual Machine": "D32s v3", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "32", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s-64s v3", "Virtual Machine": "D32s v3", "Microarchitecture": "Skylake", "Instance vCPUs": "32", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s-64s v3", "Virtual Machine": "D32s v3", "Microarchitecture": "Broadwell", "Instance vCPUs": "32", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s-64s v3", "Virtual Machine": "D48s v3", "Microarchitecture": "Haswell", "Instance vCPUs": "48", "Instance Memory": "192", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s-64s v3", "Virtual Machine": "D48s v3", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "48", "Instance Memory": "192", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s-64s v3", "Virtual Machine": "D48s v3", "Microarchitecture": "Skylake", "Instance vCPUs": "48", "Instance Memory": "192", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s-64s v3", "Virtual Machine": "D48s v3", "Microarchitecture": "Broadwell", "Instance vCPUs": "48", "Instance Memory": "192", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s-64s v3", "Virtual Machine": "D4s v3", "Microarchitecture": "Haswell", "Instance vCPUs": "4", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s-64s v3", "Virtual Machine": "D4s v3", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "4", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s-64s v3", "Virtual Machine": "D4s v3", "Microarchitecture": "Skylake", "Instance vCPUs": "4", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s-64s v3", "Virtual Machine": "D4s v3", "Microarchitecture": "Broadwell", "Instance vCPUs": "4", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s-64s v3", "Virtual Machine": "D64s v3", "Microarchitecture": "Haswell", "Instance vCPUs": "64", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s-64s v3", "Virtual Machine": "D64s v3", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "64", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s-64s v3", "Virtual Machine": "D64s v3", "Microarchitecture": "Skylake", "Instance vCPUs": "64", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s-64s v3", "Virtual Machine": "D64s v3", "Microarchitecture": "Broadwell", "Instance vCPUs": "64", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s-64s v3", "Virtual Machine": "D8s v3", "Microarchitecture": "Haswell", "Instance vCPUs": "8", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s-64s v3", "Virtual Machine": "D8s v3", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "8", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s-64s v3", "Virtual Machine": "D8s v3", "Microarchitecture": "Skylake", "Instance vCPUs": "8", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "D2s-64s v3", "Virtual Machine": "D8s v3", "Microarchitecture": "Broadwell", "Instance vCPUs": "8", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "DCsv2-series", "Virtual Machine": "DC1s v2", "Microarchitecture": "Coffee Lake", "Instance vCPUs": "1", "Instance Memory": "4", "Platform vCPUs (highest vCPU possible)": "8", "Platform Memory": "32", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "DCsv2-series", "Virtual Machine": "DC2s v2", "Microarchitecture": "Coffee Lake", "Instance vCPUs": "2", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "8", "Platform Memory": "32", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "DCsv2-series", "Virtual Machine": "DC4s v2", "Microarchitecture": "Coffee Lake", "Instance vCPUs": "4", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "8", "Platform Memory": "32", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "DCsv2-series", "Virtual Machine": "DC8 v2", "Microarchitecture": "Coffee Lake", "Instance vCPUs": "8", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "8", "Platform Memory": "32", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2 \u2013 E64 v4", "Virtual Machine": "E16 v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "16", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2 \u2013 E64 v4", "Virtual Machine": "E2 v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "2", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2 \u2013 E64 v4", "Virtual Machine": "E32 v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "32", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2 \u2013 E64 v4", "Virtual Machine": "E4 v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "4", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2 \u2013 E64 v4", "Virtual Machine": "E48 v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "48", "Instance Memory": "384", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2 \u2013 E64 v4", "Virtual Machine": "E64 v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "64", "Instance Memory": "504", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2 \u2013 E64 v4", "Virtual Machine": "E8 v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "8", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2 \u2013 E96 v5", "Virtual Machine": "E16 v5", "Microarchitecture": "Unknown", "Instance vCPUs": "16", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2 \u2013 E96 v5", "Virtual Machine": "E2 v5", "Microarchitecture": "Unknown", "Instance vCPUs": "2", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2 \u2013 E96 v5", "Virtual Machine": "E20 v5", "Microarchitecture": "Unknown", "Instance vCPUs": "20", "Instance Memory": "160", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2 \u2013 E96 v5", "Virtual Machine": "E32 v5", "Microarchitecture": "Unknown", "Instance vCPUs": "32", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2 \u2013 E96 v5", "Virtual Machine": "E4 v5", "Microarchitecture": "Unknown", "Instance vCPUs": "4", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2 \u2013 E96 v5", "Virtual Machine": "E48 v5", "Microarchitecture": "Unknown", "Instance vCPUs": "48", "Instance Memory": "384", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2 \u2013 E96 v5", "Virtual Machine": "E64 v5", "Microarchitecture": "Unknown", "Instance vCPUs": "64", "Instance Memory": "512", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2 \u2013 E96 v5", "Virtual Machine": "E8 v5", "Microarchitecture": "Unknown", "Instance vCPUs": "8", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2 \u2013 E96 v5", "Virtual Machine": "E96 v5", "Microarchitecture": "Unknown", "Instance vCPUs": "96", "Instance Memory": "672", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2-64 v3", "Virtual Machine": "E16 v3", "Microarchitecture": "Broadwell", "Instance vCPUs": "16", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2-64 v3", "Virtual Machine": "E16 v3", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "16", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2-64 v3", "Virtual Machine": "E16 v3", "Microarchitecture": "Skylake", "Instance vCPUs": "16", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2-64 v3", "Virtual Machine": "E2 v3", "Microarchitecture": "Broadwell", "Instance vCPUs": "2", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2-64 v3", "Virtual Machine": "E2 v3", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "2", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2-64 v3", "Virtual Machine": "E2 v3", "Microarchitecture": "Skylake", "Instance vCPUs": "2", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2-64 v3", "Virtual Machine": "E20 v3", "Microarchitecture": "Broadwell", "Instance vCPUs": "20", "Instance Memory": "160", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2-64 v3", "Virtual Machine": "E20 v3", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "20", "Instance Memory": "160", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2-64 v3", "Virtual Machine": "E20 v3", "Microarchitecture": "Skylake", "Instance vCPUs": "20", "Instance Memory": "160", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2-64 v3", "Virtual Machine": "E32 v3", "Microarchitecture": "Broadwell", "Instance vCPUs": "32", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2-64 v3", "Virtual Machine": "E32 v3", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "32", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2-64 v3", "Virtual Machine": "E32 v3", "Microarchitecture": "Skylake", "Instance vCPUs": "32", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2-64 v3", "Virtual Machine": "E4 v3", "Microarchitecture": "Broadwell", "Instance vCPUs": "4", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2-64 v3", "Virtual Machine": "E4 v3", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "4", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2-64 v3", "Virtual Machine": "E4 v3", "Microarchitecture": "Skylake", "Instance vCPUs": "4", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2-64 v3", "Virtual Machine": "E48 v3", "Microarchitecture": "Broadwell", "Instance vCPUs": "48", "Instance Memory": "384", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2-64 v3", "Virtual Machine": "E48 v3", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "48", "Instance Memory": "384", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2-64 v3", "Virtual Machine": "E48 v3", "Microarchitecture": "Skylake", "Instance vCPUs": "48", "Instance Memory": "384", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2-64 v3", "Virtual Machine": "E64 v3", "Microarchitecture": "Broadwell", "Instance vCPUs": "64", "Instance Memory": "432", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2-64 v3", "Virtual Machine": "E64 v3", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "64", "Instance Memory": "432", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2-64 v3", "Virtual Machine": "E64 v3", "Microarchitecture": "Skylake", "Instance vCPUs": "64", "Instance Memory": "432", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2-64 v3", "Virtual Machine": "E64i v3 1", "Microarchitecture": "Broadwell", "Instance vCPUs": "64", "Instance Memory": "432", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2-64 v3", "Virtual Machine": "E64i v3 1", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "64", "Instance Memory": "432", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2-64 v3", "Virtual Machine": "E64i v3 1", "Microarchitecture": "Skylake", "Instance vCPUs": "64", "Instance Memory": "432", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2-64 v3", "Virtual Machine": "E8 v3", "Microarchitecture": "Broadwell", "Instance vCPUs": "8", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2-64 v3", "Virtual Machine": "E8 v3", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "8", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2-64 v3", "Virtual Machine": "E8 v3", "Microarchitecture": "Skylake", "Instance vCPUs": "8", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2a \u2013 E96a v4", "Virtual Machine": "E16a v4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "16", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2a \u2013 E96a v4", "Virtual Machine": "E20a v4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "20", "Instance Memory": "160", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2a \u2013 E96a v4", "Virtual Machine": "E2a v4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "2", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2a \u2013 E96a v4", "Virtual Machine": "E32a v4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "32", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2a \u2013 E96a v4", "Virtual Machine": "E48a v4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "48", "Instance Memory": "384", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2a \u2013 E96a v4", "Virtual Machine": "E4a v4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "4", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2a \u2013 E96a v4", "Virtual Machine": "E64a v4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "64", "Instance Memory": "512", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2a \u2013 E96a v4", "Virtual Machine": "E8a v4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "8", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2a \u2013 E96a v4", "Virtual Machine": "E96a v4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "96", "Instance Memory": "672", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2as \u2013 E96as v4", "Virtual Machine": "E16as v4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "16", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2as \u2013 E96as v4", "Virtual Machine": "E20as v4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "20", "Instance Memory": "160", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2as \u2013 E96as v4", "Virtual Machine": "E2as v4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "2", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2as \u2013 E96as v4", "Virtual Machine": "E32as v4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "32", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2as \u2013 E96as v4", "Virtual Machine": "E48as v4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "48", "Instance Memory": "384", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2as \u2013 E96as v4", "Virtual Machine": "E4as v4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "4", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2as \u2013 E96as v4", "Virtual Machine": "E64as v4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "64", "Instance Memory": "512", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2as \u2013 E96as v4", "Virtual Machine": "E8as v4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "8", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2as \u2013 E96as v4", "Virtual Machine": "E96as v4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "96", "Instance Memory": "672", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2d \u2013 E64d v4", "Virtual Machine": "E16d v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "16", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "504", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2d \u2013 E64d v4", "Virtual Machine": "E20d v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "20", "Instance Memory": "160", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "504", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2d \u2013 E64d v4", "Virtual Machine": "E2d v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "2", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "504", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2d \u2013 E64d v4", "Virtual Machine": "E32d v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "32", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "504", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2d \u2013 E64d v4", "Virtual Machine": "E48d v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "48", "Instance Memory": "384", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "504", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2d \u2013 E64d v4", "Virtual Machine": "E4d v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "4", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "504", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2d \u2013 E64d v4", "Virtual Machine": "E64d v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "64", "Instance Memory": "504", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "504", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2d \u2013 E64d v4", "Virtual Machine": "E8d v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "8", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "504", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2ds \u2013 E64ds v4", "Virtual Machine": "E16ds v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "16", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "80", "Platform Memory": "504", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2ds \u2013 E64ds v4", "Virtual Machine": "E20ds v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "20", "Instance Memory": "160", "Platform vCPUs (highest vCPU possible)": "80", "Platform Memory": "504", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2ds \u2013 E64ds v4", "Virtual Machine": "E2ds v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "2", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "80", "Platform Memory": "504", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2ds \u2013 E64ds v4", "Virtual Machine": "E32ds v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "32", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "80", "Platform Memory": "504", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2ds \u2013 E64ds v4", "Virtual Machine": "E48ds v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "48", "Instance Memory": "384", "Platform vCPUs (highest vCPU possible)": "80", "Platform Memory": "504", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2ds \u2013 E64ds v4", "Virtual Machine": "E4ds v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "4", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "80", "Platform Memory": "504", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2ds \u2013 E64ds v4", "Virtual Machine": "E64ds v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "64", "Instance Memory": "504", "Platform vCPUs (highest vCPU possible)": "80", "Platform Memory": "504", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2ds \u2013 E64ds v4", "Virtual Machine": "E80ids v4 1", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "80", "Instance Memory": "504", "Platform vCPUs (highest vCPU possible)": "80", "Platform Memory": "504", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2ds \u2013 E64ds v4", "Virtual Machine": "E8ds v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "8", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "80", "Platform Memory": "504", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s \u2013 E64s v4", "Virtual Machine": "E16s v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "16", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "80", "Platform Memory": "504", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s \u2013 E64s v4", "Virtual Machine": "E20s v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "20", "Instance Memory": "160", "Platform vCPUs (highest vCPU possible)": "80", "Platform Memory": "504", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s \u2013 E64s v4", "Virtual Machine": "E2s v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "2", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "80", "Platform Memory": "504", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s \u2013 E64s v4", "Virtual Machine": "E32s v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "32", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "80", "Platform Memory": "504", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s \u2013 E64s v4", "Virtual Machine": "E48s v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "48", "Instance Memory": "384", "Platform vCPUs (highest vCPU possible)": "80", "Platform Memory": "504", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s \u2013 E64s v4", "Virtual Machine": "E4s v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "4", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "80", "Platform Memory": "504", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s \u2013 E64s v4", "Virtual Machine": "E64s v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "64", "Instance Memory": "504", "Platform vCPUs (highest vCPU possible)": "80", "Platform Memory": "504", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s \u2013 E64s v4", "Virtual Machine": "E80is v4 1", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "80", "Instance Memory": "504", "Platform vCPUs (highest vCPU possible)": "80", "Platform Memory": "504", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s \u2013 E64s v4", "Virtual Machine": "E8s v4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "8", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "80", "Platform Memory": "504", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s-64s v3", "Virtual Machine": "E16s v3", "Microarchitecture": "Broadwell", "Instance vCPUs": "16", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s-64s v3", "Virtual Machine": "E16s v3", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "16", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s-64s v3", "Virtual Machine": "E16s v3", "Microarchitecture": "Skylake", "Instance vCPUs": "16", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s-64s v3", "Virtual Machine": "E20s v3", "Microarchitecture": "Broadwell", "Instance vCPUs": "20", "Instance Memory": "160", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s-64s v3", "Virtual Machine": "E20s v3", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "20", "Instance Memory": "160", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s-64s v3", "Virtual Machine": "E20s v3", "Microarchitecture": "Skylake", "Instance vCPUs": "20", "Instance Memory": "160", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s-64s v3", "Virtual Machine": "E2s v3", "Microarchitecture": "Broadwell", "Instance vCPUs": "2", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s-64s v3", "Virtual Machine": "E2s v3", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "2", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s-64s v3", "Virtual Machine": "E2s v3", "Microarchitecture": "Skylake", "Instance vCPUs": "2", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s-64s v3", "Virtual Machine": "E32s v3", "Microarchitecture": "Broadwell", "Instance vCPUs": "32", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s-64s v3", "Virtual Machine": "E32s v3", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "32", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s-64s v3", "Virtual Machine": "E32s v3", "Microarchitecture": "Skylake", "Instance vCPUs": "32", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s-64s v3", "Virtual Machine": "E48s v3", "Microarchitecture": "Broadwell", "Instance vCPUs": "48", "Instance Memory": "384", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s-64s v3", "Virtual Machine": "E48s v3", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "48", "Instance Memory": "384", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s-64s v3", "Virtual Machine": "E48s v3", "Microarchitecture": "Skylake", "Instance vCPUs": "48", "Instance Memory": "384", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s-64s v3", "Virtual Machine": "E4s v3", "Microarchitecture": "Broadwell", "Instance vCPUs": "4", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s-64s v3", "Virtual Machine": "E4s v3", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "4", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s-64s v3", "Virtual Machine": "E4s v3", "Microarchitecture": "Skylake", "Instance vCPUs": "4", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s-64s v3", "Virtual Machine": "E64is v3 1", "Microarchitecture": "Broadwell", "Instance vCPUs": "64", "Instance Memory": "432", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s-64s v3", "Virtual Machine": "E64is v3 1", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "64", "Instance Memory": "432", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s-64s v3", "Virtual Machine": "E64is v3 1", "Microarchitecture": "Skylake", "Instance vCPUs": "64", "Instance Memory": "432", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s-64s v3", "Virtual Machine": "E64s v3", "Microarchitecture": "Broadwell", "Instance vCPUs": "64", "Instance Memory": "432", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s-64s v3", "Virtual Machine": "E64s v3", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "64", "Instance Memory": "432", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s-64s v3", "Virtual Machine": "E64s v3", "Microarchitecture": "Skylake", "Instance vCPUs": "64", "Instance Memory": "432", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s-64s v3", "Virtual Machine": "E8s v3", "Microarchitecture": "Broadwell", "Instance vCPUs": "8", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s-64s v3", "Virtual Machine": "E8s v3", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "8", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "E2s-64s v3", "Virtual Machine": "E8s v3", "Microarchitecture": "Skylake", "Instance vCPUs": "8", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "64", "Platform Memory": "432", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "F-series", "Virtual Machine": "F1", "Microarchitecture": "Haswell", "Instance vCPUs": "1", "Instance Memory": "2", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "32", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "F-series", "Virtual Machine": "F1", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "1", "Instance Memory": "2", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "32", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "F-series", "Virtual Machine": "F1", "Microarchitecture": "Skylake", "Instance vCPUs": "1", "Instance Memory": "2", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "32", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "F-series", "Virtual Machine": "F1", "Microarchitecture": "Broadwell", "Instance vCPUs": "1", "Instance Memory": "2", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "32", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "F-series", "Virtual Machine": "F16", "Microarchitecture": "Haswell", "Instance vCPUs": "16", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "32", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "F-series", "Virtual Machine": "F16", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "16", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "32", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "F-series", "Virtual Machine": "F16", "Microarchitecture": "Skylake", "Instance vCPUs": "16", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "32", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "F-series", "Virtual Machine": "F16", "Microarchitecture": "Broadwell", "Instance vCPUs": "16", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "32", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "F-series", "Virtual Machine": "F2", "Microarchitecture": "Haswell", "Instance vCPUs": "2", "Instance Memory": "4", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "32", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "F-series", "Virtual Machine": "F2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "2", "Instance Memory": "4", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "32", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "F-series", "Virtual Machine": "F2", "Microarchitecture": "Skylake", "Instance vCPUs": "2", "Instance Memory": "4", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "32", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "F-series", "Virtual Machine": "F2", "Microarchitecture": "Broadwell", "Instance vCPUs": "2", "Instance Memory": "4", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "32", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "F-series", "Virtual Machine": "F4", "Microarchitecture": "Haswell", "Instance vCPUs": "4", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "32", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "F-series", "Virtual Machine": "F4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "4", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "32", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "F-series", "Virtual Machine": "F4", "Microarchitecture": "Skylake", "Instance vCPUs": "4", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "32", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "F-series", "Virtual Machine": "F4", "Microarchitecture": "Broadwell", "Instance vCPUs": "4", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "32", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "F-series", "Virtual Machine": "F8", "Microarchitecture": "Haswell", "Instance vCPUs": "8", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "32", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "F-series", "Virtual Machine": "F8", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "8", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "32", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "F-series", "Virtual Machine": "F8", "Microarchitecture": "Skylake", "Instance vCPUs": "8", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "32", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "F-series", "Virtual Machine": "F8", "Microarchitecture": "Broadwell", "Instance vCPUs": "8", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "32", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Fs-Series", "Virtual Machine": "F16s", "Microarchitecture": "Unknown", "Instance vCPUs": "16", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "32", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Fs-Series", "Virtual Machine": "F1s", "Microarchitecture": "Unknown", "Instance vCPUs": "1", "Instance Memory": "2", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "32", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Fs-Series", "Virtual Machine": "F2s", "Microarchitecture": "Unknown", "Instance vCPUs": "2", "Instance Memory": "4", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "32", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Fs-Series", "Virtual Machine": "F4s", "Microarchitecture": "Unknown", "Instance vCPUs": "4", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "32", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Fs-Series", "Virtual Machine": "F8s", "Microarchitecture": "Unknown", "Instance vCPUs": "8", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "32", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Fsv2-series", "Virtual Machine": "F16s v2", "Microarchitecture": "Skylake", "Instance vCPUs": "16", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "72", "Platform Memory": "144", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Fsv2-series", "Virtual Machine": "F16s v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "16", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "72", "Platform Memory": "144", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Fsv2-series", "Virtual Machine": "F2s v2", "Microarchitecture": "Skylake", "Instance vCPUs": "2", "Instance Memory": "4", "Platform vCPUs (highest vCPU possible)": "72", "Platform Memory": "144", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Fsv2-series", "Virtual Machine": "F2s v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "2", "Instance Memory": "4", "Platform vCPUs (highest vCPU possible)": "72", "Platform Memory": "144", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Fsv2-series", "Virtual Machine": "F32s v2", "Microarchitecture": "Skylake", "Instance vCPUs": "32", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "72", "Platform Memory": "144", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Fsv2-series", "Virtual Machine": "F32s v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "32", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "72", "Platform Memory": "144", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Fsv2-series", "Virtual Machine": "F48s v2", "Microarchitecture": "Skylake", "Instance vCPUs": "48", "Instance Memory": "96", "Platform vCPUs (highest vCPU possible)": "72", "Platform Memory": "144", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Fsv2-series", "Virtual Machine": "F48s v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "48", "Instance Memory": "96", "Platform vCPUs (highest vCPU possible)": "72", "Platform Memory": "144", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Fsv2-series", "Virtual Machine": "F4s v2", "Microarchitecture": "Skylake", "Instance vCPUs": "4", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "72", "Platform Memory": "144", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Fsv2-series", "Virtual Machine": "F4s v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "4", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "72", "Platform Memory": "144", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Fsv2-series", "Virtual Machine": "F64s v2", "Microarchitecture": "Skylake", "Instance vCPUs": "64", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "72", "Platform Memory": "144", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Fsv2-series", "Virtual Machine": "F64s v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "64", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "72", "Platform Memory": "144", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Fsv2-series", "Virtual Machine": "F72s v2", "Microarchitecture": "Skylake", "Instance vCPUs": "72", "Instance Memory": "144", "Platform vCPUs (highest vCPU possible)": "72", "Platform Memory": "144", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Fsv2-series", "Virtual Machine": "F72s v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "72", "Instance Memory": "144", "Platform vCPUs (highest vCPU possible)": "72", "Platform Memory": "144", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Fsv2-series", "Virtual Machine": "F8s v2", "Microarchitecture": "Skylake", "Instance vCPUs": "8", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "72", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Fsv2-series", "Virtual Machine": "F8s v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "8", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "72", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "G-series", "Virtual Machine": "G1", "Microarchitecture": "Haswell", "Instance vCPUs": "2", "Instance Memory": "28", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "G-series", "Virtual Machine": "G2", "Microarchitecture": "Haswell", "Instance vCPUs": "4", "Instance Memory": "56", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "G-series", "Virtual Machine": "G3", "Microarchitecture": "Haswell", "Instance vCPUs": "8", "Instance Memory": "112", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "G-series", "Virtual Machine": "G4", "Microarchitecture": "Haswell", "Instance vCPUs": "16", "Instance Memory": "224", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "G-series", "Virtual Machine": "G5", "Microarchitecture": "Haswell", "Instance vCPUs": "32", "Instance Memory": "448", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Gs-Series", "Virtual Machine": "Gs1", "Microarchitecture": "Unknown", "Instance vCPUs": "2", "Instance Memory": "28", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Gs-Series", "Virtual Machine": "Gs2", "Microarchitecture": "Unknown", "Instance vCPUs": "4", "Instance Memory": "56", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Gs-Series", "Virtual Machine": "Gs3", "Microarchitecture": "Unknown", "Instance vCPUs": "8", "Instance Memory": "112", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Gs-Series", "Virtual Machine": "Gs4", "Microarchitecture": "Unknown", "Instance vCPUs": "16", "Instance Memory": "224", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Gs-Series", "Virtual Machine": "Gs5", "Microarchitecture": "Unknown", "Instance vCPUs": "32", "Instance Memory": "448", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "H-series", "Virtual Machine": "H16", "Microarchitecture": "Haswell", "Instance vCPUs": "16", "Instance Memory": "112", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "224", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "H-series", "Virtual Machine": "H16m", "Microarchitecture": "Haswell", "Instance vCPUs": "16", "Instance Memory": "224", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "224", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "H-series", "Virtual Machine": "H16mr", "Microarchitecture": "Haswell", "Instance vCPUs": "16", "Instance Memory": "224", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "224", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "H-series", "Virtual Machine": "H16r", "Microarchitecture": "Haswell", "Instance vCPUs": "16", "Instance Memory": "112", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "224", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "H-series", "Virtual Machine": "H8", "Microarchitecture": "Haswell", "Instance vCPUs": "8", "Instance Memory": "56", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "224", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "H-series", "Virtual Machine": "H8m", "Microarchitecture": "Haswell", "Instance vCPUs": "8", "Instance Memory": "112", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "224", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "H-series promo", "Virtual Machine": "H16 Promo", "Microarchitecture": "Haswell", "Instance vCPUs": "16", "Instance Memory": "112", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "224", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "H-series promo", "Virtual Machine": "H16m Promo", "Microarchitecture": "Haswell", "Instance vCPUs": "16", "Instance Memory": "224", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "224", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "H-series promo", "Virtual Machine": "H16mr Promo", "Microarchitecture": "Haswell", "Instance vCPUs": "16", "Instance Memory": "224", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "224", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "H-series promo", "Virtual Machine": "H16r Promo", "Microarchitecture": "Haswell", "Instance vCPUs": "16", "Instance Memory": "112", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "224", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "H-series promo", "Virtual Machine": "H8 Promo", "Microarchitecture": "Haswell", "Instance vCPUs": "8", "Instance Memory": "56", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "224", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "H-series promo", "Virtual Machine": "H8m Promo", "Microarchitecture": "Haswell", "Instance vCPUs": "8", "Instance Memory": "112", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "224", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "HBv2-series", "Virtual Machine": "HB120rs v2", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "120", "Instance Memory": "480", "Platform vCPUs (highest vCPU possible)": "120", "Platform Memory": "480", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "HBv3-series", "Virtual Machine": "HB120rs v3", "Microarchitecture": "EPYC 3rd Gen", "Instance vCPUs": "120", "Instance Memory": "448", "Platform vCPUs (highest vCPU possible)": "120", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Ls-series", "Virtual Machine": "L16s", "Microarchitecture": "Haswell", "Instance vCPUs": "16", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Ls-series", "Virtual Machine": "L32s", "Microarchitecture": "Haswell", "Instance vCPUs": "32", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Ls-series", "Virtual Machine": "L4s", "Microarchitecture": "Haswell", "Instance vCPUs": "4", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Ls-series", "Virtual Machine": "L8s", "Microarchitecture": "Haswell", "Instance vCPUs": "8", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "256", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Lsv2-series", "Virtual Machine": "L16s v2", "Microarchitecture": "EPYC 1st Gen", "Instance vCPUs": "16", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "80", "Platform Memory": "640", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Lsv2-series", "Virtual Machine": "L32s v2", "Microarchitecture": "EPYC 1st Gen", "Instance vCPUs": "32", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "80", "Platform Memory": "640", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Lsv2-series", "Virtual Machine": "L48s v2", "Microarchitecture": "EPYC 1st Gen", "Instance vCPUs": "48", "Instance Memory": "384", "Platform vCPUs (highest vCPU possible)": "80", "Platform Memory": "640", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Lsv2-series", "Virtual Machine": "L64s v2", "Microarchitecture": "EPYC 1st Gen", "Instance vCPUs": "64", "Instance Memory": "512", "Platform vCPUs (highest vCPU possible)": "80", "Platform Memory": "640", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Lsv2-series", "Virtual Machine": "L80s v2", "Microarchitecture": "EPYC 1st Gen", "Instance vCPUs": "80", "Instance Memory": "640", "Platform vCPUs (highest vCPU possible)": "80", "Platform Memory": "640", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Lsv2-series", "Virtual Machine": "L8s v2", "Microarchitecture": "EPYC 1st Gen", "Instance vCPUs": "8", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "80", "Platform Memory": "640", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "M-series", "Virtual Machine": "M128 1", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "128", "Instance Memory": "2048", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "3892", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "M-series", "Virtual Machine": "M128 1", "Microarchitecture": "Haswell", "Instance vCPUs": "128", "Instance Memory": "2048", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "3892", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "M-series", "Virtual Machine": "M128m 1", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "128", "Instance Memory": "3892", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "3892", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "M-series", "Virtual Machine": "M128m 1", "Microarchitecture": "Haswell", "Instance vCPUs": "128", "Instance Memory": "3892", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "3892", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "M-series", "Virtual Machine": "M128ms", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "128", "Instance Memory": "3892", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "3892", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "M-series", "Virtual Machine": "M128ms", "Microarchitecture": "Haswell", "Instance vCPUs": "128", "Instance Memory": "3892", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "3892", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "M-series", "Virtual Machine": "M128s", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "128", "Instance Memory": "2048", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "3892", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "M-series", "Virtual Machine": "M128s", "Microarchitecture": "Haswell", "Instance vCPUs": "128", "Instance Memory": "2048", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "3892", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "M-series", "Virtual Machine": "M16ms", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "16", "Instance Memory": "438", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "3892", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "M-series", "Virtual Machine": "M16ms", "Microarchitecture": "Haswell", "Instance vCPUs": "16", "Instance Memory": "438", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "3892", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "M-series", "Virtual Machine": "M32ls", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "32", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "3892", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "M-series", "Virtual Machine": "M32ls", "Microarchitecture": "Haswell", "Instance vCPUs": "32", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "3892", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "M-series", "Virtual Machine": "M32ms", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "32", "Instance Memory": "875", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "3892", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "M-series", "Virtual Machine": "M32ms", "Microarchitecture": "Haswell", "Instance vCPUs": "32", "Instance Memory": "875", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "3892", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "M-series", "Virtual Machine": "M32ts", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "32", "Instance Memory": "192", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "3892", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "M-series", "Virtual Machine": "M32ts", "Microarchitecture": "Haswell", "Instance vCPUs": "32", "Instance Memory": "192", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "3892", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "M-series", "Virtual Machine": "M64 1", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "64", "Instance Memory": "1024", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "3892", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "M-series", "Virtual Machine": "M64 1", "Microarchitecture": "Haswell", "Instance vCPUs": "64", "Instance Memory": "1024", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "3892", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "M-series", "Virtual Machine": "M64ls", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "64", "Instance Memory": "512", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "3892", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "M-series", "Virtual Machine": "M64ls", "Microarchitecture": "Haswell", "Instance vCPUs": "64", "Instance Memory": "512", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "3892", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "M-series", "Virtual Machine": "M64m 1", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "64", "Instance Memory": "1792", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "3892", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "M-series", "Virtual Machine": "M64m 1", "Microarchitecture": "Haswell", "Instance vCPUs": "64", "Instance Memory": "1792", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "3892", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "M-series", "Virtual Machine": "M64ms", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "64", "Instance Memory": "1792", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "3892", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "M-series", "Virtual Machine": "M64ms", "Microarchitecture": "Haswell", "Instance vCPUs": "64", "Instance Memory": "1792", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "3892", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "M-series", "Virtual Machine": "M64s", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "64", "Instance Memory": "1024", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "3892", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "M-series", "Virtual Machine": "M64s", "Microarchitecture": "Haswell", "Instance vCPUs": "64", "Instance Memory": "1024", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "3892", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "M-series", "Virtual Machine": "M8ms", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "8", "Instance Memory": "219", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "3892", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "M-series", "Virtual Machine": "M8ms", "Microarchitecture": "Haswell", "Instance vCPUs": "8", "Instance Memory": "219", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "3892", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Mdsv2-series", "Virtual Machine": "M128dms v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "128", "Instance Memory": "3892", "Platform vCPUs (highest vCPU possible)": "192", "Platform Memory": "4096", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Mdsv2-series", "Virtual Machine": "M128ds v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "128", "Instance Memory": "2048", "Platform vCPUs (highest vCPU possible)": "192", "Platform Memory": "4096", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Mdsv2-series", "Virtual Machine": "M192idms v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "192", "Instance Memory": "4096", "Platform vCPUs (highest vCPU possible)": "192", "Platform Memory": "4096", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Mdsv2-series", "Virtual Machine": "M192ids v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "192", "Instance Memory": "2048", "Platform vCPUs (highest vCPU possible)": "192", "Platform Memory": "4096", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Mdsv2-series", "Virtual Machine": "M32dms v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "32", "Instance Memory": "875", "Platform vCPUs (highest vCPU possible)": "192", "Platform Memory": "4096", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Mdsv2-series", "Virtual Machine": "M64dms v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "64", "Instance Memory": "1792", "Platform vCPUs (highest vCPU possible)": "192", "Platform Memory": "4096", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Mdsv2-series", "Virtual Machine": "M64ds v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "64", "Instance Memory": "1024", "Platform vCPUs (highest vCPU possible)": "192", "Platform Memory": "4096", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Msv2-series", "Virtual Machine": "M128ms v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "128", "Instance Memory": "3892", "Platform vCPUs (highest vCPU possible)": "192", "Platform Memory": "4096", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Msv2-series", "Virtual Machine": "M128s v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "128", "Instance Memory": "2048", "Platform vCPUs (highest vCPU possible)": "192", "Platform Memory": "4096", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Msv2-series", "Virtual Machine": "M192ims v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "192", "Instance Memory": "4096", "Platform vCPUs (highest vCPU possible)": "192", "Platform Memory": "4096", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Msv2-series", "Virtual Machine": "M192is v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "192", "Instance Memory": "2048", "Platform vCPUs (highest vCPU possible)": "192", "Platform Memory": "4096", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Msv2-series", "Virtual Machine": "M32ms v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "32", "Instance Memory": "875", "Platform vCPUs (highest vCPU possible)": "192", "Platform Memory": "4096", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Msv2-series", "Virtual Machine": "M64ms v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "64", "Instance Memory": "1792", "Platform vCPUs (highest vCPU possible)": "192", "Platform Memory": "4096", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Msv2-series", "Virtual Machine": "M64s v2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "64", "Instance Memory": "1024", "Platform vCPUs (highest vCPU possible)": "192", "Platform Memory": "11400", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "N/A", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Mv2-series", "Virtual Machine": "M208ms v2", "Microarchitecture": "Skylake", "Instance vCPUs": "208", "Instance Memory": "5700", "Platform vCPUs (highest vCPU possible)": "208", "Platform Memory": "11400", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Mv2-series", "Virtual Machine": "M208s v2", "Microarchitecture": "Skylake", "Instance vCPUs": "208", "Instance Memory": "2850", "Platform vCPUs (highest vCPU possible)": "208", "Platform Memory": "11400", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Mv2-series", "Virtual Machine": "M416ms v2", "Microarchitecture": "Skylake", "Instance vCPUs": "416", "Instance Memory": "11400", "Platform vCPUs (highest vCPU possible)": "208", "Platform Memory": "11400", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "Mv2-series", "Virtual Machine": "M416s v2", "Microarchitecture": "Skylake", "Instance vCPUs": "416", "Instance Memory": "5700", "Platform vCPUs (highest vCPU possible)": "208", "Platform Memory": "11400", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "NC-series", "Virtual Machine": "NC12", "Microarchitecture": "Unknown", "Instance vCPUs": "12", "Instance Memory": "112", "Platform vCPUs (highest vCPU possible)": "24", "Platform Memory": "224", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "2", "Platform GPU": "4"}, {"Series": "NC-series", "Virtual Machine": "NC24", "Microarchitecture": "Unknown", "Instance vCPUs": "24", "Instance Memory": "224", "Platform vCPUs (highest vCPU possible)": "24", "Platform Memory": "224", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "4", "Platform GPU": "4"}, {"Series": "NC-series", "Virtual Machine": "NC24r", "Microarchitecture": "Unknown", "Instance vCPUs": "24", "Instance Memory": "224", "Platform vCPUs (highest vCPU possible)": "24", "Platform Memory": "224", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "4", "Platform GPU": "4"}, {"Series": "NC-series", "Virtual Machine": "NC6", "Microarchitecture": "Unknown", "Instance vCPUs": "6", "Instance Memory": "56", "Platform vCPUs (highest vCPU possible)": "24", "Platform Memory": "224", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "1", "Platform GPU": "4"}, {"Series": "NC-series Promo", "Virtual Machine": "NC12 Promo", "Microarchitecture": "Unknown", "Instance vCPUs": "12", "Instance Memory": "112", "Platform vCPUs (highest vCPU possible)": "24", "Platform Memory": "224", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "2", "Platform GPU": "4"}, {"Series": "NC-series Promo", "Virtual Machine": "NC24 Promo", "Microarchitecture": "Unknown", "Instance vCPUs": "24", "Instance Memory": "224", "Platform vCPUs (highest vCPU possible)": "24", "Platform Memory": "224", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "4", "Platform GPU": "4"}, {"Series": "NC-series Promo", "Virtual Machine": "NC24r Promo", "Microarchitecture": "Unknown", "Instance vCPUs": "24", "Instance Memory": "224", "Platform vCPUs (highest vCPU possible)": "24", "Platform Memory": "224", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "4", "Platform GPU": "4"}, {"Series": "NC-series Promo", "Virtual Machine": "NC6 Promo", "Microarchitecture": "Unknown", "Instance vCPUs": "6", "Instance Memory": "56", "Platform vCPUs (highest vCPU possible)": "24", "Platform Memory": "224", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "1", "Platform GPU": "4"}, {"Series": "NCas_T4_v3 Series", "Virtual Machine": "NC16as T4 v3", "Microarchitecture": "Unknown", "Instance vCPUs": "16", "Instance Memory": "112", "Platform vCPUs (highest vCPU possible)": "24", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "1", "Platform GPU": "4"}, {"Series": "NCas_T4_v3 Series", "Virtual Machine": "NC4as T4 v3", "Microarchitecture": "Unknown", "Instance vCPUs": "4", "Instance Memory": "28", "Platform vCPUs (highest vCPU possible)": "24", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "1", "Platform GPU": "4"}, {"Series": "NCas_T4_v3 Series", "Virtual Machine": "NC64as T4 v3", "Microarchitecture": "Unknown", "Instance vCPUs": "64", "Instance Memory": "448", "Platform vCPUs (highest vCPU possible)": "24", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "4", "Platform GPU": "4"}, {"Series": "NCas_T4_v3 Series", "Virtual Machine": "NC8as T4 v3", "Microarchitecture": "Unknown", "Instance vCPUs": "8", "Instance Memory": "56", "Platform vCPUs (highest vCPU possible)": "24", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "1", "Platform GPU": "4"}, {"Series": "NCsv2-series", "Virtual Machine": "NC12s v2", "Microarchitecture": "Unknown", "Instance vCPUs": "12", "Instance Memory": "224", "Platform vCPUs (highest vCPU possible)": "24", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "2", "Platform GPU": "4"}, {"Series": "NCsv2-series", "Virtual Machine": "NC24rs v2", "Microarchitecture": "Unknown", "Instance vCPUs": "24", "Instance Memory": "448", "Platform vCPUs (highest vCPU possible)": "24", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "4", "Platform GPU": "4"}, {"Series": "NCsv2-series", "Virtual Machine": "NC24s v2", "Microarchitecture": "Unknown", "Instance vCPUs": "24", "Instance Memory": "448", "Platform vCPUs (highest vCPU possible)": "24", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "4", "Platform GPU": "4"}, {"Series": "NCsv2-series", "Virtual Machine": "NC6s v2", "Microarchitecture": "Unknown", "Instance vCPUs": "6", "Instance Memory": "112", "Platform vCPUs (highest vCPU possible)": "24", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "1", "Platform GPU": "4"}, {"Series": "NCsv3-series", "Virtual Machine": "NC12s v3", "Microarchitecture": "Unknown", "Instance vCPUs": "12", "Instance Memory": "224", "Platform vCPUs (highest vCPU possible)": "24", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "2", "Platform GPU": "4"}, {"Series": "NCsv3-series", "Virtual Machine": "NC24rs v3", "Microarchitecture": "Unknown", "Instance vCPUs": "24", "Instance Memory": "448", "Platform vCPUs (highest vCPU possible)": "24", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "4", "Platform GPU": "4"}, {"Series": "NCsv3-series", "Virtual Machine": "NC24s v3", "Microarchitecture": "Unknown", "Instance vCPUs": "24", "Instance Memory": "448", "Platform vCPUs (highest vCPU possible)": "24", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "4", "Platform GPU": "4"}, {"Series": "NCsv3-series", "Virtual Machine": "NC6s v3", "Microarchitecture": "Unknown", "Instance vCPUs": "6", "Instance Memory": "112", "Platform vCPUs (highest vCPU possible)": "24", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "1", "Platform GPU": "4"}, {"Series": "NDs-series", "Virtual Machine": "ND12s", "Microarchitecture": "Unknown", "Instance vCPUs": "12", "Instance Memory": "224", "Platform vCPUs (highest vCPU possible)": "24", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "2", "Platform GPU": "4"}, {"Series": "NDs-series", "Virtual Machine": "ND24rs", "Microarchitecture": "Unknown", "Instance vCPUs": "24", "Instance Memory": "448", "Platform vCPUs (highest vCPU possible)": "24", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "4", "Platform GPU": "4"}, {"Series": "NDs-series", "Virtual Machine": "ND24s", "Microarchitecture": "Unknown", "Instance vCPUs": "24", "Instance Memory": "448", "Platform vCPUs (highest vCPU possible)": "24", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "4", "Platform GPU": "4"}, {"Series": "NDs-series", "Virtual Machine": "ND6s", "Microarchitecture": "Unknown", "Instance vCPUs": "6", "Instance Memory": "112", "Platform vCPUs (highest vCPU possible)": "24", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "1", "Platform GPU": "4"}, {"Series": "NDv2 Series", "Virtual Machine": "ND40rs v2", "Microarchitecture": "Unknown", "Instance vCPUs": "40", "Instance Memory": "672", "Platform vCPUs (highest vCPU possible)": "40", "Platform Memory": "672", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "8", "Platform GPU": "8"}, {"Series": "NP-Series", "Virtual Machine": "NP10s", "Microarchitecture": "Unknown", "Instance vCPUs": "10", "Instance Memory": "192", "Platform vCPUs (highest vCPU possible)": "40", "Platform Memory": "768", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "NP-Series", "Virtual Machine": "NP20s", "Microarchitecture": "Unknown", "Instance vCPUs": "20", "Instance Memory": "384", "Platform vCPUs (highest vCPU possible)": "40", "Platform Memory": "768", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "NP-Series", "Virtual Machine": "NP40s", "Microarchitecture": "Unknown", "Instance vCPUs": "40", "Instance Memory": "768", "Platform vCPUs (highest vCPU possible)": "40", "Platform Memory": "768", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "NV-series", "Virtual Machine": "NV12", "Microarchitecture": "Unknown", "Instance vCPUs": "12", "Instance Memory": "112", "Platform vCPUs (highest vCPU possible)": "24", "Platform Memory": "224", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "2", "Platform GPU": "4"}, {"Series": "NV-series", "Virtual Machine": "NV24", "Microarchitecture": "Unknown", "Instance vCPUs": "24", "Instance Memory": "224", "Platform vCPUs (highest vCPU possible)": "24", "Platform Memory": "224", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "4", "Platform GPU": "4"}, {"Series": "NV-series", "Virtual Machine": "NV6", "Microarchitecture": "Unknown", "Instance vCPUs": "6", "Instance Memory": "56", "Platform vCPUs (highest vCPU possible)": "24", "Platform Memory": "224", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "1", "Platform GPU": "4"}, {"Series": "NVv3-series", "Virtual Machine": "NV12s v3", "Microarchitecture": "Unknown", "Instance vCPUs": "12", "Instance Memory": "112", "Platform vCPUs (highest vCPU possible)": "48", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "1", "Platform GPU": "4"}, {"Series": "NVv3-series", "Virtual Machine": "NV24s v3", "Microarchitecture": "Unknown", "Instance vCPUs": "24", "Instance Memory": "224", "Platform vCPUs (highest vCPU possible)": "48", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "2", "Platform GPU": "4"}, {"Series": "NVv3-series", "Virtual Machine": "NV48s v3", "Microarchitecture": "Unknown", "Instance vCPUs": "48", "Instance Memory": "448", "Platform vCPUs (highest vCPU possible)": "48", "Platform Memory": "448", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "4", "Platform GPU": "4"}, {"Series": "SAP HANA on Azure Large Instances", "Virtual Machine": "S192", "Microarchitecture": "Broadwell", "Instance vCPUs": "192", "Instance Memory": "2048", "Platform vCPUs (highest vCPU possible)": "576", "Platform Memory": "12000", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "SAP HANA on Azure Large Instances", "Virtual Machine": "S192m", "Microarchitecture": "Broadwell", "Instance vCPUs": "192", "Instance Memory": "4096", "Platform vCPUs (highest vCPU possible)": "576", "Platform Memory": "12000", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "SAP HANA on Azure Large Instances", "Virtual Machine": "S192xm", "Microarchitecture": "Broadwell", "Instance vCPUs": "192", "Instance Memory": "6144", "Platform vCPUs (highest vCPU possible)": "576", "Platform Memory": "12000", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "SAP HANA on Azure Large Instances", "Virtual Machine": "S384", "Microarchitecture": "Broadwell", "Instance vCPUs": "384", "Instance Memory": "4096", "Platform vCPUs (highest vCPU possible)": "576", "Platform Memory": "12000", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "SAP HANA on Azure Large Instances", "Virtual Machine": "S384m", "Microarchitecture": "Broadwell", "Instance vCPUs": "384", "Instance Memory": "6144", "Platform vCPUs (highest vCPU possible)": "576", "Platform Memory": "12000", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "SAP HANA on Azure Large Instances", "Virtual Machine": "S384xm", "Microarchitecture": "Broadwell", "Instance vCPUs": "384", "Instance Memory": "8192", "Platform vCPUs (highest vCPU possible)": "576", "Platform Memory": "12000", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "SAP HANA on Azure Large Instances", "Virtual Machine": "S384xxm", "Microarchitecture": "Broadwell", "Instance vCPUs": "384", "Instance Memory": "12000", "Platform vCPUs (highest vCPU possible)": "576", "Platform Memory": "12000", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "SAP HANA on Azure Large Instances", "Virtual Machine": "S576m", "Microarchitecture": "Broadwell", "Instance vCPUs": "576", "Instance Memory": "12000", "Platform vCPUs (highest vCPU possible)": "576", "Platform Memory": "12000", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "SAP HANA on Azure Large Instances", "Virtual Machine": "S96", "Microarchitecture": "Broadwell", "Instance vCPUs": "96", "Instance Memory": "768", "Platform vCPUs (highest vCPU possible)": "576", "Platform Memory": "12000", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "SAP HANA on Azure Large Instances (second generation)", "Virtual Machine": "S224", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "224", "Instance Memory": "3072", "Platform vCPUs (highest vCPU possible)": "896", "Platform Memory": "36864", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "SAP HANA on Azure Large Instances (second generation)", "Virtual Machine": "S224m", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "224", "Instance Memory": "6144", "Platform vCPUs (highest vCPU possible)": "896", "Platform Memory": "36864", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "SAP HANA on Azure Large Instances (second generation)", "Virtual Machine": "S224om", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "224", "Instance Memory": "6144", "Platform vCPUs (highest vCPU possible)": "896", "Platform Memory": "36864", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "SAP HANA on Azure Large Instances (second generation)", "Virtual Machine": "S224oo", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "224", "Instance Memory": "4608", "Platform vCPUs (highest vCPU possible)": "896", "Platform Memory": "36864", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "SAP HANA on Azure Large Instances (second generation)", "Virtual Machine": "S224oom", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "224", "Instance Memory": "9216", "Platform vCPUs (highest vCPU possible)": "896", "Platform Memory": "36864", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "SAP HANA on Azure Large Instances (second generation)", "Virtual Machine": "S224ooo", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "224", "Instance Memory": "7680", "Platform vCPUs (highest vCPU possible)": "896", "Platform Memory": "36864", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "SAP HANA on Azure Large Instances (second generation)", "Virtual Machine": "S448", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "448", "Instance Memory": "6144", "Platform vCPUs (highest vCPU possible)": "896", "Platform Memory": "36864", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "SAP HANA on Azure Large Instances (second generation)", "Virtual Machine": "S448m", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "448", "Instance Memory": "12288", "Platform vCPUs (highest vCPU possible)": "896", "Platform Memory": "36864", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "SAP HANA on Azure Large Instances (second generation)", "Virtual Machine": "S448om", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "448", "Instance Memory": "12288", "Platform vCPUs (highest vCPU possible)": "896", "Platform Memory": "36864", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "SAP HANA on Azure Large Instances (second generation)", "Virtual Machine": "S448oo", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "448", "Instance Memory": "9216", "Platform vCPUs (highest vCPU possible)": "896", "Platform Memory": "36864", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "SAP HANA on Azure Large Instances (second generation)", "Virtual Machine": "S448oom", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "448", "Instance Memory": "18432", "Platform vCPUs (highest vCPU possible)": "896", "Platform Memory": "36864", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "SAP HANA on Azure Large Instances (second generation)", "Virtual Machine": "S448ooo", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "448", "Instance Memory": "15360", "Platform vCPUs (highest vCPU possible)": "896", "Platform Memory": "36864", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "SAP HANA on Azure Large Instances (second generation)", "Virtual Machine": "S672", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "672", "Instance Memory": "9216", "Platform vCPUs (highest vCPU possible)": "896", "Platform Memory": "36864", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "SAP HANA on Azure Large Instances (second generation)", "Virtual Machine": "S672m", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "672", "Instance Memory": "18432", "Platform vCPUs (highest vCPU possible)": "896", "Platform Memory": "36864", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "SAP HANA on Azure Large Instances (second generation)", "Virtual Machine": "S672om", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "672", "Instance Memory": "18432", "Platform vCPUs (highest vCPU possible)": "896", "Platform Memory": "36864", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "SAP HANA on Azure Large Instances (second generation)", "Virtual Machine": "S672oo", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "672", "Instance Memory": "13824", "Platform vCPUs (highest vCPU possible)": "896", "Platform Memory": "36864", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "SAP HANA on Azure Large Instances (second generation)", "Virtual Machine": "S672oom", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "672", "Instance Memory": "27648", "Platform vCPUs (highest vCPU possible)": "896", "Platform Memory": "36864", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "SAP HANA on Azure Large Instances (second generation)", "Virtual Machine": "S672ooo", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "672", "Instance Memory": "23040", "Platform vCPUs (highest vCPU possible)": "896", "Platform Memory": "36864", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "SAP HANA on Azure Large Instances (second generation)", "Virtual Machine": "S896", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "896", "Instance Memory": "12288", "Platform vCPUs (highest vCPU possible)": "896", "Platform Memory": "36864", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "SAP HANA on Azure Large Instances (second generation)", "Virtual Machine": "S896m", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "896", "Instance Memory": "24576", "Platform vCPUs (highest vCPU possible)": "896", "Platform Memory": "36864", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "SAP HANA on Azure Large Instances (second generation)", "Virtual Machine": "S896om", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "896", "Instance Memory": "24576", "Platform vCPUs (highest vCPU possible)": "896", "Platform Memory": "36864", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "SAP HANA on Azure Large Instances (second generation)", "Virtual Machine": "S896oo", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "896", "Instance Memory": "18432", "Platform vCPUs (highest vCPU possible)": "896", "Platform Memory": "36864", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "SAP HANA on Azure Large Instances (second generation)", "Virtual Machine": "S896oom", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "896", "Instance Memory": "36864", "Platform vCPUs (highest vCPU possible)": "896", "Platform Memory": "36864", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}, {"Series": "SAP HANA on Azure Large Instances (second generation)", "Virtual Machine": "S896ooo", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "896", "Instance Memory": "30720", "Platform vCPUs (highest vCPU possible)": "896", "Platform Memory": "36864", "Platform Storage Info (SSD?)": "", "Platform Storage Type": "HDD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "", "Platform GPU": ""}] +[ + { + "Series": "Av2 Standard", + "Virtual Machine": "A1 v2", + "Microarchitecture": "Unknown", + "Instance vCPUs": "1", + "Instance Memory": "2", + "Platform vCPUs (highest vCPU possible)": "8", + "Platform Memory": "64", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Av2 Standard", + "Virtual Machine": "A2 v2", + "Microarchitecture": "Unknown", + "Instance vCPUs": "2", + "Instance Memory": "4", + "Platform vCPUs (highest vCPU possible)": "8", + "Platform Memory": "64", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Av2 Standard", + "Virtual Machine": "A2m v2", + "Microarchitecture": "Unknown", + "Instance vCPUs": "2", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "8", + "Platform Memory": "64", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Av2 Standard", + "Virtual Machine": "A4 v2", + "Microarchitecture": "Unknown", + "Instance vCPUs": "4", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "8", + "Platform Memory": "64", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Av2 Standard", + "Virtual Machine": "A4m v2", + "Microarchitecture": "Unknown", + "Instance vCPUs": "4", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "8", + "Platform Memory": "64", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Av2 Standard", + "Virtual Machine": "A8 v2", + "Microarchitecture": "Unknown", + "Instance vCPUs": "8", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "8", + "Platform Memory": "64", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Av2 Standard", + "Virtual Machine": "A8m v2", + "Microarchitecture": "Unknown", + "Instance vCPUs": "8", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "8", + "Platform Memory": "64", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Bs-series", + "Virtual Machine": "B12MS", + "Microarchitecture": "Unknown", + "Instance vCPUs": "12", + "Instance Memory": "48", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "80", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Bs-series", + "Virtual Machine": "B16MS", + "Microarchitecture": "Unknown", + "Instance vCPUs": "16", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "80", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Bs-series", + "Virtual Machine": "B1LS", + "Microarchitecture": "Unknown", + "Instance vCPUs": "1", + "Instance Memory": "0.5", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "80", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Bs-series", + "Virtual Machine": "B1MS", + "Microarchitecture": "Unknown", + "Instance vCPUs": "1", + "Instance Memory": "2", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "80", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Bs-series", + "Virtual Machine": "B1S", + "Microarchitecture": "Unknown", + "Instance vCPUs": "1", + "Instance Memory": "1", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "80", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Bs-series", + "Virtual Machine": "B20MS", + "Microarchitecture": "Unknown", + "Instance vCPUs": "20", + "Instance Memory": "80", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "80", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Bs-series", + "Virtual Machine": "B2MS", + "Microarchitecture": "Unknown", + "Instance vCPUs": "2", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "80", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Bs-series", + "Virtual Machine": "B2S", + "Microarchitecture": "Unknown", + "Instance vCPUs": "2", + "Instance Memory": "4", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "80", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Bs-series", + "Virtual Machine": "B4MS", + "Microarchitecture": "Unknown", + "Instance vCPUs": "4", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "80", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Bs-series", + "Virtual Machine": "B8MS", + "Microarchitecture": "Unknown", + "Instance vCPUs": "8", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "80", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "DS11-1 v2", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.5", + "Instance Memory": "14", + "Platform vCPUs (highest vCPU possible)": "2", + "Platform Memory": "14", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "DS12-1 v2", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.25", + "Instance Memory": "28", + "Platform vCPUs (highest vCPU possible)": "4", + "Platform Memory": "28", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "DS12-2 v2", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.5", + "Instance Memory": "28", + "Platform vCPUs (highest vCPU possible)": "4", + "Platform Memory": "28", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "DS13-2 v2", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.25", + "Instance Memory": "56", + "Platform vCPUs (highest vCPU possible)": "8", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "DS13-4 v2", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.5", + "Instance Memory": "56", + "Platform vCPUs (highest vCPU possible)": "8", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "DS14-4 v2", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.25", + "Instance Memory": "112", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "112", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "DS14-8 v2", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.5", + "Instance Memory": "112", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "112", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E16-4as v4", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.25", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E16-4ds v4", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.25", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E16-4s v3", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.25", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E16-4s v4", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.25", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E16-8as v4", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.5", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E16-8ds v4", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.5", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E16-8s v3", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.5", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E16-8s v4", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.5", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E32-16as v4", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.5", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E32-16ds v4", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.5", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E32-16s v3", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.5", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E32-16s v4", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.5", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E32-8as v4", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.25", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E32-8ds v4", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.25", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E32-8s v3", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.25", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E32-8s v4", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.25", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E4-2as v4", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.5", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "4", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E4-2ds v4", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.5", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "4", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E4-2s v3", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.5", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "4", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E4-2s v4", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.5", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "4", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E64-16as v4", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.25", + "Instance Memory": "512", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "512", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E64-16ds v4", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.25", + "Instance Memory": "504", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "504", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E64-16s v3", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.25", + "Instance Memory": "432", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E64-16s v4", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.25", + "Instance Memory": "504", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "504", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E64-32as v4", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.5", + "Instance Memory": "512", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "512", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E64-32ds v4", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.5", + "Instance Memory": "504", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "504", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E64-32s v3", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.5", + "Instance Memory": "432", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E64-32s v4", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.5", + "Instance Memory": "504", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "504", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E8-2as v4", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.25", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "8", + "Platform Memory": "64", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E8-2ds v4", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.25", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "8", + "Platform Memory": "64", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E8-2s v3", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.25", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "8", + "Platform Memory": "64", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E8-2s v4", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.25", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "8", + "Platform Memory": "64", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E8-4as v4", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.5", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "8", + "Platform Memory": "64", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E8-4ds v4", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.5", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "8", + "Platform Memory": "64", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E8-4s v3", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.5", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "8", + "Platform Memory": "64", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E8-4s v4", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.5", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "8", + "Platform Memory": "64", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E96-24as v4", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.25", + "Instance Memory": "672", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "E96-48as v4", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.5", + "Instance Memory": "672", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "Gs4-4", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.25", + "Instance Memory": "224", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "Gs4-8", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.5", + "Instance Memory": "224", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "Gs5-16", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.5", + "Instance Memory": "448", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "Gs5-8", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.25", + "Instance Memory": "448", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "HB120-16rs v3", + "Microarchitecture": "EPYC 3rd Gen", + "Instance vCPUs": "0.1333333333", + "Instance Memory": "448", + "Platform vCPUs (highest vCPU possible)": "120", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "HB120-32rs v3", + "Microarchitecture": "EPYC 3rd Gen", + "Instance vCPUs": "0.2666666667", + "Instance Memory": "448", + "Platform vCPUs (highest vCPU possible)": "120", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "HB120-64rs v3", + "Microarchitecture": "EPYC 3rd Gen", + "Instance vCPUs": "0.5333333333", + "Instance Memory": "448", + "Platform vCPUs (highest vCPU possible)": "120", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "HB120-96rs v3", + "Microarchitecture": "EPYC 3rd Gen", + "Instance vCPUs": "0.8", + "Instance Memory": "448", + "Platform vCPUs (highest vCPU possible)": "120", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "M128-32ms", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.25", + "Instance Memory": "3800", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "3800", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "M128-64ms", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.5", + "Instance Memory": "3800", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "3800", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "M16-4ms", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.25", + "Instance Memory": "438", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "438", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "M16-8ms", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.5", + "Instance Memory": "438", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "438", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "M32-16ms", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.5", + "Instance Memory": "875", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "875", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "M32-8ms", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.25", + "Instance Memory": "875", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "875", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "M64-16ms", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.25", + "Instance Memory": "1750", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "1750", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "M64-32ms", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.5", + "Instance Memory": "1750", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "1750", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "M8-2ms", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.25", + "Instance Memory": "219", + "Platform vCPUs (highest vCPU possible)": "8", + "Platform Memory": "219", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Constrained vCPUs capable", + "Virtual Machine": "M8-4ms", + "Microarchitecture": "Unknown", + "Instance vCPUs": "0.5", + "Instance Memory": "219", + "Platform vCPUs (highest vCPU possible)": "8", + "Platform Memory": "219", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1-5 v2", + "Virtual Machine": "D1 v2", + "Microarchitecture": "Haswell", + "Instance vCPUs": "1", + "Instance Memory": "3.5", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1-5 v2", + "Virtual Machine": "D1 v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "1", + "Instance Memory": "3.5", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1-5 v2", + "Virtual Machine": "D1 v2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "1", + "Instance Memory": "3.5", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1-5 v2", + "Virtual Machine": "D1 v2", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "1", + "Instance Memory": "3.5", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1-5 v2", + "Virtual Machine": "D2 v2", + "Microarchitecture": "Haswell", + "Instance vCPUs": "2", + "Instance Memory": "7", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1-5 v2", + "Virtual Machine": "D2 v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "2", + "Instance Memory": "7", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1-5 v2", + "Virtual Machine": "D2 v2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "2", + "Instance Memory": "7", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1-5 v2", + "Virtual Machine": "D2 v2", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "2", + "Instance Memory": "7", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1-5 v2", + "Virtual Machine": "D3 v2", + "Microarchitecture": "Haswell", + "Instance vCPUs": "4", + "Instance Memory": "14", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1-5 v2", + "Virtual Machine": "D3 v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "4", + "Instance Memory": "14", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1-5 v2", + "Virtual Machine": "D3 v2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "4", + "Instance Memory": "14", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1-5 v2", + "Virtual Machine": "D3 v2", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "4", + "Instance Memory": "14", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1-5 v2", + "Virtual Machine": "D4 v2", + "Microarchitecture": "Haswell", + "Instance vCPUs": "8", + "Instance Memory": "28", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1-5 v2", + "Virtual Machine": "D4 v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "8", + "Instance Memory": "28", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1-5 v2", + "Virtual Machine": "D4 v2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "8", + "Instance Memory": "28", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1-5 v2", + "Virtual Machine": "D4 v2", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "8", + "Instance Memory": "28", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1-5 v2", + "Virtual Machine": "D5 v2", + "Microarchitecture": "Haswell", + "Instance vCPUs": "16", + "Instance Memory": "56", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1-5 v2", + "Virtual Machine": "D5 v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "16", + "Instance Memory": "56", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1-5 v2", + "Virtual Machine": "D5 v2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "16", + "Instance Memory": "56", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1-5 v2", + "Virtual Machine": "D5 v2", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "16", + "Instance Memory": "56", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11-15 v2", + "Virtual Machine": "D11 v2", + "Microarchitecture": "Haswell", + "Instance vCPUs": "2", + "Instance Memory": "14", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11-15 v2", + "Virtual Machine": "D11 v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "2", + "Instance Memory": "14", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11-15 v2", + "Virtual Machine": "D11 v2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "2", + "Instance Memory": "14", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11-15 v2", + "Virtual Machine": "D11 v2", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "2", + "Instance Memory": "14", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11-15 v2", + "Virtual Machine": "D12 v2", + "Microarchitecture": "Haswell", + "Instance vCPUs": "4", + "Instance Memory": "28", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11-15 v2", + "Virtual Machine": "D12 v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "4", + "Instance Memory": "28", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11-15 v2", + "Virtual Machine": "D12 v2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "4", + "Instance Memory": "28", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11-15 v2", + "Virtual Machine": "D12 v2", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "4", + "Instance Memory": "28", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11-15 v2", + "Virtual Machine": "D13 v2", + "Microarchitecture": "Haswell", + "Instance vCPUs": "8", + "Instance Memory": "56", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11-15 v2", + "Virtual Machine": "D13 v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "8", + "Instance Memory": "56", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11-15 v2", + "Virtual Machine": "D13 v2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "8", + "Instance Memory": "56", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11-15 v2", + "Virtual Machine": "D13 v2", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "8", + "Instance Memory": "56", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11-15 v2", + "Virtual Machine": "D14 v2", + "Microarchitecture": "Haswell", + "Instance vCPUs": "16", + "Instance Memory": "112", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11-15 v2", + "Virtual Machine": "D14 v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "16", + "Instance Memory": "112", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11-15 v2", + "Virtual Machine": "D14 v2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "16", + "Instance Memory": "112", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11-15 v2", + "Virtual Machine": "D14 v2", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "16", + "Instance Memory": "112", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11-15 v2", + "Virtual Machine": "D15 v2", + "Microarchitecture": "Haswell", + "Instance vCPUs": "20", + "Instance Memory": "140", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11-15 v2", + "Virtual Machine": "D15 v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "20", + "Instance Memory": "140", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11-15 v2", + "Virtual Machine": "D15 v2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "20", + "Instance Memory": "140", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11-15 v2", + "Virtual Machine": "D15 v2", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "20", + "Instance Memory": "140", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11-15 v2", + "Virtual Machine": "D15i v2 1", + "Microarchitecture": "Haswell", + "Instance vCPUs": "20", + "Instance Memory": "140", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11-15 v2", + "Virtual Machine": "D15i v2 1", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "20", + "Instance Memory": "140", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11-15 v2", + "Virtual Machine": "D15i v2 1", + "Microarchitecture": "Skylake", + "Instance vCPUs": "20", + "Instance Memory": "140", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11-15 v2", + "Virtual Machine": "D15i v2 1", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "20", + "Instance Memory": "140", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11S-15S v2", + "Virtual Machine": "DS11 v2", + "Microarchitecture": "Haswell", + "Instance vCPUs": "2", + "Instance Memory": "14", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11S-15S v2", + "Virtual Machine": "DS11 v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "2", + "Instance Memory": "14", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11S-15S v2", + "Virtual Machine": "DS11 v2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "2", + "Instance Memory": "14", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11S-15S v2", + "Virtual Machine": "DS11 v2", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "2", + "Instance Memory": "14", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11S-15S v2", + "Virtual Machine": "DS12 v2", + "Microarchitecture": "Haswell", + "Instance vCPUs": "4", + "Instance Memory": "28", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11S-15S v2", + "Virtual Machine": "DS12 v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "4", + "Instance Memory": "28", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11S-15S v2", + "Virtual Machine": "DS12 v2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "4", + "Instance Memory": "28", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11S-15S v2", + "Virtual Machine": "DS12 v2", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "4", + "Instance Memory": "28", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11S-15S v2", + "Virtual Machine": "DS13 v2", + "Microarchitecture": "Haswell", + "Instance vCPUs": "8", + "Instance Memory": "56", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11S-15S v2", + "Virtual Machine": "DS13 v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "8", + "Instance Memory": "56", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11S-15S v2", + "Virtual Machine": "DS13 v2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "8", + "Instance Memory": "56", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11S-15S v2", + "Virtual Machine": "DS13 v2", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "8", + "Instance Memory": "56", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11S-15S v2", + "Virtual Machine": "DS14 v2", + "Microarchitecture": "Haswell", + "Instance vCPUs": "16", + "Instance Memory": "112", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11S-15S v2", + "Virtual Machine": "DS14 v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "16", + "Instance Memory": "112", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11S-15S v2", + "Virtual Machine": "DS14 v2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "16", + "Instance Memory": "112", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11S-15S v2", + "Virtual Machine": "DS14 v2", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "16", + "Instance Memory": "112", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11S-15S v2", + "Virtual Machine": "DS15 v2", + "Microarchitecture": "Haswell", + "Instance vCPUs": "20", + "Instance Memory": "140", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11S-15S v2", + "Virtual Machine": "DS15 v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "20", + "Instance Memory": "140", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11S-15S v2", + "Virtual Machine": "DS15 v2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "20", + "Instance Memory": "140", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11S-15S v2", + "Virtual Machine": "DS15 v2", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "20", + "Instance Memory": "140", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11S-15S v2", + "Virtual Machine": "DS15i v2 1", + "Microarchitecture": "Haswell", + "Instance vCPUs": "20", + "Instance Memory": "140", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11S-15S v2", + "Virtual Machine": "DS15i v2 1", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "20", + "Instance Memory": "140", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11S-15S v2", + "Virtual Machine": "DS15i v2 1", + "Microarchitecture": "Skylake", + "Instance vCPUs": "20", + "Instance Memory": "140", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D11S-15S v2", + "Virtual Machine": "DS15i v2 1", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "20", + "Instance Memory": "140", + "Platform vCPUs (highest vCPU possible)": "20", + "Platform Memory": "140", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1s-5s v2", + "Virtual Machine": "DS1 v2", + "Microarchitecture": "Haswell", + "Instance vCPUs": "1", + "Instance Memory": "3.5", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1s-5s v2", + "Virtual Machine": "DS1 v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "1", + "Instance Memory": "3.5", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1s-5s v2", + "Virtual Machine": "DS1 v2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "1", + "Instance Memory": "3.5", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1s-5s v2", + "Virtual Machine": "DS1 v2", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "1", + "Instance Memory": "3.5", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1s-5s v2", + "Virtual Machine": "DS2 v2", + "Microarchitecture": "Haswell", + "Instance vCPUs": "2", + "Instance Memory": "7", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1s-5s v2", + "Virtual Machine": "DS2 v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "2", + "Instance Memory": "7", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1s-5s v2", + "Virtual Machine": "DS2 v2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "2", + "Instance Memory": "7", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1s-5s v2", + "Virtual Machine": "DS2 v2", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "2", + "Instance Memory": "7", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1s-5s v2", + "Virtual Machine": "DS3 v2", + "Microarchitecture": "Haswell", + "Instance vCPUs": "4", + "Instance Memory": "14", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1s-5s v2", + "Virtual Machine": "DS3 v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "4", + "Instance Memory": "14", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1s-5s v2", + "Virtual Machine": "DS3 v2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "4", + "Instance Memory": "14", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1s-5s v2", + "Virtual Machine": "DS3 v2", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "4", + "Instance Memory": "14", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1s-5s v2", + "Virtual Machine": "DS4 v2", + "Microarchitecture": "Haswell", + "Instance vCPUs": "8", + "Instance Memory": "28", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1s-5s v2", + "Virtual Machine": "DS4 v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "8", + "Instance Memory": "28", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1s-5s v2", + "Virtual Machine": "DS4 v2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "8", + "Instance Memory": "28", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1s-5s v2", + "Virtual Machine": "DS4 v2", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "8", + "Instance Memory": "28", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1s-5s v2", + "Virtual Machine": "DS5 v2", + "Microarchitecture": "Haswell", + "Instance vCPUs": "16", + "Instance Memory": "56", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1s-5s v2", + "Virtual Machine": "DS5 v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "16", + "Instance Memory": "56", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1s-5s v2", + "Virtual Machine": "DS5 v2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "16", + "Instance Memory": "56", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D1s-5s v2", + "Virtual Machine": "DS5 v2", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "16", + "Instance Memory": "56", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "56", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2 \u2013 D64 v4", + "Virtual Machine": "D16 v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "16", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2 \u2013 D64 v4", + "Virtual Machine": "D2 v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "2", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "256", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2 \u2013 D64 v4", + "Virtual Machine": "D32 v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "32", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "256", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2 \u2013 D64 v4", + "Virtual Machine": "D4 v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "4", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "256", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2 \u2013 D64 v4", + "Virtual Machine": "D48 v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "48", + "Instance Memory": "192", + "Platform vCPUs (highest vCPU possible)": "256", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2 \u2013 D64 v4", + "Virtual Machine": "D64 v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "64", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "256", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2 \u2013 D64 v4", + "Virtual Machine": "D8 v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "8", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "256", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2-64 v3", + "Virtual Machine": "D16 v3", + "Microarchitecture": "Haswell", + "Instance vCPUs": "16", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2-64 v3", + "Virtual Machine": "D16 v3", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "16", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2-64 v3", + "Virtual Machine": "D16 v3", + "Microarchitecture": "Skylake", + "Instance vCPUs": "16", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2-64 v3", + "Virtual Machine": "D16 v3", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "16", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2-64 v3", + "Virtual Machine": "D2 v3", + "Microarchitecture": "Haswell", + "Instance vCPUs": "2", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2-64 v3", + "Virtual Machine": "D2 v3", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "2", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2-64 v3", + "Virtual Machine": "D2 v3", + "Microarchitecture": "Skylake", + "Instance vCPUs": "2", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2-64 v3", + "Virtual Machine": "D2 v3", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "2", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2-64 v3", + "Virtual Machine": "D32 v3", + "Microarchitecture": "Haswell", + "Instance vCPUs": "32", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2-64 v3", + "Virtual Machine": "D32 v3", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "32", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2-64 v3", + "Virtual Machine": "D32 v3", + "Microarchitecture": "Skylake", + "Instance vCPUs": "32", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2-64 v3", + "Virtual Machine": "D32 v3", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "32", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2-64 v3", + "Virtual Machine": "D4 v3", + "Microarchitecture": "Haswell", + "Instance vCPUs": "4", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2-64 v3", + "Virtual Machine": "D4 v3", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "4", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2-64 v3", + "Virtual Machine": "D4 v3", + "Microarchitecture": "Skylake", + "Instance vCPUs": "4", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2-64 v3", + "Virtual Machine": "D4 v3", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "4", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2-64 v3", + "Virtual Machine": "D48 v3", + "Microarchitecture": "Haswell", + "Instance vCPUs": "48", + "Instance Memory": "192", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2-64 v3", + "Virtual Machine": "D48 v3", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "48", + "Instance Memory": "192", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2-64 v3", + "Virtual Machine": "D48 v3", + "Microarchitecture": "Skylake", + "Instance vCPUs": "48", + "Instance Memory": "192", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2-64 v3", + "Virtual Machine": "D48 v3", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "48", + "Instance Memory": "192", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2-64 v3", + "Virtual Machine": "D64 v3", + "Microarchitecture": "Haswell", + "Instance vCPUs": "64", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2-64 v3", + "Virtual Machine": "D64 v3", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "64", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2-64 v3", + "Virtual Machine": "D64 v3", + "Microarchitecture": "Skylake", + "Instance vCPUs": "64", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2-64 v3", + "Virtual Machine": "D64 v3", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "64", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2-64 v3", + "Virtual Machine": "D8 v3", + "Microarchitecture": "Haswell", + "Instance vCPUs": "8", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2-64 v3", + "Virtual Machine": "D8 v3", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "8", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2-64 v3", + "Virtual Machine": "D8 v3", + "Microarchitecture": "Skylake", + "Instance vCPUs": "8", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2-64 v3", + "Virtual Machine": "D8 v3", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "8", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2a \u2013 D96a v4", + "Virtual Machine": "D16a v4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "16", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "384", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2a \u2013 D96a v4", + "Virtual Machine": "D2a v4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "2", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "384", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2a \u2013 D96a v4", + "Virtual Machine": "D32a v4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "32", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "384", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2a \u2013 D96a v4", + "Virtual Machine": "D48a v4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "48", + "Instance Memory": "192", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "384", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2a \u2013 D96a v4", + "Virtual Machine": "D4a v4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "4", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "384", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2a \u2013 D96a v4", + "Virtual Machine": "D64a v4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "64", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "384", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2a \u2013 D96a v4", + "Virtual Machine": "D8a v4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "8", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "384", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2a \u2013 D96a v4", + "Virtual Machine": "D96a v4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "96", + "Instance Memory": "384", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "384", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2as \u2013 D96as v4", + "Virtual Machine": "D16as v4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "16", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "384", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2as \u2013 D96as v4", + "Virtual Machine": "D2as v4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "2", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "384", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2as \u2013 D96as v4", + "Virtual Machine": "D32as v4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "32", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "384", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2as \u2013 D96as v4", + "Virtual Machine": "D48as v4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "48", + "Instance Memory": "192", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "384", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2as \u2013 D96as v4", + "Virtual Machine": "D4as v4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "4", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "384", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2as \u2013 D96as v4", + "Virtual Machine": "D64as v4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "64", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "384", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2as \u2013 D96as v4", + "Virtual Machine": "D8as v4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "8", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "384", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2as \u2013 D96as v4", + "Virtual Machine": "D96as v4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "96", + "Instance Memory": "384", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "384", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2d \u2013 D64d v4", + "Virtual Machine": "D16d v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "16", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2d \u2013 D64d v4", + "Virtual Machine": "D2d v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "2", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2d \u2013 D64d v4", + "Virtual Machine": "D32d v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "32", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2d \u2013 D64d v4", + "Virtual Machine": "D48d v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "48", + "Instance Memory": "192", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2d \u2013 D64d v4", + "Virtual Machine": "D4d v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "4", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2d \u2013 D64d v4", + "Virtual Machine": "D64d v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "64", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2d \u2013 D64d v4", + "Virtual Machine": "D8d v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "8", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2ds \u2013 D64ds v4", + "Virtual Machine": "D16ds v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "16", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2ds \u2013 D64ds v4", + "Virtual Machine": "D2ds v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "2", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2ds \u2013 D64ds v4", + "Virtual Machine": "D32ds v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "32", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2ds \u2013 D64ds v4", + "Virtual Machine": "D48ds v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "48", + "Instance Memory": "192", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2ds \u2013 D64ds v4", + "Virtual Machine": "D4ds v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "4", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2ds \u2013 D64ds v4", + "Virtual Machine": "D64ds v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "64", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2ds \u2013 D64ds v4", + "Virtual Machine": "D8ds v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "8", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s \u2013 D64s v4", + "Virtual Machine": "D16s v4", + "Microarchitecture": "Haswell", + "Instance vCPUs": "16", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s \u2013 D64s v4", + "Virtual Machine": "D16s v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "16", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s \u2013 D64s v4", + "Virtual Machine": "D16s v4", + "Microarchitecture": "Skylake", + "Instance vCPUs": "16", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s \u2013 D64s v4", + "Virtual Machine": "D16s v4", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "16", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s \u2013 D64s v4", + "Virtual Machine": "D2s v4", + "Microarchitecture": "Haswell", + "Instance vCPUs": "2", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s \u2013 D64s v4", + "Virtual Machine": "D2s v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "2", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s \u2013 D64s v4", + "Virtual Machine": "D2s v4", + "Microarchitecture": "Skylake", + "Instance vCPUs": "2", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s \u2013 D64s v4", + "Virtual Machine": "D2s v4", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "2", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s \u2013 D64s v4", + "Virtual Machine": "D32s v4", + "Microarchitecture": "Haswell", + "Instance vCPUs": "32", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s \u2013 D64s v4", + "Virtual Machine": "D32s v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "32", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s \u2013 D64s v4", + "Virtual Machine": "D32s v4", + "Microarchitecture": "Skylake", + "Instance vCPUs": "32", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s \u2013 D64s v4", + "Virtual Machine": "D32s v4", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "32", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s \u2013 D64s v4", + "Virtual Machine": "D48s v4", + "Microarchitecture": "Haswell", + "Instance vCPUs": "48", + "Instance Memory": "192", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s \u2013 D64s v4", + "Virtual Machine": "D48s v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "48", + "Instance Memory": "192", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s \u2013 D64s v4", + "Virtual Machine": "D48s v4", + "Microarchitecture": "Skylake", + "Instance vCPUs": "48", + "Instance Memory": "192", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s \u2013 D64s v4", + "Virtual Machine": "D48s v4", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "48", + "Instance Memory": "192", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s \u2013 D64s v4", + "Virtual Machine": "D4s v4", + "Microarchitecture": "Haswell", + "Instance vCPUs": "4", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s \u2013 D64s v4", + "Virtual Machine": "D4s v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "4", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s \u2013 D64s v4", + "Virtual Machine": "D4s v4", + "Microarchitecture": "Skylake", + "Instance vCPUs": "4", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s \u2013 D64s v4", + "Virtual Machine": "D4s v4", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "4", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s \u2013 D64s v4", + "Virtual Machine": "D64s v4", + "Microarchitecture": "Haswell", + "Instance vCPUs": "64", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s \u2013 D64s v4", + "Virtual Machine": "D64s v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "64", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s \u2013 D64s v4", + "Virtual Machine": "D64s v4", + "Microarchitecture": "Skylake", + "Instance vCPUs": "64", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s \u2013 D64s v4", + "Virtual Machine": "D64s v4", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "64", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s \u2013 D64s v4", + "Virtual Machine": "D8s v4", + "Microarchitecture": "Haswell", + "Instance vCPUs": "8", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s \u2013 D64s v4", + "Virtual Machine": "D8s v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "8", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s \u2013 D64s v4", + "Virtual Machine": "D8s v4", + "Microarchitecture": "Skylake", + "Instance vCPUs": "8", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s \u2013 D64s v4", + "Virtual Machine": "D8s v4", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "8", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s-64s v3", + "Virtual Machine": "D16s v3", + "Microarchitecture": "Haswell", + "Instance vCPUs": "16", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s-64s v3", + "Virtual Machine": "D16s v3", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "16", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s-64s v3", + "Virtual Machine": "D16s v3", + "Microarchitecture": "Skylake", + "Instance vCPUs": "16", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s-64s v3", + "Virtual Machine": "D16s v3", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "16", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s-64s v3", + "Virtual Machine": "D2s v3", + "Microarchitecture": "Haswell", + "Instance vCPUs": "2", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s-64s v3", + "Virtual Machine": "D2s v3", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "2", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s-64s v3", + "Virtual Machine": "D2s v3", + "Microarchitecture": "Skylake", + "Instance vCPUs": "2", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s-64s v3", + "Virtual Machine": "D2s v3", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "2", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s-64s v3", + "Virtual Machine": "D32s v3", + "Microarchitecture": "Haswell", + "Instance vCPUs": "32", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s-64s v3", + "Virtual Machine": "D32s v3", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "32", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s-64s v3", + "Virtual Machine": "D32s v3", + "Microarchitecture": "Skylake", + "Instance vCPUs": "32", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s-64s v3", + "Virtual Machine": "D32s v3", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "32", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s-64s v3", + "Virtual Machine": "D48s v3", + "Microarchitecture": "Haswell", + "Instance vCPUs": "48", + "Instance Memory": "192", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s-64s v3", + "Virtual Machine": "D48s v3", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "48", + "Instance Memory": "192", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s-64s v3", + "Virtual Machine": "D48s v3", + "Microarchitecture": "Skylake", + "Instance vCPUs": "48", + "Instance Memory": "192", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s-64s v3", + "Virtual Machine": "D48s v3", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "48", + "Instance Memory": "192", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s-64s v3", + "Virtual Machine": "D4s v3", + "Microarchitecture": "Haswell", + "Instance vCPUs": "4", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s-64s v3", + "Virtual Machine": "D4s v3", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "4", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s-64s v3", + "Virtual Machine": "D4s v3", + "Microarchitecture": "Skylake", + "Instance vCPUs": "4", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s-64s v3", + "Virtual Machine": "D4s v3", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "4", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s-64s v3", + "Virtual Machine": "D64s v3", + "Microarchitecture": "Haswell", + "Instance vCPUs": "64", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s-64s v3", + "Virtual Machine": "D64s v3", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "64", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s-64s v3", + "Virtual Machine": "D64s v3", + "Microarchitecture": "Skylake", + "Instance vCPUs": "64", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s-64s v3", + "Virtual Machine": "D64s v3", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "64", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s-64s v3", + "Virtual Machine": "D8s v3", + "Microarchitecture": "Haswell", + "Instance vCPUs": "8", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s-64s v3", + "Virtual Machine": "D8s v3", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "8", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s-64s v3", + "Virtual Machine": "D8s v3", + "Microarchitecture": "Skylake", + "Instance vCPUs": "8", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "D2s-64s v3", + "Virtual Machine": "D8s v3", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "8", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "DCsv2-series", + "Virtual Machine": "DC1s v2", + "Microarchitecture": "Coffee Lake", + "Instance vCPUs": "1", + "Instance Memory": "4", + "Platform vCPUs (highest vCPU possible)": "8", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "DCsv2-series", + "Virtual Machine": "DC2s v2", + "Microarchitecture": "Coffee Lake", + "Instance vCPUs": "2", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "8", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "DCsv2-series", + "Virtual Machine": "DC4s v2", + "Microarchitecture": "Coffee Lake", + "Instance vCPUs": "4", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "8", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "DCsv2-series", + "Virtual Machine": "DC8 v2", + "Microarchitecture": "Coffee Lake", + "Instance vCPUs": "8", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "8", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2 \u2013 E64 v4", + "Virtual Machine": "E16 v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "16", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2 \u2013 E64 v4", + "Virtual Machine": "E2 v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "2", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2 \u2013 E64 v4", + "Virtual Machine": "E32 v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "32", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2 \u2013 E64 v4", + "Virtual Machine": "E4 v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "4", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2 \u2013 E64 v4", + "Virtual Machine": "E48 v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "48", + "Instance Memory": "384", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2 \u2013 E64 v4", + "Virtual Machine": "E64 v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "64", + "Instance Memory": "504", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2 \u2013 E64 v4", + "Virtual Machine": "E8 v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "8", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2 \u2013 E96 v5", + "Virtual Machine": "E16 v5", + "Microarchitecture": "Unknown", + "Instance vCPUs": "16", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2 \u2013 E96 v5", + "Virtual Machine": "E2 v5", + "Microarchitecture": "Unknown", + "Instance vCPUs": "2", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2 \u2013 E96 v5", + "Virtual Machine": "E20 v5", + "Microarchitecture": "Unknown", + "Instance vCPUs": "20", + "Instance Memory": "160", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2 \u2013 E96 v5", + "Virtual Machine": "E32 v5", + "Microarchitecture": "Unknown", + "Instance vCPUs": "32", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2 \u2013 E96 v5", + "Virtual Machine": "E4 v5", + "Microarchitecture": "Unknown", + "Instance vCPUs": "4", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2 \u2013 E96 v5", + "Virtual Machine": "E48 v5", + "Microarchitecture": "Unknown", + "Instance vCPUs": "48", + "Instance Memory": "384", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2 \u2013 E96 v5", + "Virtual Machine": "E64 v5", + "Microarchitecture": "Unknown", + "Instance vCPUs": "64", + "Instance Memory": "512", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2 \u2013 E96 v5", + "Virtual Machine": "E8 v5", + "Microarchitecture": "Unknown", + "Instance vCPUs": "8", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2 \u2013 E96 v5", + "Virtual Machine": "E96 v5", + "Microarchitecture": "Unknown", + "Instance vCPUs": "96", + "Instance Memory": "672", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2-64 v3", + "Virtual Machine": "E16 v3", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "16", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2-64 v3", + "Virtual Machine": "E16 v3", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "16", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2-64 v3", + "Virtual Machine": "E16 v3", + "Microarchitecture": "Skylake", + "Instance vCPUs": "16", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2-64 v3", + "Virtual Machine": "E2 v3", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "2", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2-64 v3", + "Virtual Machine": "E2 v3", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "2", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2-64 v3", + "Virtual Machine": "E2 v3", + "Microarchitecture": "Skylake", + "Instance vCPUs": "2", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2-64 v3", + "Virtual Machine": "E20 v3", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "20", + "Instance Memory": "160", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2-64 v3", + "Virtual Machine": "E20 v3", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "20", + "Instance Memory": "160", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2-64 v3", + "Virtual Machine": "E20 v3", + "Microarchitecture": "Skylake", + "Instance vCPUs": "20", + "Instance Memory": "160", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2-64 v3", + "Virtual Machine": "E32 v3", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "32", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2-64 v3", + "Virtual Machine": "E32 v3", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "32", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2-64 v3", + "Virtual Machine": "E32 v3", + "Microarchitecture": "Skylake", + "Instance vCPUs": "32", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2-64 v3", + "Virtual Machine": "E4 v3", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "4", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2-64 v3", + "Virtual Machine": "E4 v3", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "4", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2-64 v3", + "Virtual Machine": "E4 v3", + "Microarchitecture": "Skylake", + "Instance vCPUs": "4", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2-64 v3", + "Virtual Machine": "E48 v3", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "48", + "Instance Memory": "384", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2-64 v3", + "Virtual Machine": "E48 v3", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "48", + "Instance Memory": "384", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2-64 v3", + "Virtual Machine": "E48 v3", + "Microarchitecture": "Skylake", + "Instance vCPUs": "48", + "Instance Memory": "384", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2-64 v3", + "Virtual Machine": "E64 v3", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "64", + "Instance Memory": "432", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2-64 v3", + "Virtual Machine": "E64 v3", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "64", + "Instance Memory": "432", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2-64 v3", + "Virtual Machine": "E64 v3", + "Microarchitecture": "Skylake", + "Instance vCPUs": "64", + "Instance Memory": "432", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2-64 v3", + "Virtual Machine": "E64i v3 1", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "64", + "Instance Memory": "432", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2-64 v3", + "Virtual Machine": "E64i v3 1", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "64", + "Instance Memory": "432", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2-64 v3", + "Virtual Machine": "E64i v3 1", + "Microarchitecture": "Skylake", + "Instance vCPUs": "64", + "Instance Memory": "432", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2-64 v3", + "Virtual Machine": "E8 v3", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "8", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2-64 v3", + "Virtual Machine": "E8 v3", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "8", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2-64 v3", + "Virtual Machine": "E8 v3", + "Microarchitecture": "Skylake", + "Instance vCPUs": "8", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2a \u2013 E96a v4", + "Virtual Machine": "E16a v4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "16", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2a \u2013 E96a v4", + "Virtual Machine": "E20a v4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "20", + "Instance Memory": "160", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2a \u2013 E96a v4", + "Virtual Machine": "E2a v4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "2", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2a \u2013 E96a v4", + "Virtual Machine": "E32a v4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "32", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2a \u2013 E96a v4", + "Virtual Machine": "E48a v4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "48", + "Instance Memory": "384", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2a \u2013 E96a v4", + "Virtual Machine": "E4a v4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "4", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2a \u2013 E96a v4", + "Virtual Machine": "E64a v4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "64", + "Instance Memory": "512", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2a \u2013 E96a v4", + "Virtual Machine": "E8a v4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "8", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2a \u2013 E96a v4", + "Virtual Machine": "E96a v4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "96", + "Instance Memory": "672", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2as \u2013 E96as v4", + "Virtual Machine": "E16as v4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "16", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2as \u2013 E96as v4", + "Virtual Machine": "E20as v4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "20", + "Instance Memory": "160", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2as \u2013 E96as v4", + "Virtual Machine": "E2as v4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "2", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2as \u2013 E96as v4", + "Virtual Machine": "E32as v4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "32", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2as \u2013 E96as v4", + "Virtual Machine": "E48as v4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "48", + "Instance Memory": "384", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2as \u2013 E96as v4", + "Virtual Machine": "E4as v4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "4", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2as \u2013 E96as v4", + "Virtual Machine": "E64as v4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "64", + "Instance Memory": "512", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2as \u2013 E96as v4", + "Virtual Machine": "E8as v4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "8", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2as \u2013 E96as v4", + "Virtual Machine": "E96as v4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "96", + "Instance Memory": "672", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2d \u2013 E64d v4", + "Virtual Machine": "E16d v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "16", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "504", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2d \u2013 E64d v4", + "Virtual Machine": "E20d v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "20", + "Instance Memory": "160", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "504", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2d \u2013 E64d v4", + "Virtual Machine": "E2d v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "2", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "504", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2d \u2013 E64d v4", + "Virtual Machine": "E32d v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "32", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "504", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2d \u2013 E64d v4", + "Virtual Machine": "E48d v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "48", + "Instance Memory": "384", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "504", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2d \u2013 E64d v4", + "Virtual Machine": "E4d v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "4", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "504", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2d \u2013 E64d v4", + "Virtual Machine": "E64d v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "64", + "Instance Memory": "504", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "504", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2d \u2013 E64d v4", + "Virtual Machine": "E8d v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "8", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "504", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2ds \u2013 E64ds v4", + "Virtual Machine": "E16ds v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "16", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "80", + "Platform Memory": "504", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2ds \u2013 E64ds v4", + "Virtual Machine": "E20ds v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "20", + "Instance Memory": "160", + "Platform vCPUs (highest vCPU possible)": "80", + "Platform Memory": "504", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2ds \u2013 E64ds v4", + "Virtual Machine": "E2ds v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "2", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "80", + "Platform Memory": "504", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2ds \u2013 E64ds v4", + "Virtual Machine": "E32ds v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "32", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "80", + "Platform Memory": "504", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2ds \u2013 E64ds v4", + "Virtual Machine": "E48ds v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "48", + "Instance Memory": "384", + "Platform vCPUs (highest vCPU possible)": "80", + "Platform Memory": "504", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2ds \u2013 E64ds v4", + "Virtual Machine": "E4ds v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "4", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "80", + "Platform Memory": "504", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2ds \u2013 E64ds v4", + "Virtual Machine": "E64ds v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "64", + "Instance Memory": "504", + "Platform vCPUs (highest vCPU possible)": "80", + "Platform Memory": "504", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2ds \u2013 E64ds v4", + "Virtual Machine": "E80ids v4 1", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "80", + "Instance Memory": "504", + "Platform vCPUs (highest vCPU possible)": "80", + "Platform Memory": "504", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2ds \u2013 E64ds v4", + "Virtual Machine": "E8ds v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "8", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "80", + "Platform Memory": "504", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s \u2013 E64s v4", + "Virtual Machine": "E16s v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "16", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "80", + "Platform Memory": "504", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s \u2013 E64s v4", + "Virtual Machine": "E20s v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "20", + "Instance Memory": "160", + "Platform vCPUs (highest vCPU possible)": "80", + "Platform Memory": "504", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s \u2013 E64s v4", + "Virtual Machine": "E2s v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "2", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "80", + "Platform Memory": "504", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s \u2013 E64s v4", + "Virtual Machine": "E32s v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "32", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "80", + "Platform Memory": "504", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s \u2013 E64s v4", + "Virtual Machine": "E48s v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "48", + "Instance Memory": "384", + "Platform vCPUs (highest vCPU possible)": "80", + "Platform Memory": "504", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s \u2013 E64s v4", + "Virtual Machine": "E4s v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "4", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "80", + "Platform Memory": "504", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s \u2013 E64s v4", + "Virtual Machine": "E64s v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "64", + "Instance Memory": "504", + "Platform vCPUs (highest vCPU possible)": "80", + "Platform Memory": "504", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s \u2013 E64s v4", + "Virtual Machine": "E80is v4 1", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "80", + "Instance Memory": "504", + "Platform vCPUs (highest vCPU possible)": "80", + "Platform Memory": "504", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s \u2013 E64s v4", + "Virtual Machine": "E8s v4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "8", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "80", + "Platform Memory": "504", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s-64s v3", + "Virtual Machine": "E16s v3", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "16", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s-64s v3", + "Virtual Machine": "E16s v3", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "16", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s-64s v3", + "Virtual Machine": "E16s v3", + "Microarchitecture": "Skylake", + "Instance vCPUs": "16", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s-64s v3", + "Virtual Machine": "E20s v3", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "20", + "Instance Memory": "160", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s-64s v3", + "Virtual Machine": "E20s v3", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "20", + "Instance Memory": "160", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s-64s v3", + "Virtual Machine": "E20s v3", + "Microarchitecture": "Skylake", + "Instance vCPUs": "20", + "Instance Memory": "160", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s-64s v3", + "Virtual Machine": "E2s v3", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "2", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s-64s v3", + "Virtual Machine": "E2s v3", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "2", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s-64s v3", + "Virtual Machine": "E2s v3", + "Microarchitecture": "Skylake", + "Instance vCPUs": "2", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s-64s v3", + "Virtual Machine": "E32s v3", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "32", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s-64s v3", + "Virtual Machine": "E32s v3", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "32", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s-64s v3", + "Virtual Machine": "E32s v3", + "Microarchitecture": "Skylake", + "Instance vCPUs": "32", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s-64s v3", + "Virtual Machine": "E48s v3", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "48", + "Instance Memory": "384", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s-64s v3", + "Virtual Machine": "E48s v3", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "48", + "Instance Memory": "384", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s-64s v3", + "Virtual Machine": "E48s v3", + "Microarchitecture": "Skylake", + "Instance vCPUs": "48", + "Instance Memory": "384", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s-64s v3", + "Virtual Machine": "E4s v3", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "4", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s-64s v3", + "Virtual Machine": "E4s v3", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "4", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s-64s v3", + "Virtual Machine": "E4s v3", + "Microarchitecture": "Skylake", + "Instance vCPUs": "4", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s-64s v3", + "Virtual Machine": "E64is v3 1", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "64", + "Instance Memory": "432", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s-64s v3", + "Virtual Machine": "E64is v3 1", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "64", + "Instance Memory": "432", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s-64s v3", + "Virtual Machine": "E64is v3 1", + "Microarchitecture": "Skylake", + "Instance vCPUs": "64", + "Instance Memory": "432", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s-64s v3", + "Virtual Machine": "E64s v3", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "64", + "Instance Memory": "432", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s-64s v3", + "Virtual Machine": "E64s v3", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "64", + "Instance Memory": "432", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s-64s v3", + "Virtual Machine": "E64s v3", + "Microarchitecture": "Skylake", + "Instance vCPUs": "64", + "Instance Memory": "432", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s-64s v3", + "Virtual Machine": "E8s v3", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "8", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s-64s v3", + "Virtual Machine": "E8s v3", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "8", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "E2s-64s v3", + "Virtual Machine": "E8s v3", + "Microarchitecture": "Skylake", + "Instance vCPUs": "8", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "64", + "Platform Memory": "432", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "F-series", + "Virtual Machine": "F1", + "Microarchitecture": "Haswell", + "Instance vCPUs": "1", + "Instance Memory": "2", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "F-series", + "Virtual Machine": "F1", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "1", + "Instance Memory": "2", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "F-series", + "Virtual Machine": "F1", + "Microarchitecture": "Skylake", + "Instance vCPUs": "1", + "Instance Memory": "2", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "F-series", + "Virtual Machine": "F1", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "1", + "Instance Memory": "2", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "F-series", + "Virtual Machine": "F16", + "Microarchitecture": "Haswell", + "Instance vCPUs": "16", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "F-series", + "Virtual Machine": "F16", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "16", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "F-series", + "Virtual Machine": "F16", + "Microarchitecture": "Skylake", + "Instance vCPUs": "16", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "F-series", + "Virtual Machine": "F16", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "16", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "F-series", + "Virtual Machine": "F2", + "Microarchitecture": "Haswell", + "Instance vCPUs": "2", + "Instance Memory": "4", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "F-series", + "Virtual Machine": "F2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "2", + "Instance Memory": "4", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "F-series", + "Virtual Machine": "F2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "2", + "Instance Memory": "4", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "F-series", + "Virtual Machine": "F2", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "2", + "Instance Memory": "4", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "F-series", + "Virtual Machine": "F4", + "Microarchitecture": "Haswell", + "Instance vCPUs": "4", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "F-series", + "Virtual Machine": "F4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "4", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "F-series", + "Virtual Machine": "F4", + "Microarchitecture": "Skylake", + "Instance vCPUs": "4", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "F-series", + "Virtual Machine": "F4", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "4", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "F-series", + "Virtual Machine": "F8", + "Microarchitecture": "Haswell", + "Instance vCPUs": "8", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "F-series", + "Virtual Machine": "F8", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "8", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "F-series", + "Virtual Machine": "F8", + "Microarchitecture": "Skylake", + "Instance vCPUs": "8", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "F-series", + "Virtual Machine": "F8", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "8", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Fs-Series", + "Virtual Machine": "F16s", + "Microarchitecture": "Unknown", + "Instance vCPUs": "16", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Fs-Series", + "Virtual Machine": "F1s", + "Microarchitecture": "Unknown", + "Instance vCPUs": "1", + "Instance Memory": "2", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Fs-Series", + "Virtual Machine": "F2s", + "Microarchitecture": "Unknown", + "Instance vCPUs": "2", + "Instance Memory": "4", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Fs-Series", + "Virtual Machine": "F4s", + "Microarchitecture": "Unknown", + "Instance vCPUs": "4", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Fs-Series", + "Virtual Machine": "F8s", + "Microarchitecture": "Unknown", + "Instance vCPUs": "8", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Fsv2-series", + "Virtual Machine": "F16s v2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "16", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "72", + "Platform Memory": "144", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Fsv2-series", + "Virtual Machine": "F16s v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "16", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "72", + "Platform Memory": "144", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Fsv2-series", + "Virtual Machine": "F2s v2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "2", + "Instance Memory": "4", + "Platform vCPUs (highest vCPU possible)": "72", + "Platform Memory": "144", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Fsv2-series", + "Virtual Machine": "F2s v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "2", + "Instance Memory": "4", + "Platform vCPUs (highest vCPU possible)": "72", + "Platform Memory": "144", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Fsv2-series", + "Virtual Machine": "F32s v2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "32", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "72", + "Platform Memory": "144", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Fsv2-series", + "Virtual Machine": "F32s v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "32", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "72", + "Platform Memory": "144", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Fsv2-series", + "Virtual Machine": "F48s v2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "48", + "Instance Memory": "96", + "Platform vCPUs (highest vCPU possible)": "72", + "Platform Memory": "144", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Fsv2-series", + "Virtual Machine": "F48s v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "48", + "Instance Memory": "96", + "Platform vCPUs (highest vCPU possible)": "72", + "Platform Memory": "144", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Fsv2-series", + "Virtual Machine": "F4s v2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "4", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "72", + "Platform Memory": "144", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Fsv2-series", + "Virtual Machine": "F4s v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "4", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "72", + "Platform Memory": "144", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Fsv2-series", + "Virtual Machine": "F64s v2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "64", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "72", + "Platform Memory": "144", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Fsv2-series", + "Virtual Machine": "F64s v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "64", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "72", + "Platform Memory": "144", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Fsv2-series", + "Virtual Machine": "F72s v2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "72", + "Instance Memory": "144", + "Platform vCPUs (highest vCPU possible)": "72", + "Platform Memory": "144", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Fsv2-series", + "Virtual Machine": "F72s v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "72", + "Instance Memory": "144", + "Platform vCPUs (highest vCPU possible)": "72", + "Platform Memory": "144", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Fsv2-series", + "Virtual Machine": "F8s v2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "8", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "72", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Fsv2-series", + "Virtual Machine": "F8s v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "8", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "72", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "G-series", + "Virtual Machine": "G1", + "Microarchitecture": "Haswell", + "Instance vCPUs": "2", + "Instance Memory": "28", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "G-series", + "Virtual Machine": "G2", + "Microarchitecture": "Haswell", + "Instance vCPUs": "4", + "Instance Memory": "56", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "G-series", + "Virtual Machine": "G3", + "Microarchitecture": "Haswell", + "Instance vCPUs": "8", + "Instance Memory": "112", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "G-series", + "Virtual Machine": "G4", + "Microarchitecture": "Haswell", + "Instance vCPUs": "16", + "Instance Memory": "224", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "G-series", + "Virtual Machine": "G5", + "Microarchitecture": "Haswell", + "Instance vCPUs": "32", + "Instance Memory": "448", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Gs-Series", + "Virtual Machine": "Gs1", + "Microarchitecture": "Unknown", + "Instance vCPUs": "2", + "Instance Memory": "28", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Gs-Series", + "Virtual Machine": "Gs2", + "Microarchitecture": "Unknown", + "Instance vCPUs": "4", + "Instance Memory": "56", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Gs-Series", + "Virtual Machine": "Gs3", + "Microarchitecture": "Unknown", + "Instance vCPUs": "8", + "Instance Memory": "112", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Gs-Series", + "Virtual Machine": "Gs4", + "Microarchitecture": "Unknown", + "Instance vCPUs": "16", + "Instance Memory": "224", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Gs-Series", + "Virtual Machine": "Gs5", + "Microarchitecture": "Unknown", + "Instance vCPUs": "32", + "Instance Memory": "448", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "H-series", + "Virtual Machine": "H16", + "Microarchitecture": "Haswell", + "Instance vCPUs": "16", + "Instance Memory": "112", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "H-series", + "Virtual Machine": "H16m", + "Microarchitecture": "Haswell", + "Instance vCPUs": "16", + "Instance Memory": "224", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "H-series", + "Virtual Machine": "H16mr", + "Microarchitecture": "Haswell", + "Instance vCPUs": "16", + "Instance Memory": "224", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "H-series", + "Virtual Machine": "H16r", + "Microarchitecture": "Haswell", + "Instance vCPUs": "16", + "Instance Memory": "112", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "H-series", + "Virtual Machine": "H8", + "Microarchitecture": "Haswell", + "Instance vCPUs": "8", + "Instance Memory": "56", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "H-series", + "Virtual Machine": "H8m", + "Microarchitecture": "Haswell", + "Instance vCPUs": "8", + "Instance Memory": "112", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "H-series promo", + "Virtual Machine": "H16 Promo", + "Microarchitecture": "Haswell", + "Instance vCPUs": "16", + "Instance Memory": "112", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "H-series promo", + "Virtual Machine": "H16m Promo", + "Microarchitecture": "Haswell", + "Instance vCPUs": "16", + "Instance Memory": "224", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "H-series promo", + "Virtual Machine": "H16mr Promo", + "Microarchitecture": "Haswell", + "Instance vCPUs": "16", + "Instance Memory": "224", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "H-series promo", + "Virtual Machine": "H16r Promo", + "Microarchitecture": "Haswell", + "Instance vCPUs": "16", + "Instance Memory": "112", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "H-series promo", + "Virtual Machine": "H8 Promo", + "Microarchitecture": "Haswell", + "Instance vCPUs": "8", + "Instance Memory": "56", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "H-series promo", + "Virtual Machine": "H8m Promo", + "Microarchitecture": "Haswell", + "Instance vCPUs": "8", + "Instance Memory": "112", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "HBv2-series", + "Virtual Machine": "HB120rs v2", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "120", + "Instance Memory": "480", + "Platform vCPUs (highest vCPU possible)": "120", + "Platform Memory": "480", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "HBv3-series", + "Virtual Machine": "HB120rs v3", + "Microarchitecture": "EPYC 3rd Gen", + "Instance vCPUs": "120", + "Instance Memory": "448", + "Platform vCPUs (highest vCPU possible)": "120", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Ls-series", + "Virtual Machine": "L16s", + "Microarchitecture": "Haswell", + "Instance vCPUs": "16", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Ls-series", + "Virtual Machine": "L32s", + "Microarchitecture": "Haswell", + "Instance vCPUs": "32", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Ls-series", + "Virtual Machine": "L4s", + "Microarchitecture": "Haswell", + "Instance vCPUs": "4", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Ls-series", + "Virtual Machine": "L8s", + "Microarchitecture": "Haswell", + "Instance vCPUs": "8", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "256", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Lsv2-series", + "Virtual Machine": "L16s v2", + "Microarchitecture": "EPYC 1st Gen", + "Instance vCPUs": "16", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "80", + "Platform Memory": "640", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Lsv2-series", + "Virtual Machine": "L32s v2", + "Microarchitecture": "EPYC 1st Gen", + "Instance vCPUs": "32", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "80", + "Platform Memory": "640", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Lsv2-series", + "Virtual Machine": "L48s v2", + "Microarchitecture": "EPYC 1st Gen", + "Instance vCPUs": "48", + "Instance Memory": "384", + "Platform vCPUs (highest vCPU possible)": "80", + "Platform Memory": "640", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Lsv2-series", + "Virtual Machine": "L64s v2", + "Microarchitecture": "EPYC 1st Gen", + "Instance vCPUs": "64", + "Instance Memory": "512", + "Platform vCPUs (highest vCPU possible)": "80", + "Platform Memory": "640", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Lsv2-series", + "Virtual Machine": "L80s v2", + "Microarchitecture": "EPYC 1st Gen", + "Instance vCPUs": "80", + "Instance Memory": "640", + "Platform vCPUs (highest vCPU possible)": "80", + "Platform Memory": "640", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Lsv2-series", + "Virtual Machine": "L8s v2", + "Microarchitecture": "EPYC 1st Gen", + "Instance vCPUs": "8", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "80", + "Platform Memory": "640", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "M-series", + "Virtual Machine": "M128 1", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "128", + "Instance Memory": "2048", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "3892", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "M-series", + "Virtual Machine": "M128 1", + "Microarchitecture": "Haswell", + "Instance vCPUs": "128", + "Instance Memory": "2048", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "3892", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "M-series", + "Virtual Machine": "M128m 1", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "128", + "Instance Memory": "3892", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "3892", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "M-series", + "Virtual Machine": "M128m 1", + "Microarchitecture": "Haswell", + "Instance vCPUs": "128", + "Instance Memory": "3892", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "3892", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "M-series", + "Virtual Machine": "M128ms", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "128", + "Instance Memory": "3892", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "3892", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "M-series", + "Virtual Machine": "M128ms", + "Microarchitecture": "Haswell", + "Instance vCPUs": "128", + "Instance Memory": "3892", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "3892", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "M-series", + "Virtual Machine": "M128s", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "128", + "Instance Memory": "2048", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "3892", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "M-series", + "Virtual Machine": "M128s", + "Microarchitecture": "Haswell", + "Instance vCPUs": "128", + "Instance Memory": "2048", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "3892", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "M-series", + "Virtual Machine": "M16ms", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "16", + "Instance Memory": "438", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "3892", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "M-series", + "Virtual Machine": "M16ms", + "Microarchitecture": "Haswell", + "Instance vCPUs": "16", + "Instance Memory": "438", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "3892", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "M-series", + "Virtual Machine": "M32ls", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "32", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "3892", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "M-series", + "Virtual Machine": "M32ls", + "Microarchitecture": "Haswell", + "Instance vCPUs": "32", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "3892", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "M-series", + "Virtual Machine": "M32ms", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "32", + "Instance Memory": "875", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "3892", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "M-series", + "Virtual Machine": "M32ms", + "Microarchitecture": "Haswell", + "Instance vCPUs": "32", + "Instance Memory": "875", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "3892", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "M-series", + "Virtual Machine": "M32ts", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "32", + "Instance Memory": "192", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "3892", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "M-series", + "Virtual Machine": "M32ts", + "Microarchitecture": "Haswell", + "Instance vCPUs": "32", + "Instance Memory": "192", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "3892", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "M-series", + "Virtual Machine": "M64 1", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "64", + "Instance Memory": "1024", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "3892", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "M-series", + "Virtual Machine": "M64 1", + "Microarchitecture": "Haswell", + "Instance vCPUs": "64", + "Instance Memory": "1024", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "3892", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "M-series", + "Virtual Machine": "M64ls", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "64", + "Instance Memory": "512", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "3892", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "M-series", + "Virtual Machine": "M64ls", + "Microarchitecture": "Haswell", + "Instance vCPUs": "64", + "Instance Memory": "512", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "3892", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "M-series", + "Virtual Machine": "M64m 1", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "64", + "Instance Memory": "1792", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "3892", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "M-series", + "Virtual Machine": "M64m 1", + "Microarchitecture": "Haswell", + "Instance vCPUs": "64", + "Instance Memory": "1792", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "3892", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "M-series", + "Virtual Machine": "M64ms", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "64", + "Instance Memory": "1792", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "3892", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "M-series", + "Virtual Machine": "M64ms", + "Microarchitecture": "Haswell", + "Instance vCPUs": "64", + "Instance Memory": "1792", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "3892", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "M-series", + "Virtual Machine": "M64s", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "64", + "Instance Memory": "1024", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "3892", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "M-series", + "Virtual Machine": "M64s", + "Microarchitecture": "Haswell", + "Instance vCPUs": "64", + "Instance Memory": "1024", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "3892", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "M-series", + "Virtual Machine": "M8ms", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "8", + "Instance Memory": "219", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "3892", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "M-series", + "Virtual Machine": "M8ms", + "Microarchitecture": "Haswell", + "Instance vCPUs": "8", + "Instance Memory": "219", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "3892", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Mdsv2-series", + "Virtual Machine": "M128dms v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "128", + "Instance Memory": "3892", + "Platform vCPUs (highest vCPU possible)": "192", + "Platform Memory": "4096", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Mdsv2-series", + "Virtual Machine": "M128ds v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "128", + "Instance Memory": "2048", + "Platform vCPUs (highest vCPU possible)": "192", + "Platform Memory": "4096", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Mdsv2-series", + "Virtual Machine": "M192idms v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "192", + "Instance Memory": "4096", + "Platform vCPUs (highest vCPU possible)": "192", + "Platform Memory": "4096", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Mdsv2-series", + "Virtual Machine": "M192ids v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "192", + "Instance Memory": "2048", + "Platform vCPUs (highest vCPU possible)": "192", + "Platform Memory": "4096", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Mdsv2-series", + "Virtual Machine": "M32dms v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "32", + "Instance Memory": "875", + "Platform vCPUs (highest vCPU possible)": "192", + "Platform Memory": "4096", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Mdsv2-series", + "Virtual Machine": "M64dms v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "64", + "Instance Memory": "1792", + "Platform vCPUs (highest vCPU possible)": "192", + "Platform Memory": "4096", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Mdsv2-series", + "Virtual Machine": "M64ds v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "64", + "Instance Memory": "1024", + "Platform vCPUs (highest vCPU possible)": "192", + "Platform Memory": "4096", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Msv2-series", + "Virtual Machine": "M128ms v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "128", + "Instance Memory": "3892", + "Platform vCPUs (highest vCPU possible)": "192", + "Platform Memory": "4096", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Msv2-series", + "Virtual Machine": "M128s v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "128", + "Instance Memory": "2048", + "Platform vCPUs (highest vCPU possible)": "192", + "Platform Memory": "4096", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Msv2-series", + "Virtual Machine": "M192ims v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "192", + "Instance Memory": "4096", + "Platform vCPUs (highest vCPU possible)": "192", + "Platform Memory": "4096", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Msv2-series", + "Virtual Machine": "M192is v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "192", + "Instance Memory": "2048", + "Platform vCPUs (highest vCPU possible)": "192", + "Platform Memory": "4096", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Msv2-series", + "Virtual Machine": "M32ms v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "32", + "Instance Memory": "875", + "Platform vCPUs (highest vCPU possible)": "192", + "Platform Memory": "4096", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Msv2-series", + "Virtual Machine": "M64ms v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "64", + "Instance Memory": "1792", + "Platform vCPUs (highest vCPU possible)": "192", + "Platform Memory": "4096", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Msv2-series", + "Virtual Machine": "M64s v2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "64", + "Instance Memory": "1024", + "Platform vCPUs (highest vCPU possible)": "192", + "Platform Memory": "11400", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "N/A", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Mv2-series", + "Virtual Machine": "M208ms v2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "208", + "Instance Memory": "5700", + "Platform vCPUs (highest vCPU possible)": "208", + "Platform Memory": "11400", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Mv2-series", + "Virtual Machine": "M208s v2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "208", + "Instance Memory": "2850", + "Platform vCPUs (highest vCPU possible)": "208", + "Platform Memory": "11400", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Mv2-series", + "Virtual Machine": "M416ms v2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "416", + "Instance Memory": "11400", + "Platform vCPUs (highest vCPU possible)": "208", + "Platform Memory": "11400", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "Mv2-series", + "Virtual Machine": "M416s v2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "416", + "Instance Memory": "5700", + "Platform vCPUs (highest vCPU possible)": "208", + "Platform Memory": "11400", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "NC-series", + "Virtual Machine": "NC12", + "Microarchitecture": "Unknown", + "Instance vCPUs": "12", + "Instance Memory": "112", + "Platform vCPUs (highest vCPU possible)": "24", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "2", + "Platform GPU": "4" + }, + { + "Series": "NC-series", + "Virtual Machine": "NC24", + "Microarchitecture": "Unknown", + "Instance vCPUs": "24", + "Instance Memory": "224", + "Platform vCPUs (highest vCPU possible)": "24", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "4", + "Platform GPU": "4" + }, + { + "Series": "NC-series", + "Virtual Machine": "NC24r", + "Microarchitecture": "Unknown", + "Instance vCPUs": "24", + "Instance Memory": "224", + "Platform vCPUs (highest vCPU possible)": "24", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "4", + "Platform GPU": "4" + }, + { + "Series": "NC-series", + "Virtual Machine": "NC6", + "Microarchitecture": "Unknown", + "Instance vCPUs": "6", + "Instance Memory": "56", + "Platform vCPUs (highest vCPU possible)": "24", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "1", + "Platform GPU": "4" + }, + { + "Series": "NC-series Promo", + "Virtual Machine": "NC12 Promo", + "Microarchitecture": "Unknown", + "Instance vCPUs": "12", + "Instance Memory": "112", + "Platform vCPUs (highest vCPU possible)": "24", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "2", + "Platform GPU": "4" + }, + { + "Series": "NC-series Promo", + "Virtual Machine": "NC24 Promo", + "Microarchitecture": "Unknown", + "Instance vCPUs": "24", + "Instance Memory": "224", + "Platform vCPUs (highest vCPU possible)": "24", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "4", + "Platform GPU": "4" + }, + { + "Series": "NC-series Promo", + "Virtual Machine": "NC24r Promo", + "Microarchitecture": "Unknown", + "Instance vCPUs": "24", + "Instance Memory": "224", + "Platform vCPUs (highest vCPU possible)": "24", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "4", + "Platform GPU": "4" + }, + { + "Series": "NC-series Promo", + "Virtual Machine": "NC6 Promo", + "Microarchitecture": "Unknown", + "Instance vCPUs": "6", + "Instance Memory": "56", + "Platform vCPUs (highest vCPU possible)": "24", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "1", + "Platform GPU": "4" + }, + { + "Series": "NCas_T4_v3 Series", + "Virtual Machine": "NC16as T4 v3", + "Microarchitecture": "Unknown", + "Instance vCPUs": "16", + "Instance Memory": "112", + "Platform vCPUs (highest vCPU possible)": "24", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "1", + "Platform GPU": "4" + }, + { + "Series": "NCas_T4_v3 Series", + "Virtual Machine": "NC4as T4 v3", + "Microarchitecture": "Unknown", + "Instance vCPUs": "4", + "Instance Memory": "28", + "Platform vCPUs (highest vCPU possible)": "24", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "1", + "Platform GPU": "4" + }, + { + "Series": "NCas_T4_v3 Series", + "Virtual Machine": "NC64as T4 v3", + "Microarchitecture": "Unknown", + "Instance vCPUs": "64", + "Instance Memory": "448", + "Platform vCPUs (highest vCPU possible)": "24", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "4", + "Platform GPU": "4" + }, + { + "Series": "NCas_T4_v3 Series", + "Virtual Machine": "NC8as T4 v3", + "Microarchitecture": "Unknown", + "Instance vCPUs": "8", + "Instance Memory": "56", + "Platform vCPUs (highest vCPU possible)": "24", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "1", + "Platform GPU": "4" + }, + { + "Series": "NCsv2-series", + "Virtual Machine": "NC12s v2", + "Microarchitecture": "Unknown", + "Instance vCPUs": "12", + "Instance Memory": "224", + "Platform vCPUs (highest vCPU possible)": "24", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "2", + "Platform GPU": "4" + }, + { + "Series": "NCsv2-series", + "Virtual Machine": "NC24rs v2", + "Microarchitecture": "Unknown", + "Instance vCPUs": "24", + "Instance Memory": "448", + "Platform vCPUs (highest vCPU possible)": "24", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "4", + "Platform GPU": "4" + }, + { + "Series": "NCsv2-series", + "Virtual Machine": "NC24s v2", + "Microarchitecture": "Unknown", + "Instance vCPUs": "24", + "Instance Memory": "448", + "Platform vCPUs (highest vCPU possible)": "24", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "4", + "Platform GPU": "4" + }, + { + "Series": "NCsv2-series", + "Virtual Machine": "NC6s v2", + "Microarchitecture": "Unknown", + "Instance vCPUs": "6", + "Instance Memory": "112", + "Platform vCPUs (highest vCPU possible)": "24", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "1", + "Platform GPU": "4" + }, + { + "Series": "NCsv3-series", + "Virtual Machine": "NC12s v3", + "Microarchitecture": "Unknown", + "Instance vCPUs": "12", + "Instance Memory": "224", + "Platform vCPUs (highest vCPU possible)": "24", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "2", + "Platform GPU": "4" + }, + { + "Series": "NCsv3-series", + "Virtual Machine": "NC24rs v3", + "Microarchitecture": "Unknown", + "Instance vCPUs": "24", + "Instance Memory": "448", + "Platform vCPUs (highest vCPU possible)": "24", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "4", + "Platform GPU": "4" + }, + { + "Series": "NCsv3-series", + "Virtual Machine": "NC24s v3", + "Microarchitecture": "Unknown", + "Instance vCPUs": "24", + "Instance Memory": "448", + "Platform vCPUs (highest vCPU possible)": "24", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "4", + "Platform GPU": "4" + }, + { + "Series": "NCsv3-series", + "Virtual Machine": "NC6s v3", + "Microarchitecture": "Unknown", + "Instance vCPUs": "6", + "Instance Memory": "112", + "Platform vCPUs (highest vCPU possible)": "24", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "1", + "Platform GPU": "4" + }, + { + "Series": "NDs-series", + "Virtual Machine": "ND12s", + "Microarchitecture": "Unknown", + "Instance vCPUs": "12", + "Instance Memory": "224", + "Platform vCPUs (highest vCPU possible)": "24", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "2", + "Platform GPU": "4" + }, + { + "Series": "NDs-series", + "Virtual Machine": "ND24rs", + "Microarchitecture": "Unknown", + "Instance vCPUs": "24", + "Instance Memory": "448", + "Platform vCPUs (highest vCPU possible)": "24", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "4", + "Platform GPU": "4" + }, + { + "Series": "NDs-series", + "Virtual Machine": "ND24s", + "Microarchitecture": "Unknown", + "Instance vCPUs": "24", + "Instance Memory": "448", + "Platform vCPUs (highest vCPU possible)": "24", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "4", + "Platform GPU": "4" + }, + { + "Series": "NDs-series", + "Virtual Machine": "ND6s", + "Microarchitecture": "Unknown", + "Instance vCPUs": "6", + "Instance Memory": "112", + "Platform vCPUs (highest vCPU possible)": "24", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "1", + "Platform GPU": "4" + }, + { + "Series": "NDv2 Series", + "Virtual Machine": "ND40rs v2", + "Microarchitecture": "Unknown", + "Instance vCPUs": "40", + "Instance Memory": "672", + "Platform vCPUs (highest vCPU possible)": "40", + "Platform Memory": "672", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "8", + "Platform GPU": "8" + }, + { + "Series": "NP-Series", + "Virtual Machine": "NP10s", + "Microarchitecture": "Unknown", + "Instance vCPUs": "10", + "Instance Memory": "192", + "Platform vCPUs (highest vCPU possible)": "40", + "Platform Memory": "768", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "NP-Series", + "Virtual Machine": "NP20s", + "Microarchitecture": "Unknown", + "Instance vCPUs": "20", + "Instance Memory": "384", + "Platform vCPUs (highest vCPU possible)": "40", + "Platform Memory": "768", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "NP-Series", + "Virtual Machine": "NP40s", + "Microarchitecture": "Unknown", + "Instance vCPUs": "40", + "Instance Memory": "768", + "Platform vCPUs (highest vCPU possible)": "40", + "Platform Memory": "768", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "NV-series", + "Virtual Machine": "NV12", + "Microarchitecture": "Unknown", + "Instance vCPUs": "12", + "Instance Memory": "112", + "Platform vCPUs (highest vCPU possible)": "24", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "2", + "Platform GPU": "4" + }, + { + "Series": "NV-series", + "Virtual Machine": "NV24", + "Microarchitecture": "Unknown", + "Instance vCPUs": "24", + "Instance Memory": "224", + "Platform vCPUs (highest vCPU possible)": "24", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "4", + "Platform GPU": "4" + }, + { + "Series": "NV-series", + "Virtual Machine": "NV6", + "Microarchitecture": "Unknown", + "Instance vCPUs": "6", + "Instance Memory": "56", + "Platform vCPUs (highest vCPU possible)": "24", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "1", + "Platform GPU": "4" + }, + { + "Series": "NVv3-series", + "Virtual Machine": "NV12s v3", + "Microarchitecture": "Unknown", + "Instance vCPUs": "12", + "Instance Memory": "112", + "Platform vCPUs (highest vCPU possible)": "48", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "1", + "Platform GPU": "4" + }, + { + "Series": "NVv3-series", + "Virtual Machine": "NV24s v3", + "Microarchitecture": "Unknown", + "Instance vCPUs": "24", + "Instance Memory": "224", + "Platform vCPUs (highest vCPU possible)": "48", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "2", + "Platform GPU": "4" + }, + { + "Series": "NVv3-series", + "Virtual Machine": "NV48s v3", + "Microarchitecture": "Unknown", + "Instance vCPUs": "48", + "Instance Memory": "448", + "Platform vCPUs (highest vCPU possible)": "48", + "Platform Memory": "448", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "4", + "Platform GPU": "4" + }, + { + "Series": "SAP HANA on Azure Large Instances", + "Virtual Machine": "S192", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "192", + "Instance Memory": "2048", + "Platform vCPUs (highest vCPU possible)": "576", + "Platform Memory": "12000", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "SAP HANA on Azure Large Instances", + "Virtual Machine": "S192m", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "192", + "Instance Memory": "4096", + "Platform vCPUs (highest vCPU possible)": "576", + "Platform Memory": "12000", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "SAP HANA on Azure Large Instances", + "Virtual Machine": "S192xm", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "192", + "Instance Memory": "6144", + "Platform vCPUs (highest vCPU possible)": "576", + "Platform Memory": "12000", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "SAP HANA on Azure Large Instances", + "Virtual Machine": "S384", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "384", + "Instance Memory": "4096", + "Platform vCPUs (highest vCPU possible)": "576", + "Platform Memory": "12000", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "SAP HANA on Azure Large Instances", + "Virtual Machine": "S384m", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "384", + "Instance Memory": "6144", + "Platform vCPUs (highest vCPU possible)": "576", + "Platform Memory": "12000", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "SAP HANA on Azure Large Instances", + "Virtual Machine": "S384xm", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "384", + "Instance Memory": "8192", + "Platform vCPUs (highest vCPU possible)": "576", + "Platform Memory": "12000", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "SAP HANA on Azure Large Instances", + "Virtual Machine": "S384xxm", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "384", + "Instance Memory": "12000", + "Platform vCPUs (highest vCPU possible)": "576", + "Platform Memory": "12000", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "SAP HANA on Azure Large Instances", + "Virtual Machine": "S576m", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "576", + "Instance Memory": "12000", + "Platform vCPUs (highest vCPU possible)": "576", + "Platform Memory": "12000", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "SAP HANA on Azure Large Instances", + "Virtual Machine": "S96", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "96", + "Instance Memory": "768", + "Platform vCPUs (highest vCPU possible)": "576", + "Platform Memory": "12000", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "SAP HANA on Azure Large Instances (second generation)", + "Virtual Machine": "S224", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "224", + "Instance Memory": "3072", + "Platform vCPUs (highest vCPU possible)": "896", + "Platform Memory": "36864", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "SAP HANA on Azure Large Instances (second generation)", + "Virtual Machine": "S224m", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "224", + "Instance Memory": "6144", + "Platform vCPUs (highest vCPU possible)": "896", + "Platform Memory": "36864", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "SAP HANA on Azure Large Instances (second generation)", + "Virtual Machine": "S224om", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "224", + "Instance Memory": "6144", + "Platform vCPUs (highest vCPU possible)": "896", + "Platform Memory": "36864", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "SAP HANA on Azure Large Instances (second generation)", + "Virtual Machine": "S224oo", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "224", + "Instance Memory": "4608", + "Platform vCPUs (highest vCPU possible)": "896", + "Platform Memory": "36864", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "SAP HANA on Azure Large Instances (second generation)", + "Virtual Machine": "S224oom", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "224", + "Instance Memory": "9216", + "Platform vCPUs (highest vCPU possible)": "896", + "Platform Memory": "36864", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "SAP HANA on Azure Large Instances (second generation)", + "Virtual Machine": "S224ooo", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "224", + "Instance Memory": "7680", + "Platform vCPUs (highest vCPU possible)": "896", + "Platform Memory": "36864", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "SAP HANA on Azure Large Instances (second generation)", + "Virtual Machine": "S448", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "448", + "Instance Memory": "6144", + "Platform vCPUs (highest vCPU possible)": "896", + "Platform Memory": "36864", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "SAP HANA on Azure Large Instances (second generation)", + "Virtual Machine": "S448m", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "448", + "Instance Memory": "12288", + "Platform vCPUs (highest vCPU possible)": "896", + "Platform Memory": "36864", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "SAP HANA on Azure Large Instances (second generation)", + "Virtual Machine": "S448om", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "448", + "Instance Memory": "12288", + "Platform vCPUs (highest vCPU possible)": "896", + "Platform Memory": "36864", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "SAP HANA on Azure Large Instances (second generation)", + "Virtual Machine": "S448oo", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "448", + "Instance Memory": "9216", + "Platform vCPUs (highest vCPU possible)": "896", + "Platform Memory": "36864", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "SAP HANA on Azure Large Instances (second generation)", + "Virtual Machine": "S448oom", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "448", + "Instance Memory": "18432", + "Platform vCPUs (highest vCPU possible)": "896", + "Platform Memory": "36864", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "SAP HANA on Azure Large Instances (second generation)", + "Virtual Machine": "S448ooo", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "448", + "Instance Memory": "15360", + "Platform vCPUs (highest vCPU possible)": "896", + "Platform Memory": "36864", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "SAP HANA on Azure Large Instances (second generation)", + "Virtual Machine": "S672", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "672", + "Instance Memory": "9216", + "Platform vCPUs (highest vCPU possible)": "896", + "Platform Memory": "36864", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "SAP HANA on Azure Large Instances (second generation)", + "Virtual Machine": "S672m", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "672", + "Instance Memory": "18432", + "Platform vCPUs (highest vCPU possible)": "896", + "Platform Memory": "36864", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "SAP HANA on Azure Large Instances (second generation)", + "Virtual Machine": "S672om", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "672", + "Instance Memory": "18432", + "Platform vCPUs (highest vCPU possible)": "896", + "Platform Memory": "36864", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "SAP HANA on Azure Large Instances (second generation)", + "Virtual Machine": "S672oo", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "672", + "Instance Memory": "13824", + "Platform vCPUs (highest vCPU possible)": "896", + "Platform Memory": "36864", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "SAP HANA on Azure Large Instances (second generation)", + "Virtual Machine": "S672oom", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "672", + "Instance Memory": "27648", + "Platform vCPUs (highest vCPU possible)": "896", + "Platform Memory": "36864", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "SAP HANA on Azure Large Instances (second generation)", + "Virtual Machine": "S672ooo", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "672", + "Instance Memory": "23040", + "Platform vCPUs (highest vCPU possible)": "896", + "Platform Memory": "36864", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "SAP HANA on Azure Large Instances (second generation)", + "Virtual Machine": "S896", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "896", + "Instance Memory": "12288", + "Platform vCPUs (highest vCPU possible)": "896", + "Platform Memory": "36864", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "SAP HANA on Azure Large Instances (second generation)", + "Virtual Machine": "S896m", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "896", + "Instance Memory": "24576", + "Platform vCPUs (highest vCPU possible)": "896", + "Platform Memory": "36864", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "SAP HANA on Azure Large Instances (second generation)", + "Virtual Machine": "S896om", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "896", + "Instance Memory": "24576", + "Platform vCPUs (highest vCPU possible)": "896", + "Platform Memory": "36864", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "SAP HANA on Azure Large Instances (second generation)", + "Virtual Machine": "S896oo", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "896", + "Instance Memory": "18432", + "Platform vCPUs (highest vCPU possible)": "896", + "Platform Memory": "36864", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "SAP HANA on Azure Large Instances (second generation)", + "Virtual Machine": "S896oom", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "896", + "Instance Memory": "36864", + "Platform vCPUs (highest vCPU possible)": "896", + "Platform Memory": "36864", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + }, + { + "Series": "SAP HANA on Azure Large Instances (second generation)", + "Virtual Machine": "S896ooo", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "896", + "Instance Memory": "30720", + "Platform vCPUs (highest vCPU possible)": "896", + "Platform Memory": "36864", + "Platform Storage Info (SSD?)": "", + "Platform Storage Type": "HDD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "", + "Platform GPU": "" + } +] diff --git a/src/lib/ccf/gcp-embodied.json b/src/lib/ccf/gcp-embodied.json index a48528004..3790f459b 100644 --- a/src/lib/ccf/gcp-embodied.json +++ b/src/lib/ccf/gcp-embodied.json @@ -1 +1,3049 @@ -[{"": "0", "family": "e2", "type": "e2-standard-2", "microarchitecture": "Skylake", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "1", "family": "e2", "type": "e2-standard-2", "microarchitecture": "Broadwell", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "2", "family": "e2", "type": "e2-standard-2", "microarchitecture": "Haswell", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "3", "family": "e2", "type": "e2-standard-2", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1155.46"}, {"": "4", "family": "e2", "type": "e2-standard-4", "microarchitecture": "Skylake", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "5", "family": "e2", "type": "e2-standard-4", "microarchitecture": "Broadwell", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "6", "family": "e2", "type": "e2-standard-4", "microarchitecture": "Haswell", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "7", "family": "e2", "type": "e2-standard-4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1155.46"}, {"": "8", "family": "e2", "type": "e2-standard-8", "microarchitecture": "Skylake", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "9", "family": "e2", "type": "e2-standard-8", "microarchitecture": "Broadwell", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "10", "family": "e2", "type": "e2-standard-8", "microarchitecture": "Haswell", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "11", "family": "e2", "type": "e2-standard-8", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1155.46"}, {"": "12", "family": "e2", "type": "e2-standard-16", "microarchitecture": "Skylake", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "13", "family": "e2", "type": "e2-standard-16", "microarchitecture": "Broadwell", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "14", "family": "e2", "type": "e2-standard-16", "microarchitecture": "Haswell", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "15", "family": "e2", "type": "e2-standard-16", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1155.46"}, {"": "16", "family": "e2", "type": "e2-standard-32", "microarchitecture": "Skylake", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "17", "family": "e2", "type": "e2-standard-32", "microarchitecture": "Broadwell", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "18", "family": "e2", "type": "e2-standard-32", "microarchitecture": "Haswell", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "19", "family": "e2", "type": "e2-standard-32", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1155.46"}, {"": "20", "family": "e2", "type": "e2-highmem-2", "microarchitecture": "Skylake", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "21", "family": "e2", "type": "e2-highmem-2", "microarchitecture": "Broadwell", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "22", "family": "e2", "type": "e2-highmem-2", "microarchitecture": "Haswell", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "23", "family": "e2", "type": "e2-highmem-2", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1155.46"}, {"": "24", "family": "e2", "type": "e2-highmem-4", "microarchitecture": "Skylake", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "25", "family": "e2", "type": "e2-highmem-4", "microarchitecture": "Broadwell", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "26", "family": "e2", "type": "e2-highmem-4", "microarchitecture": "Haswell", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "27", "family": "e2", "type": "e2-highmem-4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1155.46"}, {"": "28", "family": "e2", "type": "e2-highmem-8", "microarchitecture": "Skylake", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "29", "family": "e2", "type": "e2-highmem-8", "microarchitecture": "Broadwell", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "30", "family": "e2", "type": "e2-highmem-8", "microarchitecture": "Haswell", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "31", "family": "e2", "type": "e2-highmem-8", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1155.46"}, {"": "32", "family": "e2", "type": "e2-highmem-16", "microarchitecture": "Skylake", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "33", "family": "e2", "type": "e2-highmem-16", "microarchitecture": "Broadwell", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "34", "family": "e2", "type": "e2-highmem-16", "microarchitecture": "Haswell", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "35", "family": "e2", "type": "e2-highmem-16", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1155.46"}, {"": "36", "family": "e2", "type": "e2-highcpu-2", "microarchitecture": "Skylake", "additional_memory": "22.21", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1122.21"}, {"": "37", "family": "e2", "type": "e2-highcpu-2", "microarchitecture": "Broadwell", "additional_memory": "22.21", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1122.21"}, {"": "38", "family": "e2", "type": "e2-highcpu-2", "microarchitecture": "Haswell", "additional_memory": "22.21", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1122.21"}, {"": "39", "family": "e2", "type": "e2-highcpu-2", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "22.21", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1022.21"}, {"": "40", "family": "e2", "type": "e2-highcpu-4", "microarchitecture": "Skylake", "additional_memory": "22.21", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1122.21"}, {"": "41", "family": "e2", "type": "e2-highcpu-4", "microarchitecture": "Broadwell", "additional_memory": "22.21", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1122.21"}, {"": "42", "family": "e2", "type": "e2-highcpu-4", "microarchitecture": "Haswell", "additional_memory": "22.21", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1122.21"}, {"": "43", "family": "e2", "type": "e2-highcpu-4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "22.21", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1022.21"}, {"": "44", "family": "e2", "type": "e2-highcpu-8", "microarchitecture": "Skylake", "additional_memory": "22.21", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1122.21"}, {"": "45", "family": "e2", "type": "e2-highcpu-8", "microarchitecture": "Broadwell", "additional_memory": "22.21", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1122.21"}, {"": "46", "family": "e2", "type": "e2-highcpu-8", "microarchitecture": "Haswell", "additional_memory": "22.21", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1122.21"}, {"": "47", "family": "e2", "type": "e2-highcpu-8", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "22.21", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1022.21"}, {"": "48", "family": "e2", "type": "e2-highcpu-16", "microarchitecture": "Skylake", "additional_memory": "22.21", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1122.21"}, {"": "49", "family": "e2", "type": "e2-highcpu-16", "microarchitecture": "Broadwell", "additional_memory": "22.21", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1122.21"}, {"": "50", "family": "e2", "type": "e2-highcpu-16", "microarchitecture": "Haswell", "additional_memory": "22.21", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1122.21"}, {"": "51", "family": "e2", "type": "e2-highcpu-16", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "22.21", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1022.21"}, {"": "52", "family": "e2", "type": "e2-highcpu-32", "microarchitecture": "Skylake", "additional_memory": "22.21", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1122.21"}, {"": "53", "family": "e2", "type": "e2-highcpu-32", "microarchitecture": "Broadwell", "additional_memory": "22.21", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1122.21"}, {"": "54", "family": "e2", "type": "e2-highcpu-32", "microarchitecture": "Haswell", "additional_memory": "22.21", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1122.21"}, {"": "55", "family": "e2", "type": "e2-highcpu-32", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "22.21", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1022.21"}, {"": "56", "family": "e2 Shared-core", "type": "e2-micro", "microarchitecture": "Skylake", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "57", "family": "e2 Shared-core", "type": "e2-micro", "microarchitecture": "Broadwell", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "58", "family": "e2 Shared-core", "type": "e2-micro", "microarchitecture": "Haswell", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "59", "family": "e2 Shared-core", "type": "e2-micro", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1155.46"}, {"": "60", "family": "e2 Shared-core", "type": "e2-small", "microarchitecture": "Skylake", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "61", "family": "e2 Shared-core", "type": "e2-small", "microarchitecture": "Broadwell", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "62", "family": "e2 Shared-core", "type": "e2-small", "microarchitecture": "Haswell", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "63", "family": "e2 Shared-core", "type": "e2-small", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1155.46"}, {"": "64", "family": "e2 Shared-core", "type": "e2-medium", "microarchitecture": "Skylake", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "65", "family": "e2 Shared-core", "type": "e2-medium", "microarchitecture": "Broadwell", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "66", "family": "e2 Shared-core", "type": "e2-medium", "microarchitecture": "Haswell", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1255.46"}, {"": "67", "family": "e2 Shared-core", "type": "e2-medium", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "155.46", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1155.46"}, {"": "68", "family": "n2", "type": "n2-standard-2", "microarchitecture": "Cascade Lake", "additional_memory": "688.46", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1888.46"}, {"": "69", "family": "n2", "type": "n2-standard-4", "microarchitecture": "Cascade Lake", "additional_memory": "688.46", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1888.46"}, {"": "70", "family": "n2", "type": "n2-standard-8", "microarchitecture": "Cascade Lake", "additional_memory": "688.46", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1888.46"}, {"": "71", "family": "n2", "type": "n2-standard-16", "microarchitecture": "Cascade Lake", "additional_memory": "688.46", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1888.46"}, {"": "72", "family": "n2", "type": "n2-standard-32", "microarchitecture": "Cascade Lake", "additional_memory": "688.46", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1888.46"}, {"": "73", "family": "n2", "type": "n2-standard-48", "microarchitecture": "Cascade Lake", "additional_memory": "688.46", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1888.46"}, {"": "74", "family": "n2", "type": "n2-standard-64", "microarchitecture": "Cascade Lake", "additional_memory": "688.46", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1888.46"}, {"": "75", "family": "n2", "type": "n2-standard-80", "microarchitecture": "Cascade Lake", "additional_memory": "688.46", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1888.46"}, {"": "76", "family": "n2", "type": "n2-standard-96", "microarchitecture": "Cascade Lake", "additional_memory": "688.46", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1888.46"}, {"": "77", "family": "n2", "type": "n2-standard-128", "microarchitecture": "Cascade Lake", "additional_memory": "688.46", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1888.46"}, {"": "78", "family": "n2", "type": "n2-highmem-2", "microarchitecture": "Cascade Lake", "additional_memory": "1177.04", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2377.04"}, {"": "79", "family": "n2", "type": "n2-highmem-4", "microarchitecture": "Cascade Lake", "additional_memory": "1177.04", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2377.04"}, {"": "80", "family": "n2", "type": "n2-highmem-8", "microarchitecture": "Cascade Lake", "additional_memory": "1177.04", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2377.04"}, {"": "81", "family": "n2", "type": "n2-highmem-16", "microarchitecture": "Cascade Lake", "additional_memory": "1177.04", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2377.04"}, {"": "82", "family": "n2", "type": "n2-highmem-32", "microarchitecture": "Cascade Lake", "additional_memory": "1177.04", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2377.04"}, {"": "83", "family": "n2", "type": "n2-highmem-48", "microarchitecture": "Cascade Lake", "additional_memory": "1177.04", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2377.04"}, {"": "84", "family": "n2", "type": "n2-highmem-64", "microarchitecture": "Cascade Lake", "additional_memory": "1177.04", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2377.04"}, {"": "85", "family": "n2", "type": "n2-highmem-80", "microarchitecture": "Cascade Lake", "additional_memory": "1177.04", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2377.04"}, {"": "86", "family": "n2", "type": "n2-highmem-96", "microarchitecture": "Cascade Lake", "additional_memory": "1177.04", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2377.04"}, {"": "87", "family": "n2", "type": "n2-highmem-128", "microarchitecture": "Cascade Lake", "additional_memory": "1177.04", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2377.04"}, {"": "88", "family": "n2", "type": "n2-highcpu-2", "microarchitecture": "Cascade Lake", "additional_memory": "111.04", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1311.04"}, {"": "89", "family": "n2", "type": "n2-highcpu-4", "microarchitecture": "Cascade Lake", "additional_memory": "111.04", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1311.04"}, {"": "90", "family": "n2", "type": "n2-highcpu-8", "microarchitecture": "Cascade Lake", "additional_memory": "111.04", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1311.04"}, {"": "91", "family": "n2", "type": "n2-highcpu-16", "microarchitecture": "Cascade Lake", "additional_memory": "111.04", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1311.04"}, {"": "92", "family": "n2", "type": "n2-highcpu-32", "microarchitecture": "Cascade Lake", "additional_memory": "111.04", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1311.04"}, {"": "93", "family": "n2", "type": "n2-highcpu-48", "microarchitecture": "Cascade Lake", "additional_memory": "111.04", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1311.04"}, {"": "94", "family": "n2", "type": "n2-highcpu-64", "microarchitecture": "Cascade Lake", "additional_memory": "111.04", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1311.04"}, {"": "95", "family": "n2", "type": "n2-highcpu-80", "microarchitecture": "Cascade Lake", "additional_memory": "111.04", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1311.04"}, {"": "96", "family": "n2", "type": "n2-highcpu-96", "microarchitecture": "Cascade Lake", "additional_memory": "111.04", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1311.04"}, {"": "97", "family": "n2d", "type": "n2d-standard-2", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "1221.46", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2321.46"}, {"": "98", "family": "n2d", "type": "n2d-standard-4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "1221.46", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2321.46"}, {"": "99", "family": "n2d", "type": "n2d-standard-8", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "1221.46", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2321.46"}, {"": "100", "family": "n2d", "type": "n2d-standard-16", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "1221.46", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2321.46"}, {"": "101", "family": "n2d", "type": "n2d-standard-32", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "1221.46", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2321.46"}, {"": "102", "family": "n2d", "type": "n2d-standard-48", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "1221.46", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2321.46"}, {"": "103", "family": "n2d", "type": "n2d-standard-64", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "1221.46", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2321.46"}, {"": "104", "family": "n2d", "type": "n2d-standard-80", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "1221.46", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2321.46"}, {"": "105", "family": "n2d", "type": "n2d-standard-96", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "1221.46", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2321.46"}, {"": "106", "family": "n2d", "type": "n2d-standard-128", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "1221.46", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2321.46"}, {"": "107", "family": "n2d", "type": "n2d-standard-224", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "1221.46", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2321.46"}, {"": "108", "family": "n2d", "type": "n2d-highmem-2", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "1043.79", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "109", "family": "n2d", "type": "n2d-highmem-4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "1043.79", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "110", "family": "n2d", "type": "n2d-highmem-8", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "1043.79", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "111", "family": "n2d", "type": "n2d-highmem-16", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "1043.79", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "112", "family": "n2d", "type": "n2d-highmem-32", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "1043.79", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "113", "family": "n2d", "type": "n2d-highmem-48", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "1043.79", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "114", "family": "n2d", "type": "n2d-highmem-64", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "1043.79", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "115", "family": "n2d", "type": "n2d-highmem-80", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "1043.79", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "116", "family": "n2d", "type": "n2d-highmem-96", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "1043.79", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "2143.79"}, {"": "117", "family": "n2d", "type": "n2d-highcpu-2", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "288.71", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1388.71"}, {"": "118", "family": "n2d", "type": "n2d-highcpu-4", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "288.71", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1388.71"}, {"": "119", "family": "n2d", "type": "n2d-highcpu-8", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "288.71", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1388.71"}, {"": "120", "family": "n2d", "type": "n2d-highcpu-16", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "288.71", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1388.71"}, {"": "121", "family": "n2d", "type": "n2d-highcpu-32", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "288.71", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1388.71"}, {"": "122", "family": "n2d", "type": "n2d-highcpu-48", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "288.71", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1388.71"}, {"": "123", "family": "n2d", "type": "n2d-highcpu-64", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "288.71", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1388.71"}, {"": "124", "family": "n2d", "type": "n2d-highcpu-80", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "288.71", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1388.71"}, {"": "125", "family": "n2d", "type": "n2d-highcpu-96", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "288.71", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1388.71"}, {"": "126", "family": "n2d", "type": "n2d-highcpu-128", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "288.71", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1388.71"}, {"": "127", "family": "n2d", "type": "n2d-highcpu-224", "microarchitecture": "EPYC 2nd Gen", "additional_memory": "288.71", "additional_storage": "100.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1388.71"}, {"": "128", "family": "t2d", "type": "t2d-standard-1", "microarchitecture": "EPYC 3rd Gen", "additional_memory": "310.92", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1310.92"}, {"": "129", "family": "t2d", "type": "t2d-standard-2", "microarchitecture": "EPYC 3rd Gen", "additional_memory": "310.92", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1310.92"}, {"": "130", "family": "t2d", "type": "t2d-standard-4", "microarchitecture": "EPYC 3rd Gen", "additional_memory": "310.92", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1310.92"}, {"": "131", "family": "t2d", "type": "t2d-standard-8", "microarchitecture": "EPYC 3rd Gen", "additional_memory": "310.92", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1310.92"}, {"": "132", "family": "t2d", "type": "t2d-standard-16", "microarchitecture": "EPYC 3rd Gen", "additional_memory": "310.92", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1310.92"}, {"": "133", "family": "t2d", "type": "t2d-standard-32", "microarchitecture": "EPYC 3rd Gen", "additional_memory": "310.92", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1310.92"}, {"": "134", "family": "t2d", "type": "t2d-standard-48", "microarchitecture": "EPYC 3rd Gen", "additional_memory": "310.92", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1310.92"}, {"": "135", "family": "t2d", "type": "t2d-standard-60", "microarchitecture": "EPYC 3rd Gen", "additional_memory": "310.92", "additional_storage": "0.0", "additional_cpus": "0.0", "additional_gpus": "0.0", "total": "1310.92"}, {"": "136", "family": "n1", "type": "n1-standard-1", "microarchitecture": "Skylake", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "137", "family": "n1", "type": "n1-standard-1", "microarchitecture": "Broadwell", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "138", "family": "n1", "type": "n1-standard-1", "microarchitecture": "Haswell", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "139", "family": "n1", "type": "n1-standard-1", "microarchitecture": "Ivy Bridge", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "140", "family": "n1", "type": "n1-standard-1", "microarchitecture": "Sandy Bridge", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "141", "family": "n1", "type": "n1-standard-2", "microarchitecture": "Skylake", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "142", "family": "n1", "type": "n1-standard-2", "microarchitecture": "Broadwell", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "143", "family": "n1", "type": "n1-standard-2", "microarchitecture": "Haswell", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "144", "family": "n1", "type": "n1-standard-2", "microarchitecture": "Ivy Bridge", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "145", "family": "n1", "type": "n1-standard-2", "microarchitecture": "Sandy Bridge", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "146", "family": "n1", "type": "n1-standard-4", "microarchitecture": "Skylake", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "147", "family": "n1", "type": "n1-standard-4", "microarchitecture": "Broadwell", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "148", "family": "n1", "type": "n1-standard-4", "microarchitecture": "Haswell", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "149", "family": "n1", "type": "n1-standard-4", "microarchitecture": "Ivy Bridge", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "150", "family": "n1", "type": "n1-standard-4", "microarchitecture": "Sandy Bridge", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "151", "family": "n1", "type": "n1-standard-8", "microarchitecture": "Skylake", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "152", "family": "n1", "type": "n1-standard-8", "microarchitecture": "Broadwell", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "153", "family": "n1", "type": "n1-standard-8", "microarchitecture": "Haswell", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "154", "family": "n1", "type": "n1-standard-8", "microarchitecture": "Ivy Bridge", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "155", "family": "n1", "type": "n1-standard-8", "microarchitecture": "Sandy Bridge", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "156", "family": "n1", "type": "n1-standard-16", "microarchitecture": "Skylake", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "157", "family": "n1", "type": "n1-standard-16", "microarchitecture": "Broadwell", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "158", "family": "n1", "type": "n1-standard-16", "microarchitecture": "Haswell", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "159", "family": "n1", "type": "n1-standard-16", "microarchitecture": "Ivy Bridge", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "160", "family": "n1", "type": "n1-standard-16", "microarchitecture": "Sandy Bridge", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "161", "family": "n1", "type": "n1-standard-32", "microarchitecture": "Skylake", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "162", "family": "n1", "type": "n1-standard-32", "microarchitecture": "Broadwell", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "163", "family": "n1", "type": "n1-standard-32", "microarchitecture": "Haswell", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "164", "family": "n1", "type": "n1-standard-32", "microarchitecture": "Ivy Bridge", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "165", "family": "n1", "type": "n1-standard-32", "microarchitecture": "Sandy Bridge", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "166", "family": "n1", "type": "n1-standard-64", "microarchitecture": "Skylake", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "167", "family": "n1", "type": "n1-standard-64", "microarchitecture": "Broadwell", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "168", "family": "n1", "type": "n1-standard-64", "microarchitecture": "Haswell", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "169", "family": "n1", "type": "n1-standard-64", "microarchitecture": "Ivy Bridge", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "170", "family": "n1", "type": "n1-standard-64", "microarchitecture": "Sandy Bridge", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "171", "family": "n1", "type": "n1-standard-96", "microarchitecture": "Skylake", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "172", "family": "n1", "type": "n1-standard-96", "microarchitecture": "Broadwell", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "173", "family": "n1", "type": "n1-standard-96", "microarchitecture": "Haswell", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "174", "family": "n1", "type": "n1-standard-96", "microarchitecture": "Ivy Bridge", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "175", "family": "n1", "type": "n1-standard-96", "microarchitecture": "Sandy Bridge", "additional_memory": "477.48", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1677.48"}, {"": "176", "family": "n1", "type": "n1-highmem-2", "microarchitecture": "Skylake", "additional_memory": "843.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2043.92"}, {"": "177", "family": "n1", "type": "n1-highmem-2", "microarchitecture": "Broadwell", "additional_memory": "843.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2043.92"}, {"": "178", "family": "n1", "type": "n1-highmem-2", "microarchitecture": "Haswell", "additional_memory": "843.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2043.92"}, {"": "179", "family": "n1", "type": "n1-highmem-2", "microarchitecture": "Ivy Bridge", "additional_memory": "843.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2043.92"}, {"": "180", "family": "n1", "type": "n1-highmem-2", "microarchitecture": "Sandy Bridge", "additional_memory": "843.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2043.92"}, {"": "181", "family": "n1", "type": "n1-highmem-4", "microarchitecture": "Skylake", "additional_memory": "843.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2043.92"}, {"": "182", "family": "n1", "type": "n1-highmem-4", "microarchitecture": "Broadwell", "additional_memory": "843.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2043.92"}, {"": "183", "family": "n1", "type": "n1-highmem-4", "microarchitecture": "Haswell", "additional_memory": "843.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2043.92"}, {"": "184", "family": "n1", "type": "n1-highmem-4", "microarchitecture": "Ivy Bridge", "additional_memory": "843.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2043.92"}, {"": "185", "family": "n1", "type": "n1-highmem-4", "microarchitecture": "Sandy Bridge", "additional_memory": "843.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2043.92"}, {"": "186", "family": "n1", "type": "n1-highmem-8", "microarchitecture": "Skylake", "additional_memory": "843.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2043.92"}, {"": "187", "family": "n1", "type": "n1-highmem-8", "microarchitecture": "Broadwell", "additional_memory": "843.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2043.92"}, {"": "188", "family": "n1", "type": "n1-highmem-8", "microarchitecture": "Haswell", "additional_memory": "843.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2043.92"}, {"": "189", "family": "n1", "type": "n1-highmem-8", "microarchitecture": "Ivy Bridge", "additional_memory": "843.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2043.92"}, {"": "190", "family": "n1", "type": "n1-highmem-8", "microarchitecture": "Sandy Bridge", "additional_memory": "843.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2043.92"}, {"": "191", "family": "n1", "type": "n1-highmem-16", "microarchitecture": "Skylake", "additional_memory": "843.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2043.92"}, {"": "192", "family": "n1", "type": "n1-highmem-16", "microarchitecture": "Broadwell", "additional_memory": "843.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2043.92"}, {"": "193", "family": "n1", "type": "n1-highmem-16", "microarchitecture": "Haswell", "additional_memory": "843.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2043.92"}, {"": "194", "family": "n1", "type": "n1-highmem-16", "microarchitecture": "Ivy Bridge", "additional_memory": "843.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2043.92"}, {"": "195", "family": "n1", "type": "n1-highmem-16", "microarchitecture": "Sandy Bridge", "additional_memory": "843.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2043.92"}, {"": "196", "family": "n1", "type": "n1-highmem-32", "microarchitecture": "Skylake", "additional_memory": "843.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2043.92"}, {"": "197", "family": "n1", "type": "n1-highmem-32", "microarchitecture": "Broadwell", "additional_memory": "843.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2043.92"}, {"": "198", "family": "n1", "type": "n1-highmem-32", "microarchitecture": "Haswell", "additional_memory": "843.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2043.92"}, {"": "199", "family": "n1", "type": "n1-highmem-32", "microarchitecture": "Ivy Bridge", "additional_memory": "843.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2043.92"}, {"": "200", "family": "n1", "type": "n1-highmem-32", "microarchitecture": "Sandy Bridge", "additional_memory": "843.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2043.92"}, {"": "201", "family": "n1", "type": "n1-highmem-64", "microarchitecture": "Skylake", "additional_memory": "843.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2043.92"}, {"": "202", "family": "n1", "type": "n1-highmem-64", "microarchitecture": "Broadwell", "additional_memory": "843.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2043.92"}, {"": "203", "family": "n1", "type": "n1-highmem-64", "microarchitecture": "Haswell", "additional_memory": "843.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2043.92"}, {"": "204", "family": "n1", "type": "n1-highmem-64", "microarchitecture": "Ivy Bridge", "additional_memory": "843.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2043.92"}, {"": "205", "family": "n1", "type": "n1-highmem-64", "microarchitecture": "Sandy Bridge", "additional_memory": "843.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2043.92"}, {"": "206", "family": "n1", "type": "n1-highmem-96", "microarchitecture": "Skylake", "additional_memory": "843.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2043.92"}, {"": "207", "family": "n1", "type": "n1-highmem-96", "microarchitecture": "Broadwell", "additional_memory": "843.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2043.92"}, {"": "208", "family": "n1", "type": "n1-highmem-96", "microarchitecture": "Haswell", "additional_memory": "843.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2043.92"}, {"": "209", "family": "n1", "type": "n1-highmem-96", "microarchitecture": "Ivy Bridge", "additional_memory": "843.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2043.92"}, {"": "210", "family": "n1", "type": "n1-highmem-96", "microarchitecture": "Sandy Bridge", "additional_memory": "843.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "2043.92"}, {"": "211", "family": "n1", "type": "n1-highcpu-2", "microarchitecture": "Skylake", "additional_memory": "97.72", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1297.72"}, {"": "212", "family": "n1", "type": "n1-highcpu-2", "microarchitecture": "Broadwell", "additional_memory": "97.72", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1297.72"}, {"": "213", "family": "n1", "type": "n1-highcpu-2", "microarchitecture": "Haswell", "additional_memory": "97.72", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1297.72"}, {"": "214", "family": "n1", "type": "n1-highcpu-2", "microarchitecture": "Ivy Bridge", "additional_memory": "97.72", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1297.72"}, {"": "215", "family": "n1", "type": "n1-highcpu-2", "microarchitecture": "Sandy Bridge", "additional_memory": "97.72", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1297.72"}, {"": "216", "family": "n1", "type": "n1-highcpu-4", "microarchitecture": "Skylake", "additional_memory": "97.72", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1297.72"}, {"": "217", "family": "n1", "type": "n1-highcpu-4", "microarchitecture": "Broadwell", "additional_memory": "97.72", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1297.72"}, {"": "218", "family": "n1", "type": "n1-highcpu-4", "microarchitecture": "Haswell", "additional_memory": "97.72", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1297.72"}, {"": "219", "family": "n1", "type": "n1-highcpu-4", "microarchitecture": "Ivy Bridge", "additional_memory": "97.72", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1297.72"}, {"": "220", "family": "n1", "type": "n1-highcpu-4", "microarchitecture": "Sandy Bridge", "additional_memory": "97.72", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1297.72"}, {"": "221", "family": "n1", "type": "n1-highcpu-8", "microarchitecture": "Skylake", "additional_memory": "97.72", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1297.72"}, {"": "222", "family": "n1", "type": "n1-highcpu-8", "microarchitecture": "Broadwell", "additional_memory": "97.72", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1297.72"}, {"": "223", "family": "n1", "type": "n1-highcpu-8", "microarchitecture": "Haswell", "additional_memory": "97.72", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1297.72"}, {"": "224", "family": "n1", "type": "n1-highcpu-8", "microarchitecture": "Ivy Bridge", "additional_memory": "97.72", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1297.72"}, {"": "225", "family": "n1", "type": "n1-highcpu-8", "microarchitecture": "Sandy Bridge", "additional_memory": "97.72", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1297.72"}, {"": "226", "family": "n1", "type": "n1-highcpu-16", "microarchitecture": "Skylake", "additional_memory": "97.72", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1297.72"}, {"": "227", "family": "n1", "type": "n1-highcpu-16", "microarchitecture": "Broadwell", "additional_memory": "97.72", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1297.72"}, {"": "228", "family": "n1", "type": "n1-highcpu-16", "microarchitecture": "Haswell", "additional_memory": "97.72", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1297.72"}, {"": "229", "family": "n1", "type": "n1-highcpu-16", "microarchitecture": "Ivy Bridge", "additional_memory": "97.72", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1297.72"}, {"": "230", "family": "n1", "type": "n1-highcpu-16", "microarchitecture": "Sandy Bridge", "additional_memory": "97.72", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1297.72"}, {"": "231", "family": "n1", "type": "n1-highcpu-32", "microarchitecture": "Skylake", "additional_memory": "97.72", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1297.72"}, {"": "232", "family": "n1", "type": "n1-highcpu-32", "microarchitecture": "Broadwell", "additional_memory": "97.72", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1297.72"}, {"": "233", "family": "n1", "type": "n1-highcpu-32", "microarchitecture": "Haswell", "additional_memory": "97.72", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1297.72"}, {"": "234", "family": "n1", "type": "n1-highcpu-32", "microarchitecture": "Ivy Bridge", "additional_memory": "97.72", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1297.72"}, {"": "235", "family": "n1", "type": "n1-highcpu-32", "microarchitecture": "Sandy Bridge", "additional_memory": "97.72", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1297.72"}, {"": "236", "family": "n1", "type": "n1-highcpu-64", "microarchitecture": "Skylake", "additional_memory": "97.72", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1297.72"}, {"": "237", "family": "n1", "type": "n1-highcpu-64", "microarchitecture": "Broadwell", "additional_memory": "97.72", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1297.72"}, {"": "238", "family": "n1", "type": "n1-highcpu-64", "microarchitecture": "Haswell", "additional_memory": "97.72", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1297.72"}, {"": "239", "family": "n1", "type": "n1-highcpu-64", "microarchitecture": "Ivy Bridge", "additional_memory": "97.72", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1297.72"}, {"": "240", "family": "n1", "type": "n1-highcpu-64", "microarchitecture": "Sandy Bridge", "additional_memory": "97.72", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1297.72"}, {"": "241", "family": "n1", "type": "n1-highcpu-96", "microarchitecture": "Skylake", "additional_memory": "97.72", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1297.72"}, {"": "242", "family": "n1", "type": "n1-highcpu-96", "microarchitecture": "Broadwell", "additional_memory": "97.72", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1297.72"}, {"": "243", "family": "n1", "type": "n1-highcpu-96", "microarchitecture": "Haswell", "additional_memory": "97.72", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1297.72"}, {"": "244", "family": "n1", "type": "n1-highcpu-96", "microarchitecture": "Ivy Bridge", "additional_memory": "97.72", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1297.72"}, {"": "245", "family": "n1", "type": "n1-highcpu-96", "microarchitecture": "Sandy Bridge", "additional_memory": "97.72", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1297.72"}, {"": "246", "family": "n1 Shared-core", "type": "f1-micro", "microarchitecture": "Skylake", "additional_memory": "477.48", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1577.48"}, {"": "247", "family": "n1 Shared-core", "type": "f1-micro", "microarchitecture": "Broadwell", "additional_memory": "477.48", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1577.48"}, {"": "248", "family": "n1 Shared-core", "type": "f1-micro", "microarchitecture": "Haswell", "additional_memory": "477.48", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1577.48"}, {"": "249", "family": "n1 Shared-core", "type": "f1-micro", "microarchitecture": "Ivy Bridge", "additional_memory": "477.48", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1577.48"}, {"": "250", "family": "n1 Shared-core", "type": "f1-micro", "microarchitecture": "Sandy Bridge", "additional_memory": "477.48", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1577.48"}, {"": "251", "family": "n1 Shared-core", "type": "g1-small", "microarchitecture": "Skylake", "additional_memory": "477.48", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1577.48"}, {"": "252", "family": "n1 Shared-core", "type": "g1-small", "microarchitecture": "Broadwell", "additional_memory": "477.48", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1577.48"}, {"": "253", "family": "n1 Shared-core", "type": "g1-small", "microarchitecture": "Haswell", "additional_memory": "477.48", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1577.48"}, {"": "254", "family": "n1 Shared-core", "type": "g1-small", "microarchitecture": "Ivy Bridge", "additional_memory": "477.48", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1577.48"}, {"": "255", "family": "n1 Shared-core", "type": "g1-small", "microarchitecture": "Sandy Bridge", "additional_memory": "477.48", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1577.48"}, {"": "256", "family": "Compute-optimized", "type": "c2-standard-4", "microarchitecture": "Cascade Lake", "additional_memory": "310.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1510.92"}, {"": "257", "family": "Compute-optimized", "type": "c2-standard-8", "microarchitecture": "Cascade Lake", "additional_memory": "310.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1510.92"}, {"": "258", "family": "Compute-optimized", "type": "c2-standard-16", "microarchitecture": "Cascade Lake", "additional_memory": "310.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1510.92"}, {"": "259", "family": "Compute-optimized", "type": "c2-standard-30", "microarchitecture": "Cascade Lake", "additional_memory": "310.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1510.92"}, {"": "260", "family": "Compute-optimized", "type": "c2-standard-60", "microarchitecture": "Cascade Lake", "additional_memory": "310.92", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1510.92"}, {"": "261", "family": "m1", "type": "m1-ultramem-40", "microarchitecture": "Skylake", "additional_memory": "1967.66", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "3067.66"}, {"": "262", "family": "m1", "type": "m1-ultramem-40", "microarchitecture": "Broadwell", "additional_memory": "1967.66", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "3067.66"}, {"": "263", "family": "m1", "type": "m1-ultramem-80", "microarchitecture": "Skylake", "additional_memory": "1967.66", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "3067.66"}, {"": "264", "family": "m1", "type": "m1-ultramem-80", "microarchitecture": "Broadwell", "additional_memory": "1967.66", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "3067.66"}, {"": "265", "family": "m1", "type": "m1-ultramem-160", "microarchitecture": "Skylake", "additional_memory": "1967.66", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "3067.66"}, {"": "266", "family": "m1", "type": "m1-ultramem-160", "microarchitecture": "Broadwell", "additional_memory": "1967.66", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "3067.66"}, {"": "267", "family": "m1", "type": "m1-megamem-96", "microarchitecture": "Skylake", "additional_memory": "1967.66", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "3167.66"}, {"": "268", "family": "m1", "type": "m1-megamem-96", "microarchitecture": "Broadwell", "additional_memory": "1967.66", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "3167.66"}, {"": "269", "family": "m2", "type": "m2-ultramem-208", "microarchitecture": "Cascade Lake", "additional_memory": "0.0", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1100.0"}, {"": "270", "family": "m2", "type": "m2-ultramem-416", "microarchitecture": "Cascade Lake", "additional_memory": "0.0", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1100.0"}, {"": "271", "family": "m2", "type": "m2-megamem-416", "microarchitecture": "Cascade Lake", "additional_memory": "0.0", "additional_storage": "0.0", "additional_cpus": "100.0", "additional_gpus": "0.0", "total": "1100.0"}, {"": "272", "family": "Accelorator-optimized highgpu", "type": "a2-highgpu-1g", "microarchitecture": "Cascade Lake", "additional_memory": "1865.5", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "2400.0", "total": "5465.5"}, {"": "273", "family": "Accelorator-optimized highgpu", "type": "a2-highgpu-2g", "microarchitecture": "Cascade Lake", "additional_memory": "1865.5", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "2400.0", "total": "5465.5"}, {"": "274", "family": "Accelorator-optimized highgpu", "type": "a2-highgpu-4g", "microarchitecture": "Cascade Lake", "additional_memory": "1865.5", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "2400.0", "total": "5465.5"}, {"": "275", "family": "Accelorator-optimized highgpu", "type": "a2-highgpu-8g", "microarchitecture": "Cascade Lake", "additional_memory": "1865.5", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "2400.0", "total": "5465.5"}, {"": "276", "family": "Accelorator-optimized megagpu", "type": "a2-megagpu-16g", "microarchitecture": "Cascade Lake", "additional_memory": "1865.5", "additional_storage": "100.0", "additional_cpus": "100.0", "additional_gpus": "2400.0", "total": "5465.5"}] +[ + { + "": "0", + "family": "e2", + "type": "e2-standard-2", + "microarchitecture": "Skylake", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "1", + "family": "e2", + "type": "e2-standard-2", + "microarchitecture": "Broadwell", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "2", + "family": "e2", + "type": "e2-standard-2", + "microarchitecture": "Haswell", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "3", + "family": "e2", + "type": "e2-standard-2", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1155.46" + }, + { + "": "4", + "family": "e2", + "type": "e2-standard-4", + "microarchitecture": "Skylake", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "5", + "family": "e2", + "type": "e2-standard-4", + "microarchitecture": "Broadwell", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "6", + "family": "e2", + "type": "e2-standard-4", + "microarchitecture": "Haswell", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "7", + "family": "e2", + "type": "e2-standard-4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1155.46" + }, + { + "": "8", + "family": "e2", + "type": "e2-standard-8", + "microarchitecture": "Skylake", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "9", + "family": "e2", + "type": "e2-standard-8", + "microarchitecture": "Broadwell", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "10", + "family": "e2", + "type": "e2-standard-8", + "microarchitecture": "Haswell", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "11", + "family": "e2", + "type": "e2-standard-8", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1155.46" + }, + { + "": "12", + "family": "e2", + "type": "e2-standard-16", + "microarchitecture": "Skylake", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "13", + "family": "e2", + "type": "e2-standard-16", + "microarchitecture": "Broadwell", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "14", + "family": "e2", + "type": "e2-standard-16", + "microarchitecture": "Haswell", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "15", + "family": "e2", + "type": "e2-standard-16", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1155.46" + }, + { + "": "16", + "family": "e2", + "type": "e2-standard-32", + "microarchitecture": "Skylake", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "17", + "family": "e2", + "type": "e2-standard-32", + "microarchitecture": "Broadwell", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "18", + "family": "e2", + "type": "e2-standard-32", + "microarchitecture": "Haswell", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "19", + "family": "e2", + "type": "e2-standard-32", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1155.46" + }, + { + "": "20", + "family": "e2", + "type": "e2-highmem-2", + "microarchitecture": "Skylake", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "21", + "family": "e2", + "type": "e2-highmem-2", + "microarchitecture": "Broadwell", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "22", + "family": "e2", + "type": "e2-highmem-2", + "microarchitecture": "Haswell", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "23", + "family": "e2", + "type": "e2-highmem-2", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1155.46" + }, + { + "": "24", + "family": "e2", + "type": "e2-highmem-4", + "microarchitecture": "Skylake", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "25", + "family": "e2", + "type": "e2-highmem-4", + "microarchitecture": "Broadwell", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "26", + "family": "e2", + "type": "e2-highmem-4", + "microarchitecture": "Haswell", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "27", + "family": "e2", + "type": "e2-highmem-4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1155.46" + }, + { + "": "28", + "family": "e2", + "type": "e2-highmem-8", + "microarchitecture": "Skylake", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "29", + "family": "e2", + "type": "e2-highmem-8", + "microarchitecture": "Broadwell", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "30", + "family": "e2", + "type": "e2-highmem-8", + "microarchitecture": "Haswell", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "31", + "family": "e2", + "type": "e2-highmem-8", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1155.46" + }, + { + "": "32", + "family": "e2", + "type": "e2-highmem-16", + "microarchitecture": "Skylake", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "33", + "family": "e2", + "type": "e2-highmem-16", + "microarchitecture": "Broadwell", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "34", + "family": "e2", + "type": "e2-highmem-16", + "microarchitecture": "Haswell", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "35", + "family": "e2", + "type": "e2-highmem-16", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1155.46" + }, + { + "": "36", + "family": "e2", + "type": "e2-highcpu-2", + "microarchitecture": "Skylake", + "additional_memory": "22.21", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1122.21" + }, + { + "": "37", + "family": "e2", + "type": "e2-highcpu-2", + "microarchitecture": "Broadwell", + "additional_memory": "22.21", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1122.21" + }, + { + "": "38", + "family": "e2", + "type": "e2-highcpu-2", + "microarchitecture": "Haswell", + "additional_memory": "22.21", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1122.21" + }, + { + "": "39", + "family": "e2", + "type": "e2-highcpu-2", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "22.21", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1022.21" + }, + { + "": "40", + "family": "e2", + "type": "e2-highcpu-4", + "microarchitecture": "Skylake", + "additional_memory": "22.21", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1122.21" + }, + { + "": "41", + "family": "e2", + "type": "e2-highcpu-4", + "microarchitecture": "Broadwell", + "additional_memory": "22.21", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1122.21" + }, + { + "": "42", + "family": "e2", + "type": "e2-highcpu-4", + "microarchitecture": "Haswell", + "additional_memory": "22.21", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1122.21" + }, + { + "": "43", + "family": "e2", + "type": "e2-highcpu-4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "22.21", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1022.21" + }, + { + "": "44", + "family": "e2", + "type": "e2-highcpu-8", + "microarchitecture": "Skylake", + "additional_memory": "22.21", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1122.21" + }, + { + "": "45", + "family": "e2", + "type": "e2-highcpu-8", + "microarchitecture": "Broadwell", + "additional_memory": "22.21", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1122.21" + }, + { + "": "46", + "family": "e2", + "type": "e2-highcpu-8", + "microarchitecture": "Haswell", + "additional_memory": "22.21", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1122.21" + }, + { + "": "47", + "family": "e2", + "type": "e2-highcpu-8", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "22.21", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1022.21" + }, + { + "": "48", + "family": "e2", + "type": "e2-highcpu-16", + "microarchitecture": "Skylake", + "additional_memory": "22.21", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1122.21" + }, + { + "": "49", + "family": "e2", + "type": "e2-highcpu-16", + "microarchitecture": "Broadwell", + "additional_memory": "22.21", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1122.21" + }, + { + "": "50", + "family": "e2", + "type": "e2-highcpu-16", + "microarchitecture": "Haswell", + "additional_memory": "22.21", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1122.21" + }, + { + "": "51", + "family": "e2", + "type": "e2-highcpu-16", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "22.21", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1022.21" + }, + { + "": "52", + "family": "e2", + "type": "e2-highcpu-32", + "microarchitecture": "Skylake", + "additional_memory": "22.21", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1122.21" + }, + { + "": "53", + "family": "e2", + "type": "e2-highcpu-32", + "microarchitecture": "Broadwell", + "additional_memory": "22.21", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1122.21" + }, + { + "": "54", + "family": "e2", + "type": "e2-highcpu-32", + "microarchitecture": "Haswell", + "additional_memory": "22.21", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1122.21" + }, + { + "": "55", + "family": "e2", + "type": "e2-highcpu-32", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "22.21", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1022.21" + }, + { + "": "56", + "family": "e2 Shared-core", + "type": "e2-micro", + "microarchitecture": "Skylake", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "57", + "family": "e2 Shared-core", + "type": "e2-micro", + "microarchitecture": "Broadwell", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "58", + "family": "e2 Shared-core", + "type": "e2-micro", + "microarchitecture": "Haswell", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "59", + "family": "e2 Shared-core", + "type": "e2-micro", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1155.46" + }, + { + "": "60", + "family": "e2 Shared-core", + "type": "e2-small", + "microarchitecture": "Skylake", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "61", + "family": "e2 Shared-core", + "type": "e2-small", + "microarchitecture": "Broadwell", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "62", + "family": "e2 Shared-core", + "type": "e2-small", + "microarchitecture": "Haswell", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "63", + "family": "e2 Shared-core", + "type": "e2-small", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1155.46" + }, + { + "": "64", + "family": "e2 Shared-core", + "type": "e2-medium", + "microarchitecture": "Skylake", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "65", + "family": "e2 Shared-core", + "type": "e2-medium", + "microarchitecture": "Broadwell", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "66", + "family": "e2 Shared-core", + "type": "e2-medium", + "microarchitecture": "Haswell", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1255.46" + }, + { + "": "67", + "family": "e2 Shared-core", + "type": "e2-medium", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "155.46", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1155.46" + }, + { + "": "68", + "family": "n2", + "type": "n2-standard-2", + "microarchitecture": "Cascade Lake", + "additional_memory": "688.46", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1888.46" + }, + { + "": "69", + "family": "n2", + "type": "n2-standard-4", + "microarchitecture": "Cascade Lake", + "additional_memory": "688.46", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1888.46" + }, + { + "": "70", + "family": "n2", + "type": "n2-standard-8", + "microarchitecture": "Cascade Lake", + "additional_memory": "688.46", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1888.46" + }, + { + "": "71", + "family": "n2", + "type": "n2-standard-16", + "microarchitecture": "Cascade Lake", + "additional_memory": "688.46", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1888.46" + }, + { + "": "72", + "family": "n2", + "type": "n2-standard-32", + "microarchitecture": "Cascade Lake", + "additional_memory": "688.46", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1888.46" + }, + { + "": "73", + "family": "n2", + "type": "n2-standard-48", + "microarchitecture": "Cascade Lake", + "additional_memory": "688.46", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1888.46" + }, + { + "": "74", + "family": "n2", + "type": "n2-standard-64", + "microarchitecture": "Cascade Lake", + "additional_memory": "688.46", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1888.46" + }, + { + "": "75", + "family": "n2", + "type": "n2-standard-80", + "microarchitecture": "Cascade Lake", + "additional_memory": "688.46", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1888.46" + }, + { + "": "76", + "family": "n2", + "type": "n2-standard-96", + "microarchitecture": "Cascade Lake", + "additional_memory": "688.46", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1888.46" + }, + { + "": "77", + "family": "n2", + "type": "n2-standard-128", + "microarchitecture": "Cascade Lake", + "additional_memory": "688.46", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1888.46" + }, + { + "": "78", + "family": "n2", + "type": "n2-highmem-2", + "microarchitecture": "Cascade Lake", + "additional_memory": "1177.04", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2377.04" + }, + { + "": "79", + "family": "n2", + "type": "n2-highmem-4", + "microarchitecture": "Cascade Lake", + "additional_memory": "1177.04", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2377.04" + }, + { + "": "80", + "family": "n2", + "type": "n2-highmem-8", + "microarchitecture": "Cascade Lake", + "additional_memory": "1177.04", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2377.04" + }, + { + "": "81", + "family": "n2", + "type": "n2-highmem-16", + "microarchitecture": "Cascade Lake", + "additional_memory": "1177.04", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2377.04" + }, + { + "": "82", + "family": "n2", + "type": "n2-highmem-32", + "microarchitecture": "Cascade Lake", + "additional_memory": "1177.04", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2377.04" + }, + { + "": "83", + "family": "n2", + "type": "n2-highmem-48", + "microarchitecture": "Cascade Lake", + "additional_memory": "1177.04", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2377.04" + }, + { + "": "84", + "family": "n2", + "type": "n2-highmem-64", + "microarchitecture": "Cascade Lake", + "additional_memory": "1177.04", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2377.04" + }, + { + "": "85", + "family": "n2", + "type": "n2-highmem-80", + "microarchitecture": "Cascade Lake", + "additional_memory": "1177.04", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2377.04" + }, + { + "": "86", + "family": "n2", + "type": "n2-highmem-96", + "microarchitecture": "Cascade Lake", + "additional_memory": "1177.04", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2377.04" + }, + { + "": "87", + "family": "n2", + "type": "n2-highmem-128", + "microarchitecture": "Cascade Lake", + "additional_memory": "1177.04", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2377.04" + }, + { + "": "88", + "family": "n2", + "type": "n2-highcpu-2", + "microarchitecture": "Cascade Lake", + "additional_memory": "111.04", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1311.04" + }, + { + "": "89", + "family": "n2", + "type": "n2-highcpu-4", + "microarchitecture": "Cascade Lake", + "additional_memory": "111.04", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1311.04" + }, + { + "": "90", + "family": "n2", + "type": "n2-highcpu-8", + "microarchitecture": "Cascade Lake", + "additional_memory": "111.04", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1311.04" + }, + { + "": "91", + "family": "n2", + "type": "n2-highcpu-16", + "microarchitecture": "Cascade Lake", + "additional_memory": "111.04", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1311.04" + }, + { + "": "92", + "family": "n2", + "type": "n2-highcpu-32", + "microarchitecture": "Cascade Lake", + "additional_memory": "111.04", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1311.04" + }, + { + "": "93", + "family": "n2", + "type": "n2-highcpu-48", + "microarchitecture": "Cascade Lake", + "additional_memory": "111.04", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1311.04" + }, + { + "": "94", + "family": "n2", + "type": "n2-highcpu-64", + "microarchitecture": "Cascade Lake", + "additional_memory": "111.04", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1311.04" + }, + { + "": "95", + "family": "n2", + "type": "n2-highcpu-80", + "microarchitecture": "Cascade Lake", + "additional_memory": "111.04", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1311.04" + }, + { + "": "96", + "family": "n2", + "type": "n2-highcpu-96", + "microarchitecture": "Cascade Lake", + "additional_memory": "111.04", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1311.04" + }, + { + "": "97", + "family": "n2d", + "type": "n2d-standard-2", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "1221.46", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2321.46" + }, + { + "": "98", + "family": "n2d", + "type": "n2d-standard-4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "1221.46", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2321.46" + }, + { + "": "99", + "family": "n2d", + "type": "n2d-standard-8", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "1221.46", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2321.46" + }, + { + "": "100", + "family": "n2d", + "type": "n2d-standard-16", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "1221.46", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2321.46" + }, + { + "": "101", + "family": "n2d", + "type": "n2d-standard-32", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "1221.46", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2321.46" + }, + { + "": "102", + "family": "n2d", + "type": "n2d-standard-48", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "1221.46", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2321.46" + }, + { + "": "103", + "family": "n2d", + "type": "n2d-standard-64", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "1221.46", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2321.46" + }, + { + "": "104", + "family": "n2d", + "type": "n2d-standard-80", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "1221.46", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2321.46" + }, + { + "": "105", + "family": "n2d", + "type": "n2d-standard-96", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "1221.46", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2321.46" + }, + { + "": "106", + "family": "n2d", + "type": "n2d-standard-128", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "1221.46", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2321.46" + }, + { + "": "107", + "family": "n2d", + "type": "n2d-standard-224", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "1221.46", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2321.46" + }, + { + "": "108", + "family": "n2d", + "type": "n2d-highmem-2", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "1043.79", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "109", + "family": "n2d", + "type": "n2d-highmem-4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "1043.79", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "110", + "family": "n2d", + "type": "n2d-highmem-8", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "1043.79", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "111", + "family": "n2d", + "type": "n2d-highmem-16", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "1043.79", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "112", + "family": "n2d", + "type": "n2d-highmem-32", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "1043.79", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "113", + "family": "n2d", + "type": "n2d-highmem-48", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "1043.79", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "114", + "family": "n2d", + "type": "n2d-highmem-64", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "1043.79", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "115", + "family": "n2d", + "type": "n2d-highmem-80", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "1043.79", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "116", + "family": "n2d", + "type": "n2d-highmem-96", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "1043.79", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "2143.79" + }, + { + "": "117", + "family": "n2d", + "type": "n2d-highcpu-2", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "288.71", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1388.71" + }, + { + "": "118", + "family": "n2d", + "type": "n2d-highcpu-4", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "288.71", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1388.71" + }, + { + "": "119", + "family": "n2d", + "type": "n2d-highcpu-8", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "288.71", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1388.71" + }, + { + "": "120", + "family": "n2d", + "type": "n2d-highcpu-16", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "288.71", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1388.71" + }, + { + "": "121", + "family": "n2d", + "type": "n2d-highcpu-32", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "288.71", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1388.71" + }, + { + "": "122", + "family": "n2d", + "type": "n2d-highcpu-48", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "288.71", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1388.71" + }, + { + "": "123", + "family": "n2d", + "type": "n2d-highcpu-64", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "288.71", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1388.71" + }, + { + "": "124", + "family": "n2d", + "type": "n2d-highcpu-80", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "288.71", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1388.71" + }, + { + "": "125", + "family": "n2d", + "type": "n2d-highcpu-96", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "288.71", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1388.71" + }, + { + "": "126", + "family": "n2d", + "type": "n2d-highcpu-128", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "288.71", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1388.71" + }, + { + "": "127", + "family": "n2d", + "type": "n2d-highcpu-224", + "microarchitecture": "EPYC 2nd Gen", + "additional_memory": "288.71", + "additional_storage": "100.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1388.71" + }, + { + "": "128", + "family": "t2d", + "type": "t2d-standard-1", + "microarchitecture": "EPYC 3rd Gen", + "additional_memory": "310.92", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1310.92" + }, + { + "": "129", + "family": "t2d", + "type": "t2d-standard-2", + "microarchitecture": "EPYC 3rd Gen", + "additional_memory": "310.92", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1310.92" + }, + { + "": "130", + "family": "t2d", + "type": "t2d-standard-4", + "microarchitecture": "EPYC 3rd Gen", + "additional_memory": "310.92", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1310.92" + }, + { + "": "131", + "family": "t2d", + "type": "t2d-standard-8", + "microarchitecture": "EPYC 3rd Gen", + "additional_memory": "310.92", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1310.92" + }, + { + "": "132", + "family": "t2d", + "type": "t2d-standard-16", + "microarchitecture": "EPYC 3rd Gen", + "additional_memory": "310.92", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1310.92" + }, + { + "": "133", + "family": "t2d", + "type": "t2d-standard-32", + "microarchitecture": "EPYC 3rd Gen", + "additional_memory": "310.92", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1310.92" + }, + { + "": "134", + "family": "t2d", + "type": "t2d-standard-48", + "microarchitecture": "EPYC 3rd Gen", + "additional_memory": "310.92", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1310.92" + }, + { + "": "135", + "family": "t2d", + "type": "t2d-standard-60", + "microarchitecture": "EPYC 3rd Gen", + "additional_memory": "310.92", + "additional_storage": "0.0", + "additional_cpus": "0.0", + "additional_gpus": "0.0", + "total": "1310.92" + }, + { + "": "136", + "family": "n1", + "type": "n1-standard-1", + "microarchitecture": "Skylake", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "137", + "family": "n1", + "type": "n1-standard-1", + "microarchitecture": "Broadwell", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "138", + "family": "n1", + "type": "n1-standard-1", + "microarchitecture": "Haswell", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "139", + "family": "n1", + "type": "n1-standard-1", + "microarchitecture": "Ivy Bridge", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "140", + "family": "n1", + "type": "n1-standard-1", + "microarchitecture": "Sandy Bridge", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "141", + "family": "n1", + "type": "n1-standard-2", + "microarchitecture": "Skylake", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "142", + "family": "n1", + "type": "n1-standard-2", + "microarchitecture": "Broadwell", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "143", + "family": "n1", + "type": "n1-standard-2", + "microarchitecture": "Haswell", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "144", + "family": "n1", + "type": "n1-standard-2", + "microarchitecture": "Ivy Bridge", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "145", + "family": "n1", + "type": "n1-standard-2", + "microarchitecture": "Sandy Bridge", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "146", + "family": "n1", + "type": "n1-standard-4", + "microarchitecture": "Skylake", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "147", + "family": "n1", + "type": "n1-standard-4", + "microarchitecture": "Broadwell", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "148", + "family": "n1", + "type": "n1-standard-4", + "microarchitecture": "Haswell", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "149", + "family": "n1", + "type": "n1-standard-4", + "microarchitecture": "Ivy Bridge", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "150", + "family": "n1", + "type": "n1-standard-4", + "microarchitecture": "Sandy Bridge", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "151", + "family": "n1", + "type": "n1-standard-8", + "microarchitecture": "Skylake", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "152", + "family": "n1", + "type": "n1-standard-8", + "microarchitecture": "Broadwell", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "153", + "family": "n1", + "type": "n1-standard-8", + "microarchitecture": "Haswell", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "154", + "family": "n1", + "type": "n1-standard-8", + "microarchitecture": "Ivy Bridge", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "155", + "family": "n1", + "type": "n1-standard-8", + "microarchitecture": "Sandy Bridge", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "156", + "family": "n1", + "type": "n1-standard-16", + "microarchitecture": "Skylake", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "157", + "family": "n1", + "type": "n1-standard-16", + "microarchitecture": "Broadwell", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "158", + "family": "n1", + "type": "n1-standard-16", + "microarchitecture": "Haswell", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "159", + "family": "n1", + "type": "n1-standard-16", + "microarchitecture": "Ivy Bridge", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "160", + "family": "n1", + "type": "n1-standard-16", + "microarchitecture": "Sandy Bridge", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "161", + "family": "n1", + "type": "n1-standard-32", + "microarchitecture": "Skylake", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "162", + "family": "n1", + "type": "n1-standard-32", + "microarchitecture": "Broadwell", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "163", + "family": "n1", + "type": "n1-standard-32", + "microarchitecture": "Haswell", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "164", + "family": "n1", + "type": "n1-standard-32", + "microarchitecture": "Ivy Bridge", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "165", + "family": "n1", + "type": "n1-standard-32", + "microarchitecture": "Sandy Bridge", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "166", + "family": "n1", + "type": "n1-standard-64", + "microarchitecture": "Skylake", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "167", + "family": "n1", + "type": "n1-standard-64", + "microarchitecture": "Broadwell", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "168", + "family": "n1", + "type": "n1-standard-64", + "microarchitecture": "Haswell", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "169", + "family": "n1", + "type": "n1-standard-64", + "microarchitecture": "Ivy Bridge", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "170", + "family": "n1", + "type": "n1-standard-64", + "microarchitecture": "Sandy Bridge", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "171", + "family": "n1", + "type": "n1-standard-96", + "microarchitecture": "Skylake", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "172", + "family": "n1", + "type": "n1-standard-96", + "microarchitecture": "Broadwell", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "173", + "family": "n1", + "type": "n1-standard-96", + "microarchitecture": "Haswell", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "174", + "family": "n1", + "type": "n1-standard-96", + "microarchitecture": "Ivy Bridge", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "175", + "family": "n1", + "type": "n1-standard-96", + "microarchitecture": "Sandy Bridge", + "additional_memory": "477.48", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1677.48" + }, + { + "": "176", + "family": "n1", + "type": "n1-highmem-2", + "microarchitecture": "Skylake", + "additional_memory": "843.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2043.92" + }, + { + "": "177", + "family": "n1", + "type": "n1-highmem-2", + "microarchitecture": "Broadwell", + "additional_memory": "843.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2043.92" + }, + { + "": "178", + "family": "n1", + "type": "n1-highmem-2", + "microarchitecture": "Haswell", + "additional_memory": "843.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2043.92" + }, + { + "": "179", + "family": "n1", + "type": "n1-highmem-2", + "microarchitecture": "Ivy Bridge", + "additional_memory": "843.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2043.92" + }, + { + "": "180", + "family": "n1", + "type": "n1-highmem-2", + "microarchitecture": "Sandy Bridge", + "additional_memory": "843.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2043.92" + }, + { + "": "181", + "family": "n1", + "type": "n1-highmem-4", + "microarchitecture": "Skylake", + "additional_memory": "843.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2043.92" + }, + { + "": "182", + "family": "n1", + "type": "n1-highmem-4", + "microarchitecture": "Broadwell", + "additional_memory": "843.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2043.92" + }, + { + "": "183", + "family": "n1", + "type": "n1-highmem-4", + "microarchitecture": "Haswell", + "additional_memory": "843.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2043.92" + }, + { + "": "184", + "family": "n1", + "type": "n1-highmem-4", + "microarchitecture": "Ivy Bridge", + "additional_memory": "843.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2043.92" + }, + { + "": "185", + "family": "n1", + "type": "n1-highmem-4", + "microarchitecture": "Sandy Bridge", + "additional_memory": "843.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2043.92" + }, + { + "": "186", + "family": "n1", + "type": "n1-highmem-8", + "microarchitecture": "Skylake", + "additional_memory": "843.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2043.92" + }, + { + "": "187", + "family": "n1", + "type": "n1-highmem-8", + "microarchitecture": "Broadwell", + "additional_memory": "843.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2043.92" + }, + { + "": "188", + "family": "n1", + "type": "n1-highmem-8", + "microarchitecture": "Haswell", + "additional_memory": "843.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2043.92" + }, + { + "": "189", + "family": "n1", + "type": "n1-highmem-8", + "microarchitecture": "Ivy Bridge", + "additional_memory": "843.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2043.92" + }, + { + "": "190", + "family": "n1", + "type": "n1-highmem-8", + "microarchitecture": "Sandy Bridge", + "additional_memory": "843.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2043.92" + }, + { + "": "191", + "family": "n1", + "type": "n1-highmem-16", + "microarchitecture": "Skylake", + "additional_memory": "843.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2043.92" + }, + { + "": "192", + "family": "n1", + "type": "n1-highmem-16", + "microarchitecture": "Broadwell", + "additional_memory": "843.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2043.92" + }, + { + "": "193", + "family": "n1", + "type": "n1-highmem-16", + "microarchitecture": "Haswell", + "additional_memory": "843.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2043.92" + }, + { + "": "194", + "family": "n1", + "type": "n1-highmem-16", + "microarchitecture": "Ivy Bridge", + "additional_memory": "843.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2043.92" + }, + { + "": "195", + "family": "n1", + "type": "n1-highmem-16", + "microarchitecture": "Sandy Bridge", + "additional_memory": "843.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2043.92" + }, + { + "": "196", + "family": "n1", + "type": "n1-highmem-32", + "microarchitecture": "Skylake", + "additional_memory": "843.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2043.92" + }, + { + "": "197", + "family": "n1", + "type": "n1-highmem-32", + "microarchitecture": "Broadwell", + "additional_memory": "843.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2043.92" + }, + { + "": "198", + "family": "n1", + "type": "n1-highmem-32", + "microarchitecture": "Haswell", + "additional_memory": "843.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2043.92" + }, + { + "": "199", + "family": "n1", + "type": "n1-highmem-32", + "microarchitecture": "Ivy Bridge", + "additional_memory": "843.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2043.92" + }, + { + "": "200", + "family": "n1", + "type": "n1-highmem-32", + "microarchitecture": "Sandy Bridge", + "additional_memory": "843.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2043.92" + }, + { + "": "201", + "family": "n1", + "type": "n1-highmem-64", + "microarchitecture": "Skylake", + "additional_memory": "843.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2043.92" + }, + { + "": "202", + "family": "n1", + "type": "n1-highmem-64", + "microarchitecture": "Broadwell", + "additional_memory": "843.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2043.92" + }, + { + "": "203", + "family": "n1", + "type": "n1-highmem-64", + "microarchitecture": "Haswell", + "additional_memory": "843.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2043.92" + }, + { + "": "204", + "family": "n1", + "type": "n1-highmem-64", + "microarchitecture": "Ivy Bridge", + "additional_memory": "843.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2043.92" + }, + { + "": "205", + "family": "n1", + "type": "n1-highmem-64", + "microarchitecture": "Sandy Bridge", + "additional_memory": "843.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2043.92" + }, + { + "": "206", + "family": "n1", + "type": "n1-highmem-96", + "microarchitecture": "Skylake", + "additional_memory": "843.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2043.92" + }, + { + "": "207", + "family": "n1", + "type": "n1-highmem-96", + "microarchitecture": "Broadwell", + "additional_memory": "843.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2043.92" + }, + { + "": "208", + "family": "n1", + "type": "n1-highmem-96", + "microarchitecture": "Haswell", + "additional_memory": "843.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2043.92" + }, + { + "": "209", + "family": "n1", + "type": "n1-highmem-96", + "microarchitecture": "Ivy Bridge", + "additional_memory": "843.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2043.92" + }, + { + "": "210", + "family": "n1", + "type": "n1-highmem-96", + "microarchitecture": "Sandy Bridge", + "additional_memory": "843.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "2043.92" + }, + { + "": "211", + "family": "n1", + "type": "n1-highcpu-2", + "microarchitecture": "Skylake", + "additional_memory": "97.72", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1297.72" + }, + { + "": "212", + "family": "n1", + "type": "n1-highcpu-2", + "microarchitecture": "Broadwell", + "additional_memory": "97.72", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1297.72" + }, + { + "": "213", + "family": "n1", + "type": "n1-highcpu-2", + "microarchitecture": "Haswell", + "additional_memory": "97.72", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1297.72" + }, + { + "": "214", + "family": "n1", + "type": "n1-highcpu-2", + "microarchitecture": "Ivy Bridge", + "additional_memory": "97.72", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1297.72" + }, + { + "": "215", + "family": "n1", + "type": "n1-highcpu-2", + "microarchitecture": "Sandy Bridge", + "additional_memory": "97.72", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1297.72" + }, + { + "": "216", + "family": "n1", + "type": "n1-highcpu-4", + "microarchitecture": "Skylake", + "additional_memory": "97.72", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1297.72" + }, + { + "": "217", + "family": "n1", + "type": "n1-highcpu-4", + "microarchitecture": "Broadwell", + "additional_memory": "97.72", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1297.72" + }, + { + "": "218", + "family": "n1", + "type": "n1-highcpu-4", + "microarchitecture": "Haswell", + "additional_memory": "97.72", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1297.72" + }, + { + "": "219", + "family": "n1", + "type": "n1-highcpu-4", + "microarchitecture": "Ivy Bridge", + "additional_memory": "97.72", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1297.72" + }, + { + "": "220", + "family": "n1", + "type": "n1-highcpu-4", + "microarchitecture": "Sandy Bridge", + "additional_memory": "97.72", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1297.72" + }, + { + "": "221", + "family": "n1", + "type": "n1-highcpu-8", + "microarchitecture": "Skylake", + "additional_memory": "97.72", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1297.72" + }, + { + "": "222", + "family": "n1", + "type": "n1-highcpu-8", + "microarchitecture": "Broadwell", + "additional_memory": "97.72", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1297.72" + }, + { + "": "223", + "family": "n1", + "type": "n1-highcpu-8", + "microarchitecture": "Haswell", + "additional_memory": "97.72", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1297.72" + }, + { + "": "224", + "family": "n1", + "type": "n1-highcpu-8", + "microarchitecture": "Ivy Bridge", + "additional_memory": "97.72", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1297.72" + }, + { + "": "225", + "family": "n1", + "type": "n1-highcpu-8", + "microarchitecture": "Sandy Bridge", + "additional_memory": "97.72", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1297.72" + }, + { + "": "226", + "family": "n1", + "type": "n1-highcpu-16", + "microarchitecture": "Skylake", + "additional_memory": "97.72", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1297.72" + }, + { + "": "227", + "family": "n1", + "type": "n1-highcpu-16", + "microarchitecture": "Broadwell", + "additional_memory": "97.72", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1297.72" + }, + { + "": "228", + "family": "n1", + "type": "n1-highcpu-16", + "microarchitecture": "Haswell", + "additional_memory": "97.72", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1297.72" + }, + { + "": "229", + "family": "n1", + "type": "n1-highcpu-16", + "microarchitecture": "Ivy Bridge", + "additional_memory": "97.72", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1297.72" + }, + { + "": "230", + "family": "n1", + "type": "n1-highcpu-16", + "microarchitecture": "Sandy Bridge", + "additional_memory": "97.72", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1297.72" + }, + { + "": "231", + "family": "n1", + "type": "n1-highcpu-32", + "microarchitecture": "Skylake", + "additional_memory": "97.72", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1297.72" + }, + { + "": "232", + "family": "n1", + "type": "n1-highcpu-32", + "microarchitecture": "Broadwell", + "additional_memory": "97.72", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1297.72" + }, + { + "": "233", + "family": "n1", + "type": "n1-highcpu-32", + "microarchitecture": "Haswell", + "additional_memory": "97.72", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1297.72" + }, + { + "": "234", + "family": "n1", + "type": "n1-highcpu-32", + "microarchitecture": "Ivy Bridge", + "additional_memory": "97.72", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1297.72" + }, + { + "": "235", + "family": "n1", + "type": "n1-highcpu-32", + "microarchitecture": "Sandy Bridge", + "additional_memory": "97.72", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1297.72" + }, + { + "": "236", + "family": "n1", + "type": "n1-highcpu-64", + "microarchitecture": "Skylake", + "additional_memory": "97.72", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1297.72" + }, + { + "": "237", + "family": "n1", + "type": "n1-highcpu-64", + "microarchitecture": "Broadwell", + "additional_memory": "97.72", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1297.72" + }, + { + "": "238", + "family": "n1", + "type": "n1-highcpu-64", + "microarchitecture": "Haswell", + "additional_memory": "97.72", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1297.72" + }, + { + "": "239", + "family": "n1", + "type": "n1-highcpu-64", + "microarchitecture": "Ivy Bridge", + "additional_memory": "97.72", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1297.72" + }, + { + "": "240", + "family": "n1", + "type": "n1-highcpu-64", + "microarchitecture": "Sandy Bridge", + "additional_memory": "97.72", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1297.72" + }, + { + "": "241", + "family": "n1", + "type": "n1-highcpu-96", + "microarchitecture": "Skylake", + "additional_memory": "97.72", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1297.72" + }, + { + "": "242", + "family": "n1", + "type": "n1-highcpu-96", + "microarchitecture": "Broadwell", + "additional_memory": "97.72", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1297.72" + }, + { + "": "243", + "family": "n1", + "type": "n1-highcpu-96", + "microarchitecture": "Haswell", + "additional_memory": "97.72", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1297.72" + }, + { + "": "244", + "family": "n1", + "type": "n1-highcpu-96", + "microarchitecture": "Ivy Bridge", + "additional_memory": "97.72", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1297.72" + }, + { + "": "245", + "family": "n1", + "type": "n1-highcpu-96", + "microarchitecture": "Sandy Bridge", + "additional_memory": "97.72", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1297.72" + }, + { + "": "246", + "family": "n1 Shared-core", + "type": "f1-micro", + "microarchitecture": "Skylake", + "additional_memory": "477.48", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1577.48" + }, + { + "": "247", + "family": "n1 Shared-core", + "type": "f1-micro", + "microarchitecture": "Broadwell", + "additional_memory": "477.48", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1577.48" + }, + { + "": "248", + "family": "n1 Shared-core", + "type": "f1-micro", + "microarchitecture": "Haswell", + "additional_memory": "477.48", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1577.48" + }, + { + "": "249", + "family": "n1 Shared-core", + "type": "f1-micro", + "microarchitecture": "Ivy Bridge", + "additional_memory": "477.48", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1577.48" + }, + { + "": "250", + "family": "n1 Shared-core", + "type": "f1-micro", + "microarchitecture": "Sandy Bridge", + "additional_memory": "477.48", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1577.48" + }, + { + "": "251", + "family": "n1 Shared-core", + "type": "g1-small", + "microarchitecture": "Skylake", + "additional_memory": "477.48", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1577.48" + }, + { + "": "252", + "family": "n1 Shared-core", + "type": "g1-small", + "microarchitecture": "Broadwell", + "additional_memory": "477.48", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1577.48" + }, + { + "": "253", + "family": "n1 Shared-core", + "type": "g1-small", + "microarchitecture": "Haswell", + "additional_memory": "477.48", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1577.48" + }, + { + "": "254", + "family": "n1 Shared-core", + "type": "g1-small", + "microarchitecture": "Ivy Bridge", + "additional_memory": "477.48", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1577.48" + }, + { + "": "255", + "family": "n1 Shared-core", + "type": "g1-small", + "microarchitecture": "Sandy Bridge", + "additional_memory": "477.48", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1577.48" + }, + { + "": "256", + "family": "Compute-optimized", + "type": "c2-standard-4", + "microarchitecture": "Cascade Lake", + "additional_memory": "310.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1510.92" + }, + { + "": "257", + "family": "Compute-optimized", + "type": "c2-standard-8", + "microarchitecture": "Cascade Lake", + "additional_memory": "310.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1510.92" + }, + { + "": "258", + "family": "Compute-optimized", + "type": "c2-standard-16", + "microarchitecture": "Cascade Lake", + "additional_memory": "310.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1510.92" + }, + { + "": "259", + "family": "Compute-optimized", + "type": "c2-standard-30", + "microarchitecture": "Cascade Lake", + "additional_memory": "310.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1510.92" + }, + { + "": "260", + "family": "Compute-optimized", + "type": "c2-standard-60", + "microarchitecture": "Cascade Lake", + "additional_memory": "310.92", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1510.92" + }, + { + "": "261", + "family": "m1", + "type": "m1-ultramem-40", + "microarchitecture": "Skylake", + "additional_memory": "1967.66", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "3067.66" + }, + { + "": "262", + "family": "m1", + "type": "m1-ultramem-40", + "microarchitecture": "Broadwell", + "additional_memory": "1967.66", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "3067.66" + }, + { + "": "263", + "family": "m1", + "type": "m1-ultramem-80", + "microarchitecture": "Skylake", + "additional_memory": "1967.66", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "3067.66" + }, + { + "": "264", + "family": "m1", + "type": "m1-ultramem-80", + "microarchitecture": "Broadwell", + "additional_memory": "1967.66", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "3067.66" + }, + { + "": "265", + "family": "m1", + "type": "m1-ultramem-160", + "microarchitecture": "Skylake", + "additional_memory": "1967.66", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "3067.66" + }, + { + "": "266", + "family": "m1", + "type": "m1-ultramem-160", + "microarchitecture": "Broadwell", + "additional_memory": "1967.66", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "3067.66" + }, + { + "": "267", + "family": "m1", + "type": "m1-megamem-96", + "microarchitecture": "Skylake", + "additional_memory": "1967.66", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "3167.66" + }, + { + "": "268", + "family": "m1", + "type": "m1-megamem-96", + "microarchitecture": "Broadwell", + "additional_memory": "1967.66", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "3167.66" + }, + { + "": "269", + "family": "m2", + "type": "m2-ultramem-208", + "microarchitecture": "Cascade Lake", + "additional_memory": "0.0", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1100.0" + }, + { + "": "270", + "family": "m2", + "type": "m2-ultramem-416", + "microarchitecture": "Cascade Lake", + "additional_memory": "0.0", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1100.0" + }, + { + "": "271", + "family": "m2", + "type": "m2-megamem-416", + "microarchitecture": "Cascade Lake", + "additional_memory": "0.0", + "additional_storage": "0.0", + "additional_cpus": "100.0", + "additional_gpus": "0.0", + "total": "1100.0" + }, + { + "": "272", + "family": "Accelorator-optimized highgpu", + "type": "a2-highgpu-1g", + "microarchitecture": "Cascade Lake", + "additional_memory": "1865.5", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "2400.0", + "total": "5465.5" + }, + { + "": "273", + "family": "Accelorator-optimized highgpu", + "type": "a2-highgpu-2g", + "microarchitecture": "Cascade Lake", + "additional_memory": "1865.5", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "2400.0", + "total": "5465.5" + }, + { + "": "274", + "family": "Accelorator-optimized highgpu", + "type": "a2-highgpu-4g", + "microarchitecture": "Cascade Lake", + "additional_memory": "1865.5", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "2400.0", + "total": "5465.5" + }, + { + "": "275", + "family": "Accelorator-optimized highgpu", + "type": "a2-highgpu-8g", + "microarchitecture": "Cascade Lake", + "additional_memory": "1865.5", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "2400.0", + "total": "5465.5" + }, + { + "": "276", + "family": "Accelorator-optimized megagpu", + "type": "a2-megagpu-16g", + "microarchitecture": "Cascade Lake", + "additional_memory": "1865.5", + "additional_storage": "100.0", + "additional_cpus": "100.0", + "additional_gpus": "2400.0", + "total": "5465.5" + } +] diff --git a/src/lib/ccf/gcp-instances.json b/src/lib/ccf/gcp-instances.json index 298c64d3b..e588be340 100644 --- a/src/lib/ccf/gcp-instances.json +++ b/src/lib/ccf/gcp-instances.json @@ -1 +1,3880 @@ -[{"Machine Family": "e2", "Machine type": "e2-standard-2", "Microarchitecture": "Skylake", "Instance vCPUs": "2", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-standard-2", "Microarchitecture": "Broadwell", "Instance vCPUs": "2", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-standard-2", "Microarchitecture": "Haswell", "Instance vCPUs": "2", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-standard-2", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "2", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-standard-4", "Microarchitecture": "Skylake", "Instance vCPUs": "4", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-standard-4", "Microarchitecture": "Broadwell", "Instance vCPUs": "4", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-standard-4", "Microarchitecture": "Haswell", "Instance vCPUs": "4", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-standard-4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "4", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-standard-8", "Microarchitecture": "Skylake", "Instance vCPUs": "8", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-standard-8", "Microarchitecture": "Broadwell", "Instance vCPUs": "8", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-standard-8", "Microarchitecture": "Haswell", "Instance vCPUs": "8", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-standard-8", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "8", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-standard-16", "Microarchitecture": "Skylake", "Instance vCPUs": "16", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-standard-16", "Microarchitecture": "Broadwell", "Instance vCPUs": "16", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-standard-16", "Microarchitecture": "Haswell", "Instance vCPUs": "16", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-standard-16", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "16", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-standard-32", "Microarchitecture": "Skylake", "Instance vCPUs": "32", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-standard-32", "Microarchitecture": "Broadwell", "Instance vCPUs": "32", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-standard-32", "Microarchitecture": "Haswell", "Instance vCPUs": "32", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-standard-32", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "32", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highmem-2", "Microarchitecture": "Skylake", "Instance vCPUs": "2", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highmem-2", "Microarchitecture": "Broadwell", "Instance vCPUs": "2", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highmem-2", "Microarchitecture": "Haswell", "Instance vCPUs": "2", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highmem-2", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "2", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highmem-4", "Microarchitecture": "Skylake", "Instance vCPUs": "4", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highmem-4", "Microarchitecture": "Broadwell", "Instance vCPUs": "4", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highmem-4", "Microarchitecture": "Haswell", "Instance vCPUs": "4", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highmem-4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "4", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highmem-8", "Microarchitecture": "Skylake", "Instance vCPUs": "8", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highmem-8", "Microarchitecture": "Broadwell", "Instance vCPUs": "8", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highmem-8", "Microarchitecture": "Haswell", "Instance vCPUs": "8", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highmem-8", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "8", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highmem-16", "Microarchitecture": "Skylake", "Instance vCPUs": "16", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highmem-16", "Microarchitecture": "Broadwell", "Instance vCPUs": "16", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highmem-16", "Microarchitecture": "Haswell", "Instance vCPUs": "16", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highmem-16", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "16", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "16", "Platform Memory": "128", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highcpu-2", "Microarchitecture": "Skylake", "Instance vCPUs": "2", "Instance Memory": "2", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "32", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highcpu-2", "Microarchitecture": "Broadwell", "Instance vCPUs": "2", "Instance Memory": "2", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "32", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highcpu-2", "Microarchitecture": "Haswell", "Instance vCPUs": "2", "Instance Memory": "2", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "32", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highcpu-2", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "2", "Instance Memory": "2", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "32", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highcpu-4", "Microarchitecture": "Skylake", "Instance vCPUs": "4", "Instance Memory": "4", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "32", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highcpu-4", "Microarchitecture": "Broadwell", "Instance vCPUs": "4", "Instance Memory": "4", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "32", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highcpu-4", "Microarchitecture": "Haswell", "Instance vCPUs": "4", "Instance Memory": "4", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "32", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highcpu-4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "4", "Instance Memory": "4", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "32", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highcpu-8", "Microarchitecture": "Skylake", "Instance vCPUs": "8", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "32", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highcpu-8", "Microarchitecture": "Broadwell", "Instance vCPUs": "8", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "32", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highcpu-8", "Microarchitecture": "Haswell", "Instance vCPUs": "8", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "32", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highcpu-8", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "8", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "32", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highcpu-16", "Microarchitecture": "Skylake", "Instance vCPUs": "16", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "32", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highcpu-16", "Microarchitecture": "Broadwell", "Instance vCPUs": "16", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "32", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highcpu-16", "Microarchitecture": "Haswell", "Instance vCPUs": "16", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "32", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highcpu-16", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "16", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "32", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highcpu-32", "Microarchitecture": "Skylake", "Instance vCPUs": "32", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "32", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highcpu-32", "Microarchitecture": "Broadwell", "Instance vCPUs": "32", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "32", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highcpu-32", "Microarchitecture": "Haswell", "Instance vCPUs": "32", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "32", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2", "Machine type": "e2-highcpu-32", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "32", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "32", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2 Shared-core", "Machine type": "e2-micro", "Microarchitecture": "Skylake", "Instance vCPUs": "2", "Instance Memory": "1", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "128", "Platform Storage Info (SSD?)": "no", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2 Shared-core", "Machine type": "e2-micro", "Microarchitecture": "Broadwell", "Instance vCPUs": "2", "Instance Memory": "1", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "128", "Platform Storage Info (SSD?)": "no", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2 Shared-core", "Machine type": "e2-micro", "Microarchitecture": "Haswell", "Instance vCPUs": "2", "Instance Memory": "1", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "128", "Platform Storage Info (SSD?)": "no", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2 Shared-core", "Machine type": "e2-micro", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "2", "Instance Memory": "1", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "128", "Platform Storage Info (SSD?)": "no", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2 Shared-core", "Machine type": "e2-small", "Microarchitecture": "Skylake", "Instance vCPUs": "2", "Instance Memory": "2", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "128", "Platform Storage Info (SSD?)": "no", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2 Shared-core", "Machine type": "e2-small", "Microarchitecture": "Broadwell", "Instance vCPUs": "2", "Instance Memory": "2", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "128", "Platform Storage Info (SSD?)": "no", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2 Shared-core", "Machine type": "e2-small", "Microarchitecture": "Haswell", "Instance vCPUs": "2", "Instance Memory": "2", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "128", "Platform Storage Info (SSD?)": "no", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2 Shared-core", "Machine type": "e2-small", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "2", "Instance Memory": "2", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "128", "Platform Storage Info (SSD?)": "no", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2 Shared-core", "Machine type": "e2-medium", "Microarchitecture": "Skylake", "Instance vCPUs": "2", "Instance Memory": "4", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "128", "Platform Storage Info (SSD?)": "no", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2 Shared-core", "Machine type": "e2-medium", "Microarchitecture": "Broadwell", "Instance vCPUs": "2", "Instance Memory": "4", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "128", "Platform Storage Info (SSD?)": "no", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2 Shared-core", "Machine type": "e2-medium", "Microarchitecture": "Haswell", "Instance vCPUs": "2", "Instance Memory": "4", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "128", "Platform Storage Info (SSD?)": "no", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "e2 Shared-core", "Machine type": "e2-medium", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "2", "Instance Memory": "4", "Platform vCPUs (highest vCPU possible)": "32", "Platform Memory": "128", "Platform Storage Info (SSD?)": "no", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2", "Machine type": "n2-standard-2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "2", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "512", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2", "Machine type": "n2-standard-4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "4", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "512", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2", "Machine type": "n2-standard-8", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "8", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "512", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2", "Machine type": "n2-standard-16", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "16", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "512", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2", "Machine type": "n2-standard-32", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "32", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "512", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2", "Machine type": "n2-standard-48", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "48", "Instance Memory": "192", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "512", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2", "Machine type": "n2-standard-64", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "64", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "512", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2", "Machine type": "n2-standard-80", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "80", "Instance Memory": "320", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "512", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2", "Machine type": "n2-standard-96", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "96", "Instance Memory": "384", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "512", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2", "Machine type": "n2-standard-128", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "128", "Instance Memory": "512", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "512", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2", "Machine type": "n2-highmem-2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "2", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "864", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2", "Machine type": "n2-highmem-4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "4", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "864", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2", "Machine type": "n2-highmem-8", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "8", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "864", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2", "Machine type": "n2-highmem-16", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "16", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "864", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2", "Machine type": "n2-highmem-32", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "32", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "864", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2", "Machine type": "n2-highmem-48", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "48", "Instance Memory": "384", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "864", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2", "Machine type": "n2-highmem-64", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "64", "Instance Memory": "512", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "864", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2", "Machine type": "n2-highmem-80", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "80", "Instance Memory": "640", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "864", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2", "Machine type": "n2-highmem-96", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "96", "Instance Memory": "768", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "864", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2", "Machine type": "n2-highmem-128", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "128", "Instance Memory": "864", "Platform vCPUs (highest vCPU possible)": "128", "Platform Memory": "864", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2", "Machine type": "n2-highcpu-2", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "2", "Instance Memory": "2", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "96", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2", "Machine type": "n2-highcpu-4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "4", "Instance Memory": "4", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "96", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2", "Machine type": "n2-highcpu-8", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "8", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "96", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2", "Machine type": "n2-highcpu-16", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "16", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "96", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2", "Machine type": "n2-highcpu-32", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "32", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "96", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2", "Machine type": "n2-highcpu-48", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "48", "Instance Memory": "48", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "96", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2", "Machine type": "n2-highcpu-64", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "64", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "96", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2", "Machine type": "n2-highcpu-80", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "80", "Instance Memory": "80", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "96", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2", "Machine type": "n2-highcpu-96", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "96", "Instance Memory": "96", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "96", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2d", "Machine type": "n2d-standard-2", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "2", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "224", "Platform Memory": "896", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2d", "Machine type": "n2d-standard-4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "4", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "224", "Platform Memory": "896", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2d", "Machine type": "n2d-standard-8", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "8", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "224", "Platform Memory": "896", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2d", "Machine type": "n2d-standard-16", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "16", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "224", "Platform Memory": "896", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2d", "Machine type": "n2d-standard-32", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "32", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "224", "Platform Memory": "896", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2d", "Machine type": "n2d-standard-48", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "48", "Instance Memory": "192", "Platform vCPUs (highest vCPU possible)": "224", "Platform Memory": "896", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2d", "Machine type": "n2d-standard-64", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "64", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "224", "Platform Memory": "896", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2d", "Machine type": "n2d-standard-80", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "80", "Instance Memory": "320", "Platform vCPUs (highest vCPU possible)": "224", "Platform Memory": "896", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2d", "Machine type": "n2d-standard-96", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "96", "Instance Memory": "384", "Platform vCPUs (highest vCPU possible)": "224", "Platform Memory": "896", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2d", "Machine type": "n2d-standard-128", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "128", "Instance Memory": "512", "Platform vCPUs (highest vCPU possible)": "224", "Platform Memory": "896", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2d", "Machine type": "n2d-standard-224", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "224", "Instance Memory": "896", "Platform vCPUs (highest vCPU possible)": "224", "Platform Memory": "896", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2d", "Machine type": "n2d-highmem-2", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "2", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "768", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2d", "Machine type": "n2d-highmem-4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "4", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "768", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2d", "Machine type": "n2d-highmem-8", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "8", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "768", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2d", "Machine type": "n2d-highmem-16", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "16", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "768", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2d", "Machine type": "n2d-highmem-32", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "32", "Instance Memory": "256", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "768", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2d", "Machine type": "n2d-highmem-48", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "48", "Instance Memory": "384", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "768", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2d", "Machine type": "n2d-highmem-64", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "64", "Instance Memory": "512", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "768", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2d", "Machine type": "n2d-highmem-80", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "80", "Instance Memory": "640", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "768", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2d", "Machine type": "n2d-highmem-96", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "96", "Instance Memory": "768", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "768", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2d", "Machine type": "n2d-highcpu-2", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "2", "Instance Memory": "2", "Platform vCPUs (highest vCPU possible)": "224", "Platform Memory": "224", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2d", "Machine type": "n2d-highcpu-4", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "4", "Instance Memory": "4", "Platform vCPUs (highest vCPU possible)": "224", "Platform Memory": "224", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2d", "Machine type": "n2d-highcpu-8", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "8", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "224", "Platform Memory": "224", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2d", "Machine type": "n2d-highcpu-16", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "16", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "224", "Platform Memory": "224", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2d", "Machine type": "n2d-highcpu-32", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "32", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "224", "Platform Memory": "224", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2d", "Machine type": "n2d-highcpu-48", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "48", "Instance Memory": "48", "Platform vCPUs (highest vCPU possible)": "224", "Platform Memory": "224", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2d", "Machine type": "n2d-highcpu-64", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "64", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "224", "Platform Memory": "224", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2d", "Machine type": "n2d-highcpu-80", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "80", "Instance Memory": "80", "Platform vCPUs (highest vCPU possible)": "224", "Platform Memory": "224", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2d", "Machine type": "n2d-highcpu-96", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "96", "Instance Memory": "96", "Platform vCPUs (highest vCPU possible)": "224", "Platform Memory": "224", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2d", "Machine type": "n2d-highcpu-128", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "128", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "224", "Platform Memory": "224", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n2d", "Machine type": "n2d-highcpu-224", "Microarchitecture": "EPYC 2nd Gen", "Instance vCPUs": "224", "Instance Memory": "224", "Platform vCPUs (highest vCPU possible)": "224", "Platform Memory": "224", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "t2d", "Machine type": "t2d-standard-1", "Microarchitecture": "EPYC 3rd Gen", "Instance vCPUs": "1", "Instance Memory": "4", "Platform vCPUs (highest vCPU possible)": "60", "Platform Memory": "240", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "t2d", "Machine type": "t2d-standard-2", "Microarchitecture": "EPYC 3rd Gen", "Instance vCPUs": "2", "Instance Memory": "8", "Platform vCPUs (highest vCPU possible)": "60", "Platform Memory": "240", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "t2d", "Machine type": "t2d-standard-4", "Microarchitecture": "EPYC 3rd Gen", "Instance vCPUs": "4", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "60", "Platform Memory": "240", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "t2d", "Machine type": "t2d-standard-8", "Microarchitecture": "EPYC 3rd Gen", "Instance vCPUs": "8", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "60", "Platform Memory": "240", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "t2d", "Machine type": "t2d-standard-16", "Microarchitecture": "EPYC 3rd Gen", "Instance vCPUs": "16", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "60", "Platform Memory": "240", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "t2d", "Machine type": "t2d-standard-32", "Microarchitecture": "EPYC 3rd Gen", "Instance vCPUs": "32", "Instance Memory": "128", "Platform vCPUs (highest vCPU possible)": "60", "Platform Memory": "240", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "t2d", "Machine type": "t2d-standard-48", "Microarchitecture": "EPYC 3rd Gen", "Instance vCPUs": "48", "Instance Memory": "192", "Platform vCPUs (highest vCPU possible)": "60", "Platform Memory": "240", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "t2d", "Machine type": "t2d-standard-60", "Microarchitecture": "EPYC 3rd Gen", "Instance vCPUs": "60", "Instance Memory": "240", "Platform vCPUs (highest vCPU possible)": "60", "Platform Memory": "240", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-1", "Microarchitecture": "Skylake", "Instance vCPUs": "1", "Instance Memory": "3.75", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-1", "Microarchitecture": "Broadwell", "Instance vCPUs": "1", "Instance Memory": "3.75", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-1", "Microarchitecture": "Haswell", "Instance vCPUs": "1", "Instance Memory": "3.75", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-1", "Microarchitecture": "Ivy Bridge", "Instance vCPUs": "1", "Instance Memory": "3.75", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-1", "Microarchitecture": "Sandy Bridge", "Instance vCPUs": "1", "Instance Memory": "3.75", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-2", "Microarchitecture": "Skylake", "Instance vCPUs": "2", "Instance Memory": "7.50", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-2", "Microarchitecture": "Broadwell", "Instance vCPUs": "2", "Instance Memory": "7.50", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-2", "Microarchitecture": "Haswell", "Instance vCPUs": "2", "Instance Memory": "7.50", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-2", "Microarchitecture": "Ivy Bridge", "Instance vCPUs": "2", "Instance Memory": "7.50", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-2", "Microarchitecture": "Sandy Bridge", "Instance vCPUs": "2", "Instance Memory": "7.50", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-4", "Microarchitecture": "Skylake", "Instance vCPUs": "4", "Instance Memory": "15", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-4", "Microarchitecture": "Broadwell", "Instance vCPUs": "4", "Instance Memory": "15", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-4", "Microarchitecture": "Haswell", "Instance vCPUs": "4", "Instance Memory": "15", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-4", "Microarchitecture": "Ivy Bridge", "Instance vCPUs": "4", "Instance Memory": "15", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-4", "Microarchitecture": "Sandy Bridge", "Instance vCPUs": "4", "Instance Memory": "15", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-8", "Microarchitecture": "Skylake", "Instance vCPUs": "8", "Instance Memory": "30", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-8", "Microarchitecture": "Broadwell", "Instance vCPUs": "8", "Instance Memory": "30", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-8", "Microarchitecture": "Haswell", "Instance vCPUs": "8", "Instance Memory": "30", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-8", "Microarchitecture": "Ivy Bridge", "Instance vCPUs": "8", "Instance Memory": "30", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-8", "Microarchitecture": "Sandy Bridge", "Instance vCPUs": "8", "Instance Memory": "30", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-16", "Microarchitecture": "Skylake", "Instance vCPUs": "16", "Instance Memory": "60", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-16", "Microarchitecture": "Broadwell", "Instance vCPUs": "16", "Instance Memory": "60", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-16", "Microarchitecture": "Haswell", "Instance vCPUs": "16", "Instance Memory": "60", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-16", "Microarchitecture": "Ivy Bridge", "Instance vCPUs": "16", "Instance Memory": "60", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-16", "Microarchitecture": "Sandy Bridge", "Instance vCPUs": "16", "Instance Memory": "60", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-32", "Microarchitecture": "Skylake", "Instance vCPUs": "32", "Instance Memory": "120", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-32", "Microarchitecture": "Broadwell", "Instance vCPUs": "32", "Instance Memory": "120", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-32", "Microarchitecture": "Haswell", "Instance vCPUs": "32", "Instance Memory": "120", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-32", "Microarchitecture": "Ivy Bridge", "Instance vCPUs": "32", "Instance Memory": "120", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-32", "Microarchitecture": "Sandy Bridge", "Instance vCPUs": "32", "Instance Memory": "120", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-64", "Microarchitecture": "Skylake", "Instance vCPUs": "64", "Instance Memory": "240", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-64", "Microarchitecture": "Broadwell", "Instance vCPUs": "64", "Instance Memory": "240", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-64", "Microarchitecture": "Haswell", "Instance vCPUs": "64", "Instance Memory": "240", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-64", "Microarchitecture": "Ivy Bridge", "Instance vCPUs": "64", "Instance Memory": "240", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-64", "Microarchitecture": "Sandy Bridge", "Instance vCPUs": "64", "Instance Memory": "240", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-96", "Microarchitecture": "Skylake", "Instance vCPUs": "96", "Instance Memory": "360", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-96", "Microarchitecture": "Broadwell", "Instance vCPUs": "96", "Instance Memory": "360", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-96", "Microarchitecture": "Haswell", "Instance vCPUs": "96", "Instance Memory": "360", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-96", "Microarchitecture": "Ivy Bridge", "Instance vCPUs": "96", "Instance Memory": "360", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-standard-96", "Microarchitecture": "Sandy Bridge", "Instance vCPUs": "96", "Instance Memory": "360", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highmem-2", "Microarchitecture": "Skylake", "Instance vCPUs": "2", "Instance Memory": "13", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "624", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highmem-2", "Microarchitecture": "Broadwell", "Instance vCPUs": "2", "Instance Memory": "13", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "624", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highmem-2", "Microarchitecture": "Haswell", "Instance vCPUs": "2", "Instance Memory": "13", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "624", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highmem-2", "Microarchitecture": "Ivy Bridge", "Instance vCPUs": "2", "Instance Memory": "13", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "624", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highmem-2", "Microarchitecture": "Sandy Bridge", "Instance vCPUs": "2", "Instance Memory": "13", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "624", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highmem-4", "Microarchitecture": "Skylake", "Instance vCPUs": "4", "Instance Memory": "26", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "624", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highmem-4", "Microarchitecture": "Broadwell", "Instance vCPUs": "4", "Instance Memory": "26", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "624", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highmem-4", "Microarchitecture": "Haswell", "Instance vCPUs": "4", "Instance Memory": "26", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "624", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highmem-4", "Microarchitecture": "Ivy Bridge", "Instance vCPUs": "4", "Instance Memory": "26", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "624", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highmem-4", "Microarchitecture": "Sandy Bridge", "Instance vCPUs": "4", "Instance Memory": "26", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "624", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highmem-8", "Microarchitecture": "Skylake", "Instance vCPUs": "8", "Instance Memory": "52", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "624", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highmem-8", "Microarchitecture": "Broadwell", "Instance vCPUs": "8", "Instance Memory": "52", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "624", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highmem-8", "Microarchitecture": "Haswell", "Instance vCPUs": "8", "Instance Memory": "52", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "624", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highmem-8", "Microarchitecture": "Ivy Bridge", "Instance vCPUs": "8", "Instance Memory": "52", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "624", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highmem-8", "Microarchitecture": "Sandy Bridge", "Instance vCPUs": "8", "Instance Memory": "52", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "624", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highmem-16", "Microarchitecture": "Skylake", "Instance vCPUs": "16", "Instance Memory": "104", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "624", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highmem-16", "Microarchitecture": "Broadwell", "Instance vCPUs": "16", "Instance Memory": "104", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "624", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highmem-16", "Microarchitecture": "Haswell", "Instance vCPUs": "16", "Instance Memory": "104", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "624", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highmem-16", "Microarchitecture": "Ivy Bridge", "Instance vCPUs": "16", "Instance Memory": "104", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "624", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highmem-16", "Microarchitecture": "Sandy Bridge", "Instance vCPUs": "16", "Instance Memory": "104", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "624", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highmem-32", "Microarchitecture": "Skylake", "Instance vCPUs": "32", "Instance Memory": "208", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "624", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highmem-32", "Microarchitecture": "Broadwell", "Instance vCPUs": "32", "Instance Memory": "208", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "624", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highmem-32", "Microarchitecture": "Haswell", "Instance vCPUs": "32", "Instance Memory": "208", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "624", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highmem-32", "Microarchitecture": "Ivy Bridge", "Instance vCPUs": "32", "Instance Memory": "208", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "624", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highmem-32", "Microarchitecture": "Sandy Bridge", "Instance vCPUs": "32", "Instance Memory": "208", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "624", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highmem-64", "Microarchitecture": "Skylake", "Instance vCPUs": "64", "Instance Memory": "416", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "624", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highmem-64", "Microarchitecture": "Broadwell", "Instance vCPUs": "64", "Instance Memory": "416", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "624", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highmem-64", "Microarchitecture": "Haswell", "Instance vCPUs": "64", "Instance Memory": "416", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "624", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highmem-64", "Microarchitecture": "Ivy Bridge", "Instance vCPUs": "64", "Instance Memory": "416", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "624", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highmem-64", "Microarchitecture": "Sandy Bridge", "Instance vCPUs": "64", "Instance Memory": "416", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "624", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highmem-96", "Microarchitecture": "Skylake", "Instance vCPUs": "96", "Instance Memory": "624", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "624", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highmem-96", "Microarchitecture": "Broadwell", "Instance vCPUs": "96", "Instance Memory": "624", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "624", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highmem-96", "Microarchitecture": "Haswell", "Instance vCPUs": "96", "Instance Memory": "624", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "624", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highmem-96", "Microarchitecture": "Ivy Bridge", "Instance vCPUs": "96", "Instance Memory": "624", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "624", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highmem-96", "Microarchitecture": "Sandy Bridge", "Instance vCPUs": "96", "Instance Memory": "624", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "624", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highcpu-2", "Microarchitecture": "Skylake", "Instance vCPUs": "2", "Instance Memory": "1.80", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "86.40", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highcpu-2", "Microarchitecture": "Broadwell", "Instance vCPUs": "2", "Instance Memory": "1.80", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "86.40", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highcpu-2", "Microarchitecture": "Haswell", "Instance vCPUs": "2", "Instance Memory": "1.80", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "86.40", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highcpu-2", "Microarchitecture": "Ivy Bridge", "Instance vCPUs": "2", "Instance Memory": "1.80", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "86.40", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highcpu-2", "Microarchitecture": "Sandy Bridge", "Instance vCPUs": "2", "Instance Memory": "1.80", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "86.40", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highcpu-4", "Microarchitecture": "Skylake", "Instance vCPUs": "4", "Instance Memory": "3.60", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "86.40", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highcpu-4", "Microarchitecture": "Broadwell", "Instance vCPUs": "4", "Instance Memory": "3.60", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "86.40", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highcpu-4", "Microarchitecture": "Haswell", "Instance vCPUs": "4", "Instance Memory": "3.60", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "86.40", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highcpu-4", "Microarchitecture": "Ivy Bridge", "Instance vCPUs": "4", "Instance Memory": "3.60", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "86.40", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highcpu-4", "Microarchitecture": "Sandy Bridge", "Instance vCPUs": "4", "Instance Memory": "3.60", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "86.40", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highcpu-8", "Microarchitecture": "Skylake", "Instance vCPUs": "8", "Instance Memory": "7.20", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "86.40", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highcpu-8", "Microarchitecture": "Broadwell", "Instance vCPUs": "8", "Instance Memory": "7.20", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "86.40", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highcpu-8", "Microarchitecture": "Haswell", "Instance vCPUs": "8", "Instance Memory": "7.20", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "86.40", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highcpu-8", "Microarchitecture": "Ivy Bridge", "Instance vCPUs": "8", "Instance Memory": "7.20", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "86.40", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highcpu-8", "Microarchitecture": "Sandy Bridge", "Instance vCPUs": "8", "Instance Memory": "7.20", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "86.40", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highcpu-16", "Microarchitecture": "Skylake", "Instance vCPUs": "16", "Instance Memory": "14.4", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "86.40", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highcpu-16", "Microarchitecture": "Broadwell", "Instance vCPUs": "16", "Instance Memory": "14.4", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "86.40", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highcpu-16", "Microarchitecture": "Haswell", "Instance vCPUs": "16", "Instance Memory": "14.4", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "86.40", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highcpu-16", "Microarchitecture": "Ivy Bridge", "Instance vCPUs": "16", "Instance Memory": "14.4", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "86.40", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highcpu-16", "Microarchitecture": "Sandy Bridge", "Instance vCPUs": "16", "Instance Memory": "14.4", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "86.40", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highcpu-32", "Microarchitecture": "Skylake", "Instance vCPUs": "32", "Instance Memory": "28.8", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "86.40", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highcpu-32", "Microarchitecture": "Broadwell", "Instance vCPUs": "32", "Instance Memory": "28.8", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "86.40", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highcpu-32", "Microarchitecture": "Haswell", "Instance vCPUs": "32", "Instance Memory": "28.8", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "86.40", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highcpu-32", "Microarchitecture": "Ivy Bridge", "Instance vCPUs": "32", "Instance Memory": "28.8", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "86.40", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highcpu-32", "Microarchitecture": "Sandy Bridge", "Instance vCPUs": "32", "Instance Memory": "28.8", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "86.40", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highcpu-64", "Microarchitecture": "Skylake", "Instance vCPUs": "64", "Instance Memory": "57.6", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "86.40", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highcpu-64", "Microarchitecture": "Broadwell", "Instance vCPUs": "64", "Instance Memory": "57.6", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "86.40", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highcpu-64", "Microarchitecture": "Haswell", "Instance vCPUs": "64", "Instance Memory": "57.6", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "86.40", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highcpu-64", "Microarchitecture": "Ivy Bridge", "Instance vCPUs": "64", "Instance Memory": "57.6", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "86.40", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highcpu-64", "Microarchitecture": "Sandy Bridge", "Instance vCPUs": "64", "Instance Memory": "57.6", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "86.40", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highcpu-96", "Microarchitecture": "Skylake", "Instance vCPUs": "96", "Instance Memory": "86.4", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "86.40", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highcpu-96", "Microarchitecture": "Broadwell", "Instance vCPUs": "96", "Instance Memory": "86.4", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "86.40", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highcpu-96", "Microarchitecture": "Haswell", "Instance vCPUs": "96", "Instance Memory": "86.4", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "86.40", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highcpu-96", "Microarchitecture": "Ivy Bridge", "Instance vCPUs": "96", "Instance Memory": "86.4", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "86.40", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1", "Machine type": "n1-highcpu-96", "Microarchitecture": "Sandy Bridge", "Instance vCPUs": "96", "Instance Memory": "86.4", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "86.40", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1 Shared-core", "Machine type": "f1-micro", "Microarchitecture": "Skylake", "Instance vCPUs": "1", "Instance Memory": "0.60", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1 Shared-core", "Machine type": "f1-micro", "Microarchitecture": "Broadwell", "Instance vCPUs": "1", "Instance Memory": "0.60", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1 Shared-core", "Machine type": "f1-micro", "Microarchitecture": "Haswell", "Instance vCPUs": "1", "Instance Memory": "0.60", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1 Shared-core", "Machine type": "f1-micro", "Microarchitecture": "Ivy Bridge", "Instance vCPUs": "1", "Instance Memory": "0.60", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1 Shared-core", "Machine type": "f1-micro", "Microarchitecture": "Sandy Bridge", "Instance vCPUs": "1", "Instance Memory": "0.60", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1 Shared-core", "Machine type": "g1-small", "Microarchitecture": "Skylake", "Instance vCPUs": "1", "Instance Memory": "1.70", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1 Shared-core", "Machine type": "g1-small", "Microarchitecture": "Broadwell", "Instance vCPUs": "1", "Instance Memory": "1.70", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1 Shared-core", "Machine type": "g1-small", "Microarchitecture": "Haswell", "Instance vCPUs": "1", "Instance Memory": "1.70", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1 Shared-core", "Machine type": "g1-small", "Microarchitecture": "Ivy Bridge", "Instance vCPUs": "1", "Instance Memory": "1.70", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "n1 Shared-core", "Machine type": "g1-small", "Microarchitecture": "Sandy Bridge", "Instance vCPUs": "1", "Instance Memory": "1.70", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "360", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "Compute-optimized", "Machine type": "c2-standard-4", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "4", "Instance Memory": "16", "Platform vCPUs (highest vCPU possible)": "60", "Platform Memory": "240", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "Compute-optimized", "Machine type": "c2-standard-8", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "8", "Instance Memory": "32", "Platform vCPUs (highest vCPU possible)": "60", "Platform Memory": "240", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "Compute-optimized", "Machine type": "c2-standard-16", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "16", "Instance Memory": "64", "Platform vCPUs (highest vCPU possible)": "60", "Platform Memory": "240", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "Compute-optimized", "Machine type": "c2-standard-30", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "30", "Instance Memory": "120", "Platform vCPUs (highest vCPU possible)": "60", "Platform Memory": "240", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "Compute-optimized", "Machine type": "c2-standard-60", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "60", "Instance Memory": "240", "Platform vCPUs (highest vCPU possible)": "60", "Platform Memory": "240", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "m1", "Machine type": "m1-ultramem-40", "Microarchitecture": "Skylake", "Instance vCPUs": "40", "Instance Memory": "961", "Platform vCPUs (highest vCPU possible)": "160", "Platform Memory": "1433.6", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "m1", "Machine type": "m1-ultramem-40", "Microarchitecture": "Broadwell", "Instance vCPUs": "40", "Instance Memory": "961", "Platform vCPUs (highest vCPU possible)": "160", "Platform Memory": "1433.6", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "m1", "Machine type": "m1-ultramem-80", "Microarchitecture": "Skylake", "Instance vCPUs": "80", "Instance Memory": "1922", "Platform vCPUs (highest vCPU possible)": "160", "Platform Memory": "1433.6", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "m1", "Machine type": "m1-ultramem-80", "Microarchitecture": "Broadwell", "Instance vCPUs": "80", "Instance Memory": "1922", "Platform vCPUs (highest vCPU possible)": "160", "Platform Memory": "1433.6", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "m1", "Machine type": "m1-ultramem-160", "Microarchitecture": "Skylake", "Instance vCPUs": "160", "Instance Memory": "3844", "Platform vCPUs (highest vCPU possible)": "160", "Platform Memory": "1433.6", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "m1", "Machine type": "m1-ultramem-160", "Microarchitecture": "Broadwell", "Instance vCPUs": "160", "Instance Memory": "3844", "Platform vCPUs (highest vCPU possible)": "160", "Platform Memory": "1433.6", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "m1", "Machine type": "m1-megamem-96", "Microarchitecture": "Skylake", "Instance vCPUs": "96", "Instance Memory": "1433.6", "Platform vCPUs (highest vCPU possible)": "160", "Platform Memory": "1433.6", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "m1", "Machine type": "m1-megamem-96", "Microarchitecture": "Broadwell", "Instance vCPUs": "96", "Instance Memory": "1433.6", "Platform vCPUs (highest vCPU possible)": "160", "Platform Memory": "1433.6", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "m2", "Machine type": "m2-ultramem-208", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "208", "Instance Memory": "5.888", "Platform vCPUs (highest vCPU possible)": "416", "Platform Memory": "11.776", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "m2", "Machine type": "m2-ultramem-416", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "416", "Instance Memory": "11.776", "Platform vCPUs (highest vCPU possible)": "416", "Platform Memory": "11.776", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "m2", "Machine type": "m2-megamem-416", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "416", "Instance Memory": "5.888", "Platform vCPUs (highest vCPU possible)": "416", "Platform Memory": "11.776", "Platform Storage Info (SSD?)": "No", "Platform Storage Type": "Non-SSD", "Platform (largest instance) Storage Drive quantity": "0", "Instance GPUs": "0", "Platform GPU": "0"}, {"Machine Family": "Accelorator-optimized highgpu", "Machine type": "a2-highgpu-1g", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "12", "Instance Memory": "85", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "1360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "1", "Platform GPU": "16"}, {"Machine Family": "Accelorator-optimized highgpu", "Machine type": "a2-highgpu-2g", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "24", "Instance Memory": "170", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "1360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "2", "Platform GPU": "16"}, {"Machine Family": "Accelorator-optimized highgpu", "Machine type": "a2-highgpu-4g", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "48", "Instance Memory": "340", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "1360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "4", "Platform GPU": "16"}, {"Machine Family": "Accelorator-optimized highgpu", "Machine type": "a2-highgpu-8g", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "96", "Instance Memory": "680", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "1360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "8", "Platform GPU": "16"}, {"Machine Family": "Accelorator-optimized megagpu", "Machine type": "a2-megagpu-16g", "Microarchitecture": "Cascade Lake", "Instance vCPUs": "96", "Instance Memory": "1360", "Platform vCPUs (highest vCPU possible)": "96", "Platform Memory": "1360", "Platform Storage Info (SSD?)": "Yes", "Platform Storage Type": "SSD", "Platform (largest instance) Storage Drive quantity": "1", "Instance GPUs": "16", "Platform GPU": "16"}] +[ + { + "Machine Family": "e2", + "Machine type": "e2-standard-2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "2", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-standard-2", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "2", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-standard-2", + "Microarchitecture": "Haswell", + "Instance vCPUs": "2", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-standard-2", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "2", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-standard-4", + "Microarchitecture": "Skylake", + "Instance vCPUs": "4", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-standard-4", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "4", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-standard-4", + "Microarchitecture": "Haswell", + "Instance vCPUs": "4", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-standard-4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "4", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-standard-8", + "Microarchitecture": "Skylake", + "Instance vCPUs": "8", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-standard-8", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "8", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-standard-8", + "Microarchitecture": "Haswell", + "Instance vCPUs": "8", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-standard-8", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "8", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-standard-16", + "Microarchitecture": "Skylake", + "Instance vCPUs": "16", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-standard-16", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "16", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-standard-16", + "Microarchitecture": "Haswell", + "Instance vCPUs": "16", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-standard-16", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "16", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-standard-32", + "Microarchitecture": "Skylake", + "Instance vCPUs": "32", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-standard-32", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "32", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-standard-32", + "Microarchitecture": "Haswell", + "Instance vCPUs": "32", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-standard-32", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "32", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highmem-2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "2", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highmem-2", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "2", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highmem-2", + "Microarchitecture": "Haswell", + "Instance vCPUs": "2", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highmem-2", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "2", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highmem-4", + "Microarchitecture": "Skylake", + "Instance vCPUs": "4", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highmem-4", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "4", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highmem-4", + "Microarchitecture": "Haswell", + "Instance vCPUs": "4", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highmem-4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "4", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highmem-8", + "Microarchitecture": "Skylake", + "Instance vCPUs": "8", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highmem-8", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "8", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highmem-8", + "Microarchitecture": "Haswell", + "Instance vCPUs": "8", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highmem-8", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "8", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highmem-16", + "Microarchitecture": "Skylake", + "Instance vCPUs": "16", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highmem-16", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "16", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highmem-16", + "Microarchitecture": "Haswell", + "Instance vCPUs": "16", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highmem-16", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "16", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "16", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highcpu-2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "2", + "Instance Memory": "2", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highcpu-2", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "2", + "Instance Memory": "2", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highcpu-2", + "Microarchitecture": "Haswell", + "Instance vCPUs": "2", + "Instance Memory": "2", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highcpu-2", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "2", + "Instance Memory": "2", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highcpu-4", + "Microarchitecture": "Skylake", + "Instance vCPUs": "4", + "Instance Memory": "4", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highcpu-4", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "4", + "Instance Memory": "4", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highcpu-4", + "Microarchitecture": "Haswell", + "Instance vCPUs": "4", + "Instance Memory": "4", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highcpu-4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "4", + "Instance Memory": "4", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highcpu-8", + "Microarchitecture": "Skylake", + "Instance vCPUs": "8", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highcpu-8", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "8", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highcpu-8", + "Microarchitecture": "Haswell", + "Instance vCPUs": "8", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highcpu-8", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "8", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highcpu-16", + "Microarchitecture": "Skylake", + "Instance vCPUs": "16", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highcpu-16", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "16", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highcpu-16", + "Microarchitecture": "Haswell", + "Instance vCPUs": "16", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highcpu-16", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "16", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highcpu-32", + "Microarchitecture": "Skylake", + "Instance vCPUs": "32", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highcpu-32", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "32", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highcpu-32", + "Microarchitecture": "Haswell", + "Instance vCPUs": "32", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2", + "Machine type": "e2-highcpu-32", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "32", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "32", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2 Shared-core", + "Machine type": "e2-micro", + "Microarchitecture": "Skylake", + "Instance vCPUs": "2", + "Instance Memory": "1", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "no", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2 Shared-core", + "Machine type": "e2-micro", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "2", + "Instance Memory": "1", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "no", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2 Shared-core", + "Machine type": "e2-micro", + "Microarchitecture": "Haswell", + "Instance vCPUs": "2", + "Instance Memory": "1", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "no", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2 Shared-core", + "Machine type": "e2-micro", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "2", + "Instance Memory": "1", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "no", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2 Shared-core", + "Machine type": "e2-small", + "Microarchitecture": "Skylake", + "Instance vCPUs": "2", + "Instance Memory": "2", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "no", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2 Shared-core", + "Machine type": "e2-small", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "2", + "Instance Memory": "2", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "no", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2 Shared-core", + "Machine type": "e2-small", + "Microarchitecture": "Haswell", + "Instance vCPUs": "2", + "Instance Memory": "2", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "no", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2 Shared-core", + "Machine type": "e2-small", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "2", + "Instance Memory": "2", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "no", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2 Shared-core", + "Machine type": "e2-medium", + "Microarchitecture": "Skylake", + "Instance vCPUs": "2", + "Instance Memory": "4", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "no", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2 Shared-core", + "Machine type": "e2-medium", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "2", + "Instance Memory": "4", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "no", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2 Shared-core", + "Machine type": "e2-medium", + "Microarchitecture": "Haswell", + "Instance vCPUs": "2", + "Instance Memory": "4", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "no", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "e2 Shared-core", + "Machine type": "e2-medium", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "2", + "Instance Memory": "4", + "Platform vCPUs (highest vCPU possible)": "32", + "Platform Memory": "128", + "Platform Storage Info (SSD?)": "no", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2", + "Machine type": "n2-standard-2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "2", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "512", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2", + "Machine type": "n2-standard-4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "4", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "512", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2", + "Machine type": "n2-standard-8", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "8", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "512", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2", + "Machine type": "n2-standard-16", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "16", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "512", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2", + "Machine type": "n2-standard-32", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "32", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "512", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2", + "Machine type": "n2-standard-48", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "48", + "Instance Memory": "192", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "512", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2", + "Machine type": "n2-standard-64", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "64", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "512", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2", + "Machine type": "n2-standard-80", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "80", + "Instance Memory": "320", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "512", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2", + "Machine type": "n2-standard-96", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "96", + "Instance Memory": "384", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "512", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2", + "Machine type": "n2-standard-128", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "128", + "Instance Memory": "512", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "512", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2", + "Machine type": "n2-highmem-2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "2", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "864", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2", + "Machine type": "n2-highmem-4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "4", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "864", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2", + "Machine type": "n2-highmem-8", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "8", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "864", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2", + "Machine type": "n2-highmem-16", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "16", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "864", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2", + "Machine type": "n2-highmem-32", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "32", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "864", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2", + "Machine type": "n2-highmem-48", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "48", + "Instance Memory": "384", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "864", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2", + "Machine type": "n2-highmem-64", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "64", + "Instance Memory": "512", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "864", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2", + "Machine type": "n2-highmem-80", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "80", + "Instance Memory": "640", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "864", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2", + "Machine type": "n2-highmem-96", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "96", + "Instance Memory": "768", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "864", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2", + "Machine type": "n2-highmem-128", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "128", + "Instance Memory": "864", + "Platform vCPUs (highest vCPU possible)": "128", + "Platform Memory": "864", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2", + "Machine type": "n2-highcpu-2", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "2", + "Instance Memory": "2", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "96", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2", + "Machine type": "n2-highcpu-4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "4", + "Instance Memory": "4", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "96", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2", + "Machine type": "n2-highcpu-8", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "8", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "96", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2", + "Machine type": "n2-highcpu-16", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "16", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "96", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2", + "Machine type": "n2-highcpu-32", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "32", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "96", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2", + "Machine type": "n2-highcpu-48", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "48", + "Instance Memory": "48", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "96", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2", + "Machine type": "n2-highcpu-64", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "64", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "96", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2", + "Machine type": "n2-highcpu-80", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "80", + "Instance Memory": "80", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "96", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2", + "Machine type": "n2-highcpu-96", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "96", + "Instance Memory": "96", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "96", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2d", + "Machine type": "n2d-standard-2", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "2", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "224", + "Platform Memory": "896", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2d", + "Machine type": "n2d-standard-4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "4", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "224", + "Platform Memory": "896", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2d", + "Machine type": "n2d-standard-8", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "8", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "224", + "Platform Memory": "896", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2d", + "Machine type": "n2d-standard-16", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "16", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "224", + "Platform Memory": "896", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2d", + "Machine type": "n2d-standard-32", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "32", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "224", + "Platform Memory": "896", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2d", + "Machine type": "n2d-standard-48", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "48", + "Instance Memory": "192", + "Platform vCPUs (highest vCPU possible)": "224", + "Platform Memory": "896", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2d", + "Machine type": "n2d-standard-64", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "64", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "224", + "Platform Memory": "896", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2d", + "Machine type": "n2d-standard-80", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "80", + "Instance Memory": "320", + "Platform vCPUs (highest vCPU possible)": "224", + "Platform Memory": "896", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2d", + "Machine type": "n2d-standard-96", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "96", + "Instance Memory": "384", + "Platform vCPUs (highest vCPU possible)": "224", + "Platform Memory": "896", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2d", + "Machine type": "n2d-standard-128", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "128", + "Instance Memory": "512", + "Platform vCPUs (highest vCPU possible)": "224", + "Platform Memory": "896", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2d", + "Machine type": "n2d-standard-224", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "224", + "Instance Memory": "896", + "Platform vCPUs (highest vCPU possible)": "224", + "Platform Memory": "896", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2d", + "Machine type": "n2d-highmem-2", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "2", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "768", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2d", + "Machine type": "n2d-highmem-4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "4", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "768", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2d", + "Machine type": "n2d-highmem-8", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "8", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "768", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2d", + "Machine type": "n2d-highmem-16", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "16", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "768", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2d", + "Machine type": "n2d-highmem-32", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "32", + "Instance Memory": "256", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "768", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2d", + "Machine type": "n2d-highmem-48", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "48", + "Instance Memory": "384", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "768", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2d", + "Machine type": "n2d-highmem-64", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "64", + "Instance Memory": "512", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "768", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2d", + "Machine type": "n2d-highmem-80", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "80", + "Instance Memory": "640", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "768", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2d", + "Machine type": "n2d-highmem-96", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "96", + "Instance Memory": "768", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "768", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2d", + "Machine type": "n2d-highcpu-2", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "2", + "Instance Memory": "2", + "Platform vCPUs (highest vCPU possible)": "224", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2d", + "Machine type": "n2d-highcpu-4", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "4", + "Instance Memory": "4", + "Platform vCPUs (highest vCPU possible)": "224", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2d", + "Machine type": "n2d-highcpu-8", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "8", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "224", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2d", + "Machine type": "n2d-highcpu-16", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "16", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "224", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2d", + "Machine type": "n2d-highcpu-32", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "32", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "224", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2d", + "Machine type": "n2d-highcpu-48", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "48", + "Instance Memory": "48", + "Platform vCPUs (highest vCPU possible)": "224", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2d", + "Machine type": "n2d-highcpu-64", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "64", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "224", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2d", + "Machine type": "n2d-highcpu-80", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "80", + "Instance Memory": "80", + "Platform vCPUs (highest vCPU possible)": "224", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2d", + "Machine type": "n2d-highcpu-96", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "96", + "Instance Memory": "96", + "Platform vCPUs (highest vCPU possible)": "224", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2d", + "Machine type": "n2d-highcpu-128", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "128", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "224", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n2d", + "Machine type": "n2d-highcpu-224", + "Microarchitecture": "EPYC 2nd Gen", + "Instance vCPUs": "224", + "Instance Memory": "224", + "Platform vCPUs (highest vCPU possible)": "224", + "Platform Memory": "224", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "t2d", + "Machine type": "t2d-standard-1", + "Microarchitecture": "EPYC 3rd Gen", + "Instance vCPUs": "1", + "Instance Memory": "4", + "Platform vCPUs (highest vCPU possible)": "60", + "Platform Memory": "240", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "t2d", + "Machine type": "t2d-standard-2", + "Microarchitecture": "EPYC 3rd Gen", + "Instance vCPUs": "2", + "Instance Memory": "8", + "Platform vCPUs (highest vCPU possible)": "60", + "Platform Memory": "240", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "t2d", + "Machine type": "t2d-standard-4", + "Microarchitecture": "EPYC 3rd Gen", + "Instance vCPUs": "4", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "60", + "Platform Memory": "240", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "t2d", + "Machine type": "t2d-standard-8", + "Microarchitecture": "EPYC 3rd Gen", + "Instance vCPUs": "8", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "60", + "Platform Memory": "240", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "t2d", + "Machine type": "t2d-standard-16", + "Microarchitecture": "EPYC 3rd Gen", + "Instance vCPUs": "16", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "60", + "Platform Memory": "240", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "t2d", + "Machine type": "t2d-standard-32", + "Microarchitecture": "EPYC 3rd Gen", + "Instance vCPUs": "32", + "Instance Memory": "128", + "Platform vCPUs (highest vCPU possible)": "60", + "Platform Memory": "240", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "t2d", + "Machine type": "t2d-standard-48", + "Microarchitecture": "EPYC 3rd Gen", + "Instance vCPUs": "48", + "Instance Memory": "192", + "Platform vCPUs (highest vCPU possible)": "60", + "Platform Memory": "240", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "t2d", + "Machine type": "t2d-standard-60", + "Microarchitecture": "EPYC 3rd Gen", + "Instance vCPUs": "60", + "Instance Memory": "240", + "Platform vCPUs (highest vCPU possible)": "60", + "Platform Memory": "240", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-1", + "Microarchitecture": "Skylake", + "Instance vCPUs": "1", + "Instance Memory": "3.75", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-1", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "1", + "Instance Memory": "3.75", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-1", + "Microarchitecture": "Haswell", + "Instance vCPUs": "1", + "Instance Memory": "3.75", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-1", + "Microarchitecture": "Ivy Bridge", + "Instance vCPUs": "1", + "Instance Memory": "3.75", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-1", + "Microarchitecture": "Sandy Bridge", + "Instance vCPUs": "1", + "Instance Memory": "3.75", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "2", + "Instance Memory": "7.50", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-2", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "2", + "Instance Memory": "7.50", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-2", + "Microarchitecture": "Haswell", + "Instance vCPUs": "2", + "Instance Memory": "7.50", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-2", + "Microarchitecture": "Ivy Bridge", + "Instance vCPUs": "2", + "Instance Memory": "7.50", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-2", + "Microarchitecture": "Sandy Bridge", + "Instance vCPUs": "2", + "Instance Memory": "7.50", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-4", + "Microarchitecture": "Skylake", + "Instance vCPUs": "4", + "Instance Memory": "15", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-4", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "4", + "Instance Memory": "15", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-4", + "Microarchitecture": "Haswell", + "Instance vCPUs": "4", + "Instance Memory": "15", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-4", + "Microarchitecture": "Ivy Bridge", + "Instance vCPUs": "4", + "Instance Memory": "15", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-4", + "Microarchitecture": "Sandy Bridge", + "Instance vCPUs": "4", + "Instance Memory": "15", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-8", + "Microarchitecture": "Skylake", + "Instance vCPUs": "8", + "Instance Memory": "30", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-8", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "8", + "Instance Memory": "30", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-8", + "Microarchitecture": "Haswell", + "Instance vCPUs": "8", + "Instance Memory": "30", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-8", + "Microarchitecture": "Ivy Bridge", + "Instance vCPUs": "8", + "Instance Memory": "30", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-8", + "Microarchitecture": "Sandy Bridge", + "Instance vCPUs": "8", + "Instance Memory": "30", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-16", + "Microarchitecture": "Skylake", + "Instance vCPUs": "16", + "Instance Memory": "60", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-16", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "16", + "Instance Memory": "60", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-16", + "Microarchitecture": "Haswell", + "Instance vCPUs": "16", + "Instance Memory": "60", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-16", + "Microarchitecture": "Ivy Bridge", + "Instance vCPUs": "16", + "Instance Memory": "60", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-16", + "Microarchitecture": "Sandy Bridge", + "Instance vCPUs": "16", + "Instance Memory": "60", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-32", + "Microarchitecture": "Skylake", + "Instance vCPUs": "32", + "Instance Memory": "120", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-32", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "32", + "Instance Memory": "120", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-32", + "Microarchitecture": "Haswell", + "Instance vCPUs": "32", + "Instance Memory": "120", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-32", + "Microarchitecture": "Ivy Bridge", + "Instance vCPUs": "32", + "Instance Memory": "120", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-32", + "Microarchitecture": "Sandy Bridge", + "Instance vCPUs": "32", + "Instance Memory": "120", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-64", + "Microarchitecture": "Skylake", + "Instance vCPUs": "64", + "Instance Memory": "240", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-64", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "64", + "Instance Memory": "240", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-64", + "Microarchitecture": "Haswell", + "Instance vCPUs": "64", + "Instance Memory": "240", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-64", + "Microarchitecture": "Ivy Bridge", + "Instance vCPUs": "64", + "Instance Memory": "240", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-64", + "Microarchitecture": "Sandy Bridge", + "Instance vCPUs": "64", + "Instance Memory": "240", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-96", + "Microarchitecture": "Skylake", + "Instance vCPUs": "96", + "Instance Memory": "360", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-96", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "96", + "Instance Memory": "360", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-96", + "Microarchitecture": "Haswell", + "Instance vCPUs": "96", + "Instance Memory": "360", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-96", + "Microarchitecture": "Ivy Bridge", + "Instance vCPUs": "96", + "Instance Memory": "360", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-standard-96", + "Microarchitecture": "Sandy Bridge", + "Instance vCPUs": "96", + "Instance Memory": "360", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highmem-2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "2", + "Instance Memory": "13", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "624", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highmem-2", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "2", + "Instance Memory": "13", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "624", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highmem-2", + "Microarchitecture": "Haswell", + "Instance vCPUs": "2", + "Instance Memory": "13", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "624", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highmem-2", + "Microarchitecture": "Ivy Bridge", + "Instance vCPUs": "2", + "Instance Memory": "13", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "624", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highmem-2", + "Microarchitecture": "Sandy Bridge", + "Instance vCPUs": "2", + "Instance Memory": "13", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "624", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highmem-4", + "Microarchitecture": "Skylake", + "Instance vCPUs": "4", + "Instance Memory": "26", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "624", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highmem-4", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "4", + "Instance Memory": "26", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "624", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highmem-4", + "Microarchitecture": "Haswell", + "Instance vCPUs": "4", + "Instance Memory": "26", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "624", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highmem-4", + "Microarchitecture": "Ivy Bridge", + "Instance vCPUs": "4", + "Instance Memory": "26", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "624", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highmem-4", + "Microarchitecture": "Sandy Bridge", + "Instance vCPUs": "4", + "Instance Memory": "26", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "624", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highmem-8", + "Microarchitecture": "Skylake", + "Instance vCPUs": "8", + "Instance Memory": "52", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "624", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highmem-8", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "8", + "Instance Memory": "52", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "624", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highmem-8", + "Microarchitecture": "Haswell", + "Instance vCPUs": "8", + "Instance Memory": "52", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "624", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highmem-8", + "Microarchitecture": "Ivy Bridge", + "Instance vCPUs": "8", + "Instance Memory": "52", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "624", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highmem-8", + "Microarchitecture": "Sandy Bridge", + "Instance vCPUs": "8", + "Instance Memory": "52", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "624", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highmem-16", + "Microarchitecture": "Skylake", + "Instance vCPUs": "16", + "Instance Memory": "104", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "624", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highmem-16", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "16", + "Instance Memory": "104", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "624", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highmem-16", + "Microarchitecture": "Haswell", + "Instance vCPUs": "16", + "Instance Memory": "104", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "624", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highmem-16", + "Microarchitecture": "Ivy Bridge", + "Instance vCPUs": "16", + "Instance Memory": "104", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "624", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highmem-16", + "Microarchitecture": "Sandy Bridge", + "Instance vCPUs": "16", + "Instance Memory": "104", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "624", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highmem-32", + "Microarchitecture": "Skylake", + "Instance vCPUs": "32", + "Instance Memory": "208", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "624", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highmem-32", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "32", + "Instance Memory": "208", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "624", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highmem-32", + "Microarchitecture": "Haswell", + "Instance vCPUs": "32", + "Instance Memory": "208", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "624", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highmem-32", + "Microarchitecture": "Ivy Bridge", + "Instance vCPUs": "32", + "Instance Memory": "208", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "624", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highmem-32", + "Microarchitecture": "Sandy Bridge", + "Instance vCPUs": "32", + "Instance Memory": "208", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "624", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highmem-64", + "Microarchitecture": "Skylake", + "Instance vCPUs": "64", + "Instance Memory": "416", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "624", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highmem-64", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "64", + "Instance Memory": "416", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "624", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highmem-64", + "Microarchitecture": "Haswell", + "Instance vCPUs": "64", + "Instance Memory": "416", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "624", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highmem-64", + "Microarchitecture": "Ivy Bridge", + "Instance vCPUs": "64", + "Instance Memory": "416", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "624", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highmem-64", + "Microarchitecture": "Sandy Bridge", + "Instance vCPUs": "64", + "Instance Memory": "416", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "624", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highmem-96", + "Microarchitecture": "Skylake", + "Instance vCPUs": "96", + "Instance Memory": "624", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "624", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highmem-96", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "96", + "Instance Memory": "624", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "624", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highmem-96", + "Microarchitecture": "Haswell", + "Instance vCPUs": "96", + "Instance Memory": "624", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "624", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highmem-96", + "Microarchitecture": "Ivy Bridge", + "Instance vCPUs": "96", + "Instance Memory": "624", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "624", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highmem-96", + "Microarchitecture": "Sandy Bridge", + "Instance vCPUs": "96", + "Instance Memory": "624", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "624", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highcpu-2", + "Microarchitecture": "Skylake", + "Instance vCPUs": "2", + "Instance Memory": "1.80", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "86.40", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highcpu-2", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "2", + "Instance Memory": "1.80", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "86.40", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highcpu-2", + "Microarchitecture": "Haswell", + "Instance vCPUs": "2", + "Instance Memory": "1.80", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "86.40", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highcpu-2", + "Microarchitecture": "Ivy Bridge", + "Instance vCPUs": "2", + "Instance Memory": "1.80", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "86.40", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highcpu-2", + "Microarchitecture": "Sandy Bridge", + "Instance vCPUs": "2", + "Instance Memory": "1.80", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "86.40", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highcpu-4", + "Microarchitecture": "Skylake", + "Instance vCPUs": "4", + "Instance Memory": "3.60", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "86.40", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highcpu-4", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "4", + "Instance Memory": "3.60", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "86.40", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highcpu-4", + "Microarchitecture": "Haswell", + "Instance vCPUs": "4", + "Instance Memory": "3.60", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "86.40", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highcpu-4", + "Microarchitecture": "Ivy Bridge", + "Instance vCPUs": "4", + "Instance Memory": "3.60", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "86.40", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highcpu-4", + "Microarchitecture": "Sandy Bridge", + "Instance vCPUs": "4", + "Instance Memory": "3.60", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "86.40", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highcpu-8", + "Microarchitecture": "Skylake", + "Instance vCPUs": "8", + "Instance Memory": "7.20", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "86.40", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highcpu-8", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "8", + "Instance Memory": "7.20", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "86.40", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highcpu-8", + "Microarchitecture": "Haswell", + "Instance vCPUs": "8", + "Instance Memory": "7.20", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "86.40", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highcpu-8", + "Microarchitecture": "Ivy Bridge", + "Instance vCPUs": "8", + "Instance Memory": "7.20", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "86.40", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highcpu-8", + "Microarchitecture": "Sandy Bridge", + "Instance vCPUs": "8", + "Instance Memory": "7.20", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "86.40", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highcpu-16", + "Microarchitecture": "Skylake", + "Instance vCPUs": "16", + "Instance Memory": "14.4", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "86.40", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highcpu-16", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "16", + "Instance Memory": "14.4", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "86.40", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highcpu-16", + "Microarchitecture": "Haswell", + "Instance vCPUs": "16", + "Instance Memory": "14.4", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "86.40", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highcpu-16", + "Microarchitecture": "Ivy Bridge", + "Instance vCPUs": "16", + "Instance Memory": "14.4", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "86.40", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highcpu-16", + "Microarchitecture": "Sandy Bridge", + "Instance vCPUs": "16", + "Instance Memory": "14.4", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "86.40", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highcpu-32", + "Microarchitecture": "Skylake", + "Instance vCPUs": "32", + "Instance Memory": "28.8", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "86.40", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highcpu-32", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "32", + "Instance Memory": "28.8", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "86.40", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highcpu-32", + "Microarchitecture": "Haswell", + "Instance vCPUs": "32", + "Instance Memory": "28.8", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "86.40", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highcpu-32", + "Microarchitecture": "Ivy Bridge", + "Instance vCPUs": "32", + "Instance Memory": "28.8", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "86.40", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highcpu-32", + "Microarchitecture": "Sandy Bridge", + "Instance vCPUs": "32", + "Instance Memory": "28.8", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "86.40", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highcpu-64", + "Microarchitecture": "Skylake", + "Instance vCPUs": "64", + "Instance Memory": "57.6", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "86.40", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highcpu-64", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "64", + "Instance Memory": "57.6", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "86.40", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highcpu-64", + "Microarchitecture": "Haswell", + "Instance vCPUs": "64", + "Instance Memory": "57.6", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "86.40", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highcpu-64", + "Microarchitecture": "Ivy Bridge", + "Instance vCPUs": "64", + "Instance Memory": "57.6", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "86.40", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highcpu-64", + "Microarchitecture": "Sandy Bridge", + "Instance vCPUs": "64", + "Instance Memory": "57.6", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "86.40", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highcpu-96", + "Microarchitecture": "Skylake", + "Instance vCPUs": "96", + "Instance Memory": "86.4", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "86.40", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highcpu-96", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "96", + "Instance Memory": "86.4", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "86.40", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highcpu-96", + "Microarchitecture": "Haswell", + "Instance vCPUs": "96", + "Instance Memory": "86.4", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "86.40", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highcpu-96", + "Microarchitecture": "Ivy Bridge", + "Instance vCPUs": "96", + "Instance Memory": "86.4", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "86.40", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1", + "Machine type": "n1-highcpu-96", + "Microarchitecture": "Sandy Bridge", + "Instance vCPUs": "96", + "Instance Memory": "86.4", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "86.40", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1 Shared-core", + "Machine type": "f1-micro", + "Microarchitecture": "Skylake", + "Instance vCPUs": "1", + "Instance Memory": "0.60", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1 Shared-core", + "Machine type": "f1-micro", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "1", + "Instance Memory": "0.60", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1 Shared-core", + "Machine type": "f1-micro", + "Microarchitecture": "Haswell", + "Instance vCPUs": "1", + "Instance Memory": "0.60", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1 Shared-core", + "Machine type": "f1-micro", + "Microarchitecture": "Ivy Bridge", + "Instance vCPUs": "1", + "Instance Memory": "0.60", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1 Shared-core", + "Machine type": "f1-micro", + "Microarchitecture": "Sandy Bridge", + "Instance vCPUs": "1", + "Instance Memory": "0.60", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1 Shared-core", + "Machine type": "g1-small", + "Microarchitecture": "Skylake", + "Instance vCPUs": "1", + "Instance Memory": "1.70", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1 Shared-core", + "Machine type": "g1-small", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "1", + "Instance Memory": "1.70", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1 Shared-core", + "Machine type": "g1-small", + "Microarchitecture": "Haswell", + "Instance vCPUs": "1", + "Instance Memory": "1.70", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1 Shared-core", + "Machine type": "g1-small", + "Microarchitecture": "Ivy Bridge", + "Instance vCPUs": "1", + "Instance Memory": "1.70", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "n1 Shared-core", + "Machine type": "g1-small", + "Microarchitecture": "Sandy Bridge", + "Instance vCPUs": "1", + "Instance Memory": "1.70", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "360", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "Compute-optimized", + "Machine type": "c2-standard-4", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "4", + "Instance Memory": "16", + "Platform vCPUs (highest vCPU possible)": "60", + "Platform Memory": "240", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "Compute-optimized", + "Machine type": "c2-standard-8", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "8", + "Instance Memory": "32", + "Platform vCPUs (highest vCPU possible)": "60", + "Platform Memory": "240", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "Compute-optimized", + "Machine type": "c2-standard-16", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "16", + "Instance Memory": "64", + "Platform vCPUs (highest vCPU possible)": "60", + "Platform Memory": "240", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "Compute-optimized", + "Machine type": "c2-standard-30", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "30", + "Instance Memory": "120", + "Platform vCPUs (highest vCPU possible)": "60", + "Platform Memory": "240", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "Compute-optimized", + "Machine type": "c2-standard-60", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "60", + "Instance Memory": "240", + "Platform vCPUs (highest vCPU possible)": "60", + "Platform Memory": "240", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "m1", + "Machine type": "m1-ultramem-40", + "Microarchitecture": "Skylake", + "Instance vCPUs": "40", + "Instance Memory": "961", + "Platform vCPUs (highest vCPU possible)": "160", + "Platform Memory": "1433.6", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "m1", + "Machine type": "m1-ultramem-40", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "40", + "Instance Memory": "961", + "Platform vCPUs (highest vCPU possible)": "160", + "Platform Memory": "1433.6", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "m1", + "Machine type": "m1-ultramem-80", + "Microarchitecture": "Skylake", + "Instance vCPUs": "80", + "Instance Memory": "1922", + "Platform vCPUs (highest vCPU possible)": "160", + "Platform Memory": "1433.6", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "m1", + "Machine type": "m1-ultramem-80", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "80", + "Instance Memory": "1922", + "Platform vCPUs (highest vCPU possible)": "160", + "Platform Memory": "1433.6", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "m1", + "Machine type": "m1-ultramem-160", + "Microarchitecture": "Skylake", + "Instance vCPUs": "160", + "Instance Memory": "3844", + "Platform vCPUs (highest vCPU possible)": "160", + "Platform Memory": "1433.6", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "m1", + "Machine type": "m1-ultramem-160", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "160", + "Instance Memory": "3844", + "Platform vCPUs (highest vCPU possible)": "160", + "Platform Memory": "1433.6", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "m1", + "Machine type": "m1-megamem-96", + "Microarchitecture": "Skylake", + "Instance vCPUs": "96", + "Instance Memory": "1433.6", + "Platform vCPUs (highest vCPU possible)": "160", + "Platform Memory": "1433.6", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "m1", + "Machine type": "m1-megamem-96", + "Microarchitecture": "Broadwell", + "Instance vCPUs": "96", + "Instance Memory": "1433.6", + "Platform vCPUs (highest vCPU possible)": "160", + "Platform Memory": "1433.6", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "m2", + "Machine type": "m2-ultramem-208", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "208", + "Instance Memory": "5.888", + "Platform vCPUs (highest vCPU possible)": "416", + "Platform Memory": "11.776", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "m2", + "Machine type": "m2-ultramem-416", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "416", + "Instance Memory": "11.776", + "Platform vCPUs (highest vCPU possible)": "416", + "Platform Memory": "11.776", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "m2", + "Machine type": "m2-megamem-416", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "416", + "Instance Memory": "5.888", + "Platform vCPUs (highest vCPU possible)": "416", + "Platform Memory": "11.776", + "Platform Storage Info (SSD?)": "No", + "Platform Storage Type": "Non-SSD", + "Platform (largest instance) Storage Drive quantity": "0", + "Instance GPUs": "0", + "Platform GPU": "0" + }, + { + "Machine Family": "Accelorator-optimized highgpu", + "Machine type": "a2-highgpu-1g", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "12", + "Instance Memory": "85", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "1360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "1", + "Platform GPU": "16" + }, + { + "Machine Family": "Accelorator-optimized highgpu", + "Machine type": "a2-highgpu-2g", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "24", + "Instance Memory": "170", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "1360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "2", + "Platform GPU": "16" + }, + { + "Machine Family": "Accelorator-optimized highgpu", + "Machine type": "a2-highgpu-4g", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "48", + "Instance Memory": "340", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "1360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "4", + "Platform GPU": "16" + }, + { + "Machine Family": "Accelorator-optimized highgpu", + "Machine type": "a2-highgpu-8g", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "96", + "Instance Memory": "680", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "1360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "8", + "Platform GPU": "16" + }, + { + "Machine Family": "Accelorator-optimized megagpu", + "Machine type": "a2-megagpu-16g", + "Microarchitecture": "Cascade Lake", + "Instance vCPUs": "96", + "Instance Memory": "1360", + "Platform vCPUs (highest vCPU possible)": "96", + "Platform Memory": "1360", + "Platform Storage Info (SSD?)": "Yes", + "Platform Storage Type": "SSD", + "Platform (largest instance) Storage Drive quantity": "1", + "Instance GPUs": "16", + "Platform GPU": "16" + } +] diff --git a/src/lib/ccf/gcp-use.json b/src/lib/ccf/gcp-use.json index 5022ade81..acb96331e 100644 --- a/src/lib/ccf/gcp-use.json +++ b/src/lib/ccf/gcp-use.json @@ -1 +1,58 @@ -[{"": "0", "Architecture": "Skylake", "Min Watts": "0.6446044454253452", "Max Watts": "3.8984738056304855", "GB/Chip": "80.43037974683544"}, {"": "1", "Architecture": "Broadwell", "Min Watts": "0.7128342245989304", "Max Watts": "3.3857473048128344", "GB/Chip": "69.6470588235294"}, {"": "2", "Architecture": "Haswell", "Min Watts": "1.9005681818181814", "Max Watts": "5.9688982156043195", "GB/Chip": "27.310344827586206"}, {"": "3", "Architecture": "EPYC 2nd Gen", "Min Watts": "0.4742621527777778", "Max Watts": "1.5751872939814815", "GB/Chip": "129.77777777777777"}, {"": "4", "Architecture": "Cascade Lake", "Min Watts": "0.6389493581523519", "Max Watts": "3.6424520285114035", "GB/Chip": "98.11764705882354"}, {"": "5", "Architecture": "EPYC 3rd Gen", "Min Watts": "0.44538981119791665", "Max Watts": "1.8719357994791666", "GB/Chip": "128.0"}, {"": "6", "Architecture": "Ivy Bridge", "Min Watts": "3.0369270833333335", "Max Watts": "8.199689511111112", "GB/Chip": "14.933333333333334"}, {"": "7", "Architecture": "Sandy Bridge", "Min Watts": "2.1694411458333334", "Max Watts": "8.550185877430936", "GB/Chip": "16.480916030534353"}] +[ + { + "": "0", + "Architecture": "Skylake", + "Min Watts": "0.6446044454253452", + "Max Watts": "3.8984738056304855", + "GB/Chip": "80.43037974683544" + }, + { + "": "1", + "Architecture": "Broadwell", + "Min Watts": "0.7128342245989304", + "Max Watts": "3.3857473048128344", + "GB/Chip": "69.6470588235294" + }, + { + "": "2", + "Architecture": "Haswell", + "Min Watts": "1.9005681818181814", + "Max Watts": "5.9688982156043195", + "GB/Chip": "27.310344827586206" + }, + { + "": "3", + "Architecture": "EPYC 2nd Gen", + "Min Watts": "0.4742621527777778", + "Max Watts": "1.5751872939814815", + "GB/Chip": "129.77777777777777" + }, + { + "": "4", + "Architecture": "Cascade Lake", + "Min Watts": "0.6389493581523519", + "Max Watts": "3.6424520285114035", + "GB/Chip": "98.11764705882354" + }, + { + "": "5", + "Architecture": "EPYC 3rd Gen", + "Min Watts": "0.44538981119791665", + "Max Watts": "1.8719357994791666", + "GB/Chip": "128.0" + }, + { + "": "6", + "Architecture": "Ivy Bridge", + "Min Watts": "3.0369270833333335", + "Max Watts": "8.199689511111112", + "GB/Chip": "14.933333333333334" + }, + { + "": "7", + "Architecture": "Sandy Bridge", + "Min Watts": "2.1694411458333334", + "Max Watts": "8.550185877430936", + "GB/Chip": "16.480916030534353" + } +] From 64eb2082bc654bd6e7dd842141dfb68754330c3e Mon Sep 17 00:00:00 2001 From: Narek Hovhannisyan Date: Fri, 15 Sep 2023 17:03:54 +0400 Subject: [PATCH 53/69] config: init model ids. --- src/config/config.ts | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/src/config/config.ts b/src/config/config.ts index 70837a7bf..5206ea59a 100644 --- a/src/config/config.ts +++ b/src/config/config.ts @@ -1,7 +1,23 @@ export const CONFIG = { - BOAVIZTA: { - CPU_IMPACT_MODEL_ID: 'org.boavizta.cpu.sci', - CLOUD_IMPACT_MODEL_ID: 'org.boavizta.cloud.sci', + MODEL_IDS: { + BOAVIZTA_CPU: 'org.boavizta.cpu.sci', + BOAVIZTA_CLOUD: 'org.boavizta.cloud.sci', + AVEVA: 'aveva', + EMEM: 'e-mem', + ESHOPPEN: 'org.gsf.eshoppen', + ESHOPPEN_CPU: 'org.gsf.eshoppen-cpu', + ESHOPPEN_MEM: 'org.gsf.eshoppen-mem', + ESHOPPEN_NET: 'org.gsf.eshoppen-net', + SCI_ACCENTURE: 'org.gsf.sci-o', + CCF: 'ccf.cloud.sci', + SCI: 'org.gsf.sci', + SCI_E: 'sci-e', + SCI_M: 'org.gsf.sci-m', + SCI_O: 'org.gsf.sci-o', + SHELL_MODEL: 'shellModel', + TEADS_AWS: 'teads.cloud.sci', + TEADS_CURVE: 'teads.curve', + WATT_TIME: 'org.wattime.grid', }, VALIDATION: { IMPL_CLI: { From e02f9657d2c3f5363efb46381bce3d6f4a80254e Mon Sep 17 00:00:00 2001 From: Narek Hovhannisyan Date: Fri, 15 Sep 2023 17:04:05 +0400 Subject: [PATCH 54/69] lib: re-export all models from index. --- src/lib/index.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/lib/index.ts b/src/lib/index.ts index 4ce7a0522..38b75f0ac 100644 --- a/src/lib/index.ts +++ b/src/lib/index.ts @@ -1,6 +1,12 @@ export * from './boavizta'; +export * from './case-studies'; export * from './ccf'; export * from './shell-imp'; +export * from './sci'; +export * from './sci-e'; export * from './sci-m'; export * from './sci-o'; +export * from './shell-imp'; +export * from './teads-aws'; export * from './teads-curve'; +export * from './watt-time'; From a33444d12a14ca00a3a9299f741eb09c95718462 Mon Sep 17 00:00:00 2001 From: Narek Hovhannisyan Date: Fri, 15 Sep 2023 17:05:16 +0400 Subject: [PATCH 55/69] lib: restructure boavizta imports, id. --- src/lib/boavizta/index.ts | 30 +++++++++++++----------------- 1 file changed, 13 insertions(+), 17 deletions(-) diff --git a/src/lib/boavizta/index.ts b/src/lib/boavizta/index.ts index 70e0b225c..a4f3d0552 100644 --- a/src/lib/boavizta/index.ts +++ b/src/lib/boavizta/index.ts @@ -3,22 +3,11 @@ import axios from 'axios'; import {IImpactModelInterface} from '../interfaces'; import {CONFIG} from '../../config'; -import { - BoaviztaInstanceTypes, - IBoaviztaUsageSCI, - KeyValuePair, -} from '../../types/boavizta'; +import {BoaviztaInstanceTypes, IBoaviztaUsageSCI} from '../../types/boavizta'; +import {KeyValuePair} from '../../types/common'; -export {IImpactModelInterface} from '../interfaces'; - -export { - BoaviztaInstanceTypes, - IBoaviztaUsageSCI, - KeyValuePair, -} from '../../types/boavizta'; - -const {BOAVIZTA: Index} = CONFIG; -const {CPU_IMPACT_MODEL_ID, CLOUD_IMPACT_MODEL_ID} = Index; +const {MODEL_IDS} = CONFIG; +const {BOAVIZTA_CPU, BOAVIZTA_CLOUD} = MODEL_IDS; abstract class BoaviztaImpactModel implements IImpactModelInterface { name: string | undefined; @@ -167,7 +156,7 @@ export class BoaviztaCpuImpactModel } modelIdentifier(): string { - return CPU_IMPACT_MODEL_ID; + return BOAVIZTA_CPU; } async fetchData(usageData: object | undefined): Promise { @@ -220,7 +209,7 @@ export class BoaviztaCloudImpactModel public allocation = 'LINEAR'; modelIdentifier(): string { - return CLOUD_IMPACT_MODEL_ID; + return BOAVIZTA_CLOUD; } async validateLocation(staticParamsCast: object) { @@ -352,3 +341,10 @@ export class BoaviztaCloudImpactModel return this.sharedParams; } } + +/** + * For JSII. + */ +export {IImpactModelInterface} from '../interfaces'; +export {BoaviztaInstanceTypes, IBoaviztaUsageSCI} from '../../types/boavizta'; +export {KeyValuePair} from '../../types/common'; From 7f0b0ffdd72d773471df8de1c7e37b589da71fe5 Mon Sep 17 00:00:00 2001 From: Narek Hovhannisyan Date: Fri, 15 Sep 2023 17:05:51 +0400 Subject: [PATCH 56/69] lib: restucture case studies. --- src/lib/case-studies/aveva-model.ts | 39 +++++++++-------- src/lib/case-studies/emem-model.ts | 47 ++++++++++++--------- src/lib/case-studies/eshoppen-model.ts | 37 +++++++++++----- src/lib/case-studies/sci-accenture-model.ts | 21 ++++++--- 4 files changed, 89 insertions(+), 55 deletions(-) diff --git a/src/lib/case-studies/aveva-model.ts b/src/lib/case-studies/aveva-model.ts index 3f5a2cdbe..40e3ae641 100644 --- a/src/lib/case-studies/aveva-model.ts +++ b/src/lib/case-studies/aveva-model.ts @@ -1,10 +1,14 @@ import {IImpactModelInterface} from '../interfaces'; +import {CONFIG} from '../../config'; + +const {MODEL_IDS} = CONFIG; +const {AVEVA} = MODEL_IDS; + export class EAvevaModel implements IImpactModelInterface { - // Defined for compatibility. Not used in Aveva. - authParams: object | undefined; - // name of the data source - name: string | undefined; + authParams: object | undefined; // Defined for compatibility. Not used in Aveva. + name: string | undefined; // name of the data source + /** * Defined for compatibility. Not used here. */ @@ -13,9 +17,9 @@ export class EAvevaModel implements IImpactModelInterface { } /** - * Configures the Aveva Plugin for IEF - * @param {string} name name of the resource - * @param {Object} staticParams static parameters for the resource + * Configures the Aveva Plugin for IEF + * @param {string} name name of the resource + * @param {Object} staticParams static parameters for the resource */ async configure( name: string, @@ -26,17 +30,17 @@ export class EAvevaModel implements IImpactModelInterface { if (staticParams === undefined) { throw new Error('Required Parameters not provided'); } + return this; } /** - * Calculate the total emissions for a list of observations - * + * Calculate the total emissions for a list of observations. * Each Observation require: - * @param {Object[]} observations - * @param {number} observations[].time time to normalize to in hours - * @param {number} observations[].pb baseline power - * @param {number} observations[].pl measured power + * @param {Object[]} observations + * @param {number} observations[].time time to normalize to in hours + * @param {number} observations[].pb baseline power + * @param {number} observations[].pl measured power */ async calculate(observations: object | object[] | undefined): Promise { if (observations === undefined) { @@ -44,19 +48,20 @@ export class EAvevaModel implements IImpactModelInterface { } else if (!Array.isArray(observations)) { throw new Error('Observations must be an array'); } - observations.map(observation => { + + return observations.map(observation => { this.configure(this.name!, observation); observation['e-cpu'] = ((observation['pl'] - observation['pb']) * observation['time']) / 1000; + return observation; }); - - return Promise.resolve(observations); } + /** * Returns model identifier */ modelIdentifier() { - return 'aveva'; + return AVEVA; } } diff --git a/src/lib/case-studies/emem-model.ts b/src/lib/case-studies/emem-model.ts index c7919d957..f2e6537de 100644 --- a/src/lib/case-studies/emem-model.ts +++ b/src/lib/case-studies/emem-model.ts @@ -1,13 +1,18 @@ import {IImpactModelInterface} from '../interfaces'; -import {KeyValuePair} from '../../types/boavizta'; + +import {CONFIG} from '../../config'; + +import {KeyValuePair} from '../../types/common'; + +const {MODEL_IDS} = CONFIG; +const {EMEM} = MODEL_IDS; export class EMemModel implements IImpactModelInterface { - // Defined for compatibility. Not used in this. - authParams: object | undefined; - // name of the data source - name: string | undefined; + authParams: object | undefined; // Defined for compatibility. Not used in this. + name: string | undefined; // name of the data source memoryAllocation = 0; memoryEnergy = 0; + /** * Defined for compatibility. Not used. */ @@ -16,11 +21,11 @@ export class EMemModel implements IImpactModelInterface { } /** - * Configures the Plugin for IEF - * @param {string} name name of the resource - * @param {Object} staticParams static parameters for the resource - * @param {number} staticParams.tdp Thermal Design Power in Watts - * @param {Interpolation} staticParams.interpolation Interpolation method + * Configures the Plugin for IEF + * @param {string} name name of the resource + * @param {Object} staticParams static parameters for the resource + * @param {number} staticParams.tdp Thermal Design Power in Watts + * @param {Interpolation} staticParams.interpolation Interpolation method */ async configure( name: string, @@ -44,12 +49,12 @@ export class EMemModel implements IImpactModelInterface { } /** - * Calculate the total emissions for a list of observations + * Calculate the total emissions for a list of observations. * * Each Observation require: - * @param {Object[]} observations - * @param {string} observations[].timestamp RFC3339 timestamp string - * @param {number} observations[].mem-util percentage mem usage + * @param {Object[]} observations + * @param {string} observations[].timestamp RFC3339 timestamp string + * @param {number} observations[].mem-util percentage mem usage */ async calculate(observations: object | object[] | undefined): Promise { if (observations === undefined) { @@ -57,9 +62,11 @@ export class EMemModel implements IImpactModelInterface { } else if (!Array.isArray(observations)) { throw new Error('Observations must be an array'); } + return observations.map((observation: KeyValuePair) => { this.configure(this.name!, observation); observation['e-mem'] = this.calculateEnergy(observation); + return observation; }); } @@ -68,7 +75,7 @@ export class EMemModel implements IImpactModelInterface { * Returns model identifier */ modelIdentifier(): string { - return 'e-mem'; + return EMEM; } /** @@ -86,11 +93,13 @@ export class EMemModel implements IImpactModelInterface { 'Required Parameters duration,cpu-util,timestamp not provided for observation' ); } + if (this.memoryAllocation === 0) { throw new Error( 'Required Parameter: mem-alloc not provided in configure' ); } + if (this.memoryEnergy === 0) { throw new Error( 'Required Parameter: mem-energy not provided in configure' @@ -98,14 +107,12 @@ export class EMemModel implements IImpactModelInterface { } const mem_alloc = this.memoryAllocation; - // convert cpu usage to percentage - const mem_util = observation['mem-util']; + const mem_util = observation['mem-util']; // convert cpu usage to percentage + if (mem_util < 0 || mem_util > 100) { throw new Error('cpu usage must be between 0 and 100'); } - const mem_energy = this.memoryEnergy; - - return (mem_alloc * (mem_util / 100) * mem_energy) / 1000; + return (mem_alloc * (mem_util / 100) * this.memoryEnergy) / 1000; } } diff --git a/src/lib/case-studies/eshoppen-model.ts b/src/lib/case-studies/eshoppen-model.ts index 83727561a..cd8063183 100644 --- a/src/lib/case-studies/eshoppen-model.ts +++ b/src/lib/case-studies/eshoppen-model.ts @@ -1,5 +1,13 @@ import {IImpactModelInterface} from '../interfaces'; -import {KeyValuePair} from '../../types/boavizta'; + +import {CONFIG} from '../../config'; + +import {KeyValuePair} from '../../types/common'; + +export {KeyValuePair} from '../../types/common'; + +const {MODEL_IDS} = CONFIG; +const {ESHOPPEN, ESHOPPEN_CPU, ESHOPPEN_MEM, ESHOPPEN_NET} = MODEL_IDS; export class EshoppenModel implements IImpactModelInterface { authParams: object | undefined = undefined; @@ -11,13 +19,12 @@ export class EshoppenModel implements IImpactModelInterface { this.authParams = authParams; } - async calculate( - observations: object | object[] | undefined - ): Promise { + async calculate(observations: object | object[] | undefined): Promise { if (!Array.isArray(observations)) { throw new Error('observations should be an array'); } - observations.map((observation: KeyValuePair) => { + + const tunedObservations = observations.map((observation: KeyValuePair) => { switch (this.modelType) { case 'e-cpu': { // e-cpu = n-hours * n-chips * tdp * tdp-coeff @@ -30,6 +37,7 @@ export class EshoppenModel implements IImpactModelInterface { if (isNaN(observation['e-cpu'])) { throw new Error('e-cpu not computable'); } + break; } case 'e-mem': { @@ -40,9 +48,11 @@ export class EshoppenModel implements IImpactModelInterface { observation['tdp-mem'] * observation['tdp-coeff']) / 1000; + if (isNaN(observation['e-mem'])) { throw new Error('e-mem not computable'); } + break; } case 'e-net': { @@ -51,28 +61,33 @@ export class EshoppenModel implements IImpactModelInterface { ((observation['data-in'] + observation['data-out']) * observation['net-energy']) / 1000; + if (isNaN(observation['e-net'])) { throw new Error('e-net not computable'); } + break; } case 'e-sum': { // e-sum = e-cpu + e-mem + e-net observation['energy'] = observation['e-cpu'] + observation['e-mem'] + observation['e-net']; + if (isNaN(observation['energy'])) { throw new Error('energy not computable'); } + break; } default: { throw new Error('Unknown msft-eshoppen model type'); } } + return observation; }); - return Promise.resolve(observations); + return tunedObservations; } async configure( @@ -100,7 +115,7 @@ export class EshoppenModel implements IImpactModelInterface { } modelIdentifier(): string { - return 'org.gsf.eshoppen'; + return ESHOPPEN; } } @@ -111,7 +126,7 @@ export class EshoppenCpuModel extends EshoppenModel { } modelIdentifier(): string { - return 'org.gsf.eshoppen-cpu'; + return ESHOPPEN_CPU; } } @@ -121,8 +136,8 @@ export class EshoppenMemModel extends EshoppenModel { this.modelType = 'e-mem'; } - static modelIdentifier(): string { - return 'org.gsf.eshoppen-mem'; + modelIdentifier(): string { + return ESHOPPEN_MEM; } } @@ -133,6 +148,6 @@ export class EshoppenNetModel extends EshoppenModel { } modelIdentifier(): string { - return 'org.gsf.eshoppen-net'; + return ESHOPPEN_NET; } } diff --git a/src/lib/case-studies/sci-accenture-model.ts b/src/lib/case-studies/sci-accenture-model.ts index 6e109b205..fef91f421 100644 --- a/src/lib/case-studies/sci-accenture-model.ts +++ b/src/lib/case-studies/sci-accenture-model.ts @@ -1,5 +1,11 @@ import {IImpactModelInterface} from '../interfaces'; -import {KeyValuePair} from '../../types/boavizta'; + +import {CONFIG} from '../../config'; + +import {KeyValuePair} from '../../types/common'; + +const {MODEL_IDS} = CONFIG; +const {SCI_ACCENTURE} = MODEL_IDS; export class SciAccentureModel implements IImpactModelInterface { authParams: object | undefined = undefined; @@ -10,21 +16,22 @@ export class SciAccentureModel implements IImpactModelInterface { this.authParams = authParams; } - async calculate( - observations: object | object[] | undefined - ): Promise { + async calculate(observations: object | object[] | undefined): Promise { if (!Array.isArray(observations)) { throw new Error('observations should be an array'); } - observations.map((observation: KeyValuePair) => { + + const tunedObservations = observations.map((observation: KeyValuePair) => { observation['sci_total'] = observation['sci'] * 1.05; + if (isNaN(observation['sci'])) { throw new Error('sci not computable'); } + return observation; }); - return Promise.resolve(observations); + return tunedObservations; } async configure( @@ -37,6 +44,6 @@ export class SciAccentureModel implements IImpactModelInterface { } modelIdentifier(): string { - return 'org.gsf.sci-o'; + return SCI_ACCENTURE; } } From b6a9713d1d4c7f958cfab9a859f2c86268324ebf Mon Sep 17 00:00:00 2001 From: Narek Hovhannisyan Date: Fri, 15 Sep 2023 17:06:03 +0400 Subject: [PATCH 57/69] lib: restucture ccf. --- src/lib/ccf/index.ts | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/src/lib/ccf/index.ts b/src/lib/ccf/index.ts index f07199b79..6fba5a459 100644 --- a/src/lib/ccf/index.ts +++ b/src/lib/ccf/index.ts @@ -1,11 +1,14 @@ import {INSTANCE_TYPE_COMPUTE_PROCESSOR_MAPPING} from '@cloud-carbon-footprint/aws/dist/lib/AWSInstanceTypes'; +import Spline from 'typescript-cubic-spline'; + import { ICcfResult, IComputeInstance, IImpactModelInterface, - Interpolation, } from '../interfaces'; -import Spline from 'typescript-cubic-spline'; + +import {CONFIG} from '../../config'; + import * as AWS_INSTANCES from './aws-instances.json'; import * as GCP_INSTANCES from './gcp-instances.json'; import * as AZURE_INSTANCES from './azure-instances.json'; @@ -15,7 +18,11 @@ import * as AZURE_USE from './azure-use.json'; import * as GCP_EMBODIED from './gcp-embodied.json'; import * as AWS_EMBODIED from './aws-embodied.json'; import * as AZURE_EMBODIED from './azure-embodied.json'; -import {KeyValuePair} from '../../types/boavizta'; + +import {KeyValuePair, Interpolation} from '../../types/common'; + +const {MODEL_IDS} = CONFIG; +const {CCF} = MODEL_IDS; export class CloudCarbonFootprint implements IImpactModelInterface { // Defined for compatibility. Not used in CCF. @@ -219,7 +226,7 @@ export class CloudCarbonFootprint implements IImpactModelInterface { * Returns model identifier */ modelIdentifier(): string { - return 'ccf.cloud.sci'; + return CCF; } /** From 1b6deaf71026a4494759789ae13b742b7e8a568c Mon Sep 17 00:00:00 2001 From: Narek Hovhannisyan Date: Fri, 15 Sep 2023 17:06:52 +0400 Subject: [PATCH 58/69] types: extract kay value, interpolation to common. --- src/lib/interfaces/ccf.ts | 5 ----- src/types/boavizta.ts | 4 ---- src/types/common.ts | 8 ++++++++ 3 files changed, 8 insertions(+), 9 deletions(-) create mode 100644 src/types/common.ts diff --git a/src/lib/interfaces/ccf.ts b/src/lib/interfaces/ccf.ts index c3d4c5d40..e911f9e8c 100644 --- a/src/lib/interfaces/ccf.ts +++ b/src/lib/interfaces/ccf.ts @@ -17,11 +17,6 @@ export interface IComputeInstance { maxVCPUs?: number; } -export enum Interpolation { - LINEAR = 'linear', - SPLINE = 'spline', -} - export interface ICcfResult { energy: number; embodied_emissions: number; diff --git a/src/types/boavizta.ts b/src/types/boavizta.ts index 14c1f6213..19d0a8c8a 100644 --- a/src/types/boavizta.ts +++ b/src/types/boavizta.ts @@ -3,10 +3,6 @@ export interface IBoaviztaUsageSCI { m: number; } -export type KeyValuePair = { - [key: string]: any; -}; - export type BoaviztaInstanceTypes = { [key: string]: string[]; }; diff --git a/src/types/common.ts b/src/types/common.ts new file mode 100644 index 000000000..9898e0970 --- /dev/null +++ b/src/types/common.ts @@ -0,0 +1,8 @@ +export type KeyValuePair = { + [key: string]: any; +}; + +export enum Interpolation { + SPLINE = 'spline', + LINEAR = 'linear', +} From acccf8abd5c7516650c0a2b6b40b29fb53431c52 Mon Sep 17 00:00:00 2001 From: Narek Hovhannisyan Date: Fri, 15 Sep 2023 17:07:15 +0400 Subject: [PATCH 59/69] lib: restructure import and comments for sci. --- src/lib/sci-e/index.ts | 33 +++++++++++++++++++-------------- src/lib/sci-m/index.ts | 15 +++++++++++---- src/lib/sci-o/index.ts | 15 +++++++++++---- src/lib/sci/index.ts | 15 +++++++++++---- 4 files changed, 52 insertions(+), 26 deletions(-) diff --git a/src/lib/sci-e/index.ts b/src/lib/sci-e/index.ts index 062afed2d..283ea6e2f 100644 --- a/src/lib/sci-e/index.ts +++ b/src/lib/sci-e/index.ts @@ -1,12 +1,15 @@ import {IImpactModelInterface} from '../interfaces'; -import {KeyValuePair} from '../../types/boavizta'; + +import {CONFIG} from '../../config'; + +import {KeyValuePair} from '../../types/common'; + +const {MODEL_IDS} = CONFIG; +const {SCI_E} = MODEL_IDS; export class SciEModel implements IImpactModelInterface { - // Defined for compatibility. Not used in thi smodel. - authParams: object | undefined; - // name of the data source - name: string | undefined; - // tdp of the chip being measured + authParams: object | undefined; // Defined for compatibility. Not used in thi smodel. + name: string | undefined; // name of the data source /** * Defined for compatibility. Not used in e-net. @@ -16,9 +19,9 @@ export class SciEModel implements IImpactModelInterface { } /** - * Configures the sci-e Plugin for IEF - * @param {string} name name of the resource - * @param {Object} staticParams static parameters for the resource + * Configures the sci-e Plugin for IEF + * @param {string} name name of the resource + * @param {Object} staticParams static parameters for the resource */ async configure( name: string, @@ -34,11 +37,11 @@ export class SciEModel implements IImpactModelInterface { } /** - * Calculate the total emissions for a list of observations + * Calculate the total emissions for a list of observations. * * Each Observation require: - * @param {Object[]} observations - * @param {string} observations[].timestamp RFC3339 timestamp string + * @param {Object[]} observations + * @param {string} observations[].timestamp RFC3339 timestamp string */ async calculate(observations: object | object[] | undefined): Promise { if (observations === undefined) { @@ -46,9 +49,11 @@ export class SciEModel implements IImpactModelInterface { } else if (!Array.isArray(observations)) { throw new Error('Observations must be an array'); } + return observations.map((observation: KeyValuePair) => { this.configure(this.name!, observation); observation['energy'] = this.calculateEnergy(observation); + return observation; }); } @@ -57,7 +62,7 @@ export class SciEModel implements IImpactModelInterface { * Returns model identifier */ modelIdentifier(): string { - return 'sci-e'; + return SCI_E; } /** @@ -85,7 +90,7 @@ export class SciEModel implements IImpactModelInterface { ); } - // if the user gives a negative value it will default to zero + // If the user gives a negative value it will default to zero. if ('e-cpu' in observation && observation['e-cpu'] > 0) { e_cpu = observation['e-cpu']; } diff --git a/src/lib/sci-m/index.ts b/src/lib/sci-m/index.ts index 1a1ff881b..0fd81e45e 100644 --- a/src/lib/sci-m/index.ts +++ b/src/lib/sci-m/index.ts @@ -1,5 +1,11 @@ import {IImpactModelInterface} from '../interfaces'; -import {KeyValuePair} from '../../types/boavizta'; + +import {CONFIG} from '../../config'; + +import {KeyValuePair} from '../../types/common'; + +const {MODEL_IDS} = CONFIG; +const {SCI_M} = MODEL_IDS; export class SciMModel implements IImpactModelInterface { authParams: object | undefined = undefined; @@ -14,7 +20,8 @@ export class SciMModel implements IImpactModelInterface { if (!Array.isArray(observations)) { throw new Error('observations should be an array'); } - observations.map((observation: KeyValuePair) => { + + const tunedObservations = observations.map((observation: KeyValuePair) => { // te or total-embodied: Total embodied emissions of some underlying hardware. // tir or time-reserved: The length of time the hardware is reserved for use by the software. // el or expected-lifespan: The anticipated time that the equipment will be installed. @@ -98,7 +105,7 @@ export class SciMModel implements IImpactModelInterface { return observation; }); - return Promise.resolve(observations); + return tunedObservations; } async configure( @@ -111,6 +118,6 @@ export class SciMModel implements IImpactModelInterface { } modelIdentifier(): string { - return 'org.gsf.sci-m'; + return SCI_M; } } diff --git a/src/lib/sci-o/index.ts b/src/lib/sci-o/index.ts index d12919067..8b03c7198 100644 --- a/src/lib/sci-o/index.ts +++ b/src/lib/sci-o/index.ts @@ -1,5 +1,11 @@ import {IImpactModelInterface} from '../interfaces'; -import {KeyValuePair} from '../../types/boavizta'; + +import {CONFIG} from '../../config'; + +import {KeyValuePair} from '../../types/common'; + +const {MODEL_IDS} = CONFIG; +const {SCI_O} = MODEL_IDS; export class SciOModel implements IImpactModelInterface { authParams: object | undefined = undefined; @@ -14,7 +20,8 @@ export class SciOModel implements IImpactModelInterface { if (!Array.isArray(observations)) { throw new Error('observations should be an array'); } - observations.map((observation: KeyValuePair) => { + + const tunedObservations = observations.map((observation: KeyValuePair) => { if (!('grid-ci' in observation)) { throw new Error('observation missing `grid-ci`'); } @@ -27,7 +34,7 @@ export class SciOModel implements IImpactModelInterface { return observation; }); - return Promise.resolve(observations); + return tunedObservations; } async configure( @@ -40,6 +47,6 @@ export class SciOModel implements IImpactModelInterface { } modelIdentifier(): string { - return 'org.gsf.sci-o'; + return SCI_O; } } diff --git a/src/lib/sci/index.ts b/src/lib/sci/index.ts index e45de67ab..150d937b1 100644 --- a/src/lib/sci/index.ts +++ b/src/lib/sci/index.ts @@ -1,5 +1,11 @@ import {IImpactModelInterface} from '../interfaces'; -import {KeyValuePair} from '../../types/boavizta'; + +import {CONFIG} from '../../config'; + +import {KeyValuePair} from '../../types/common'; + +const {MODEL_IDS} = CONFIG; +const {SCI} = MODEL_IDS; export class SciModel implements IImpactModelInterface { authParams: object | undefined = undefined; @@ -16,7 +22,8 @@ export class SciModel implements IImpactModelInterface { if (!Array.isArray(observations)) { throw new Error('observations should be an array'); } - observations.map((observation: KeyValuePair) => { + + const tunedObservations = observations.map((observation: KeyValuePair) => { if (!('operational-carbon' in observation)) { throw new Error('observation missing `operational-carbon`'); } @@ -60,7 +67,7 @@ export class SciModel implements IImpactModelInterface { return observation; }); - return Promise.resolve(observations); + return tunedObservations; } async configure( @@ -85,6 +92,6 @@ export class SciModel implements IImpactModelInterface { } modelIdentifier(): string { - return 'org.gsf.sci'; + return SCI; } } From dd9b29fd19e2e0d39551258484f9f0f194201286 Mon Sep 17 00:00:00 2001 From: Narek Hovhannisyan Date: Fri, 15 Sep 2023 17:08:00 +0400 Subject: [PATCH 60/69] lib: restructure teads, imports, and comments. --- src/lib/teads-aws/index.ts | 35 +++++++++------------ src/lib/teads-curve/index.ts | 60 ++++++++++++++++++------------------ 2 files changed, 45 insertions(+), 50 deletions(-) diff --git a/src/lib/teads-aws/index.ts b/src/lib/teads-aws/index.ts index 7180ab9fe..2f9577c93 100644 --- a/src/lib/teads-aws/index.ts +++ b/src/lib/teads-aws/index.ts @@ -1,19 +1,20 @@ -import {IImpactModelInterface} from '../interfaces'; import Spline from 'typescript-cubic-spline'; + import * as AWS_INSTANCES from './aws-instances.json'; import * as AWS_EMBODIED from './aws-embodied.json'; -import {KeyValuePair} from '../../types/boavizta'; -export enum Interpolation { - SPLINE = 'spline', - LINEAR = 'linear', -} +import {IImpactModelInterface} from '../interfaces'; + +import {CONFIG} from '../../config'; + +import {KeyValuePair, Interpolation} from '../../types/common'; + +const {MODEL_IDS} = CONFIG; +const {TEADS_AWS} = MODEL_IDS; export class TeadsAWS implements IImpactModelInterface { - // Defined for compatibility. Not used in TEADS. - authParams: object | undefined; - // name of the data source - name: string | undefined; + authParams: object | undefined; // Defined for compatibility. Not used in TEADS. + name: string | undefined; // name of the data source // compute instances grouped by the provider with usage data private computeInstances: { [key: string]: KeyValuePair; @@ -110,7 +111,7 @@ export class TeadsAWS implements IImpactModelInterface { * Returns model identifier */ modelIdentifier(): string { - return 'teads.cloud.sci'; + return TEADS_AWS; } /** @@ -164,16 +165,10 @@ export class TeadsAWS implements IImpactModelInterface { ); } - // duration is in seconds - const duration = observation['duration']; - - // convert cpu usage to percentage - const cpu = observation['cpu-util']; - - // get the wattage for the instance type - - const x = [0, 10, 50, 100]; + const duration = observation['duration']; // Duration is in seconds. + const cpu = observation['cpu-util']; // Convert cpu usage to percentage. + const x = [0, 10, 50, 100]; // Get the wattage for the instance type. const y: number[] = [ this.computeInstances[this.instanceType].consumption.idle ?? 0, this.computeInstances[this.instanceType].consumption.tenPercent ?? 0, diff --git a/src/lib/teads-curve/index.ts b/src/lib/teads-curve/index.ts index 4312362fa..bd22acf8b 100644 --- a/src/lib/teads-curve/index.ts +++ b/src/lib/teads-curve/index.ts @@ -1,27 +1,22 @@ -import {IImpactModelInterface} from '../interfaces'; import Spline from 'typescript-cubic-spline'; -import {KeyValuePair} from '../../types/boavizta'; -export enum Interpolation { - SPLINE = 'spline', - LINEAR = 'linear', -} +import {IImpactModelInterface} from '../interfaces'; + +import {CONFIG} from '../../config'; + +import {KeyValuePair, Interpolation} from '../../types/common'; + +const {MODEL_IDS} = CONFIG; +const {TEADS_CURVE} = MODEL_IDS; export class TeadsCurveModel implements IImpactModelInterface { - // Defined for compatibility. Not used in TEADS. - authParams: object | undefined; - // name of the data source - name: string | undefined; - // tdp of the chip being measured - tdp = 0; - // default power curve provided by the Teads Team - curve: number[] = [0.12, 0.32, 0.75, 1.02]; - // default percentage points - points: number[] = [0, 10, 50, 100]; - // spline interpolation of the power curve - spline: any = new Spline(this.points, this.curve); - // interpolation method - interpolation: Interpolation = Interpolation.SPLINE; + authParams: object | undefined; // Defined for compatibility. Not used in TEADS. + name: string | undefined; // Name of the data source. + tdp = 0; // `tdp` of the chip being measured. + curve: number[] = [0.12, 0.32, 0.75, 1.02]; // Default power curve provided by the Teads Team. + points: number[] = [0, 10, 50, 100]; // Default percentage points. + spline: any = new Spline(this.points, this.curve); // Spline interpolation of the power curve. + interpolation: Interpolation = Interpolation.SPLINE; // Interpolation method. /** * Defined for compatibility. Not used in TEADS. @@ -31,11 +26,11 @@ export class TeadsCurveModel implements IImpactModelInterface { } /** - * Configures the TEADS Plugin for IEF - * @param {string} name name of the resource - * @param {Object} staticParams static parameters for the resource - * @param {number} staticParams.tdp Thermal Design Power in Watts - * @param {Interpolation} staticParams.interpolation Interpolation method + * Configures the TEADS Plugin for IEF + * @param {string} name name of the resource + * @param {Object} staticParams static parameters for the resource + * @param {number} staticParams.tdp Thermal Design Power in Watts + * @param {Interpolation} staticParams.interpolation Interpolation method */ async configure( name: string, @@ -73,10 +68,10 @@ export class TeadsCurveModel implements IImpactModelInterface { * Calculate the total emissions for a list of observations * * Each Observation require: - * @param {Object[]} observations - * @param {string} observations[].timestamp RFC3339 timestamp string - * @param {number} observations[].duration observation duration in seconds - * @param {number} observations[].cpu-util percentage cpu usage + * @param {Object[]} observations + * @param {string} observations[].timestamp RFC3339 timestamp string + * @param {number} observations[].duration observation duration in seconds + * @param {number} observations[].cpu-util percentage cpu usage */ async calculate(observations: object | object[] | undefined): Promise { if (observations === undefined) { @@ -95,7 +90,7 @@ export class TeadsCurveModel implements IImpactModelInterface { * Returns model identifier */ modelIdentifier(): string { - return 'teads.curve'; + return TEADS_CURVE; } /** @@ -178,3 +173,8 @@ export class TeadsCurveModel implements IImpactModelInterface { return (wattage * duration) / 3600 / 1000; } } + +/** + * For JSII. + */ +export {KeyValuePair, Interpolation} from '../../types/common'; From afa7c93de28cc3011803864c8fb32c9bb749d521 Mon Sep 17 00:00:00 2001 From: Narek Hovhannisyan Date: Fri, 15 Sep 2023 17:08:42 +0400 Subject: [PATCH 61/69] lib: restructure shell imp, imports, and comments. --- src/lib/shell-imp/index.ts | 55 +++++++++++++++++--------------------- 1 file changed, 24 insertions(+), 31 deletions(-) diff --git a/src/lib/shell-imp/index.ts b/src/lib/shell-imp/index.ts index b3e641c6e..19d713186 100644 --- a/src/lib/shell-imp/index.ts +++ b/src/lib/shell-imp/index.ts @@ -1,13 +1,18 @@ -import {IImpactModelInterface} from '../interfaces'; import * as cp from 'child_process'; -import {KeyValuePair} from '../../types/boavizta'; import * as yaml from 'js-yaml'; +import {IImpactModelInterface} from '../interfaces'; + +import {CONFIG} from '../../config'; + +import {KeyValuePair} from '../../types/common'; + +const {MODEL_IDS} = CONFIG; +const {SHELL_MODEL} = MODEL_IDS; + export class ShellModel implements IImpactModelInterface { - // Defined for compatibility. Not used. - authParams: object | undefined; - // name of the data source - name: string | undefined; + authParams: object | undefined; // Defined for compatibility. Not used. + name: string | undefined; // The name of the data source. staticParams: object | undefined; executable = ''; @@ -19,10 +24,10 @@ export class ShellModel implements IImpactModelInterface { } /** - * Configures the Plugin for IEF - * @param {string} name name of the resource - * @param {Object} staticParams static parameters for the resource - * @param {number} staticParams.tdp Thermal Design Power in Watts + * Configures the Plugin for IEF + * @param {string} name name of the resource + * @param {Object} staticParams static parameters for the resource + * @param {number} staticParams.tdp Thermal Design Power in Watts */ async configure( name: string, @@ -62,30 +67,18 @@ export class ShellModel implements IImpactModelInterface { * Returns model identifier */ modelIdentifier(): string { - return 'shellModel'; + return SHELL_MODEL; } - /* - description: - spawns a child process to run an external IMP - expects execPath to be a path to an executable with a CLI exposing two methods: --calculate and --impl - The shell command then calls the --command method passing var impl as the path to the desired impl file - - params: - - impl: yaml string (impl minus top level config) - - execPath: (string) path to executable - - omplName: (string) savename for ompl file - - returns: - - ompl data to stdout - - ompl data to disk as omplName.yaml -*/ /** - * Runs the model in a shell - * @param input - * @param execPath - * @param omplName - * @private + * Runs the model in a shell. Spawns a child process to run an external IMP, + * expects `execPath` to be a path to an executable with a CLI exposing two methods: `--calculate` and `--impl`. + * The shell command then calls the `--command` method passing var impl as the path to the desired impl file. + * @param input Yaml string (impl minus top level config). + * @param {string} execPath Path to executable. + * @param {string} omplName Savename for ompl file. + * @returns - ompl data to stdout + * - ompl data to disk as omplName.yaml */ private runModelInShell(input: string, execPath: string): KeyValuePair { try { From dd2e0f1dc7b1c49ebf507a3d9173a36afb321daf Mon Sep 17 00:00:00 2001 From: Narek Hovhannisyan Date: Fri, 15 Sep 2023 17:08:52 +0400 Subject: [PATCH 62/69] tests: fix interpolation import. --- src/lib/teads-aws/index.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/teads-aws/index.test.ts b/src/lib/teads-aws/index.test.ts index 2bdbf69bb..99cd6d4f9 100644 --- a/src/lib/teads-aws/index.test.ts +++ b/src/lib/teads-aws/index.test.ts @@ -1,6 +1,7 @@ import {describe, expect, jest, test} from '@jest/globals'; import {TeadsAWS} from './index'; -import {Interpolation} from './index'; + +import {Interpolation} from '../../types/common'; jest.setTimeout(30000); From 51c6d11fbb2dc9212b4cab8597c61dc1f39def30 Mon Sep 17 00:00:00 2001 From: Narek Hovhannisyan Date: Fri, 15 Sep 2023 17:09:27 +0400 Subject: [PATCH 63/69] lib: restructure watt-time, imports, and comments. --- src/lib/watt-time/index.ts | 24 +++++++++++++++++++----- 1 file changed, 19 insertions(+), 5 deletions(-) diff --git a/src/lib/watt-time/index.ts b/src/lib/watt-time/index.ts index 2704fd325..0e23a9d69 100644 --- a/src/lib/watt-time/index.ts +++ b/src/lib/watt-time/index.ts @@ -1,8 +1,15 @@ -import {IImpactModelInterface} from '../interfaces'; -import {KeyValuePair} from '../../types/boavizta'; import axios from 'axios'; import * as dayjs from 'dayjs'; +import {IImpactModelInterface} from '../interfaces'; + +import {CONFIG} from '../../config'; + +import {KeyValuePair} from '../../types/common'; + +const {MODEL_IDS} = CONFIG; +const {WATT_TIME} = MODEL_IDS; + export class WattTimeGridEmissions implements IImpactModelInterface { authParams: object | undefined = undefined; token = ''; @@ -20,15 +27,19 @@ export class WattTimeGridEmissions implements IImpactModelInterface { 'username' in authParams ? (authParams['username'] as string) : ''; let password = 'password' in authParams ? (authParams['password'] as string) : ''; + if (username.startsWith('ENV_')) { username = process.env[username.slice(4)] ?? ''; } + if (password.startsWith('ENV_')) { password = process.env[password.slice(4)] ?? ''; } + if (username === '' || password === '') { throw new Error('Missing username or password & token'); } + const tokenResponse = await axios.get(`${this.baseUrl}/login`, { auth: { username, @@ -43,14 +54,16 @@ export class WattTimeGridEmissions implements IImpactModelInterface { if (!Array.isArray(observations)) { throw new Error('observations should be an array'); } - observations = await Promise.all( + + const tunedObservations = await Promise.all( observations.map(async (observation: KeyValuePair) => { const result = await this.fetchData(observation); + return result; }) ); - return Promise.resolve(observations as any[]); + return tunedObservations; } async fetchData(observation: KeyValuePair) { @@ -74,6 +87,7 @@ export class WattTimeGridEmissions implements IImpactModelInterface { if (duration > 32 * 24 * 60 * 60) { throw new Error('duration is too long'); } + const params = { latitude: observation.location.latitude, longitude: observation.location.longitude, @@ -127,6 +141,6 @@ export class WattTimeGridEmissions implements IImpactModelInterface { } modelIdentifier(): string { - return 'org.wattime.grid'; + return WATT_TIME; } } From fb89310833030df9c62d224f60dbd8b4d44cadc8 Mon Sep 17 00:00:00 2001 From: jmc Date: Fri, 15 Sep 2023 14:38:29 +0100 Subject: [PATCH 64/69] lint boavizta model Signed-off-by: jmc --- src/lib/boavizta/index.ts | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/src/lib/boavizta/index.ts b/src/lib/boavizta/index.ts index f6bf425ee..00a696a93 100644 --- a/src/lib/boavizta/index.ts +++ b/src/lib/boavizta/index.ts @@ -141,7 +141,8 @@ abstract class BoaviztaImpactModel implements IImpactModelInterface { export class BoaviztaCpuImpactModel extends BoaviztaImpactModel - implements IImpactModelInterface { + implements IImpactModelInterface +{ sharedParams: object | undefined = undefined; public name: string | undefined; public verbose = false; @@ -203,7 +204,8 @@ export class BoaviztaCpuImpactModel export class BoaviztaCloudImpactModel extends BoaviztaImpactModel - implements IImpactModelInterface { + implements IImpactModelInterface +{ public sharedParams: object | undefined = undefined; public instanceTypes: BoaviztaInstanceTypes = {}; public name: string | undefined; @@ -221,9 +223,9 @@ export class BoaviztaCloudImpactModel if (!countries.includes(location)) { throw new Error( "Improper configure: Invalid location parameter: '" + - location + - "'. Valid values are : " + - countries.join(', ') + location + + "'. Valid values are : " + + countries.join(', ') ); } } @@ -257,9 +259,9 @@ export class BoaviztaCloudImpactModel ) { throw new Error( "Improper configure: Invalid instance_type parameter: '" + - staticParamsCast.instance_type + - "'. Valid values are : " + - this.instanceTypes[provider].join(', ') + staticParamsCast.instance_type + + "'. Valid values are : " + + this.instanceTypes[provider].join(', ') ); } } else { @@ -276,9 +278,9 @@ export class BoaviztaCloudImpactModel if (!supportedProviders.includes(staticParamsCast.provider as string)) { throw new Error( "Improper configure: Invalid provider parameter: '" + - staticParamsCast.provider + - "'. Valid values are : " + - supportedProviders.join(', ') + staticParamsCast.provider + + "'. Valid values are : " + + supportedProviders.join(', ') ); } } From 1472d61c36970dcad459b02dd8115baea4ae8028 Mon Sep 17 00:00:00 2001 From: jmc Date: Fri, 15 Sep 2023 14:44:41 +0100 Subject: [PATCH 65/69] fix boavizta test Signed-off-by: jmc --- src/lib/boavizta/index.test.ts | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/lib/boavizta/index.test.ts b/src/lib/boavizta/index.test.ts index c1bdb4f11..798429942 100644 --- a/src/lib/boavizta/index.test.ts +++ b/src/lib/boavizta/index.test.ts @@ -1,5 +1,5 @@ -import {describe, expect, jest, test} from '@jest/globals'; -import {BoaviztaCloudImpactModel, BoaviztaCpuImpactModel} from './index'; +import { describe, expect, jest, test } from '@jest/globals'; +import { BoaviztaCloudImpactModel, BoaviztaCpuImpactModel } from './index'; import axios from 'axios'; import * as PROVIDERS from '../../__mocks__/boavizta/providers.json'; import * as COUNTRIES from '../../__mocks__/boavizta/countries.json'; @@ -13,9 +13,9 @@ const mockAxios = axios as jest.Mocked; mockAxios.get.mockImplementation(url => { switch (url) { case 'https://api.boavizta.org/v1/cloud/all_providers': - return Promise.resolve({data: PROVIDERS}); + return Promise.resolve({ data: PROVIDERS }); case 'https://api.boavizta.org/v1/utils/country_code': - return Promise.resolve({data: COUNTRIES}); + return Promise.resolve({ data: COUNTRIES }); case 'https://api.boavizta.org/v1/cloud/all_instances?provider=aws': return Promise.resolve({ data: INSTANCE_TYPES['aws'], @@ -29,15 +29,15 @@ mockAxios.post.mockImplementation(url => { case 'https://api.boavizta.org/v1/component/cpu?verbose=false&allocation=LINEAR': return Promise.resolve({ data: { - gwp: {manufacture: 0.1, use: 1.0, unit: 'kgCO2eq'}, - pe: {manufacture: 0.1, use: 1.0, unit: 'MJ'}, + gwp: { manufacture: 0.1, use: 1.0, unit: 'kgCO2eq' }, + pe: { manufacture: 0.1, use: 1.0, unit: 'MJ' }, }, }); case 'https://api.boavizta.org/v1/cloud/?verbose=false&allocation=LINEAR': return Promise.resolve({ data: { - gwp: {manufacture: 0.1, use: 1.0, unit: 'kgCO2eq'}, - pe: {manufacture: 0.1, use: 1.0, unit: 'MJ'}, + gwp: { manufacture: 0.1, use: 1.0, unit: 'kgCO2eq' }, + pe: { manufacture: 0.1, use: 1.0, unit: 'MJ' }, }, }); } @@ -48,7 +48,7 @@ describe('cpu:configure test', () => { const impactModel = new BoaviztaCpuImpactModel(); await expect( - impactModel.configure('test', {allocation: 'wrong'}) + impactModel.configure('test', { allocation: 'wrong' }) ).rejects.toThrowError(); expect(impactModel.name).toBe('test'); }); @@ -68,7 +68,7 @@ describe('cpu:configure test', () => { ); // improper observations will throw a invalid observations error await expect( - impactModel.calculate([{invalid: 'observation'}]) + impactModel.calculate([{ invalid: 'observation' }]) ).rejects.toStrictEqual( Error('Invalid Input: Invalid observations parameter') ); @@ -97,7 +97,7 @@ describe('cpu:initialize with params', () => { ]) ).resolves.toStrictEqual([ { - embodied_emission: 100, + 'embodied-carbon': 100, energy: 0.2777777777777778, }, ]); @@ -141,7 +141,7 @@ describe('cloud:initialize with params', () => { ]) ).resolves.toStrictEqual([ { - embodied_emission: 100, + 'embodied-carbon': 100, energy: 0.2777777777777778, }, ]); From 3787cc17c72a590ed8d9ba93de3395c3a5452e3f Mon Sep 17 00:00:00 2001 From: jmc Date: Fri, 15 Sep 2023 14:46:38 +0100 Subject: [PATCH 66/69] lint boavizta test Signed-off-by: jmc --- src/lib/boavizta/index.test.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/lib/boavizta/index.test.ts b/src/lib/boavizta/index.test.ts index 798429942..db4244045 100644 --- a/src/lib/boavizta/index.test.ts +++ b/src/lib/boavizta/index.test.ts @@ -1,5 +1,5 @@ -import { describe, expect, jest, test } from '@jest/globals'; -import { BoaviztaCloudImpactModel, BoaviztaCpuImpactModel } from './index'; +import {describe, expect, jest, test} from '@jest/globals'; +import {BoaviztaCloudImpactModel, BoaviztaCpuImpactModel} from './index'; import axios from 'axios'; import * as PROVIDERS from '../../__mocks__/boavizta/providers.json'; import * as COUNTRIES from '../../__mocks__/boavizta/countries.json'; @@ -13,9 +13,9 @@ const mockAxios = axios as jest.Mocked; mockAxios.get.mockImplementation(url => { switch (url) { case 'https://api.boavizta.org/v1/cloud/all_providers': - return Promise.resolve({ data: PROVIDERS }); + return Promise.resolve({data: PROVIDERS}); case 'https://api.boavizta.org/v1/utils/country_code': - return Promise.resolve({ data: COUNTRIES }); + return Promise.resolve({data: COUNTRIES}); case 'https://api.boavizta.org/v1/cloud/all_instances?provider=aws': return Promise.resolve({ data: INSTANCE_TYPES['aws'], @@ -29,15 +29,15 @@ mockAxios.post.mockImplementation(url => { case 'https://api.boavizta.org/v1/component/cpu?verbose=false&allocation=LINEAR': return Promise.resolve({ data: { - gwp: { manufacture: 0.1, use: 1.0, unit: 'kgCO2eq' }, - pe: { manufacture: 0.1, use: 1.0, unit: 'MJ' }, + gwp: {manufacture: 0.1, use: 1.0, unit: 'kgCO2eq'}, + pe: {manufacture: 0.1, use: 1.0, unit: 'MJ'}, }, }); case 'https://api.boavizta.org/v1/cloud/?verbose=false&allocation=LINEAR': return Promise.resolve({ data: { - gwp: { manufacture: 0.1, use: 1.0, unit: 'kgCO2eq' }, - pe: { manufacture: 0.1, use: 1.0, unit: 'MJ' }, + gwp: {manufacture: 0.1, use: 1.0, unit: 'kgCO2eq'}, + pe: {manufacture: 0.1, use: 1.0, unit: 'MJ'}, }, }); } @@ -48,7 +48,7 @@ describe('cpu:configure test', () => { const impactModel = new BoaviztaCpuImpactModel(); await expect( - impactModel.configure('test', { allocation: 'wrong' }) + impactModel.configure('test', {allocation: 'wrong'}) ).rejects.toThrowError(); expect(impactModel.name).toBe('test'); }); @@ -68,7 +68,7 @@ describe('cpu:configure test', () => { ); // improper observations will throw a invalid observations error await expect( - impactModel.calculate([{ invalid: 'observation' }]) + impactModel.calculate([{invalid: 'observation'}]) ).rejects.toStrictEqual( Error('Invalid Input: Invalid observations parameter') ); From 011d153026f79ffa262880a2c1fc059bbb8114e1 Mon Sep 17 00:00:00 2001 From: Gnanakeethan Balasubramaniam Date: Fri, 15 Sep 2023 19:16:53 +0530 Subject: [PATCH 67/69] Test fixes for boavizta Signed-off-by: Gnanakeethan Balasubramaniam --- src/lib/boavizta/index.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/boavizta/index.test.ts b/src/lib/boavizta/index.test.ts index db4244045..33cf8b33a 100644 --- a/src/lib/boavizta/index.test.ts +++ b/src/lib/boavizta/index.test.ts @@ -98,7 +98,7 @@ describe('cpu:initialize with params', () => { ).resolves.toStrictEqual([ { 'embodied-carbon': 100, - energy: 0.2777777777777778, + 'e-cpu': 0.2777777777777778, }, ]); }); From 8ca7e5b07552435f1e97d7ba2297efc407f1ba47 Mon Sep 17 00:00:00 2001 From: Narek Hovhannisyan Date: Fri, 15 Sep 2023 17:58:19 +0400 Subject: [PATCH 68/69] util: update imports from model universe. --- src/util/models-universe.ts | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/src/util/models-universe.ts b/src/util/models-universe.ts index 170fbf1b3..4299b0640 100644 --- a/src/util/models-universe.ts +++ b/src/util/models-universe.ts @@ -6,6 +6,14 @@ import { SciMModel, SciOModel, TeadsCurveModel, + SciModel, + EshoppenCpuModel, + EshoppenMemModel, + EshoppenNetModel, + EMemModel, + SciAccentureModel, + EAvevaModel, + SciEModel, } from '../lib'; import { @@ -13,16 +21,6 @@ import { ImplInitializeModel, InitalizedModels, } from '../types/models-universe'; -import {SciModel} from '../lib/sci'; -import { - EshoppenCpuModel, - EshoppenMemModel, - EshoppenNetModel, - EMemModel, - SciAccentureModel, - EAvevaModel, -} from '../lib/case-studies'; -import {SciEModel} from '../lib/sci-e'; /** * Models Initialization Lifecycle. From d56399ecf4545a3cdf43e6be3a6c1f5316bc728f Mon Sep 17 00:00:00 2001 From: Narek Hovhannisyan Date: Fri, 15 Sep 2023 18:08:14 +0400 Subject: [PATCH 69/69] util: add teads, eshoppen models to universe. --- src/util/models-universe.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/util/models-universe.ts b/src/util/models-universe.ts index 4299b0640..0e84955c3 100644 --- a/src/util/models-universe.ts +++ b/src/util/models-universe.ts @@ -5,8 +5,10 @@ import { ShellModel, SciMModel, SciOModel, + TeadsAWS, TeadsCurveModel, SciModel, + EshoppenModel, EshoppenCpuModel, EshoppenMemModel, EshoppenNetModel, @@ -42,6 +44,8 @@ export class ModelsUniverse { return BoaviztaCloudImpactModel; case 'ccf': return CloudCarbonFootprint; + case 'teads-aws': + return TeadsAWS; case 'teads-curve': return TeadsCurveModel; case 'sci-e': @@ -52,6 +56,8 @@ export class ModelsUniverse { return SciOModel; case 'sci': return SciModel; + case 'eshoppen': + return EshoppenModel; case 'eshoppen-net': return EshoppenNetModel; case 'eshoppen-cpu':