diff --git a/go.mod b/go.mod index 52e291e23e..ea9e211993 100644 --- a/go.mod +++ b/go.mod @@ -23,7 +23,7 @@ require ( github.com/mattn/go-isatty v0.0.20 github.com/moby/buildkit v0.13.2 github.com/opencontainers/go-digest v1.0.0 - github.com/scaleway/scaleway-sdk-go v1.0.0-beta.33.0.20250618150302-dd86fd661356 + github.com/scaleway/scaleway-sdk-go v1.0.0-beta.33.0.20250630080509-bd2b86613e39 github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966 github.com/spf13/cobra v1.9.1 github.com/spf13/pflag v1.0.6 diff --git a/go.sum b/go.sum index f9b8f4eb4e..5ab2fcb5c4 100644 --- a/go.sum +++ b/go.sum @@ -466,8 +466,8 @@ github.com/rogpeppe/go-internal v1.11.0/go.mod h1:ddIwULY96R17DhadqLgMfk9H9tvdUz github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06 h1:OkMGxebDjyw0ULyrTYWeN0UNCCkmCWfjPnIA2W6oviI= github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06/go.mod h1:+ePHsJ1keEjQtpvf9HHw0f4ZeJ0TLRsxhunSI2hYJSs= -github.com/scaleway/scaleway-sdk-go v1.0.0-beta.33.0.20250618150302-dd86fd661356 h1:9cMV1lFohW5MTZJ5YRa3bjhOjErTdnAV27GkGJUlaRk= -github.com/scaleway/scaleway-sdk-go v1.0.0-beta.33.0.20250618150302-dd86fd661356/go.mod h1:zFWiHphneiey3s8HOtAEnGrRlWivNaxW5T6d5Xfco7g= +github.com/scaleway/scaleway-sdk-go v1.0.0-beta.33.0.20250630080509-bd2b86613e39 h1:Xean40tUO2sN0pODaLwh+wLz5NYI578PPVIFJgob7cM= +github.com/scaleway/scaleway-sdk-go v1.0.0-beta.33.0.20250630080509-bd2b86613e39/go.mod h1:zFWiHphneiey3s8HOtAEnGrRlWivNaxW5T6d5Xfco7g= github.com/sclevine/spec v1.4.0 h1:z/Q9idDcay5m5irkZ28M7PtQM4aOISzOpj4bUPkDee8= github.com/sclevine/spec v1.4.0/go.mod h1:LvpgJaFyvQzRvc1kaDs0bulYwzC70PbiYjC4QnFHkOM= github.com/secure-systems-lab/go-securesystemslib v0.8.0 h1:mr5An6X45Kb2nddcFlbmfHkLguCE9laoZCUzEEpIZXA= diff --git a/internal/namespaces/baremetal/v1/custom.go b/internal/namespaces/baremetal/v1/custom.go index a41a2b5276..64cc6c204f 100644 --- a/internal/namespaces/baremetal/v1/custom.go +++ b/internal/namespaces/baremetal/v1/custom.go @@ -38,6 +38,7 @@ func GetCommands() *core.Commands { cmds.MustFind("baremetal", "server", "start").Override(serverStartBuilder) cmds.MustFind("baremetal", "server", "stop").Override(serverStopBuilder) cmds.MustFind("baremetal", "server", "reboot").Override(serverRebootBuilder) + cmds.MustFind("baremetal", "offer", "list").Override(serverOfferListBuilder) cmds.MergeAll(baremetalV3.GetCommands()) diff --git a/internal/namespaces/baremetal/v1/custom_offer.go b/internal/namespaces/baremetal/v1/custom_offer.go index 7d7c03d51b..d11be0c6cf 100644 --- a/internal/namespaces/baremetal/v1/custom_offer.go +++ b/internal/namespaces/baremetal/v1/custom_offer.go @@ -1,9 +1,14 @@ package baremetal import ( + "context" + "strings" + "github.com/fatih/color" + "github.com/scaleway/scaleway-cli/v2/core" "github.com/scaleway/scaleway-cli/v2/core/human" "github.com/scaleway/scaleway-sdk-go/api/baremetal/v1" + product_catalog "github.com/scaleway/scaleway-sdk-go/api/product_catalog/v2alpha1" ) var offerAvailabilityMarshalSpecs = human.EnumMarshalSpecs{ @@ -53,3 +58,78 @@ func listOfferMarshalerFunc(i any, opt *human.MarshalOpt) (string, error) { return str, nil } + +type customOffer struct { + *baremetal.Offer + KgCo2Equivalent *float32 `json:"kg_co2_equivalent"` + M3WaterUsage *float32 `json:"m3_water_usage"` +} + +func serverOfferListBuilder(c *core.Command) *core.Command { + c.View = &core.View{ + Fields: []*core.ViewField{ + {Label: "ID", FieldName: "ID"}, + {Label: "Name", FieldName: "Name"}, + {Label: "Stock", FieldName: "Stock"}, + {Label: "Disks", FieldName: "Disks"}, + {Label: "CPUs", FieldName: "CPUs"}, + {Label: "Memories", FieldName: "Memories"}, + {Label: "Options", FieldName: "Options"}, + {Label: "Bandwidth", FieldName: "Bandwidth"}, + {Label: "PrivateBandwidth", FieldName: "PrivateBandwidth"}, + {Label: "CO2 (kg)", FieldName: "KgCo2Equivalent"}, + {Label: "Water (m³)", FieldName: "M3WaterUsage"}, + }, + } + + c.Interceptor = func(ctx context.Context, argsI any, runner core.CommandRunner) (any, error) { + req := argsI.(*baremetal.ListOffersRequest) + rawResp, err := runner(ctx, argsI) + if err != nil { + return nil, err + } + + offers, _ := rawResp.([]*baremetal.Offer) + client := core.ExtractClient(ctx) + + productAPI := product_catalog.NewPublicCatalogAPI(client) + environmentalImpact, _ := productAPI.ListPublicCatalogProducts( + &product_catalog.PublicCatalogAPIListPublicCatalogProductsRequest{ + ProductTypes: []product_catalog.ListPublicCatalogProductsRequestProductType{ + product_catalog.ListPublicCatalogProductsRequestProductTypeElasticMetal, + }, + Zone: &req.Zone, + }, + ) + + unitOfMeasure := product_catalog.PublicCatalogProductUnitOfMeasureCountableUnitMonth + if req.SubscriptionPeriod == "hour" { + unitOfMeasure = product_catalog.PublicCatalogProductUnitOfMeasureCountableUnitHour + } + + impactMap := make(map[string]*product_catalog.PublicCatalogProduct) + for _, impact := range environmentalImpact.Products { + if impact != nil && impact.UnitOfMeasure.Unit == unitOfMeasure { + key := strings.TrimSpace(strings.TrimPrefix(impact.Product, "Elastic Metal ")) + impactMap[key] = impact + } + } + + var customOfferRes []customOffer + for _, offer := range offers { + impact, ok := impactMap[offer.Name] + if !ok || impact == nil { + continue + } + customOfferRes = append(customOfferRes, customOffer{ + Offer: offer, + KgCo2Equivalent: impact.EnvironmentalImpactEstimation.KgCo2Equivalent, + M3WaterUsage: impact.EnvironmentalImpactEstimation.M3WaterUsage, + }) + } + + return customOfferRes, nil + } + + return c +} diff --git a/internal/namespaces/baremetal/v1/custom_offer_test.go b/internal/namespaces/baremetal/v1/custom_offer_test.go index 2876c01f73..12403f17ff 100644 --- a/internal/namespaces/baremetal/v1/custom_offer_test.go +++ b/internal/namespaces/baremetal/v1/custom_offer_test.go @@ -15,3 +15,11 @@ func Test_baremetalGetOffer(t *testing.T) { Check: core.TestCheckGolden(), })) } + +func Test_baremetalListOffer(t *testing.T) { + t.Run("Monthly", core.Test(&core.TestConfig{ + Commands: baremetal.GetCommands(), + Cmd: "scw baremetal offer list", + Check: core.TestCheckGolden(), + })) +} diff --git a/internal/namespaces/baremetal/v1/testdata/test-baremetal-list-offer-monthly.cassette.yaml b/internal/namespaces/baremetal/v1/testdata/test-baremetal-list-offer-monthly.cassette.yaml new file mode 100644 index 0000000000..ba6aa1b2ae --- /dev/null +++ b/internal/namespaces/baremetal/v1/testdata/test-baremetal-list-offer-monthly.cassette.yaml @@ -0,0 +1,1955 @@ +--- +version: 1 +interactions: +- request: + body: '{"total_count":26,"offers":[{"id":"f7241870-c383-4fa2-bbca-5189600df5c4","name":"EM-A115X-SSD","stock":"available","bandwidth":500000000,"max_bandwidth":1000000000,"commercial_range":"aluminium","disks":[{"capacity":1024209543168,"type":"SSD"},{"capacity":1024209543168,"type":"SSD"}],"enable":true,"cpus":[{"name":"Intel + Xeon E3 1220 or equivalent","core_count":4,"thread_count":4,"frequency":3100,"benchmark":"3895"}],"memories":[{"capacity":32000000000,"type":"DDR3","frequency":1600,"is_ecc":true}],"quota_name":"EM_A115X_SSD","price_per_hour":{"currency_code":"EUR","units":0,"nanos":91000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["6aa3f876-1c83-4434-8cc4-a2dbc94216db","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","fa29896b-6b49-468d-a787-966559a55c12","7fb86682-316e-4f6e-a845-de9b230cdd29","e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","847bb37a-dc13-4536-9f07-023d38dba98d","1c376d8a-f237-438d-9cd9-47902050ffd3","bd17a2bb-e686-486a-aacf-44fa8ce6e553","bf705b90-1548-4368-98ca-d17dbd8dd860","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","69e740ab-9f0e-4107-8516-16470000729c","7e865c16-1a63-4dc7-8181-dabc020fc21b","b4816d13-8585-4005-a7c7-54a031dd933b","4aff4d9d-b1f4-44b0-ab6f-e4711ac11711","3422ae02-d6d7-4980-8a00-eb38c262fb41","fd771862-4b75-46a7-ab42-73c46c0ac2db","a5c00c1b-95b1-4c08-8a33-79cc079f9dac","7c70ff80-dbfa-4e07-be73-1de0e60fe175","a5cec64e-d7b0-4c6e-a819-60139d30a76c","bc7e4ca2-bf32-407f-a04b-72ad6455beb2"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"9ce714f1-ed03-4e3b-8c69-d46957ab0ebb","name":"Public + Bandwidth 1Gbps","price":{"currency_code":"EUR","units":0,"nanos":28000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":1000000000}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":30000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":1000000000}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}}],"private_bandwidth":1000000000,"shared_bandwidth":true,"tags":["install-system-v2"],"gpus":[],"monthly_offer_id":"f1322af3-53dd-473b-8749-83661fbb73d8"},{"id":"e1680dec-52aa-4cbc-b70c-ef32d863fdb0","name":"EM-A610R-NVME","stock":"available","bandwidth":500000000,"max_bandwidth":1000000000,"commercial_range":"aluminium","disks":[{"capacity":1024209543168,"type":"NVMe"},{"capacity":1024209543168,"type":"NVMe"}],"enable":true,"cpus":[{"name":"AMD + Ryzen PRO 3600","core_count":6,"thread_count":12,"frequency":3600,"benchmark":"17202"}],"memories":[{"capacity":32000000000,"type":"DDR4","frequency":3200,"is_ecc":true}],"quota_name":"EM_A610R_NVMe","price_per_hour":{"currency_code":"EUR","units":0,"nanos":110000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["ac5cc157-caee-406a-ae0a-a28d7c30389a","4aff4d9d-b1f4-44b0-ab6f-e4711ac11711","fd771862-4b75-46a7-ab42-73c46c0ac2db","0058e276-66ef-4883-ad83-0e48536f635c","b4816d13-8585-4005-a7c7-54a031dd933b","847bb37a-dc13-4536-9f07-023d38dba98d","fa29896b-6b49-468d-a787-966559a55c12","8a83777f-6dc1-476a-8d0c-d8b7594ecb6f","86fd5e3a-b023-4fa8-a3ae-1a194d8cd68c","3ea52186-1e57-499e-8146-ab38051a5c10","c2f3e970-63f0-4f48-aa84-3455e4e13802","bd17a2bb-e686-486a-aacf-44fa8ce6e553","87a6472b-1bb4-4618-bb91-936d7de1966d","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","39176c6e-509d-4e6c-8e42-417d103f4579","5dfefb70-053e-4ba8-9d76-537b230db94e","7fb86682-316e-4f6e-a845-de9b230cdd29","1c376d8a-f237-438d-9cd9-47902050ffd3","69e740ab-9f0e-4107-8516-16470000729c","3bc196f5-4b7d-4f60-9dc5-86d4bcf36e1a","d859aa89-8b4a-4551-af42-ff7c0c27260a","6aa3f876-1c83-4434-8cc4-a2dbc94216db","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","5a7210ac-9d87-4f4a-b596-cc7f43a89b21"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":30000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":1000000000}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"9ce714f1-ed03-4e3b-8c69-d46957ab0ebb","name":"Public + Bandwidth 1Gbps","price":{"currency_code":"EUR","units":0,"nanos":28000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":1000000000}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}}],"private_bandwidth":1000000000,"shared_bandwidth":true,"tags":["new","install-system-v2"],"gpus":[],"monthly_offer_id":"60bfff09-7b6e-4004-9b74-1957f26bf070"},{"id":"bd757ca3-a71b-4158-9ef5-39436b6db2a4","name":"EM-L101X-SATA","stock":"available","bandwidth":1000000000,"max_bandwidth":1000000000,"commercial_range":"lithium","disks":[{"capacity":6001175126016,"type":"HDD"},{"capacity":6001175126016,"type":"HDD"}],"enable":true,"cpus":[{"name":"Intel + Xeon E5 1410 v2","core_count":4,"thread_count":8,"frequency":2800,"benchmark":"5715"}],"memories":[{"capacity":96000000000,"type":"DDR3","frequency":1600,"is_ecc":true}],"quota_name":"EM_L101X_SATA","price_per_hour":{"currency_code":"EUR","units":0,"nanos":122000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["2e06fa49-4677-4bd7-8bf5-b1c490d8a966","fa29896b-6b49-468d-a787-966559a55c12","bc7e4ca2-bf32-407f-a04b-72ad6455beb2","847bb37a-dc13-4536-9f07-023d38dba98d","1c376d8a-f237-438d-9cd9-47902050ffd3","69e740ab-9f0e-4107-8516-16470000729c","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","fd771862-4b75-46a7-ab42-73c46c0ac2db","6aa3f876-1c83-4434-8cc4-a2dbc94216db","a5cec64e-d7b0-4c6e-a819-60139d30a76c"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":30000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":1000000000}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}}],"private_bandwidth":1000000000,"shared_bandwidth":true,"tags":[],"gpus":[],"monthly_offer_id":"1b067ec1-e383-4756-bbc2-d2ba5a76aa08"},{"id":"6ec5bbb2-8267-41cd-aaf6-d43ea1b59372","name":"EM-A315X-SSD","stock":"available","bandwidth":1000000000,"max_bandwidth":1000000000,"commercial_range":"aluminium","disks":[{"capacity":1024209543168,"type":"SSD"},{"capacity":1024209543168,"type":"SSD"}],"enable":true,"cpus":[{"name":"Intel + Xeon E5 1410 v2","core_count":4,"thread_count":8,"frequency":2800,"benchmark":"5715"}],"memories":[{"capacity":64000000000,"type":"DDR3","frequency":1600,"is_ecc":true}],"quota_name":"EM_A315X_SSD","price_per_hour":{"currency_code":"EUR","units":0,"nanos":153000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["a5c00c1b-95b1-4c08-8a33-79cc079f9dac","bc7e4ca2-bf32-407f-a04b-72ad6455beb2","fd771862-4b75-46a7-ab42-73c46c0ac2db","6aa3f876-1c83-4434-8cc4-a2dbc94216db","fa29896b-6b49-468d-a787-966559a55c12","3ea52186-1e57-499e-8146-ab38051a5c10","7e865c16-1a63-4dc7-8181-dabc020fc21b","bd17a2bb-e686-486a-aacf-44fa8ce6e553","3422ae02-d6d7-4980-8a00-eb38c262fb41","a5cec64e-d7b0-4c6e-a819-60139d30a76c","7c70ff80-dbfa-4e07-be73-1de0e60fe175","69e740ab-9f0e-4107-8516-16470000729c","7fb86682-316e-4f6e-a845-de9b230cdd29","b4816d13-8585-4005-a7c7-54a031dd933b","bf705b90-1548-4368-98ca-d17dbd8dd860","e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","39176c6e-509d-4e6c-8e42-417d103f4579","5dfefb70-053e-4ba8-9d76-537b230db94e","1c376d8a-f237-438d-9cd9-47902050ffd3","4aff4d9d-b1f4-44b0-ab6f-e4711ac11711","847bb37a-dc13-4536-9f07-023d38dba98d","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","2e06fa49-4677-4bd7-8bf5-b1c490d8a966"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":30000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":1000000000}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}}],"private_bandwidth":1000000000,"shared_bandwidth":true,"tags":[],"gpus":[],"monthly_offer_id":"6b91e989-5251-4d89-b366-0f5565339fdc"},{"id":"5a505e81-5f6a-42bd-acec-0b290be92697","name":"EM-A410X-SSD","stock":"empty","bandwidth":1000000000,"max_bandwidth":1000000000,"commercial_range":"aluminium","disks":[{"capacity":1024209543168,"type":"SSD"},{"capacity":1024209543168,"type":"SSD"}],"enable":true,"cpus":[{"name":"Intel + Xeon E5 1650","core_count":6,"thread_count":12,"frequency":3200,"benchmark":"8086"}],"memories":[{"capacity":64000000000,"type":"DDR3","frequency":1600,"is_ecc":true}],"quota_name":"EM_A410X_SSD","price_per_hour":{"currency_code":"EUR","units":0,"nanos":153000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["a5c00c1b-95b1-4c08-8a33-79cc079f9dac","7c70ff80-dbfa-4e07-be73-1de0e60fe175","fd771862-4b75-46a7-ab42-73c46c0ac2db","6aa3f876-1c83-4434-8cc4-a2dbc94216db","7fb86682-316e-4f6e-a845-de9b230cdd29","e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","a5cec64e-d7b0-4c6e-a819-60139d30a76c","bc7e4ca2-bf32-407f-a04b-72ad6455beb2","847bb37a-dc13-4536-9f07-023d38dba98d","1c376d8a-f237-438d-9cd9-47902050ffd3","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","fa29896b-6b49-468d-a787-966559a55c12","bf705b90-1548-4368-98ca-d17dbd8dd860","3422ae02-d6d7-4980-8a00-eb38c262fb41","69e740ab-9f0e-4107-8516-16470000729c","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","7e865c16-1a63-4dc7-8181-dabc020fc21b"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":30000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":1000000000}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}}],"private_bandwidth":1000000000,"shared_bandwidth":true,"tags":[],"gpus":[],"monthly_offer_id":"7adc4a66-da70-40e3-856b-7b952b77fbf9"},{"id":"c5853302-63e4-40c7-a711-4a91629565c8","name":"EM-L105X-SATA","stock":"available","bandwidth":1000000000,"max_bandwidth":1000000000,"commercial_range":"lithium","disks":[{"capacity":6001175126016,"type":"HDD"},{"capacity":6001175126016,"type":"HDD"},{"capacity":6001175126016,"type":"HDD"},{"capacity":6001175126016,"type":"HDD"}],"enable":true,"cpus":[{"name":"Intel + Xeon E5 1410 v2","core_count":4,"thread_count":8,"frequency":2800,"benchmark":"5715"}],"memories":[{"capacity":96000000000,"type":"DDR3","frequency":1600,"is_ecc":true}],"quota_name":"EM_L105X_SATA","price_per_hour":{"currency_code":"EUR","units":0,"nanos":213000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["1c376d8a-f237-438d-9cd9-47902050ffd3","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","fa29896b-6b49-468d-a787-966559a55c12","bc7e4ca2-bf32-407f-a04b-72ad6455beb2","847bb37a-dc13-4536-9f07-023d38dba98d","69e740ab-9f0e-4107-8516-16470000729c","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","fd771862-4b75-46a7-ab42-73c46c0ac2db","6aa3f876-1c83-4434-8cc4-a2dbc94216db","a5cec64e-d7b0-4c6e-a819-60139d30a76c"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":30000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":1000000000}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}}],"private_bandwidth":1000000000,"shared_bandwidth":true,"tags":[],"gpus":[],"monthly_offer_id":"3b36516b-34e5-4ab1-8b05-0cda2adbc84c"},{"id":"8c2cf291-a3d3-4dc5-967f-f498a088411d","name":"EM-B111X-SATA","stock":"available","bandwidth":1000000000,"max_bandwidth":1000000000,"commercial_range":"beryllium","disks":[{"capacity":8000000000000,"type":"HDD"},{"capacity":8000000000000,"type":"HDD"}],"enable":true,"cpus":[{"name":"Intel + Xeon E5 2620 or equivalent","core_count":6,"thread_count":12,"frequency":2000,"benchmark":""},{"name":"Intel + Xeon E5 2620 or equivalent","core_count":6,"thread_count":12,"frequency":2000,"benchmark":""}],"memories":[{"capacity":192000000000,"type":"DDR3","frequency":1600,"is_ecc":true}],"quota_name":"EM_B111X_SATA","price_per_hour":{"currency_code":"EUR","units":0,"nanos":263000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":[],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":286,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":44,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":44,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":286,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":30000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":1000000000}}],"private_bandwidth":1000000000,"shared_bandwidth":true,"tags":[],"gpus":[],"monthly_offer_id":null},{"id":"a5065ba4-dde2-45f3-adec-1ebbb27b766b","name":"EM-B112X-SSD","stock":"available","bandwidth":1000000000,"max_bandwidth":1000000000,"commercial_range":"beryllium","disks":[{"capacity":1000204886016,"type":"SSD"},{"capacity":1000204886016,"type":"SSD"}],"enable":true,"cpus":[{"name":"Intel + Xeon E5 2600 or equivalent","core_count":6,"thread_count":12,"frequency":2000,"benchmark":"5295"},{"name":"Intel + Xeon E5 2600 or equivalent","core_count":6,"thread_count":12,"frequency":2000,"benchmark":"5295"}],"memories":[{"capacity":192000000000,"type":"DDR3","frequency":1600,"is_ecc":true}],"quota_name":"EM_B112X_SSD","price_per_hour":{"currency_code":"EUR","units":0,"nanos":263000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["7e865c16-1a63-4dc7-8181-dabc020fc21b","a5cec64e-d7b0-4c6e-a819-60139d30a76c","847bb37a-dc13-4536-9f07-023d38dba98d","fd771862-4b75-46a7-ab42-73c46c0ac2db","6aa3f876-1c83-4434-8cc4-a2dbc94216db","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","bf705b90-1548-4368-98ca-d17dbd8dd860","69e740ab-9f0e-4107-8516-16470000729c","7c70ff80-dbfa-4e07-be73-1de0e60fe175","e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","3422ae02-d6d7-4980-8a00-eb38c262fb41","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","bc7e4ca2-bf32-407f-a04b-72ad6455beb2","1c376d8a-f237-438d-9cd9-47902050ffd3","fa29896b-6b49-468d-a787-966559a55c12"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":30000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":1000000000}},{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}}],"private_bandwidth":1000000000,"shared_bandwidth":true,"tags":[],"gpus":[],"monthly_offer_id":null},{"id":"c753f736-fbb4-4689-ae93-623f9d08dce5","name":"EM-B211X-SATA","stock":"empty","bandwidth":1000000000,"max_bandwidth":1000000000,"commercial_range":"beryllium","disks":[{"capacity":8000000000000,"type":"HDD"},{"capacity":8000000000000,"type":"HDD"}],"enable":true,"cpus":[{"name":"Intel + Xeon E5 2600 or equivalent","core_count":8,"thread_count":16,"frequency":2600,"benchmark":"5295"},{"name":"Intel + Xeon E5 2600 or equivalent","core_count":8,"thread_count":16,"frequency":2600,"benchmark":"5295"}],"memories":[{"capacity":256000000000,"type":"DDR3","frequency":1600,"is_ecc":true}],"quota_name":"EM_B211X_SATA","price_per_hour":{"currency_code":"EUR","units":0,"nanos":321000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["847bb37a-dc13-4536-9f07-023d38dba98d","1c376d8a-f237-438d-9cd9-47902050ffd3","69e740ab-9f0e-4107-8516-16470000729c","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","fd771862-4b75-46a7-ab42-73c46c0ac2db","6aa3f876-1c83-4434-8cc4-a2dbc94216db","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","fa29896b-6b49-468d-a787-966559a55c12"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":30000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":1000000000}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}}],"private_bandwidth":1000000000,"shared_bandwidth":true,"tags":[],"gpus":[],"monthly_offer_id":null},{"id":"ddaf8ba6-b2b2-4279-8af3-51930fb602f8","name":"EM-B212X-SSD","stock":"available","bandwidth":1000000000,"max_bandwidth":1000000000,"commercial_range":"beryllium","disks":[{"capacity":1024209543168,"type":"SSD"},{"capacity":1024209543168,"type":"SSD"}],"enable":true,"cpus":[{"name":"Intel + Xeon E5 2600 or equivalent","core_count":8,"thread_count":16,"frequency":2600,"benchmark":"5295"},{"name":"Intel + Xeon E5 2600 or equivalent","core_count":8,"thread_count":16,"frequency":2600,"benchmark":"5295"}],"memories":[{"capacity":256000000000,"type":"DDR3","frequency":1600,"is_ecc":true}],"quota_name":"EM_B212X_SSD","price_per_hour":{"currency_code":"EUR","units":0,"nanos":321000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["847bb37a-dc13-4536-9f07-023d38dba98d","1c376d8a-f237-438d-9cd9-47902050ffd3","69e740ab-9f0e-4107-8516-16470000729c","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","fd771862-4b75-46a7-ab42-73c46c0ac2db","6aa3f876-1c83-4434-8cc4-a2dbc94216db","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","fa29896b-6b49-468d-a787-966559a55c12"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":30000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":1000000000}},{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}}],"private_bandwidth":1000000000,"shared_bandwidth":true,"tags":[],"gpus":[],"monthly_offer_id":null},{"id":"206ea234-9097-4ae1-af68-6d2be09f47ed","name":"EM-B220E-NVME","stock":"empty","bandwidth":1000000000,"max_bandwidth":10000000000,"commercial_range":"beryllium","disks":[{"capacity":1024209543168,"type":"NVMe"},{"capacity":1024209543168,"type":"NVMe"}],"enable":true,"cpus":[{"name":"AMD + EPYC 7232P","core_count":8,"thread_count":16,"frequency":3100,"benchmark":"17017"}],"memories":[{"capacity":64000000000,"type":"DDR4","frequency":2400,"is_ecc":true}],"quota_name":"EM_B220E_NVMe","price_per_hour":{"currency_code":"EUR","units":0,"nanos":333000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["c2f3e970-63f0-4f48-aa84-3455e4e13802","bd17a2bb-e686-486a-aacf-44fa8ce6e553","847bb37a-dc13-4536-9f07-023d38dba98d","fd771862-4b75-46a7-ab42-73c46c0ac2db","8a83777f-6dc1-476a-8d0c-d8b7594ecb6f","86fd5e3a-b023-4fa8-a3ae-1a194d8cd68c","3bc196f5-4b7d-4f60-9dc5-86d4bcf36e1a","1c376d8a-f237-438d-9cd9-47902050ffd3","0058e276-66ef-4883-ad83-0e48536f635c","5a7210ac-9d87-4f4a-b596-cc7f43a89b21","87a6472b-1bb4-4618-bb91-936d7de1966d","ac5cc157-caee-406a-ae0a-a28d7c30389a","4aff4d9d-b1f4-44b0-ab6f-e4711ac11711","39176c6e-509d-4e6c-8e42-417d103f4579","5dfefb70-053e-4ba8-9d76-537b230db94e","6aa3f876-1c83-4434-8cc4-a2dbc94216db","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","fa29896b-6b49-468d-a787-966559a55c12","7fb86682-316e-4f6e-a845-de9b230cdd29","d859aa89-8b4a-4551-af42-ff7c0c27260a","69e740ab-9f0e-4107-8516-16470000729c","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"a905e3e8-690a-4822-9c90-21418a44aa76","name":"Public + Bandwidth 3Gbps","price":{"currency_code":"EUR","units":0,"nanos":411000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":3000000000}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"b92d36c0-9754-4678-9efd-096e4244e798","name":"Public + Bandwidth 2Gbps","price":{"currency_code":"EUR","units":0,"nanos":274000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":2000000000}},{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"e0063872-115b-413e-bbf9-fff7eeca1065","name":"Public + Bandwidth 5Gbps","price":{"currency_code":"EUR","units":0,"nanos":685000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":5000000000}},{"id":"b37af8cf-8b18-4349-a063-64e9c3d50124","name":"Public + Bandwidth 4Gbps","price":{"currency_code":"EUR","units":0,"nanos":548000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":4000000000}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":60000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":10000000000}},{"id":"31f5cddb-8217-4eb0-ac6a-96dbcb080b88","name":"Public + Bandwidth 10Gbps","price":{"currency_code":"EUR","units":1,"nanos":233000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":10000000000}}],"private_bandwidth":10000000000,"shared_bandwidth":true,"tags":["install-system-v2"],"gpus":[],"monthly_offer_id":"8852ff25-c867-4d58-a1f8-40b9968119b7"},{"id":"0e1f7c5b-05bf-4863-ba58-9ee07496d1f7","name":"EM-I120E-NVME","stock":"available","bandwidth":1000000000,"max_bandwidth":25000000000,"commercial_range":"iridium","disks":[{"capacity":960000000000,"type":"NVMe"},{"capacity":960000000000,"type":"NVMe"}],"enable":true,"cpus":[{"name":"AMD + EPYC 8024P","core_count":8,"thread_count":16,"frequency":2400,"benchmark":"20556"}],"memories":[{"capacity":64000000000,"type":"DDR5","frequency":3200,"is_ecc":true}],"quota_name":"EM_I120E_NVMe","price_per_hour":{"currency_code":"EUR","units":0,"nanos":356000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","b4816d13-8585-4005-a7c7-54a031dd933b","39176c6e-509d-4e6c-8e42-417d103f4579","3bc196f5-4b7d-4f60-9dc5-86d4bcf36e1a","87a6472b-1bb4-4618-bb91-936d7de1966d","f2aeab5d-6015-4b7c-b4ed-d76e89093621","ac5cc157-caee-406a-ae0a-a28d7c30389a","d17d6872-0412-45d9-a198-af82c34d3c5c","fa29896b-6b49-468d-a787-966559a55c12","7fb86682-316e-4f6e-a845-de9b230cdd29","8a83777f-6dc1-476a-8d0c-d8b7594ecb6f","847bb37a-dc13-4536-9f07-023d38dba98d","1c376d8a-f237-438d-9cd9-47902050ffd3","fd771862-4b75-46a7-ab42-73c46c0ac2db","c2f3e970-63f0-4f48-aa84-3455e4e13802","86fd5e3a-b023-4fa8-a3ae-1a194d8cd68c","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","6aa3f876-1c83-4434-8cc4-a2dbc94216db","bd17a2bb-e686-486a-aacf-44fa8ce6e553","5a7210ac-9d87-4f4a-b596-cc7f43a89b21","d859aa89-8b4a-4551-af42-ff7c0c27260a","7c70ff80-dbfa-4e07-be73-1de0e60fe175","69e740ab-9f0e-4107-8516-16470000729c","0058e276-66ef-4883-ad83-0e48536f635c","4aff4d9d-b1f4-44b0-ab6f-e4711ac11711","5dfefb70-053e-4ba8-9d76-537b230db94e"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"a905e3e8-690a-4822-9c90-21418a44aa76","name":"Public + Bandwidth 3Gbps","price":{"currency_code":"EUR","units":0,"nanos":411000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":3000000000}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"ad1b86f2-4ae4-49f9-a826-a782e8d492f3","name":"Public + Bandwidth 25Gbps","price":{"currency_code":"EUR","units":2,"nanos":55000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":25000000000}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"4ce8bd16-0c16-479d-83bb-492b5f9072fa","name":"Public + Bandwidth 15Gbps","price":{"currency_code":"EUR","units":1,"nanos":644000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":15000000000}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"e0063872-115b-413e-bbf9-fff7eeca1065","name":"Public + Bandwidth 5Gbps","price":{"currency_code":"EUR","units":0,"nanos":685000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":5000000000}},{"id":"b37af8cf-8b18-4349-a063-64e9c3d50124","name":"Public + Bandwidth 4Gbps","price":{"currency_code":"EUR","units":0,"nanos":548000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":4000000000}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"31f5cddb-8217-4eb0-ac6a-96dbcb080b88","name":"Public + Bandwidth 10Gbps","price":{"currency_code":"EUR","units":1,"nanos":233000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":10000000000}},{"id":"b92d36c0-9754-4678-9efd-096e4244e798","name":"Public + Bandwidth 2Gbps","price":{"currency_code":"EUR","units":0,"nanos":274000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":2000000000}},{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":90000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":25000000000}},{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"b0a352ae-8aa0-4397-b702-ecfe9563b47b","name":"Public + Bandwidth 20Gbps","price":{"currency_code":"EUR","units":1,"nanos":918000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":20000000000}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}}],"private_bandwidth":25000000000,"shared_bandwidth":true,"tags":["new","install-system-v2"],"gpus":[],"monthly_offer_id":"5e226c64-3ceb-470e-a9bb-d01aff3dc335"},{"id":"a204136d-656b-44b7-9735-88ca2f62cb1f","name":"EM-L110X-SATA","stock":"available","bandwidth":1000000000,"max_bandwidth":1000000000,"commercial_range":"lithium","disks":[{"capacity":12000138625024,"type":"HDD"},{"capacity":12000138625024,"type":"HDD"},{"capacity":12000138625024,"type":"HDD"},{"capacity":12000138625024,"type":"HDD"}],"enable":true,"cpus":[{"name":"Intel + Xeon E5 1410 v2","core_count":4,"thread_count":8,"frequency":2800,"benchmark":"5715"}],"memories":[{"capacity":96000000000,"type":"DDR3","frequency":1600,"is_ecc":true}],"quota_name":"EM_L110X_SATA","price_per_hour":{"currency_code":"EUR","units":0,"nanos":366000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["fd771862-4b75-46a7-ab42-73c46c0ac2db","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","fa29896b-6b49-468d-a787-966559a55c12","a5cec64e-d7b0-4c6e-a819-60139d30a76c","bc7e4ca2-bf32-407f-a04b-72ad6455beb2","847bb37a-dc13-4536-9f07-023d38dba98d","1c376d8a-f237-438d-9cd9-47902050ffd3","69e740ab-9f0e-4107-8516-16470000729c","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","6aa3f876-1c83-4434-8cc4-a2dbc94216db"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":30000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":1000000000}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}}],"private_bandwidth":1000000000,"shared_bandwidth":true,"tags":[],"gpus":[],"monthly_offer_id":"0ca85e34-d35a-494b-9077-70589cf7a6c8"},{"id":"a60ae97c-268c-40cb-af5f-dd276e917ed7","name":"EM-B320E-NVME","stock":"available","bandwidth":1000000000,"max_bandwidth":10000000000,"commercial_range":"beryllium","disks":[{"capacity":2048408248320,"type":"NVMe"},{"capacity":2048408248320,"type":"NVMe"}],"enable":true,"cpus":[{"name":"AMD + EPYC 7232P","core_count":8,"thread_count":16,"frequency":3100,"benchmark":"17017"}],"memories":[{"capacity":128000000000,"type":"DDR4","frequency":2400,"is_ecc":true}],"quota_name":"EM_B320E_NVMe","price_per_hour":{"currency_code":"EUR","units":0,"nanos":417000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["1c376d8a-f237-438d-9cd9-47902050ffd3","69e740ab-9f0e-4107-8516-16470000729c","ac5cc157-caee-406a-ae0a-a28d7c30389a","8a83777f-6dc1-476a-8d0c-d8b7594ecb6f","847bb37a-dc13-4536-9f07-023d38dba98d","5a7210ac-9d87-4f4a-b596-cc7f43a89b21","3bc196f5-4b7d-4f60-9dc5-86d4bcf36e1a","fd771862-4b75-46a7-ab42-73c46c0ac2db","7fb86682-316e-4f6e-a845-de9b230cdd29","bd17a2bb-e686-486a-aacf-44fa8ce6e553","86fd5e3a-b023-4fa8-a3ae-1a194d8cd68c","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","6aa3f876-1c83-4434-8cc4-a2dbc94216db","4aff4d9d-b1f4-44b0-ab6f-e4711ac11711","39176c6e-509d-4e6c-8e42-417d103f4579","0058e276-66ef-4883-ad83-0e48536f635c","d859aa89-8b4a-4551-af42-ff7c0c27260a","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","fa29896b-6b49-468d-a787-966559a55c12","c2f3e970-63f0-4f48-aa84-3455e4e13802","5dfefb70-053e-4ba8-9d76-537b230db94e","87a6472b-1bb4-4618-bb91-936d7de1966d"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"b37af8cf-8b18-4349-a063-64e9c3d50124","name":"Public + Bandwidth 4Gbps","price":{"currency_code":"EUR","units":0,"nanos":548000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":4000000000}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"e0063872-115b-413e-bbf9-fff7eeca1065","name":"Public + Bandwidth 5Gbps","price":{"currency_code":"EUR","units":0,"nanos":685000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":5000000000}},{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"31f5cddb-8217-4eb0-ac6a-96dbcb080b88","name":"Public + Bandwidth 10Gbps","price":{"currency_code":"EUR","units":1,"nanos":233000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":10000000000}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":60000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":10000000000}},{"id":"a905e3e8-690a-4822-9c90-21418a44aa76","name":"Public + Bandwidth 3Gbps","price":{"currency_code":"EUR","units":0,"nanos":411000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":3000000000}},{"id":"b92d36c0-9754-4678-9efd-096e4244e798","name":"Public + Bandwidth 2Gbps","price":{"currency_code":"EUR","units":0,"nanos":274000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":2000000000}}],"private_bandwidth":10000000000,"shared_bandwidth":true,"tags":["install-system-v2"],"gpus":[],"monthly_offer_id":"ffbd2be3-076a-4940-b77d-d8b333f9723e"},{"id":"d14eef5e-3279-42db-bb57-bb2bbe6a5b28","name":"EM-B420E-NVME","stock":"available","bandwidth":1000000000,"max_bandwidth":10000000000,"commercial_range":"beryllium","disks":[{"capacity":1024209543168,"type":"NVMe"},{"capacity":1024209543168,"type":"NVMe"}],"enable":true,"cpus":[{"name":"AMD + EPYC 7272","core_count":12,"thread_count":24,"frequency":2900,"benchmark":"25568"}],"memories":[{"capacity":128000000000,"type":"DDR4","frequency":2400,"is_ecc":true}],"quota_name":"EM_B420E_NVMe","price_per_hour":{"currency_code":"EUR","units":0,"nanos":444000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["ac5cc157-caee-406a-ae0a-a28d7c30389a","39176c6e-509d-4e6c-8e42-417d103f4579","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","847bb37a-dc13-4536-9f07-023d38dba98d","69e740ab-9f0e-4107-8516-16470000729c","6aa3f876-1c83-4434-8cc4-a2dbc94216db","7fb86682-316e-4f6e-a845-de9b230cdd29","5dfefb70-053e-4ba8-9d76-537b230db94e","8a83777f-6dc1-476a-8d0c-d8b7594ecb6f","5a7210ac-9d87-4f4a-b596-cc7f43a89b21","d859aa89-8b4a-4551-af42-ff7c0c27260a","1c376d8a-f237-438d-9cd9-47902050ffd3","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","fd771862-4b75-46a7-ab42-73c46c0ac2db","c2f3e970-63f0-4f48-aa84-3455e4e13802","bd17a2bb-e686-486a-aacf-44fa8ce6e553","4aff4d9d-b1f4-44b0-ab6f-e4711ac11711","86fd5e3a-b023-4fa8-a3ae-1a194d8cd68c","0058e276-66ef-4883-ad83-0e48536f635c","3bc196f5-4b7d-4f60-9dc5-86d4bcf36e1a","87a6472b-1bb4-4618-bb91-936d7de1966d","fa29896b-6b49-468d-a787-966559a55c12"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":252,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"b37af8cf-8b18-4349-a063-64e9c3d50124","name":"Public + Bandwidth 4Gbps","price":{"currency_code":"EUR","units":0,"nanos":548000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":4000000000}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"a905e3e8-690a-4822-9c90-21418a44aa76","name":"Public + Bandwidth 3Gbps","price":{"currency_code":"EUR","units":0,"nanos":411000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":3000000000}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":60000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":10000000000}},{"id":"e0063872-115b-413e-bbf9-fff7eeca1065","name":"Public + Bandwidth 5Gbps","price":{"currency_code":"EUR","units":0,"nanos":685000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":5000000000}},{"id":"31f5cddb-8217-4eb0-ac6a-96dbcb080b88","name":"Public + Bandwidth 10Gbps","price":{"currency_code":"EUR","units":1,"nanos":233000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":10000000000}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":37,"nanos":800000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":252,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":37,"nanos":800000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":252,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"b92d36c0-9754-4678-9efd-096e4244e798","name":"Public + Bandwidth 2Gbps","price":{"currency_code":"EUR","units":0,"nanos":274000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":2000000000}},{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":37,"nanos":800000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}}],"private_bandwidth":10000000000,"shared_bandwidth":true,"tags":["install-system-v2"],"gpus":[],"monthly_offer_id":"8511a555-b488-458d-bdf2-b74716b8c1cb"},{"id":"d73011fa-02e0-46bc-992c-8bb62c767e97","name":"EM-B520E-NVME","stock":"available","bandwidth":1000000000,"max_bandwidth":10000000000,"commercial_range":"beryllium","disks":[{"capacity":2048408248320,"type":"NVMe"},{"capacity":2048408248320,"type":"NVMe"}],"enable":true,"cpus":[{"name":"AMD + EPYC 7272","core_count":12,"thread_count":24,"frequency":2900,"benchmark":"25568"}],"memories":[{"capacity":256000000000,"type":"DDR4","frequency":2400,"is_ecc":true}],"quota_name":"EM_B520E_NVMe","price_per_hour":{"currency_code":"EUR","units":0,"nanos":528000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["bd17a2bb-e686-486a-aacf-44fa8ce6e553","5dfefb70-053e-4ba8-9d76-537b230db94e","8a83777f-6dc1-476a-8d0c-d8b7594ecb6f","87a6472b-1bb4-4618-bb91-936d7de1966d","1c376d8a-f237-438d-9cd9-47902050ffd3","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","c2f3e970-63f0-4f48-aa84-3455e4e13802","86fd5e3a-b023-4fa8-a3ae-1a194d8cd68c","d859aa89-8b4a-4551-af42-ff7c0c27260a","fa29896b-6b49-468d-a787-966559a55c12","7fb86682-316e-4f6e-a845-de9b230cdd29","5a7210ac-9d87-4f4a-b596-cc7f43a89b21","3bc196f5-4b7d-4f60-9dc5-86d4bcf36e1a","847bb37a-dc13-4536-9f07-023d38dba98d","69e740ab-9f0e-4107-8516-16470000729c","6aa3f876-1c83-4434-8cc4-a2dbc94216db","ac5cc157-caee-406a-ae0a-a28d7c30389a","4aff4d9d-b1f4-44b0-ab6f-e4711ac11711","39176c6e-509d-4e6c-8e42-417d103f4579","0058e276-66ef-4883-ad83-0e48536f635c","fd771862-4b75-46a7-ab42-73c46c0ac2db"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":60000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":10000000000}},{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":252,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":37,"nanos":800000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"31f5cddb-8217-4eb0-ac6a-96dbcb080b88","name":"Public + Bandwidth 10Gbps","price":{"currency_code":"EUR","units":1,"nanos":233000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":10000000000}},{"id":"b92d36c0-9754-4678-9efd-096e4244e798","name":"Public + Bandwidth 2Gbps","price":{"currency_code":"EUR","units":0,"nanos":274000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":2000000000}},{"id":"e0063872-115b-413e-bbf9-fff7eeca1065","name":"Public + Bandwidth 5Gbps","price":{"currency_code":"EUR","units":0,"nanos":685000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":5000000000}},{"id":"a905e3e8-690a-4822-9c90-21418a44aa76","name":"Public + Bandwidth 3Gbps","price":{"currency_code":"EUR","units":0,"nanos":411000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":3000000000}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":37,"nanos":800000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":37,"nanos":800000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":252,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":252,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"b37af8cf-8b18-4349-a063-64e9c3d50124","name":"Public + Bandwidth 4Gbps","price":{"currency_code":"EUR","units":0,"nanos":548000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":4000000000}}],"private_bandwidth":10000000000,"shared_bandwidth":true,"tags":["install-system-v2"],"gpus":[],"monthly_offer_id":"2cc8ffd7-c25d-4c02-aa8b-b695bebe6213"},{"id":"fd7605a7-7493-49ba-9019-0e9c2897d4a0","name":"EM-I220E-NVME","stock":"available","bandwidth":1000000000,"max_bandwidth":25000000000,"commercial_range":"iridium","disks":[{"capacity":960000000000,"type":"NVMe"},{"capacity":960000000000,"type":"NVMe"}],"enable":true,"cpus":[{"name":"AMD + EPYC 8124P","core_count":16,"thread_count":32,"frequency":2450,"benchmark":"36338"}],"memories":[{"capacity":128000000000,"type":"DDR5","frequency":3200,"is_ecc":true}],"quota_name":"EM_I220E_NVMe","price_per_hour":{"currency_code":"EUR","units":0,"nanos":548000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["3bc196f5-4b7d-4f60-9dc5-86d4bcf36e1a","8a83777f-6dc1-476a-8d0c-d8b7594ecb6f","1c376d8a-f237-438d-9cd9-47902050ffd3","fd771862-4b75-46a7-ab42-73c46c0ac2db","7c70ff80-dbfa-4e07-be73-1de0e60fe175","847bb37a-dc13-4536-9f07-023d38dba98d","f2aeab5d-6015-4b7c-b4ed-d76e89093621","5dfefb70-053e-4ba8-9d76-537b230db94e","86fd5e3a-b023-4fa8-a3ae-1a194d8cd68c","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","6aa3f876-1c83-4434-8cc4-a2dbc94216db","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","87a6472b-1bb4-4618-bb91-936d7de1966d","e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","d17d6872-0412-45d9-a198-af82c34d3c5c","ac5cc157-caee-406a-ae0a-a28d7c30389a","b4816d13-8585-4005-a7c7-54a031dd933b","4aff4d9d-b1f4-44b0-ab6f-e4711ac11711","69e740ab-9f0e-4107-8516-16470000729c","c2f3e970-63f0-4f48-aa84-3455e4e13802","bd17a2bb-e686-486a-aacf-44fa8ce6e553","0058e276-66ef-4883-ad83-0e48536f635c","5a7210ac-9d87-4f4a-b596-cc7f43a89b21","d859aa89-8b4a-4551-af42-ff7c0c27260a","39176c6e-509d-4e6c-8e42-417d103f4579","fa29896b-6b49-468d-a787-966559a55c12","7fb86682-316e-4f6e-a845-de9b230cdd29"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"b92d36c0-9754-4678-9efd-096e4244e798","name":"Public + Bandwidth 2Gbps","price":{"currency_code":"EUR","units":0,"nanos":274000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":2000000000}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"4ce8bd16-0c16-479d-83bb-492b5f9072fa","name":"Public + Bandwidth 15Gbps","price":{"currency_code":"EUR","units":1,"nanos":644000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":15000000000}},{"id":"31f5cddb-8217-4eb0-ac6a-96dbcb080b88","name":"Public + Bandwidth 10Gbps","price":{"currency_code":"EUR","units":1,"nanos":233000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":10000000000}},{"id":"b37af8cf-8b18-4349-a063-64e9c3d50124","name":"Public + Bandwidth 4Gbps","price":{"currency_code":"EUR","units":0,"nanos":548000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":4000000000}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"a905e3e8-690a-4822-9c90-21418a44aa76","name":"Public + Bandwidth 3Gbps","price":{"currency_code":"EUR","units":0,"nanos":411000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":3000000000}},{"id":"ad1b86f2-4ae4-49f9-a826-a782e8d492f3","name":"Public + Bandwidth 25Gbps","price":{"currency_code":"EUR","units":2,"nanos":55000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":25000000000}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":90000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":25000000000}},{"id":"b0a352ae-8aa0-4397-b702-ecfe9563b47b","name":"Public + Bandwidth 20Gbps","price":{"currency_code":"EUR","units":1,"nanos":918000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":20000000000}},{"id":"e0063872-115b-413e-bbf9-fff7eeca1065","name":"Public + Bandwidth 5Gbps","price":{"currency_code":"EUR","units":0,"nanos":685000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":5000000000}}],"private_bandwidth":25000000000,"shared_bandwidth":true,"tags":["new","install-system-v2"],"gpus":[],"monthly_offer_id":"293cc6d1-0ac8-4bc4-a5a1-8ed2096b045c"},{"id":"7e81d4d4-a84b-4dd0-9f44-f0ac34a09e3a","name":"EM-I210E-NVME","stock":"available","bandwidth":1000000000,"max_bandwidth":10000000000,"commercial_range":"iridium","disks":[{"capacity":1920383410176,"type":"NVMe"},{"capacity":1920383410176,"type":"NVMe"}],"enable":true,"cpus":[{"name":"AMD + EPYC 7313P","core_count":16,"thread_count":32,"frequency":3000,"benchmark":"41609"}],"memories":[{"capacity":128000000000,"type":"DDR4","frequency":3200,"is_ecc":true}],"quota_name":"EM_I210E_NVMe","price_per_hour":{"currency_code":"EUR","units":0,"nanos":667000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["f2aeab5d-6015-4b7c-b4ed-d76e89093621","69e740ab-9f0e-4107-8516-16470000729c","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","fd771862-4b75-46a7-ab42-73c46c0ac2db","6aa3f876-1c83-4434-8cc4-a2dbc94216db","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","d17d6872-0412-45d9-a198-af82c34d3c5c","8a83777f-6dc1-476a-8d0c-d8b7594ecb6f","847bb37a-dc13-4536-9f07-023d38dba98d","1c376d8a-f237-438d-9cd9-47902050ffd3","fa29896b-6b49-468d-a787-966559a55c12"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":60000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":10000000000}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"a905e3e8-690a-4822-9c90-21418a44aa76","name":"Public + Bandwidth 3Gbps","price":{"currency_code":"EUR","units":0,"nanos":411000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":3000000000}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"31f5cddb-8217-4eb0-ac6a-96dbcb080b88","name":"Public + Bandwidth 10Gbps","price":{"currency_code":"EUR","units":1,"nanos":233000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":10000000000}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"b92d36c0-9754-4678-9efd-096e4244e798","name":"Public + Bandwidth 2Gbps","price":{"currency_code":"EUR","units":0,"nanos":274000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":2000000000}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"e0063872-115b-413e-bbf9-fff7eeca1065","name":"Public + Bandwidth 5Gbps","price":{"currency_code":"EUR","units":0,"nanos":685000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":5000000000}},{"id":"b37af8cf-8b18-4349-a063-64e9c3d50124","name":"Public + Bandwidth 4Gbps","price":{"currency_code":"EUR","units":0,"nanos":548000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":4000000000}}],"private_bandwidth":10000000000,"shared_bandwidth":true,"tags":[],"gpus":[],"monthly_offer_id":"f46f16bd-ce65-4a6c-9e15-1d35b52e9e5e"},{"id":"402efe20-4dcb-49af-bc80-1008bcc749a6","name":"EM-L220E-NVME","stock":"available","bandwidth":1000000000,"max_bandwidth":10000000000,"commercial_range":"lithium","disks":[{"capacity":2048408248320,"type":"NVMe"},{"capacity":2048408248320,"type":"NVMe"},{"capacity":2048408248320,"type":"NVMe"},{"capacity":2048408248320,"type":"NVMe"}],"enable":true,"cpus":[{"name":"AMD + EPYC 7232P","core_count":8,"thread_count":16,"frequency":3100,"benchmark":"17017"}],"memories":[{"capacity":64000000000,"type":"DDR4","frequency":2400,"is_ecc":true}],"quota_name":"EM_L220E_NVMe","price_per_hour":{"currency_code":"EUR","units":0,"nanos":685000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["3bc196f5-4b7d-4f60-9dc5-86d4bcf36e1a","1c376d8a-f237-438d-9cd9-47902050ffd3","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","5dfefb70-053e-4ba8-9d76-537b230db94e","86fd5e3a-b023-4fa8-a3ae-1a194d8cd68c","5a7210ac-9d87-4f4a-b596-cc7f43a89b21","87a6472b-1bb4-4618-bb91-936d7de1966d","69e740ab-9f0e-4107-8516-16470000729c","fa29896b-6b49-468d-a787-966559a55c12","ac5cc157-caee-406a-ae0a-a28d7c30389a","4aff4d9d-b1f4-44b0-ab6f-e4711ac11711","847bb37a-dc13-4536-9f07-023d38dba98d","fd771862-4b75-46a7-ab42-73c46c0ac2db","6aa3f876-1c83-4434-8cc4-a2dbc94216db","0058e276-66ef-4883-ad83-0e48536f635c","d859aa89-8b4a-4551-af42-ff7c0c27260a","c2f3e970-63f0-4f48-aa84-3455e4e13802","7fb86682-316e-4f6e-a845-de9b230cdd29","bd17a2bb-e686-486a-aacf-44fa8ce6e553","39176c6e-509d-4e6c-8e42-417d103f4579","8a83777f-6dc1-476a-8d0c-d8b7594ecb6f"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":60000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":10000000000}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"e0063872-115b-413e-bbf9-fff7eeca1065","name":"Public + Bandwidth 5Gbps","price":{"currency_code":"EUR","units":0,"nanos":685000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":5000000000}},{"id":"a905e3e8-690a-4822-9c90-21418a44aa76","name":"Public + Bandwidth 3Gbps","price":{"currency_code":"EUR","units":0,"nanos":411000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":3000000000}},{"id":"31f5cddb-8217-4eb0-ac6a-96dbcb080b88","name":"Public + Bandwidth 10Gbps","price":{"currency_code":"EUR","units":1,"nanos":233000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":10000000000}},{"id":"b37af8cf-8b18-4349-a063-64e9c3d50124","name":"Public + Bandwidth 4Gbps","price":{"currency_code":"EUR","units":0,"nanos":548000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":4000000000}},{"id":"b92d36c0-9754-4678-9efd-096e4244e798","name":"Public + Bandwidth 2Gbps","price":{"currency_code":"EUR","units":0,"nanos":274000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":2000000000}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}}],"private_bandwidth":10000000000,"shared_bandwidth":true,"tags":["install-system-v2"],"gpus":[],"monthly_offer_id":"da1aff24-a8c5-445d-ae61-a1165e8dd636"},{"id":"66cdd2c4-664c-47af-b0ad-a70e12999f0e","name":"EM-I320E-NVME","stock":"available","bandwidth":1000000000,"max_bandwidth":25000000000,"commercial_range":"iridium","disks":[{"capacity":1920000000000,"type":"NVMe"},{"capacity":1920000000000,"type":"NVMe"}],"enable":true,"cpus":[{"name":"AMD + EPYC 8224P","core_count":24,"thread_count":48,"frequency":2550,"benchmark":"45160"}],"memories":[{"capacity":192000000000,"type":"DDR5","frequency":3200,"is_ecc":true}],"quota_name":"EM_I320E_NVMe","price_per_hour":{"currency_code":"EUR","units":0,"nanos":822000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["0058e276-66ef-4883-ad83-0e48536f635c","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","c2f3e970-63f0-4f48-aa84-3455e4e13802","ac5cc157-caee-406a-ae0a-a28d7c30389a","b4816d13-8585-4005-a7c7-54a031dd933b","847bb37a-dc13-4536-9f07-023d38dba98d","39176c6e-509d-4e6c-8e42-417d103f4579","5dfefb70-053e-4ba8-9d76-537b230db94e","8a83777f-6dc1-476a-8d0c-d8b7594ecb6f","e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","69e740ab-9f0e-4107-8516-16470000729c","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","7fb86682-316e-4f6e-a845-de9b230cdd29","7c70ff80-dbfa-4e07-be73-1de0e60fe175","f2aeab5d-6015-4b7c-b4ed-d76e89093621","1c376d8a-f237-438d-9cd9-47902050ffd3","6aa3f876-1c83-4434-8cc4-a2dbc94216db","4aff4d9d-b1f4-44b0-ab6f-e4711ac11711","3bc196f5-4b7d-4f60-9dc5-86d4bcf36e1a","87a6472b-1bb4-4618-bb91-936d7de1966d","86fd5e3a-b023-4fa8-a3ae-1a194d8cd68c","fd771862-4b75-46a7-ab42-73c46c0ac2db","d859aa89-8b4a-4551-af42-ff7c0c27260a","d17d6872-0412-45d9-a198-af82c34d3c5c","fa29896b-6b49-468d-a787-966559a55c12","bd17a2bb-e686-486a-aacf-44fa8ce6e553","5a7210ac-9d87-4f4a-b596-cc7f43a89b21"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"b37af8cf-8b18-4349-a063-64e9c3d50124","name":"Public + Bandwidth 4Gbps","price":{"currency_code":"EUR","units":0,"nanos":548000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":4000000000}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":75,"nanos":600000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":504,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"a905e3e8-690a-4822-9c90-21418a44aa76","name":"Public + Bandwidth 3Gbps","price":{"currency_code":"EUR","units":0,"nanos":411000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":3000000000}},{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":504,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":90000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":25000000000}},{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":75,"nanos":600000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"4ce8bd16-0c16-479d-83bb-492b5f9072fa","name":"Public + Bandwidth 15Gbps","price":{"currency_code":"EUR","units":1,"nanos":644000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":15000000000}},{"id":"b0a352ae-8aa0-4397-b702-ecfe9563b47b","name":"Public + Bandwidth 20Gbps","price":{"currency_code":"EUR","units":1,"nanos":918000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":20000000000}},{"id":"b92d36c0-9754-4678-9efd-096e4244e798","name":"Public + Bandwidth 2Gbps","price":{"currency_code":"EUR","units":0,"nanos":274000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":2000000000}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"31f5cddb-8217-4eb0-ac6a-96dbcb080b88","name":"Public + Bandwidth 10Gbps","price":{"currency_code":"EUR","units":1,"nanos":233000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":10000000000}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":75,"nanos":600000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":504,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"ad1b86f2-4ae4-49f9-a826-a782e8d492f3","name":"Public + Bandwidth 25Gbps","price":{"currency_code":"EUR","units":2,"nanos":55000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":25000000000}},{"id":"e0063872-115b-413e-bbf9-fff7eeca1065","name":"Public + Bandwidth 5Gbps","price":{"currency_code":"EUR","units":0,"nanos":685000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":5000000000}}],"private_bandwidth":25000000000,"shared_bandwidth":true,"tags":["new","install-system-v2"],"gpus":[],"monthly_offer_id":"db96a346-53e8-41ab-838b-b0a349abbb66"},{"id":"ddb09834-8680-4339-b5e3-19ca5205fa1f","name":"EM-I215E-NVME","stock":"available","bandwidth":1000000000,"max_bandwidth":10000000000,"commercial_range":"iridium","disks":[{"capacity":1920383410176,"type":"NVMe"},{"capacity":1920383410176,"type":"NVMe"}],"enable":true,"cpus":[{"name":"AMD + EPYC 7313P","core_count":16,"thread_count":32,"frequency":3000,"benchmark":"41609"}],"memories":[{"capacity":256000000000,"type":"DDR4","frequency":3200,"is_ecc":true}],"quota_name":"EM_I215E_NVMe","price_per_hour":{"currency_code":"EUR","units":0,"nanos":904000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["1c376d8a-f237-438d-9cd9-47902050ffd3","6aa3f876-1c83-4434-8cc4-a2dbc94216db","ac5cc157-caee-406a-ae0a-a28d7c30389a","c2f3e970-63f0-4f48-aa84-3455e4e13802","e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","7c70ff80-dbfa-4e07-be73-1de0e60fe175","5a7210ac-9d87-4f4a-b596-cc7f43a89b21","3bc196f5-4b7d-4f60-9dc5-86d4bcf36e1a","d859aa89-8b4a-4551-af42-ff7c0c27260a","87a6472b-1bb4-4618-bb91-936d7de1966d","f2aeab5d-6015-4b7c-b4ed-d76e89093621","69e740ab-9f0e-4107-8516-16470000729c","7fb86682-316e-4f6e-a845-de9b230cdd29","58bf948f-8b9b-45c2-9ad6-582c26133f9e","847bb37a-dc13-4536-9f07-023d38dba98d","bd17a2bb-e686-486a-aacf-44fa8ce6e553","4aff4d9d-b1f4-44b0-ab6f-e4711ac11711","5dfefb70-053e-4ba8-9d76-537b230db94e","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","d17d6872-0412-45d9-a198-af82c34d3c5c","8a83777f-6dc1-476a-8d0c-d8b7594ecb6f","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","fd771862-4b75-46a7-ab42-73c46c0ac2db","39176c6e-509d-4e6c-8e42-417d103f4579","0058e276-66ef-4883-ad83-0e48536f635c","86fd5e3a-b023-4fa8-a3ae-1a194d8cd68c","fa29896b-6b49-468d-a787-966559a55c12"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"b92d36c0-9754-4678-9efd-096e4244e798","name":"Public + Bandwidth 2Gbps","price":{"currency_code":"EUR","units":0,"nanos":274000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":2000000000}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"31f5cddb-8217-4eb0-ac6a-96dbcb080b88","name":"Public + Bandwidth 10Gbps","price":{"currency_code":"EUR","units":1,"nanos":233000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":10000000000}},{"id":"b37af8cf-8b18-4349-a063-64e9c3d50124","name":"Public + Bandwidth 4Gbps","price":{"currency_code":"EUR","units":0,"nanos":548000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":4000000000}},{"id":"e0063872-115b-413e-bbf9-fff7eeca1065","name":"Public + Bandwidth 5Gbps","price":{"currency_code":"EUR","units":0,"nanos":685000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":5000000000}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":60000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":10000000000}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"a905e3e8-690a-4822-9c90-21418a44aa76","name":"Public + Bandwidth 3Gbps","price":{"currency_code":"EUR","units":0,"nanos":411000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":3000000000}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}}],"private_bandwidth":10000000000,"shared_bandwidth":true,"tags":["install-system-v2"],"gpus":[],"monthly_offer_id":"44890f67-212b-4610-9170-4c199644525e"},{"id":"18137894-b9a7-4e7b-b026-518ab8a3e41e","name":"EM-L420E-NVME","stock":"low","bandwidth":1000000000,"max_bandwidth":10000000000,"commercial_range":"lithium","disks":[{"capacity":4000787030016,"type":"NVMe"},{"capacity":4000787030016,"type":"NVMe"},{"capacity":4000787030016,"type":"NVMe"},{"capacity":4000787030016,"type":"NVMe"}],"enable":true,"cpus":[{"name":"AMD + EPYC 7272","core_count":12,"thread_count":24,"frequency":2900,"benchmark":"25568"}],"memories":[{"capacity":128000000000,"type":"DDR4","frequency":2400,"is_ecc":true}],"quota_name":"EM_L420E_NVMe","price_per_hour":{"currency_code":"EUR","units":1,"nanos":14000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["c2f3e970-63f0-4f48-aa84-3455e4e13802","bd17a2bb-e686-486a-aacf-44fa8ce6e553","4aff4d9d-b1f4-44b0-ab6f-e4711ac11711","87a6472b-1bb4-4618-bb91-936d7de1966d","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","7fb86682-316e-4f6e-a845-de9b230cdd29","0058e276-66ef-4883-ad83-0e48536f635c","5a7210ac-9d87-4f4a-b596-cc7f43a89b21","fd771862-4b75-46a7-ab42-73c46c0ac2db","86fd5e3a-b023-4fa8-a3ae-1a194d8cd68c","847bb37a-dc13-4536-9f07-023d38dba98d","1c376d8a-f237-438d-9cd9-47902050ffd3","69e740ab-9f0e-4107-8516-16470000729c","ac5cc157-caee-406a-ae0a-a28d7c30389a","39176c6e-509d-4e6c-8e42-417d103f4579","5dfefb70-053e-4ba8-9d76-537b230db94e","8a83777f-6dc1-476a-8d0c-d8b7594ecb6f","3bc196f5-4b7d-4f60-9dc5-86d4bcf36e1a","d859aa89-8b4a-4551-af42-ff7c0c27260a","6aa3f876-1c83-4434-8cc4-a2dbc94216db","fa29896b-6b49-468d-a787-966559a55c12"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":37,"nanos":800000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":252,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"e0063872-115b-413e-bbf9-fff7eeca1065","name":"Public + Bandwidth 5Gbps","price":{"currency_code":"EUR","units":0,"nanos":685000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":5000000000}},{"id":"a905e3e8-690a-4822-9c90-21418a44aa76","name":"Public + Bandwidth 3Gbps","price":{"currency_code":"EUR","units":0,"nanos":411000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":3000000000}},{"id":"b92d36c0-9754-4678-9efd-096e4244e798","name":"Public + Bandwidth 2Gbps","price":{"currency_code":"EUR","units":0,"nanos":274000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":2000000000}},{"id":"31f5cddb-8217-4eb0-ac6a-96dbcb080b88","name":"Public + Bandwidth 10Gbps","price":{"currency_code":"EUR","units":1,"nanos":233000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":10000000000}},{"id":"b37af8cf-8b18-4349-a063-64e9c3d50124","name":"Public + Bandwidth 4Gbps","price":{"currency_code":"EUR","units":0,"nanos":548000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":4000000000}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":60000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":10000000000}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":37,"nanos":800000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":37,"nanos":800000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":252,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":252,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}}],"private_bandwidth":10000000000,"shared_bandwidth":true,"tags":["install-system-v2"],"gpus":[],"monthly_offer_id":"d6cc24a7-b7a3-4dbf-808c-0e92be840f11"},{"id":"6e905149-d776-49c1-824d-8161f40968e9","name":"EM-I420E-NVME","stock":"available","bandwidth":1000000000,"max_bandwidth":25000000000,"commercial_range":"iridium","disks":[{"capacity":1920000000000,"type":"NVMe"},{"capacity":1920000000000,"type":"NVMe"}],"enable":true,"cpus":[{"name":"AMD + EPYC 8324P","core_count":32,"thread_count":64,"frequency":2650,"benchmark":"57127"}],"memories":[{"capacity":256000000000,"type":"DDR5","frequency":3200,"is_ecc":true}],"quota_name":"EM_I420E_NVMe","price_per_hour":{"currency_code":"EUR","units":1,"nanos":96000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["2e06fa49-4677-4bd7-8bf5-b1c490d8a966","c2f3e970-63f0-4f48-aa84-3455e4e13802","87a6472b-1bb4-4618-bb91-936d7de1966d","d17d6872-0412-45d9-a198-af82c34d3c5c","5dfefb70-053e-4ba8-9d76-537b230db94e","5a7210ac-9d87-4f4a-b596-cc7f43a89b21","7c70ff80-dbfa-4e07-be73-1de0e60fe175","86fd5e3a-b023-4fa8-a3ae-1a194d8cd68c","f2aeab5d-6015-4b7c-b4ed-d76e89093621","6aa3f876-1c83-4434-8cc4-a2dbc94216db","4aff4d9d-b1f4-44b0-ab6f-e4711ac11711","0058e276-66ef-4883-ad83-0e48536f635c","3bc196f5-4b7d-4f60-9dc5-86d4bcf36e1a","847bb37a-dc13-4536-9f07-023d38dba98d","ac5cc157-caee-406a-ae0a-a28d7c30389a","bd17a2bb-e686-486a-aacf-44fa8ce6e553","b4816d13-8585-4005-a7c7-54a031dd933b","e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","69e740ab-9f0e-4107-8516-16470000729c","fa29896b-6b49-468d-a787-966559a55c12","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","7fb86682-316e-4f6e-a845-de9b230cdd29","8a83777f-6dc1-476a-8d0c-d8b7594ecb6f","fd771862-4b75-46a7-ab42-73c46c0ac2db","39176c6e-509d-4e6c-8e42-417d103f4579","d859aa89-8b4a-4551-af42-ff7c0c27260a","1c376d8a-f237-438d-9cd9-47902050ffd3"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":672,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"ad1b86f2-4ae4-49f9-a826-a782e8d492f3","name":"Public + Bandwidth 25Gbps","price":{"currency_code":"EUR","units":2,"nanos":55000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":25000000000}},{"id":"4ce8bd16-0c16-479d-83bb-492b5f9072fa","name":"Public + Bandwidth 15Gbps","price":{"currency_code":"EUR","units":1,"nanos":644000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":15000000000}},{"id":"b92d36c0-9754-4678-9efd-096e4244e798","name":"Public + Bandwidth 2Gbps","price":{"currency_code":"EUR","units":0,"nanos":274000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":2000000000}},{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":100,"nanos":800000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":672,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"b0a352ae-8aa0-4397-b702-ecfe9563b47b","name":"Public + Bandwidth 20Gbps","price":{"currency_code":"EUR","units":1,"nanos":918000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":20000000000}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":90000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":25000000000}},{"id":"e0063872-115b-413e-bbf9-fff7eeca1065","name":"Public + Bandwidth 5Gbps","price":{"currency_code":"EUR","units":0,"nanos":685000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":5000000000}},{"id":"a905e3e8-690a-4822-9c90-21418a44aa76","name":"Public + Bandwidth 3Gbps","price":{"currency_code":"EUR","units":0,"nanos":411000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":3000000000}},{"id":"31f5cddb-8217-4eb0-ac6a-96dbcb080b88","name":"Public + Bandwidth 10Gbps","price":{"currency_code":"EUR","units":1,"nanos":233000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":10000000000}},{"id":"b37af8cf-8b18-4349-a063-64e9c3d50124","name":"Public + Bandwidth 4Gbps","price":{"currency_code":"EUR","units":0,"nanos":548000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":4000000000}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":100,"nanos":800000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":672,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":100,"nanos":800000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}}],"private_bandwidth":25000000000,"shared_bandwidth":true,"tags":["new","install-system-v2"],"gpus":[],"monthly_offer_id":"1d6a7465-696d-408b-91d1-ccf1f90fd887"},{"id":"b20ba18e-34e8-44aa-b909-93cbff7635b5","name":"EM-I520E-NVME","stock":"available","bandwidth":1000000000,"max_bandwidth":25000000000,"commercial_range":"iridium","disks":[{"capacity":3840000000000,"type":"NVMe"},{"capacity":3840000000000,"type":"NVMe"}],"enable":true,"cpus":[{"name":"AMD + EPYC 8434P","core_count":48,"thread_count":96,"frequency":2500,"benchmark":"66490"}],"memories":[{"capacity":384000000000,"type":"DDR5","frequency":3200,"is_ecc":true}],"quota_name":"EM_I520E_NVMe","price_per_hour":{"currency_code":"EUR","units":1,"nanos":370000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","bd17a2bb-e686-486a-aacf-44fa8ce6e553","b4816d13-8585-4005-a7c7-54a031dd933b","3bc196f5-4b7d-4f60-9dc5-86d4bcf36e1a","8a83777f-6dc1-476a-8d0c-d8b7594ecb6f","86fd5e3a-b023-4fa8-a3ae-1a194d8cd68c","1c376d8a-f237-438d-9cd9-47902050ffd3","69e740ab-9f0e-4107-8516-16470000729c","fd771862-4b75-46a7-ab42-73c46c0ac2db","d17d6872-0412-45d9-a198-af82c34d3c5c","fa29896b-6b49-468d-a787-966559a55c12","39176c6e-509d-4e6c-8e42-417d103f4579","5a7210ac-9d87-4f4a-b596-cc7f43a89b21","d859aa89-8b4a-4551-af42-ff7c0c27260a","847bb37a-dc13-4536-9f07-023d38dba98d","7fb86682-316e-4f6e-a845-de9b230cdd29","4aff4d9d-b1f4-44b0-ab6f-e4711ac11711","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","0058e276-66ef-4883-ad83-0e48536f635c","7c70ff80-dbfa-4e07-be73-1de0e60fe175","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","5dfefb70-053e-4ba8-9d76-537b230db94e","87a6472b-1bb4-4618-bb91-936d7de1966d","f2aeab5d-6015-4b7c-b4ed-d76e89093621","6aa3f876-1c83-4434-8cc4-a2dbc94216db","ac5cc157-caee-406a-ae0a-a28d7c30389a","c2f3e970-63f0-4f48-aa84-3455e4e13802"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":151,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":1008,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"b92d36c0-9754-4678-9efd-096e4244e798","name":"Public + Bandwidth 2Gbps","price":{"currency_code":"EUR","units":0,"nanos":274000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":2000000000}},{"id":"e0063872-115b-413e-bbf9-fff7eeca1065","name":"Public + Bandwidth 5Gbps","price":{"currency_code":"EUR","units":0,"nanos":685000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":5000000000}},{"id":"4ce8bd16-0c16-479d-83bb-492b5f9072fa","name":"Public + Bandwidth 15Gbps","price":{"currency_code":"EUR","units":1,"nanos":644000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":15000000000}},{"id":"ad1b86f2-4ae4-49f9-a826-a782e8d492f3","name":"Public + Bandwidth 25Gbps","price":{"currency_code":"EUR","units":2,"nanos":55000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":25000000000}},{"id":"b0a352ae-8aa0-4397-b702-ecfe9563b47b","name":"Public + Bandwidth 20Gbps","price":{"currency_code":"EUR","units":1,"nanos":918000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":20000000000}},{"id":"31f5cddb-8217-4eb0-ac6a-96dbcb080b88","name":"Public + Bandwidth 10Gbps","price":{"currency_code":"EUR","units":1,"nanos":233000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":10000000000}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":151,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":90000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":25000000000}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"b37af8cf-8b18-4349-a063-64e9c3d50124","name":"Public + Bandwidth 4Gbps","price":{"currency_code":"EUR","units":0,"nanos":548000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":4000000000}},{"id":"a905e3e8-690a-4822-9c90-21418a44aa76","name":"Public + Bandwidth 3Gbps","price":{"currency_code":"EUR","units":0,"nanos":411000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":3000000000}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":151,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":1008,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":1008,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}}],"private_bandwidth":25000000000,"shared_bandwidth":true,"tags":["new","install-system-v2"],"gpus":[],"monthly_offer_id":"5d7ced21-ce80-4bf8-ba7a-57195d56e2e8"},{"id":"51131a3a-7a9b-44c7-8228-2c071c185b77","name":"EM-I620E-NVME","stock":"empty","bandwidth":1000000000,"max_bandwidth":25000000000,"commercial_range":"iridium","disks":[{"capacity":3840000000000,"type":"NVMe"},{"capacity":3840000000000,"type":"NVMe"}],"enable":true,"cpus":[{"name":"AMD + EPYC 8534P","core_count":64,"thread_count":128,"frequency":2300,"benchmark":"71900"}],"memories":[{"capacity":576000000000,"type":"DDR5","frequency":3200,"is_ecc":true}],"quota_name":"EM_I620E_NVMe","price_per_hour":{"currency_code":"EUR","units":1,"nanos":644000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["3bc196f5-4b7d-4f60-9dc5-86d4bcf36e1a","d859aa89-8b4a-4551-af42-ff7c0c27260a","86fd5e3a-b023-4fa8-a3ae-1a194d8cd68c","69e740ab-9f0e-4107-8516-16470000729c","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","fd771862-4b75-46a7-ab42-73c46c0ac2db","0058e276-66ef-4883-ad83-0e48536f635c","7c70ff80-dbfa-4e07-be73-1de0e60fe175","8a83777f-6dc1-476a-8d0c-d8b7594ecb6f","c2f3e970-63f0-4f48-aa84-3455e4e13802","5dfefb70-053e-4ba8-9d76-537b230db94e","87a6472b-1bb4-4618-bb91-936d7de1966d","ac5cc157-caee-406a-ae0a-a28d7c30389a","4aff4d9d-b1f4-44b0-ab6f-e4711ac11711","e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","1c376d8a-f237-438d-9cd9-47902050ffd3","6aa3f876-1c83-4434-8cc4-a2dbc94216db","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","f2aeab5d-6015-4b7c-b4ed-d76e89093621","d17d6872-0412-45d9-a198-af82c34d3c5c","847bb37a-dc13-4536-9f07-023d38dba98d","39176c6e-509d-4e6c-8e42-417d103f4579","fa29896b-6b49-468d-a787-966559a55c12","7fb86682-316e-4f6e-a845-de9b230cdd29","bd17a2bb-e686-486a-aacf-44fa8ce6e553","b4816d13-8585-4005-a7c7-54a031dd933b","5a7210ac-9d87-4f4a-b596-cc7f43a89b21"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":1344,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":1344,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"b0a352ae-8aa0-4397-b702-ecfe9563b47b","name":"Public + Bandwidth 20Gbps","price":{"currency_code":"EUR","units":1,"nanos":918000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":20000000000}},{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":1344,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":201,"nanos":600000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"ad1b86f2-4ae4-49f9-a826-a782e8d492f3","name":"Public + Bandwidth 25Gbps","price":{"currency_code":"EUR","units":2,"nanos":55000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":25000000000}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":201,"nanos":600000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":90000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":25000000000}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":201,"nanos":600000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"b92d36c0-9754-4678-9efd-096e4244e798","name":"Public + Bandwidth 2Gbps","price":{"currency_code":"EUR","units":0,"nanos":274000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":2000000000}},{"id":"b37af8cf-8b18-4349-a063-64e9c3d50124","name":"Public + Bandwidth 4Gbps","price":{"currency_code":"EUR","units":0,"nanos":548000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":4000000000}},{"id":"e0063872-115b-413e-bbf9-fff7eeca1065","name":"Public + Bandwidth 5Gbps","price":{"currency_code":"EUR","units":0,"nanos":685000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":5000000000}},{"id":"4ce8bd16-0c16-479d-83bb-492b5f9072fa","name":"Public + Bandwidth 15Gbps","price":{"currency_code":"EUR","units":1,"nanos":644000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":15000000000}},{"id":"31f5cddb-8217-4eb0-ac6a-96dbcb080b88","name":"Public + Bandwidth 10Gbps","price":{"currency_code":"EUR","units":1,"nanos":233000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":10000000000}},{"id":"a905e3e8-690a-4822-9c90-21418a44aa76","name":"Public + Bandwidth 3Gbps","price":{"currency_code":"EUR","units":0,"nanos":411000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":3000000000}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}}],"private_bandwidth":25000000000,"shared_bandwidth":true,"tags":["new","install-system-v2"],"gpus":[],"monthly_offer_id":"cda8bdd6-40bc-4352-a1c4-e78941d9243f"},{"id":"49c3ff54-7949-4a53-8f52-f2ea17c451b1","name":"EM-I525E-NVME","stock":"empty","bandwidth":1000000000,"max_bandwidth":25000000000,"commercial_range":"iridium","disks":[{"capacity":7680000000000,"type":"NVMe"},{"capacity":7680000000000,"type":"NVMe"},{"capacity":7680000000000,"type":"NVMe"},{"capacity":7680000000000,"type":"NVMe"}],"enable":true,"cpus":[{"name":"AMD + EPYC 8434P","core_count":48,"thread_count":96,"frequency":2500,"benchmark":"66490"}],"memories":[{"capacity":384000000000,"type":"DDR5","frequency":3200,"is_ecc":true}],"quota_name":"EM_I525E_NVMe","price_per_hour":{"currency_code":"EUR","units":1,"nanos":781000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["1c376d8a-f237-438d-9cd9-47902050ffd3","39176c6e-509d-4e6c-8e42-417d103f4579","d17d6872-0412-45d9-a198-af82c34d3c5c","69e740ab-9f0e-4107-8516-16470000729c","3bc196f5-4b7d-4f60-9dc5-86d4bcf36e1a","86fd5e3a-b023-4fa8-a3ae-1a194d8cd68c","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","ac5cc157-caee-406a-ae0a-a28d7c30389a","5dfefb70-053e-4ba8-9d76-537b230db94e","fa29896b-6b49-468d-a787-966559a55c12","5a7210ac-9d87-4f4a-b596-cc7f43a89b21","7c70ff80-dbfa-4e07-be73-1de0e60fe175","e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","8a83777f-6dc1-476a-8d0c-d8b7594ecb6f","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","0058e276-66ef-4883-ad83-0e48536f635c","f2aeab5d-6015-4b7c-b4ed-d76e89093621","6aa3f876-1c83-4434-8cc4-a2dbc94216db","87a6472b-1bb4-4618-bb91-936d7de1966d","d859aa89-8b4a-4551-af42-ff7c0c27260a","847bb37a-dc13-4536-9f07-023d38dba98d","7fb86682-316e-4f6e-a845-de9b230cdd29","bd17a2bb-e686-486a-aacf-44fa8ce6e553","b4816d13-8585-4005-a7c7-54a031dd933b","fd771862-4b75-46a7-ab42-73c46c0ac2db","c2f3e970-63f0-4f48-aa84-3455e4e13802","4aff4d9d-b1f4-44b0-ab6f-e4711ac11711"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":90000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":25000000000}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":151,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":1008,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":1008,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":151,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":151,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":1008,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"b92d36c0-9754-4678-9efd-096e4244e798","name":"Public + Bandwidth 2Gbps","price":{"currency_code":"EUR","units":0,"nanos":274000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":2000000000}},{"id":"a905e3e8-690a-4822-9c90-21418a44aa76","name":"Public + Bandwidth 3Gbps","price":{"currency_code":"EUR","units":0,"nanos":411000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":3000000000}},{"id":"b0a352ae-8aa0-4397-b702-ecfe9563b47b","name":"Public + Bandwidth 20Gbps","price":{"currency_code":"EUR","units":1,"nanos":918000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":20000000000}},{"id":"b37af8cf-8b18-4349-a063-64e9c3d50124","name":"Public + Bandwidth 4Gbps","price":{"currency_code":"EUR","units":0,"nanos":548000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":4000000000}},{"id":"e0063872-115b-413e-bbf9-fff7eeca1065","name":"Public + Bandwidth 5Gbps","price":{"currency_code":"EUR","units":0,"nanos":685000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":5000000000}},{"id":"ad1b86f2-4ae4-49f9-a826-a782e8d492f3","name":"Public + Bandwidth 25Gbps","price":{"currency_code":"EUR","units":2,"nanos":55000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":25000000000}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"31f5cddb-8217-4eb0-ac6a-96dbcb080b88","name":"Public + Bandwidth 10Gbps","price":{"currency_code":"EUR","units":1,"nanos":233000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":10000000000}},{"id":"4ce8bd16-0c16-479d-83bb-492b5f9072fa","name":"Public + Bandwidth 15Gbps","price":{"currency_code":"EUR","units":1,"nanos":644000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":15000000000}}],"private_bandwidth":25000000000,"shared_bandwidth":true,"tags":["new","install-system-v2"],"gpus":[],"monthly_offer_id":"fc10fde7-336e-430a-aa58-0f70669e9fab"}]}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1/zones/fr-par-1/offers?page=1&subscription_period=unknown_subscription_period + method: GET + response: + body: '{"total_count":26,"offers":[{"id":"f7241870-c383-4fa2-bbca-5189600df5c4","name":"EM-A115X-SSD","stock":"available","bandwidth":500000000,"max_bandwidth":1000000000,"commercial_range":"aluminium","disks":[{"capacity":1024209543168,"type":"SSD"},{"capacity":1024209543168,"type":"SSD"}],"enable":true,"cpus":[{"name":"Intel + Xeon E3 1220 or equivalent","core_count":4,"thread_count":4,"frequency":3100,"benchmark":"3895"}],"memories":[{"capacity":32000000000,"type":"DDR3","frequency":1600,"is_ecc":true}],"quota_name":"EM_A115X_SSD","price_per_hour":{"currency_code":"EUR","units":0,"nanos":91000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["6aa3f876-1c83-4434-8cc4-a2dbc94216db","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","fa29896b-6b49-468d-a787-966559a55c12","7fb86682-316e-4f6e-a845-de9b230cdd29","e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","847bb37a-dc13-4536-9f07-023d38dba98d","1c376d8a-f237-438d-9cd9-47902050ffd3","bd17a2bb-e686-486a-aacf-44fa8ce6e553","bf705b90-1548-4368-98ca-d17dbd8dd860","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","69e740ab-9f0e-4107-8516-16470000729c","7e865c16-1a63-4dc7-8181-dabc020fc21b","b4816d13-8585-4005-a7c7-54a031dd933b","4aff4d9d-b1f4-44b0-ab6f-e4711ac11711","3422ae02-d6d7-4980-8a00-eb38c262fb41","fd771862-4b75-46a7-ab42-73c46c0ac2db","a5c00c1b-95b1-4c08-8a33-79cc079f9dac","7c70ff80-dbfa-4e07-be73-1de0e60fe175","a5cec64e-d7b0-4c6e-a819-60139d30a76c","bc7e4ca2-bf32-407f-a04b-72ad6455beb2"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"9ce714f1-ed03-4e3b-8c69-d46957ab0ebb","name":"Public + Bandwidth 1Gbps","price":{"currency_code":"EUR","units":0,"nanos":28000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":1000000000}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":30000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":1000000000}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}}],"private_bandwidth":1000000000,"shared_bandwidth":true,"tags":["install-system-v2"],"gpus":[],"monthly_offer_id":"f1322af3-53dd-473b-8749-83661fbb73d8"},{"id":"e1680dec-52aa-4cbc-b70c-ef32d863fdb0","name":"EM-A610R-NVME","stock":"available","bandwidth":500000000,"max_bandwidth":1000000000,"commercial_range":"aluminium","disks":[{"capacity":1024209543168,"type":"NVMe"},{"capacity":1024209543168,"type":"NVMe"}],"enable":true,"cpus":[{"name":"AMD + Ryzen PRO 3600","core_count":6,"thread_count":12,"frequency":3600,"benchmark":"17202"}],"memories":[{"capacity":32000000000,"type":"DDR4","frequency":3200,"is_ecc":true}],"quota_name":"EM_A610R_NVMe","price_per_hour":{"currency_code":"EUR","units":0,"nanos":110000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["ac5cc157-caee-406a-ae0a-a28d7c30389a","4aff4d9d-b1f4-44b0-ab6f-e4711ac11711","fd771862-4b75-46a7-ab42-73c46c0ac2db","0058e276-66ef-4883-ad83-0e48536f635c","b4816d13-8585-4005-a7c7-54a031dd933b","847bb37a-dc13-4536-9f07-023d38dba98d","fa29896b-6b49-468d-a787-966559a55c12","8a83777f-6dc1-476a-8d0c-d8b7594ecb6f","86fd5e3a-b023-4fa8-a3ae-1a194d8cd68c","3ea52186-1e57-499e-8146-ab38051a5c10","c2f3e970-63f0-4f48-aa84-3455e4e13802","bd17a2bb-e686-486a-aacf-44fa8ce6e553","87a6472b-1bb4-4618-bb91-936d7de1966d","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","39176c6e-509d-4e6c-8e42-417d103f4579","5dfefb70-053e-4ba8-9d76-537b230db94e","7fb86682-316e-4f6e-a845-de9b230cdd29","1c376d8a-f237-438d-9cd9-47902050ffd3","69e740ab-9f0e-4107-8516-16470000729c","3bc196f5-4b7d-4f60-9dc5-86d4bcf36e1a","d859aa89-8b4a-4551-af42-ff7c0c27260a","6aa3f876-1c83-4434-8cc4-a2dbc94216db","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","5a7210ac-9d87-4f4a-b596-cc7f43a89b21"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":30000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":1000000000}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"9ce714f1-ed03-4e3b-8c69-d46957ab0ebb","name":"Public + Bandwidth 1Gbps","price":{"currency_code":"EUR","units":0,"nanos":28000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":1000000000}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}}],"private_bandwidth":1000000000,"shared_bandwidth":true,"tags":["new","install-system-v2"],"gpus":[],"monthly_offer_id":"60bfff09-7b6e-4004-9b74-1957f26bf070"},{"id":"bd757ca3-a71b-4158-9ef5-39436b6db2a4","name":"EM-L101X-SATA","stock":"available","bandwidth":1000000000,"max_bandwidth":1000000000,"commercial_range":"lithium","disks":[{"capacity":6001175126016,"type":"HDD"},{"capacity":6001175126016,"type":"HDD"}],"enable":true,"cpus":[{"name":"Intel + Xeon E5 1410 v2","core_count":4,"thread_count":8,"frequency":2800,"benchmark":"5715"}],"memories":[{"capacity":96000000000,"type":"DDR3","frequency":1600,"is_ecc":true}],"quota_name":"EM_L101X_SATA","price_per_hour":{"currency_code":"EUR","units":0,"nanos":122000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["2e06fa49-4677-4bd7-8bf5-b1c490d8a966","fa29896b-6b49-468d-a787-966559a55c12","bc7e4ca2-bf32-407f-a04b-72ad6455beb2","847bb37a-dc13-4536-9f07-023d38dba98d","1c376d8a-f237-438d-9cd9-47902050ffd3","69e740ab-9f0e-4107-8516-16470000729c","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","fd771862-4b75-46a7-ab42-73c46c0ac2db","6aa3f876-1c83-4434-8cc4-a2dbc94216db","a5cec64e-d7b0-4c6e-a819-60139d30a76c"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":30000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":1000000000}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}}],"private_bandwidth":1000000000,"shared_bandwidth":true,"tags":[],"gpus":[],"monthly_offer_id":"1b067ec1-e383-4756-bbc2-d2ba5a76aa08"},{"id":"6ec5bbb2-8267-41cd-aaf6-d43ea1b59372","name":"EM-A315X-SSD","stock":"available","bandwidth":1000000000,"max_bandwidth":1000000000,"commercial_range":"aluminium","disks":[{"capacity":1024209543168,"type":"SSD"},{"capacity":1024209543168,"type":"SSD"}],"enable":true,"cpus":[{"name":"Intel + Xeon E5 1410 v2","core_count":4,"thread_count":8,"frequency":2800,"benchmark":"5715"}],"memories":[{"capacity":64000000000,"type":"DDR3","frequency":1600,"is_ecc":true}],"quota_name":"EM_A315X_SSD","price_per_hour":{"currency_code":"EUR","units":0,"nanos":153000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["a5c00c1b-95b1-4c08-8a33-79cc079f9dac","bc7e4ca2-bf32-407f-a04b-72ad6455beb2","fd771862-4b75-46a7-ab42-73c46c0ac2db","6aa3f876-1c83-4434-8cc4-a2dbc94216db","fa29896b-6b49-468d-a787-966559a55c12","3ea52186-1e57-499e-8146-ab38051a5c10","7e865c16-1a63-4dc7-8181-dabc020fc21b","bd17a2bb-e686-486a-aacf-44fa8ce6e553","3422ae02-d6d7-4980-8a00-eb38c262fb41","a5cec64e-d7b0-4c6e-a819-60139d30a76c","7c70ff80-dbfa-4e07-be73-1de0e60fe175","69e740ab-9f0e-4107-8516-16470000729c","7fb86682-316e-4f6e-a845-de9b230cdd29","b4816d13-8585-4005-a7c7-54a031dd933b","bf705b90-1548-4368-98ca-d17dbd8dd860","e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","39176c6e-509d-4e6c-8e42-417d103f4579","5dfefb70-053e-4ba8-9d76-537b230db94e","1c376d8a-f237-438d-9cd9-47902050ffd3","4aff4d9d-b1f4-44b0-ab6f-e4711ac11711","847bb37a-dc13-4536-9f07-023d38dba98d","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","2e06fa49-4677-4bd7-8bf5-b1c490d8a966"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":30000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":1000000000}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}}],"private_bandwidth":1000000000,"shared_bandwidth":true,"tags":[],"gpus":[],"monthly_offer_id":"6b91e989-5251-4d89-b366-0f5565339fdc"},{"id":"5a505e81-5f6a-42bd-acec-0b290be92697","name":"EM-A410X-SSD","stock":"empty","bandwidth":1000000000,"max_bandwidth":1000000000,"commercial_range":"aluminium","disks":[{"capacity":1024209543168,"type":"SSD"},{"capacity":1024209543168,"type":"SSD"}],"enable":true,"cpus":[{"name":"Intel + Xeon E5 1650","core_count":6,"thread_count":12,"frequency":3200,"benchmark":"8086"}],"memories":[{"capacity":64000000000,"type":"DDR3","frequency":1600,"is_ecc":true}],"quota_name":"EM_A410X_SSD","price_per_hour":{"currency_code":"EUR","units":0,"nanos":153000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["a5c00c1b-95b1-4c08-8a33-79cc079f9dac","7c70ff80-dbfa-4e07-be73-1de0e60fe175","fd771862-4b75-46a7-ab42-73c46c0ac2db","6aa3f876-1c83-4434-8cc4-a2dbc94216db","7fb86682-316e-4f6e-a845-de9b230cdd29","e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","a5cec64e-d7b0-4c6e-a819-60139d30a76c","bc7e4ca2-bf32-407f-a04b-72ad6455beb2","847bb37a-dc13-4536-9f07-023d38dba98d","1c376d8a-f237-438d-9cd9-47902050ffd3","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","fa29896b-6b49-468d-a787-966559a55c12","bf705b90-1548-4368-98ca-d17dbd8dd860","3422ae02-d6d7-4980-8a00-eb38c262fb41","69e740ab-9f0e-4107-8516-16470000729c","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","7e865c16-1a63-4dc7-8181-dabc020fc21b"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":30000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":1000000000}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}}],"private_bandwidth":1000000000,"shared_bandwidth":true,"tags":[],"gpus":[],"monthly_offer_id":"7adc4a66-da70-40e3-856b-7b952b77fbf9"},{"id":"c5853302-63e4-40c7-a711-4a91629565c8","name":"EM-L105X-SATA","stock":"available","bandwidth":1000000000,"max_bandwidth":1000000000,"commercial_range":"lithium","disks":[{"capacity":6001175126016,"type":"HDD"},{"capacity":6001175126016,"type":"HDD"},{"capacity":6001175126016,"type":"HDD"},{"capacity":6001175126016,"type":"HDD"}],"enable":true,"cpus":[{"name":"Intel + Xeon E5 1410 v2","core_count":4,"thread_count":8,"frequency":2800,"benchmark":"5715"}],"memories":[{"capacity":96000000000,"type":"DDR3","frequency":1600,"is_ecc":true}],"quota_name":"EM_L105X_SATA","price_per_hour":{"currency_code":"EUR","units":0,"nanos":213000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["1c376d8a-f237-438d-9cd9-47902050ffd3","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","fa29896b-6b49-468d-a787-966559a55c12","bc7e4ca2-bf32-407f-a04b-72ad6455beb2","847bb37a-dc13-4536-9f07-023d38dba98d","69e740ab-9f0e-4107-8516-16470000729c","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","fd771862-4b75-46a7-ab42-73c46c0ac2db","6aa3f876-1c83-4434-8cc4-a2dbc94216db","a5cec64e-d7b0-4c6e-a819-60139d30a76c"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":30000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":1000000000}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}}],"private_bandwidth":1000000000,"shared_bandwidth":true,"tags":[],"gpus":[],"monthly_offer_id":"3b36516b-34e5-4ab1-8b05-0cda2adbc84c"},{"id":"8c2cf291-a3d3-4dc5-967f-f498a088411d","name":"EM-B111X-SATA","stock":"available","bandwidth":1000000000,"max_bandwidth":1000000000,"commercial_range":"beryllium","disks":[{"capacity":8000000000000,"type":"HDD"},{"capacity":8000000000000,"type":"HDD"}],"enable":true,"cpus":[{"name":"Intel + Xeon E5 2620 or equivalent","core_count":6,"thread_count":12,"frequency":2000,"benchmark":""},{"name":"Intel + Xeon E5 2620 or equivalent","core_count":6,"thread_count":12,"frequency":2000,"benchmark":""}],"memories":[{"capacity":192000000000,"type":"DDR3","frequency":1600,"is_ecc":true}],"quota_name":"EM_B111X_SATA","price_per_hour":{"currency_code":"EUR","units":0,"nanos":263000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":[],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":286,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":44,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":44,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":286,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":30000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":1000000000}}],"private_bandwidth":1000000000,"shared_bandwidth":true,"tags":[],"gpus":[],"monthly_offer_id":null},{"id":"a5065ba4-dde2-45f3-adec-1ebbb27b766b","name":"EM-B112X-SSD","stock":"available","bandwidth":1000000000,"max_bandwidth":1000000000,"commercial_range":"beryllium","disks":[{"capacity":1000204886016,"type":"SSD"},{"capacity":1000204886016,"type":"SSD"}],"enable":true,"cpus":[{"name":"Intel + Xeon E5 2600 or equivalent","core_count":6,"thread_count":12,"frequency":2000,"benchmark":"5295"},{"name":"Intel + Xeon E5 2600 or equivalent","core_count":6,"thread_count":12,"frequency":2000,"benchmark":"5295"}],"memories":[{"capacity":192000000000,"type":"DDR3","frequency":1600,"is_ecc":true}],"quota_name":"EM_B112X_SSD","price_per_hour":{"currency_code":"EUR","units":0,"nanos":263000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["7e865c16-1a63-4dc7-8181-dabc020fc21b","a5cec64e-d7b0-4c6e-a819-60139d30a76c","847bb37a-dc13-4536-9f07-023d38dba98d","fd771862-4b75-46a7-ab42-73c46c0ac2db","6aa3f876-1c83-4434-8cc4-a2dbc94216db","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","bf705b90-1548-4368-98ca-d17dbd8dd860","69e740ab-9f0e-4107-8516-16470000729c","7c70ff80-dbfa-4e07-be73-1de0e60fe175","e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","3422ae02-d6d7-4980-8a00-eb38c262fb41","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","bc7e4ca2-bf32-407f-a04b-72ad6455beb2","1c376d8a-f237-438d-9cd9-47902050ffd3","fa29896b-6b49-468d-a787-966559a55c12"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":30000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":1000000000}},{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}}],"private_bandwidth":1000000000,"shared_bandwidth":true,"tags":[],"gpus":[],"monthly_offer_id":null},{"id":"c753f736-fbb4-4689-ae93-623f9d08dce5","name":"EM-B211X-SATA","stock":"empty","bandwidth":1000000000,"max_bandwidth":1000000000,"commercial_range":"beryllium","disks":[{"capacity":8000000000000,"type":"HDD"},{"capacity":8000000000000,"type":"HDD"}],"enable":true,"cpus":[{"name":"Intel + Xeon E5 2600 or equivalent","core_count":8,"thread_count":16,"frequency":2600,"benchmark":"5295"},{"name":"Intel + Xeon E5 2600 or equivalent","core_count":8,"thread_count":16,"frequency":2600,"benchmark":"5295"}],"memories":[{"capacity":256000000000,"type":"DDR3","frequency":1600,"is_ecc":true}],"quota_name":"EM_B211X_SATA","price_per_hour":{"currency_code":"EUR","units":0,"nanos":321000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["847bb37a-dc13-4536-9f07-023d38dba98d","1c376d8a-f237-438d-9cd9-47902050ffd3","69e740ab-9f0e-4107-8516-16470000729c","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","fd771862-4b75-46a7-ab42-73c46c0ac2db","6aa3f876-1c83-4434-8cc4-a2dbc94216db","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","fa29896b-6b49-468d-a787-966559a55c12"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":30000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":1000000000}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}}],"private_bandwidth":1000000000,"shared_bandwidth":true,"tags":[],"gpus":[],"monthly_offer_id":null},{"id":"ddaf8ba6-b2b2-4279-8af3-51930fb602f8","name":"EM-B212X-SSD","stock":"available","bandwidth":1000000000,"max_bandwidth":1000000000,"commercial_range":"beryllium","disks":[{"capacity":1024209543168,"type":"SSD"},{"capacity":1024209543168,"type":"SSD"}],"enable":true,"cpus":[{"name":"Intel + Xeon E5 2600 or equivalent","core_count":8,"thread_count":16,"frequency":2600,"benchmark":"5295"},{"name":"Intel + Xeon E5 2600 or equivalent","core_count":8,"thread_count":16,"frequency":2600,"benchmark":"5295"}],"memories":[{"capacity":256000000000,"type":"DDR3","frequency":1600,"is_ecc":true}],"quota_name":"EM_B212X_SSD","price_per_hour":{"currency_code":"EUR","units":0,"nanos":321000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["847bb37a-dc13-4536-9f07-023d38dba98d","1c376d8a-f237-438d-9cd9-47902050ffd3","69e740ab-9f0e-4107-8516-16470000729c","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","fd771862-4b75-46a7-ab42-73c46c0ac2db","6aa3f876-1c83-4434-8cc4-a2dbc94216db","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","fa29896b-6b49-468d-a787-966559a55c12"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":30000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":1000000000}},{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}}],"private_bandwidth":1000000000,"shared_bandwidth":true,"tags":[],"gpus":[],"monthly_offer_id":null},{"id":"206ea234-9097-4ae1-af68-6d2be09f47ed","name":"EM-B220E-NVME","stock":"empty","bandwidth":1000000000,"max_bandwidth":10000000000,"commercial_range":"beryllium","disks":[{"capacity":1024209543168,"type":"NVMe"},{"capacity":1024209543168,"type":"NVMe"}],"enable":true,"cpus":[{"name":"AMD + EPYC 7232P","core_count":8,"thread_count":16,"frequency":3100,"benchmark":"17017"}],"memories":[{"capacity":64000000000,"type":"DDR4","frequency":2400,"is_ecc":true}],"quota_name":"EM_B220E_NVMe","price_per_hour":{"currency_code":"EUR","units":0,"nanos":333000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["c2f3e970-63f0-4f48-aa84-3455e4e13802","bd17a2bb-e686-486a-aacf-44fa8ce6e553","847bb37a-dc13-4536-9f07-023d38dba98d","fd771862-4b75-46a7-ab42-73c46c0ac2db","8a83777f-6dc1-476a-8d0c-d8b7594ecb6f","86fd5e3a-b023-4fa8-a3ae-1a194d8cd68c","3bc196f5-4b7d-4f60-9dc5-86d4bcf36e1a","1c376d8a-f237-438d-9cd9-47902050ffd3","0058e276-66ef-4883-ad83-0e48536f635c","5a7210ac-9d87-4f4a-b596-cc7f43a89b21","87a6472b-1bb4-4618-bb91-936d7de1966d","ac5cc157-caee-406a-ae0a-a28d7c30389a","4aff4d9d-b1f4-44b0-ab6f-e4711ac11711","39176c6e-509d-4e6c-8e42-417d103f4579","5dfefb70-053e-4ba8-9d76-537b230db94e","6aa3f876-1c83-4434-8cc4-a2dbc94216db","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","fa29896b-6b49-468d-a787-966559a55c12","7fb86682-316e-4f6e-a845-de9b230cdd29","d859aa89-8b4a-4551-af42-ff7c0c27260a","69e740ab-9f0e-4107-8516-16470000729c","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"a905e3e8-690a-4822-9c90-21418a44aa76","name":"Public + Bandwidth 3Gbps","price":{"currency_code":"EUR","units":0,"nanos":411000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":3000000000}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"b92d36c0-9754-4678-9efd-096e4244e798","name":"Public + Bandwidth 2Gbps","price":{"currency_code":"EUR","units":0,"nanos":274000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":2000000000}},{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"e0063872-115b-413e-bbf9-fff7eeca1065","name":"Public + Bandwidth 5Gbps","price":{"currency_code":"EUR","units":0,"nanos":685000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":5000000000}},{"id":"b37af8cf-8b18-4349-a063-64e9c3d50124","name":"Public + Bandwidth 4Gbps","price":{"currency_code":"EUR","units":0,"nanos":548000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":4000000000}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":60000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":10000000000}},{"id":"31f5cddb-8217-4eb0-ac6a-96dbcb080b88","name":"Public + Bandwidth 10Gbps","price":{"currency_code":"EUR","units":1,"nanos":233000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":10000000000}}],"private_bandwidth":10000000000,"shared_bandwidth":true,"tags":["install-system-v2"],"gpus":[],"monthly_offer_id":"8852ff25-c867-4d58-a1f8-40b9968119b7"},{"id":"0e1f7c5b-05bf-4863-ba58-9ee07496d1f7","name":"EM-I120E-NVME","stock":"available","bandwidth":1000000000,"max_bandwidth":25000000000,"commercial_range":"iridium","disks":[{"capacity":960000000000,"type":"NVMe"},{"capacity":960000000000,"type":"NVMe"}],"enable":true,"cpus":[{"name":"AMD + EPYC 8024P","core_count":8,"thread_count":16,"frequency":2400,"benchmark":"20556"}],"memories":[{"capacity":64000000000,"type":"DDR5","frequency":3200,"is_ecc":true}],"quota_name":"EM_I120E_NVMe","price_per_hour":{"currency_code":"EUR","units":0,"nanos":356000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","b4816d13-8585-4005-a7c7-54a031dd933b","39176c6e-509d-4e6c-8e42-417d103f4579","3bc196f5-4b7d-4f60-9dc5-86d4bcf36e1a","87a6472b-1bb4-4618-bb91-936d7de1966d","f2aeab5d-6015-4b7c-b4ed-d76e89093621","ac5cc157-caee-406a-ae0a-a28d7c30389a","d17d6872-0412-45d9-a198-af82c34d3c5c","fa29896b-6b49-468d-a787-966559a55c12","7fb86682-316e-4f6e-a845-de9b230cdd29","8a83777f-6dc1-476a-8d0c-d8b7594ecb6f","847bb37a-dc13-4536-9f07-023d38dba98d","1c376d8a-f237-438d-9cd9-47902050ffd3","fd771862-4b75-46a7-ab42-73c46c0ac2db","c2f3e970-63f0-4f48-aa84-3455e4e13802","86fd5e3a-b023-4fa8-a3ae-1a194d8cd68c","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","6aa3f876-1c83-4434-8cc4-a2dbc94216db","bd17a2bb-e686-486a-aacf-44fa8ce6e553","5a7210ac-9d87-4f4a-b596-cc7f43a89b21","d859aa89-8b4a-4551-af42-ff7c0c27260a","7c70ff80-dbfa-4e07-be73-1de0e60fe175","69e740ab-9f0e-4107-8516-16470000729c","0058e276-66ef-4883-ad83-0e48536f635c","4aff4d9d-b1f4-44b0-ab6f-e4711ac11711","5dfefb70-053e-4ba8-9d76-537b230db94e"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"a905e3e8-690a-4822-9c90-21418a44aa76","name":"Public + Bandwidth 3Gbps","price":{"currency_code":"EUR","units":0,"nanos":411000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":3000000000}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"ad1b86f2-4ae4-49f9-a826-a782e8d492f3","name":"Public + Bandwidth 25Gbps","price":{"currency_code":"EUR","units":2,"nanos":55000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":25000000000}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"4ce8bd16-0c16-479d-83bb-492b5f9072fa","name":"Public + Bandwidth 15Gbps","price":{"currency_code":"EUR","units":1,"nanos":644000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":15000000000}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"e0063872-115b-413e-bbf9-fff7eeca1065","name":"Public + Bandwidth 5Gbps","price":{"currency_code":"EUR","units":0,"nanos":685000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":5000000000}},{"id":"b37af8cf-8b18-4349-a063-64e9c3d50124","name":"Public + Bandwidth 4Gbps","price":{"currency_code":"EUR","units":0,"nanos":548000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":4000000000}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"31f5cddb-8217-4eb0-ac6a-96dbcb080b88","name":"Public + Bandwidth 10Gbps","price":{"currency_code":"EUR","units":1,"nanos":233000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":10000000000}},{"id":"b92d36c0-9754-4678-9efd-096e4244e798","name":"Public + Bandwidth 2Gbps","price":{"currency_code":"EUR","units":0,"nanos":274000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":2000000000}},{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":90000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":25000000000}},{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"b0a352ae-8aa0-4397-b702-ecfe9563b47b","name":"Public + Bandwidth 20Gbps","price":{"currency_code":"EUR","units":1,"nanos":918000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":20000000000}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}}],"private_bandwidth":25000000000,"shared_bandwidth":true,"tags":["new","install-system-v2"],"gpus":[],"monthly_offer_id":"5e226c64-3ceb-470e-a9bb-d01aff3dc335"},{"id":"a204136d-656b-44b7-9735-88ca2f62cb1f","name":"EM-L110X-SATA","stock":"available","bandwidth":1000000000,"max_bandwidth":1000000000,"commercial_range":"lithium","disks":[{"capacity":12000138625024,"type":"HDD"},{"capacity":12000138625024,"type":"HDD"},{"capacity":12000138625024,"type":"HDD"},{"capacity":12000138625024,"type":"HDD"}],"enable":true,"cpus":[{"name":"Intel + Xeon E5 1410 v2","core_count":4,"thread_count":8,"frequency":2800,"benchmark":"5715"}],"memories":[{"capacity":96000000000,"type":"DDR3","frequency":1600,"is_ecc":true}],"quota_name":"EM_L110X_SATA","price_per_hour":{"currency_code":"EUR","units":0,"nanos":366000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["fd771862-4b75-46a7-ab42-73c46c0ac2db","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","fa29896b-6b49-468d-a787-966559a55c12","a5cec64e-d7b0-4c6e-a819-60139d30a76c","bc7e4ca2-bf32-407f-a04b-72ad6455beb2","847bb37a-dc13-4536-9f07-023d38dba98d","1c376d8a-f237-438d-9cd9-47902050ffd3","69e740ab-9f0e-4107-8516-16470000729c","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","6aa3f876-1c83-4434-8cc4-a2dbc94216db"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":30000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":1000000000}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}}],"private_bandwidth":1000000000,"shared_bandwidth":true,"tags":[],"gpus":[],"monthly_offer_id":"0ca85e34-d35a-494b-9077-70589cf7a6c8"},{"id":"a60ae97c-268c-40cb-af5f-dd276e917ed7","name":"EM-B320E-NVME","stock":"available","bandwidth":1000000000,"max_bandwidth":10000000000,"commercial_range":"beryllium","disks":[{"capacity":2048408248320,"type":"NVMe"},{"capacity":2048408248320,"type":"NVMe"}],"enable":true,"cpus":[{"name":"AMD + EPYC 7232P","core_count":8,"thread_count":16,"frequency":3100,"benchmark":"17017"}],"memories":[{"capacity":128000000000,"type":"DDR4","frequency":2400,"is_ecc":true}],"quota_name":"EM_B320E_NVMe","price_per_hour":{"currency_code":"EUR","units":0,"nanos":417000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["1c376d8a-f237-438d-9cd9-47902050ffd3","69e740ab-9f0e-4107-8516-16470000729c","ac5cc157-caee-406a-ae0a-a28d7c30389a","8a83777f-6dc1-476a-8d0c-d8b7594ecb6f","847bb37a-dc13-4536-9f07-023d38dba98d","5a7210ac-9d87-4f4a-b596-cc7f43a89b21","3bc196f5-4b7d-4f60-9dc5-86d4bcf36e1a","fd771862-4b75-46a7-ab42-73c46c0ac2db","7fb86682-316e-4f6e-a845-de9b230cdd29","bd17a2bb-e686-486a-aacf-44fa8ce6e553","86fd5e3a-b023-4fa8-a3ae-1a194d8cd68c","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","6aa3f876-1c83-4434-8cc4-a2dbc94216db","4aff4d9d-b1f4-44b0-ab6f-e4711ac11711","39176c6e-509d-4e6c-8e42-417d103f4579","0058e276-66ef-4883-ad83-0e48536f635c","d859aa89-8b4a-4551-af42-ff7c0c27260a","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","fa29896b-6b49-468d-a787-966559a55c12","c2f3e970-63f0-4f48-aa84-3455e4e13802","5dfefb70-053e-4ba8-9d76-537b230db94e","87a6472b-1bb4-4618-bb91-936d7de1966d"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"b37af8cf-8b18-4349-a063-64e9c3d50124","name":"Public + Bandwidth 4Gbps","price":{"currency_code":"EUR","units":0,"nanos":548000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":4000000000}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"e0063872-115b-413e-bbf9-fff7eeca1065","name":"Public + Bandwidth 5Gbps","price":{"currency_code":"EUR","units":0,"nanos":685000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":5000000000}},{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"31f5cddb-8217-4eb0-ac6a-96dbcb080b88","name":"Public + Bandwidth 10Gbps","price":{"currency_code":"EUR","units":1,"nanos":233000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":10000000000}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":60000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":10000000000}},{"id":"a905e3e8-690a-4822-9c90-21418a44aa76","name":"Public + Bandwidth 3Gbps","price":{"currency_code":"EUR","units":0,"nanos":411000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":3000000000}},{"id":"b92d36c0-9754-4678-9efd-096e4244e798","name":"Public + Bandwidth 2Gbps","price":{"currency_code":"EUR","units":0,"nanos":274000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":2000000000}}],"private_bandwidth":10000000000,"shared_bandwidth":true,"tags":["install-system-v2"],"gpus":[],"monthly_offer_id":"ffbd2be3-076a-4940-b77d-d8b333f9723e"},{"id":"d14eef5e-3279-42db-bb57-bb2bbe6a5b28","name":"EM-B420E-NVME","stock":"available","bandwidth":1000000000,"max_bandwidth":10000000000,"commercial_range":"beryllium","disks":[{"capacity":1024209543168,"type":"NVMe"},{"capacity":1024209543168,"type":"NVMe"}],"enable":true,"cpus":[{"name":"AMD + EPYC 7272","core_count":12,"thread_count":24,"frequency":2900,"benchmark":"25568"}],"memories":[{"capacity":128000000000,"type":"DDR4","frequency":2400,"is_ecc":true}],"quota_name":"EM_B420E_NVMe","price_per_hour":{"currency_code":"EUR","units":0,"nanos":444000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["ac5cc157-caee-406a-ae0a-a28d7c30389a","39176c6e-509d-4e6c-8e42-417d103f4579","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","847bb37a-dc13-4536-9f07-023d38dba98d","69e740ab-9f0e-4107-8516-16470000729c","6aa3f876-1c83-4434-8cc4-a2dbc94216db","7fb86682-316e-4f6e-a845-de9b230cdd29","5dfefb70-053e-4ba8-9d76-537b230db94e","8a83777f-6dc1-476a-8d0c-d8b7594ecb6f","5a7210ac-9d87-4f4a-b596-cc7f43a89b21","d859aa89-8b4a-4551-af42-ff7c0c27260a","1c376d8a-f237-438d-9cd9-47902050ffd3","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","fd771862-4b75-46a7-ab42-73c46c0ac2db","c2f3e970-63f0-4f48-aa84-3455e4e13802","bd17a2bb-e686-486a-aacf-44fa8ce6e553","4aff4d9d-b1f4-44b0-ab6f-e4711ac11711","86fd5e3a-b023-4fa8-a3ae-1a194d8cd68c","0058e276-66ef-4883-ad83-0e48536f635c","3bc196f5-4b7d-4f60-9dc5-86d4bcf36e1a","87a6472b-1bb4-4618-bb91-936d7de1966d","fa29896b-6b49-468d-a787-966559a55c12"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":252,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"b37af8cf-8b18-4349-a063-64e9c3d50124","name":"Public + Bandwidth 4Gbps","price":{"currency_code":"EUR","units":0,"nanos":548000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":4000000000}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"a905e3e8-690a-4822-9c90-21418a44aa76","name":"Public + Bandwidth 3Gbps","price":{"currency_code":"EUR","units":0,"nanos":411000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":3000000000}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":60000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":10000000000}},{"id":"e0063872-115b-413e-bbf9-fff7eeca1065","name":"Public + Bandwidth 5Gbps","price":{"currency_code":"EUR","units":0,"nanos":685000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":5000000000}},{"id":"31f5cddb-8217-4eb0-ac6a-96dbcb080b88","name":"Public + Bandwidth 10Gbps","price":{"currency_code":"EUR","units":1,"nanos":233000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":10000000000}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":37,"nanos":800000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":252,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":37,"nanos":800000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":252,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"b92d36c0-9754-4678-9efd-096e4244e798","name":"Public + Bandwidth 2Gbps","price":{"currency_code":"EUR","units":0,"nanos":274000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":2000000000}},{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":37,"nanos":800000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}}],"private_bandwidth":10000000000,"shared_bandwidth":true,"tags":["install-system-v2"],"gpus":[],"monthly_offer_id":"8511a555-b488-458d-bdf2-b74716b8c1cb"},{"id":"d73011fa-02e0-46bc-992c-8bb62c767e97","name":"EM-B520E-NVME","stock":"available","bandwidth":1000000000,"max_bandwidth":10000000000,"commercial_range":"beryllium","disks":[{"capacity":2048408248320,"type":"NVMe"},{"capacity":2048408248320,"type":"NVMe"}],"enable":true,"cpus":[{"name":"AMD + EPYC 7272","core_count":12,"thread_count":24,"frequency":2900,"benchmark":"25568"}],"memories":[{"capacity":256000000000,"type":"DDR4","frequency":2400,"is_ecc":true}],"quota_name":"EM_B520E_NVMe","price_per_hour":{"currency_code":"EUR","units":0,"nanos":528000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["bd17a2bb-e686-486a-aacf-44fa8ce6e553","5dfefb70-053e-4ba8-9d76-537b230db94e","8a83777f-6dc1-476a-8d0c-d8b7594ecb6f","87a6472b-1bb4-4618-bb91-936d7de1966d","1c376d8a-f237-438d-9cd9-47902050ffd3","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","c2f3e970-63f0-4f48-aa84-3455e4e13802","86fd5e3a-b023-4fa8-a3ae-1a194d8cd68c","d859aa89-8b4a-4551-af42-ff7c0c27260a","fa29896b-6b49-468d-a787-966559a55c12","7fb86682-316e-4f6e-a845-de9b230cdd29","5a7210ac-9d87-4f4a-b596-cc7f43a89b21","3bc196f5-4b7d-4f60-9dc5-86d4bcf36e1a","847bb37a-dc13-4536-9f07-023d38dba98d","69e740ab-9f0e-4107-8516-16470000729c","6aa3f876-1c83-4434-8cc4-a2dbc94216db","ac5cc157-caee-406a-ae0a-a28d7c30389a","4aff4d9d-b1f4-44b0-ab6f-e4711ac11711","39176c6e-509d-4e6c-8e42-417d103f4579","0058e276-66ef-4883-ad83-0e48536f635c","fd771862-4b75-46a7-ab42-73c46c0ac2db"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":60000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":10000000000}},{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":252,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":37,"nanos":800000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"31f5cddb-8217-4eb0-ac6a-96dbcb080b88","name":"Public + Bandwidth 10Gbps","price":{"currency_code":"EUR","units":1,"nanos":233000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":10000000000}},{"id":"b92d36c0-9754-4678-9efd-096e4244e798","name":"Public + Bandwidth 2Gbps","price":{"currency_code":"EUR","units":0,"nanos":274000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":2000000000}},{"id":"e0063872-115b-413e-bbf9-fff7eeca1065","name":"Public + Bandwidth 5Gbps","price":{"currency_code":"EUR","units":0,"nanos":685000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":5000000000}},{"id":"a905e3e8-690a-4822-9c90-21418a44aa76","name":"Public + Bandwidth 3Gbps","price":{"currency_code":"EUR","units":0,"nanos":411000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":3000000000}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":37,"nanos":800000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":37,"nanos":800000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":252,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":252,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"b37af8cf-8b18-4349-a063-64e9c3d50124","name":"Public + Bandwidth 4Gbps","price":{"currency_code":"EUR","units":0,"nanos":548000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":4000000000}}],"private_bandwidth":10000000000,"shared_bandwidth":true,"tags":["install-system-v2"],"gpus":[],"monthly_offer_id":"2cc8ffd7-c25d-4c02-aa8b-b695bebe6213"},{"id":"fd7605a7-7493-49ba-9019-0e9c2897d4a0","name":"EM-I220E-NVME","stock":"available","bandwidth":1000000000,"max_bandwidth":25000000000,"commercial_range":"iridium","disks":[{"capacity":960000000000,"type":"NVMe"},{"capacity":960000000000,"type":"NVMe"}],"enable":true,"cpus":[{"name":"AMD + EPYC 8124P","core_count":16,"thread_count":32,"frequency":2450,"benchmark":"36338"}],"memories":[{"capacity":128000000000,"type":"DDR5","frequency":3200,"is_ecc":true}],"quota_name":"EM_I220E_NVMe","price_per_hour":{"currency_code":"EUR","units":0,"nanos":548000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["3bc196f5-4b7d-4f60-9dc5-86d4bcf36e1a","8a83777f-6dc1-476a-8d0c-d8b7594ecb6f","1c376d8a-f237-438d-9cd9-47902050ffd3","fd771862-4b75-46a7-ab42-73c46c0ac2db","7c70ff80-dbfa-4e07-be73-1de0e60fe175","847bb37a-dc13-4536-9f07-023d38dba98d","f2aeab5d-6015-4b7c-b4ed-d76e89093621","5dfefb70-053e-4ba8-9d76-537b230db94e","86fd5e3a-b023-4fa8-a3ae-1a194d8cd68c","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","6aa3f876-1c83-4434-8cc4-a2dbc94216db","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","87a6472b-1bb4-4618-bb91-936d7de1966d","e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","d17d6872-0412-45d9-a198-af82c34d3c5c","ac5cc157-caee-406a-ae0a-a28d7c30389a","b4816d13-8585-4005-a7c7-54a031dd933b","4aff4d9d-b1f4-44b0-ab6f-e4711ac11711","69e740ab-9f0e-4107-8516-16470000729c","c2f3e970-63f0-4f48-aa84-3455e4e13802","bd17a2bb-e686-486a-aacf-44fa8ce6e553","0058e276-66ef-4883-ad83-0e48536f635c","5a7210ac-9d87-4f4a-b596-cc7f43a89b21","d859aa89-8b4a-4551-af42-ff7c0c27260a","39176c6e-509d-4e6c-8e42-417d103f4579","fa29896b-6b49-468d-a787-966559a55c12","7fb86682-316e-4f6e-a845-de9b230cdd29"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"b92d36c0-9754-4678-9efd-096e4244e798","name":"Public + Bandwidth 2Gbps","price":{"currency_code":"EUR","units":0,"nanos":274000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":2000000000}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"4ce8bd16-0c16-479d-83bb-492b5f9072fa","name":"Public + Bandwidth 15Gbps","price":{"currency_code":"EUR","units":1,"nanos":644000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":15000000000}},{"id":"31f5cddb-8217-4eb0-ac6a-96dbcb080b88","name":"Public + Bandwidth 10Gbps","price":{"currency_code":"EUR","units":1,"nanos":233000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":10000000000}},{"id":"b37af8cf-8b18-4349-a063-64e9c3d50124","name":"Public + Bandwidth 4Gbps","price":{"currency_code":"EUR","units":0,"nanos":548000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":4000000000}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"a905e3e8-690a-4822-9c90-21418a44aa76","name":"Public + Bandwidth 3Gbps","price":{"currency_code":"EUR","units":0,"nanos":411000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":3000000000}},{"id":"ad1b86f2-4ae4-49f9-a826-a782e8d492f3","name":"Public + Bandwidth 25Gbps","price":{"currency_code":"EUR","units":2,"nanos":55000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":25000000000}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":90000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":25000000000}},{"id":"b0a352ae-8aa0-4397-b702-ecfe9563b47b","name":"Public + Bandwidth 20Gbps","price":{"currency_code":"EUR","units":1,"nanos":918000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":20000000000}},{"id":"e0063872-115b-413e-bbf9-fff7eeca1065","name":"Public + Bandwidth 5Gbps","price":{"currency_code":"EUR","units":0,"nanos":685000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":5000000000}}],"private_bandwidth":25000000000,"shared_bandwidth":true,"tags":["new","install-system-v2"],"gpus":[],"monthly_offer_id":"293cc6d1-0ac8-4bc4-a5a1-8ed2096b045c"},{"id":"7e81d4d4-a84b-4dd0-9f44-f0ac34a09e3a","name":"EM-I210E-NVME","stock":"available","bandwidth":1000000000,"max_bandwidth":10000000000,"commercial_range":"iridium","disks":[{"capacity":1920383410176,"type":"NVMe"},{"capacity":1920383410176,"type":"NVMe"}],"enable":true,"cpus":[{"name":"AMD + EPYC 7313P","core_count":16,"thread_count":32,"frequency":3000,"benchmark":"41609"}],"memories":[{"capacity":128000000000,"type":"DDR4","frequency":3200,"is_ecc":true}],"quota_name":"EM_I210E_NVMe","price_per_hour":{"currency_code":"EUR","units":0,"nanos":667000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["f2aeab5d-6015-4b7c-b4ed-d76e89093621","69e740ab-9f0e-4107-8516-16470000729c","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","fd771862-4b75-46a7-ab42-73c46c0ac2db","6aa3f876-1c83-4434-8cc4-a2dbc94216db","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","d17d6872-0412-45d9-a198-af82c34d3c5c","8a83777f-6dc1-476a-8d0c-d8b7594ecb6f","847bb37a-dc13-4536-9f07-023d38dba98d","1c376d8a-f237-438d-9cd9-47902050ffd3","fa29896b-6b49-468d-a787-966559a55c12"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":60000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":10000000000}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"a905e3e8-690a-4822-9c90-21418a44aa76","name":"Public + Bandwidth 3Gbps","price":{"currency_code":"EUR","units":0,"nanos":411000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":3000000000}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"31f5cddb-8217-4eb0-ac6a-96dbcb080b88","name":"Public + Bandwidth 10Gbps","price":{"currency_code":"EUR","units":1,"nanos":233000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":10000000000}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"b92d36c0-9754-4678-9efd-096e4244e798","name":"Public + Bandwidth 2Gbps","price":{"currency_code":"EUR","units":0,"nanos":274000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":2000000000}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"e0063872-115b-413e-bbf9-fff7eeca1065","name":"Public + Bandwidth 5Gbps","price":{"currency_code":"EUR","units":0,"nanos":685000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":5000000000}},{"id":"b37af8cf-8b18-4349-a063-64e9c3d50124","name":"Public + Bandwidth 4Gbps","price":{"currency_code":"EUR","units":0,"nanos":548000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":4000000000}}],"private_bandwidth":10000000000,"shared_bandwidth":true,"tags":[],"gpus":[],"monthly_offer_id":"f46f16bd-ce65-4a6c-9e15-1d35b52e9e5e"},{"id":"402efe20-4dcb-49af-bc80-1008bcc749a6","name":"EM-L220E-NVME","stock":"available","bandwidth":1000000000,"max_bandwidth":10000000000,"commercial_range":"lithium","disks":[{"capacity":2048408248320,"type":"NVMe"},{"capacity":2048408248320,"type":"NVMe"},{"capacity":2048408248320,"type":"NVMe"},{"capacity":2048408248320,"type":"NVMe"}],"enable":true,"cpus":[{"name":"AMD + EPYC 7232P","core_count":8,"thread_count":16,"frequency":3100,"benchmark":"17017"}],"memories":[{"capacity":64000000000,"type":"DDR4","frequency":2400,"is_ecc":true}],"quota_name":"EM_L220E_NVMe","price_per_hour":{"currency_code":"EUR","units":0,"nanos":685000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["3bc196f5-4b7d-4f60-9dc5-86d4bcf36e1a","1c376d8a-f237-438d-9cd9-47902050ffd3","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","5dfefb70-053e-4ba8-9d76-537b230db94e","86fd5e3a-b023-4fa8-a3ae-1a194d8cd68c","5a7210ac-9d87-4f4a-b596-cc7f43a89b21","87a6472b-1bb4-4618-bb91-936d7de1966d","69e740ab-9f0e-4107-8516-16470000729c","fa29896b-6b49-468d-a787-966559a55c12","ac5cc157-caee-406a-ae0a-a28d7c30389a","4aff4d9d-b1f4-44b0-ab6f-e4711ac11711","847bb37a-dc13-4536-9f07-023d38dba98d","fd771862-4b75-46a7-ab42-73c46c0ac2db","6aa3f876-1c83-4434-8cc4-a2dbc94216db","0058e276-66ef-4883-ad83-0e48536f635c","d859aa89-8b4a-4551-af42-ff7c0c27260a","c2f3e970-63f0-4f48-aa84-3455e4e13802","7fb86682-316e-4f6e-a845-de9b230cdd29","bd17a2bb-e686-486a-aacf-44fa8ce6e553","39176c6e-509d-4e6c-8e42-417d103f4579","8a83777f-6dc1-476a-8d0c-d8b7594ecb6f"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":60000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":10000000000}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"e0063872-115b-413e-bbf9-fff7eeca1065","name":"Public + Bandwidth 5Gbps","price":{"currency_code":"EUR","units":0,"nanos":685000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":5000000000}},{"id":"a905e3e8-690a-4822-9c90-21418a44aa76","name":"Public + Bandwidth 3Gbps","price":{"currency_code":"EUR","units":0,"nanos":411000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":3000000000}},{"id":"31f5cddb-8217-4eb0-ac6a-96dbcb080b88","name":"Public + Bandwidth 10Gbps","price":{"currency_code":"EUR","units":1,"nanos":233000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":10000000000}},{"id":"b37af8cf-8b18-4349-a063-64e9c3d50124","name":"Public + Bandwidth 4Gbps","price":{"currency_code":"EUR","units":0,"nanos":548000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":4000000000}},{"id":"b92d36c0-9754-4678-9efd-096e4244e798","name":"Public + Bandwidth 2Gbps","price":{"currency_code":"EUR","units":0,"nanos":274000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":2000000000}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":168,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":25,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}}],"private_bandwidth":10000000000,"shared_bandwidth":true,"tags":["install-system-v2"],"gpus":[],"monthly_offer_id":"da1aff24-a8c5-445d-ae61-a1165e8dd636"},{"id":"66cdd2c4-664c-47af-b0ad-a70e12999f0e","name":"EM-I320E-NVME","stock":"available","bandwidth":1000000000,"max_bandwidth":25000000000,"commercial_range":"iridium","disks":[{"capacity":1920000000000,"type":"NVMe"},{"capacity":1920000000000,"type":"NVMe"}],"enable":true,"cpus":[{"name":"AMD + EPYC 8224P","core_count":24,"thread_count":48,"frequency":2550,"benchmark":"45160"}],"memories":[{"capacity":192000000000,"type":"DDR5","frequency":3200,"is_ecc":true}],"quota_name":"EM_I320E_NVMe","price_per_hour":{"currency_code":"EUR","units":0,"nanos":822000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["0058e276-66ef-4883-ad83-0e48536f635c","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","c2f3e970-63f0-4f48-aa84-3455e4e13802","ac5cc157-caee-406a-ae0a-a28d7c30389a","b4816d13-8585-4005-a7c7-54a031dd933b","847bb37a-dc13-4536-9f07-023d38dba98d","39176c6e-509d-4e6c-8e42-417d103f4579","5dfefb70-053e-4ba8-9d76-537b230db94e","8a83777f-6dc1-476a-8d0c-d8b7594ecb6f","e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","69e740ab-9f0e-4107-8516-16470000729c","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","7fb86682-316e-4f6e-a845-de9b230cdd29","7c70ff80-dbfa-4e07-be73-1de0e60fe175","f2aeab5d-6015-4b7c-b4ed-d76e89093621","1c376d8a-f237-438d-9cd9-47902050ffd3","6aa3f876-1c83-4434-8cc4-a2dbc94216db","4aff4d9d-b1f4-44b0-ab6f-e4711ac11711","3bc196f5-4b7d-4f60-9dc5-86d4bcf36e1a","87a6472b-1bb4-4618-bb91-936d7de1966d","86fd5e3a-b023-4fa8-a3ae-1a194d8cd68c","fd771862-4b75-46a7-ab42-73c46c0ac2db","d859aa89-8b4a-4551-af42-ff7c0c27260a","d17d6872-0412-45d9-a198-af82c34d3c5c","fa29896b-6b49-468d-a787-966559a55c12","bd17a2bb-e686-486a-aacf-44fa8ce6e553","5a7210ac-9d87-4f4a-b596-cc7f43a89b21"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"b37af8cf-8b18-4349-a063-64e9c3d50124","name":"Public + Bandwidth 4Gbps","price":{"currency_code":"EUR","units":0,"nanos":548000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":4000000000}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":75,"nanos":600000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":504,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"a905e3e8-690a-4822-9c90-21418a44aa76","name":"Public + Bandwidth 3Gbps","price":{"currency_code":"EUR","units":0,"nanos":411000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":3000000000}},{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":504,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":90000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":25000000000}},{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":75,"nanos":600000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"4ce8bd16-0c16-479d-83bb-492b5f9072fa","name":"Public + Bandwidth 15Gbps","price":{"currency_code":"EUR","units":1,"nanos":644000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":15000000000}},{"id":"b0a352ae-8aa0-4397-b702-ecfe9563b47b","name":"Public + Bandwidth 20Gbps","price":{"currency_code":"EUR","units":1,"nanos":918000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":20000000000}},{"id":"b92d36c0-9754-4678-9efd-096e4244e798","name":"Public + Bandwidth 2Gbps","price":{"currency_code":"EUR","units":0,"nanos":274000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":2000000000}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"31f5cddb-8217-4eb0-ac6a-96dbcb080b88","name":"Public + Bandwidth 10Gbps","price":{"currency_code":"EUR","units":1,"nanos":233000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":10000000000}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":75,"nanos":600000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":504,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"ad1b86f2-4ae4-49f9-a826-a782e8d492f3","name":"Public + Bandwidth 25Gbps","price":{"currency_code":"EUR","units":2,"nanos":55000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":25000000000}},{"id":"e0063872-115b-413e-bbf9-fff7eeca1065","name":"Public + Bandwidth 5Gbps","price":{"currency_code":"EUR","units":0,"nanos":685000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":5000000000}}],"private_bandwidth":25000000000,"shared_bandwidth":true,"tags":["new","install-system-v2"],"gpus":[],"monthly_offer_id":"db96a346-53e8-41ab-838b-b0a349abbb66"},{"id":"ddb09834-8680-4339-b5e3-19ca5205fa1f","name":"EM-I215E-NVME","stock":"available","bandwidth":1000000000,"max_bandwidth":10000000000,"commercial_range":"iridium","disks":[{"capacity":1920383410176,"type":"NVMe"},{"capacity":1920383410176,"type":"NVMe"}],"enable":true,"cpus":[{"name":"AMD + EPYC 7313P","core_count":16,"thread_count":32,"frequency":3000,"benchmark":"41609"}],"memories":[{"capacity":256000000000,"type":"DDR4","frequency":3200,"is_ecc":true}],"quota_name":"EM_I215E_NVMe","price_per_hour":{"currency_code":"EUR","units":0,"nanos":904000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["1c376d8a-f237-438d-9cd9-47902050ffd3","6aa3f876-1c83-4434-8cc4-a2dbc94216db","ac5cc157-caee-406a-ae0a-a28d7c30389a","c2f3e970-63f0-4f48-aa84-3455e4e13802","e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","7c70ff80-dbfa-4e07-be73-1de0e60fe175","5a7210ac-9d87-4f4a-b596-cc7f43a89b21","3bc196f5-4b7d-4f60-9dc5-86d4bcf36e1a","d859aa89-8b4a-4551-af42-ff7c0c27260a","87a6472b-1bb4-4618-bb91-936d7de1966d","f2aeab5d-6015-4b7c-b4ed-d76e89093621","69e740ab-9f0e-4107-8516-16470000729c","7fb86682-316e-4f6e-a845-de9b230cdd29","58bf948f-8b9b-45c2-9ad6-582c26133f9e","847bb37a-dc13-4536-9f07-023d38dba98d","bd17a2bb-e686-486a-aacf-44fa8ce6e553","4aff4d9d-b1f4-44b0-ab6f-e4711ac11711","5dfefb70-053e-4ba8-9d76-537b230db94e","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","d17d6872-0412-45d9-a198-af82c34d3c5c","8a83777f-6dc1-476a-8d0c-d8b7594ecb6f","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","fd771862-4b75-46a7-ab42-73c46c0ac2db","39176c6e-509d-4e6c-8e42-417d103f4579","0058e276-66ef-4883-ad83-0e48536f635c","86fd5e3a-b023-4fa8-a3ae-1a194d8cd68c","fa29896b-6b49-468d-a787-966559a55c12"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"b92d36c0-9754-4678-9efd-096e4244e798","name":"Public + Bandwidth 2Gbps","price":{"currency_code":"EUR","units":0,"nanos":274000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":2000000000}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"31f5cddb-8217-4eb0-ac6a-96dbcb080b88","name":"Public + Bandwidth 10Gbps","price":{"currency_code":"EUR","units":1,"nanos":233000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":10000000000}},{"id":"b37af8cf-8b18-4349-a063-64e9c3d50124","name":"Public + Bandwidth 4Gbps","price":{"currency_code":"EUR","units":0,"nanos":548000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":4000000000}},{"id":"e0063872-115b-413e-bbf9-fff7eeca1065","name":"Public + Bandwidth 5Gbps","price":{"currency_code":"EUR","units":0,"nanos":685000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":5000000000}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":60000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":10000000000}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"a905e3e8-690a-4822-9c90-21418a44aa76","name":"Public + Bandwidth 3Gbps","price":{"currency_code":"EUR","units":0,"nanos":411000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":3000000000}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":50,"nanos":400000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":336,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}}],"private_bandwidth":10000000000,"shared_bandwidth":true,"tags":["install-system-v2"],"gpus":[],"monthly_offer_id":"44890f67-212b-4610-9170-4c199644525e"},{"id":"18137894-b9a7-4e7b-b026-518ab8a3e41e","name":"EM-L420E-NVME","stock":"low","bandwidth":1000000000,"max_bandwidth":10000000000,"commercial_range":"lithium","disks":[{"capacity":4000787030016,"type":"NVMe"},{"capacity":4000787030016,"type":"NVMe"},{"capacity":4000787030016,"type":"NVMe"},{"capacity":4000787030016,"type":"NVMe"}],"enable":true,"cpus":[{"name":"AMD + EPYC 7272","core_count":12,"thread_count":24,"frequency":2900,"benchmark":"25568"}],"memories":[{"capacity":128000000000,"type":"DDR4","frequency":2400,"is_ecc":true}],"quota_name":"EM_L420E_NVMe","price_per_hour":{"currency_code":"EUR","units":1,"nanos":14000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["c2f3e970-63f0-4f48-aa84-3455e4e13802","bd17a2bb-e686-486a-aacf-44fa8ce6e553","4aff4d9d-b1f4-44b0-ab6f-e4711ac11711","87a6472b-1bb4-4618-bb91-936d7de1966d","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","7fb86682-316e-4f6e-a845-de9b230cdd29","0058e276-66ef-4883-ad83-0e48536f635c","5a7210ac-9d87-4f4a-b596-cc7f43a89b21","fd771862-4b75-46a7-ab42-73c46c0ac2db","86fd5e3a-b023-4fa8-a3ae-1a194d8cd68c","847bb37a-dc13-4536-9f07-023d38dba98d","1c376d8a-f237-438d-9cd9-47902050ffd3","69e740ab-9f0e-4107-8516-16470000729c","ac5cc157-caee-406a-ae0a-a28d7c30389a","39176c6e-509d-4e6c-8e42-417d103f4579","5dfefb70-053e-4ba8-9d76-537b230db94e","8a83777f-6dc1-476a-8d0c-d8b7594ecb6f","3bc196f5-4b7d-4f60-9dc5-86d4bcf36e1a","d859aa89-8b4a-4551-af42-ff7c0c27260a","6aa3f876-1c83-4434-8cc4-a2dbc94216db","fa29896b-6b49-468d-a787-966559a55c12"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":37,"nanos":800000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":252,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"e0063872-115b-413e-bbf9-fff7eeca1065","name":"Public + Bandwidth 5Gbps","price":{"currency_code":"EUR","units":0,"nanos":685000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":5000000000}},{"id":"a905e3e8-690a-4822-9c90-21418a44aa76","name":"Public + Bandwidth 3Gbps","price":{"currency_code":"EUR","units":0,"nanos":411000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":3000000000}},{"id":"b92d36c0-9754-4678-9efd-096e4244e798","name":"Public + Bandwidth 2Gbps","price":{"currency_code":"EUR","units":0,"nanos":274000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":2000000000}},{"id":"31f5cddb-8217-4eb0-ac6a-96dbcb080b88","name":"Public + Bandwidth 10Gbps","price":{"currency_code":"EUR","units":1,"nanos":233000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":10000000000}},{"id":"b37af8cf-8b18-4349-a063-64e9c3d50124","name":"Public + Bandwidth 4Gbps","price":{"currency_code":"EUR","units":0,"nanos":548000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":4000000000}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":60000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":10000000000}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":37,"nanos":800000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":37,"nanos":800000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":252,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":252,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}}],"private_bandwidth":10000000000,"shared_bandwidth":true,"tags":["install-system-v2"],"gpus":[],"monthly_offer_id":"d6cc24a7-b7a3-4dbf-808c-0e92be840f11"},{"id":"6e905149-d776-49c1-824d-8161f40968e9","name":"EM-I420E-NVME","stock":"available","bandwidth":1000000000,"max_bandwidth":25000000000,"commercial_range":"iridium","disks":[{"capacity":1920000000000,"type":"NVMe"},{"capacity":1920000000000,"type":"NVMe"}],"enable":true,"cpus":[{"name":"AMD + EPYC 8324P","core_count":32,"thread_count":64,"frequency":2650,"benchmark":"57127"}],"memories":[{"capacity":256000000000,"type":"DDR5","frequency":3200,"is_ecc":true}],"quota_name":"EM_I420E_NVMe","price_per_hour":{"currency_code":"EUR","units":1,"nanos":96000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["2e06fa49-4677-4bd7-8bf5-b1c490d8a966","c2f3e970-63f0-4f48-aa84-3455e4e13802","87a6472b-1bb4-4618-bb91-936d7de1966d","d17d6872-0412-45d9-a198-af82c34d3c5c","5dfefb70-053e-4ba8-9d76-537b230db94e","5a7210ac-9d87-4f4a-b596-cc7f43a89b21","7c70ff80-dbfa-4e07-be73-1de0e60fe175","86fd5e3a-b023-4fa8-a3ae-1a194d8cd68c","f2aeab5d-6015-4b7c-b4ed-d76e89093621","6aa3f876-1c83-4434-8cc4-a2dbc94216db","4aff4d9d-b1f4-44b0-ab6f-e4711ac11711","0058e276-66ef-4883-ad83-0e48536f635c","3bc196f5-4b7d-4f60-9dc5-86d4bcf36e1a","847bb37a-dc13-4536-9f07-023d38dba98d","ac5cc157-caee-406a-ae0a-a28d7c30389a","bd17a2bb-e686-486a-aacf-44fa8ce6e553","b4816d13-8585-4005-a7c7-54a031dd933b","e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","69e740ab-9f0e-4107-8516-16470000729c","fa29896b-6b49-468d-a787-966559a55c12","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","7fb86682-316e-4f6e-a845-de9b230cdd29","8a83777f-6dc1-476a-8d0c-d8b7594ecb6f","fd771862-4b75-46a7-ab42-73c46c0ac2db","39176c6e-509d-4e6c-8e42-417d103f4579","d859aa89-8b4a-4551-af42-ff7c0c27260a","1c376d8a-f237-438d-9cd9-47902050ffd3"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":672,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"ad1b86f2-4ae4-49f9-a826-a782e8d492f3","name":"Public + Bandwidth 25Gbps","price":{"currency_code":"EUR","units":2,"nanos":55000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":25000000000}},{"id":"4ce8bd16-0c16-479d-83bb-492b5f9072fa","name":"Public + Bandwidth 15Gbps","price":{"currency_code":"EUR","units":1,"nanos":644000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":15000000000}},{"id":"b92d36c0-9754-4678-9efd-096e4244e798","name":"Public + Bandwidth 2Gbps","price":{"currency_code":"EUR","units":0,"nanos":274000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":2000000000}},{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":100,"nanos":800000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":672,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"b0a352ae-8aa0-4397-b702-ecfe9563b47b","name":"Public + Bandwidth 20Gbps","price":{"currency_code":"EUR","units":1,"nanos":918000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":20000000000}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":90000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":25000000000}},{"id":"e0063872-115b-413e-bbf9-fff7eeca1065","name":"Public + Bandwidth 5Gbps","price":{"currency_code":"EUR","units":0,"nanos":685000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":5000000000}},{"id":"a905e3e8-690a-4822-9c90-21418a44aa76","name":"Public + Bandwidth 3Gbps","price":{"currency_code":"EUR","units":0,"nanos":411000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":3000000000}},{"id":"31f5cddb-8217-4eb0-ac6a-96dbcb080b88","name":"Public + Bandwidth 10Gbps","price":{"currency_code":"EUR","units":1,"nanos":233000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":10000000000}},{"id":"b37af8cf-8b18-4349-a063-64e9c3d50124","name":"Public + Bandwidth 4Gbps","price":{"currency_code":"EUR","units":0,"nanos":548000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":4000000000}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":100,"nanos":800000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":672,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":100,"nanos":800000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}}],"private_bandwidth":25000000000,"shared_bandwidth":true,"tags":["new","install-system-v2"],"gpus":[],"monthly_offer_id":"1d6a7465-696d-408b-91d1-ccf1f90fd887"},{"id":"b20ba18e-34e8-44aa-b909-93cbff7635b5","name":"EM-I520E-NVME","stock":"available","bandwidth":1000000000,"max_bandwidth":25000000000,"commercial_range":"iridium","disks":[{"capacity":3840000000000,"type":"NVMe"},{"capacity":3840000000000,"type":"NVMe"}],"enable":true,"cpus":[{"name":"AMD + EPYC 8434P","core_count":48,"thread_count":96,"frequency":2500,"benchmark":"66490"}],"memories":[{"capacity":384000000000,"type":"DDR5","frequency":3200,"is_ecc":true}],"quota_name":"EM_I520E_NVMe","price_per_hour":{"currency_code":"EUR","units":1,"nanos":370000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","bd17a2bb-e686-486a-aacf-44fa8ce6e553","b4816d13-8585-4005-a7c7-54a031dd933b","3bc196f5-4b7d-4f60-9dc5-86d4bcf36e1a","8a83777f-6dc1-476a-8d0c-d8b7594ecb6f","86fd5e3a-b023-4fa8-a3ae-1a194d8cd68c","1c376d8a-f237-438d-9cd9-47902050ffd3","69e740ab-9f0e-4107-8516-16470000729c","fd771862-4b75-46a7-ab42-73c46c0ac2db","d17d6872-0412-45d9-a198-af82c34d3c5c","fa29896b-6b49-468d-a787-966559a55c12","39176c6e-509d-4e6c-8e42-417d103f4579","5a7210ac-9d87-4f4a-b596-cc7f43a89b21","d859aa89-8b4a-4551-af42-ff7c0c27260a","847bb37a-dc13-4536-9f07-023d38dba98d","7fb86682-316e-4f6e-a845-de9b230cdd29","4aff4d9d-b1f4-44b0-ab6f-e4711ac11711","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","0058e276-66ef-4883-ad83-0e48536f635c","7c70ff80-dbfa-4e07-be73-1de0e60fe175","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","5dfefb70-053e-4ba8-9d76-537b230db94e","87a6472b-1bb4-4618-bb91-936d7de1966d","f2aeab5d-6015-4b7c-b4ed-d76e89093621","6aa3f876-1c83-4434-8cc4-a2dbc94216db","ac5cc157-caee-406a-ae0a-a28d7c30389a","c2f3e970-63f0-4f48-aa84-3455e4e13802"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":151,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":1008,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"b92d36c0-9754-4678-9efd-096e4244e798","name":"Public + Bandwidth 2Gbps","price":{"currency_code":"EUR","units":0,"nanos":274000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":2000000000}},{"id":"e0063872-115b-413e-bbf9-fff7eeca1065","name":"Public + Bandwidth 5Gbps","price":{"currency_code":"EUR","units":0,"nanos":685000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":5000000000}},{"id":"4ce8bd16-0c16-479d-83bb-492b5f9072fa","name":"Public + Bandwidth 15Gbps","price":{"currency_code":"EUR","units":1,"nanos":644000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":15000000000}},{"id":"ad1b86f2-4ae4-49f9-a826-a782e8d492f3","name":"Public + Bandwidth 25Gbps","price":{"currency_code":"EUR","units":2,"nanos":55000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":25000000000}},{"id":"b0a352ae-8aa0-4397-b702-ecfe9563b47b","name":"Public + Bandwidth 20Gbps","price":{"currency_code":"EUR","units":1,"nanos":918000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":20000000000}},{"id":"31f5cddb-8217-4eb0-ac6a-96dbcb080b88","name":"Public + Bandwidth 10Gbps","price":{"currency_code":"EUR","units":1,"nanos":233000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":10000000000}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":151,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":90000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":25000000000}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"b37af8cf-8b18-4349-a063-64e9c3d50124","name":"Public + Bandwidth 4Gbps","price":{"currency_code":"EUR","units":0,"nanos":548000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":4000000000}},{"id":"a905e3e8-690a-4822-9c90-21418a44aa76","name":"Public + Bandwidth 3Gbps","price":{"currency_code":"EUR","units":0,"nanos":411000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":3000000000}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":151,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":1008,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":1008,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}}],"private_bandwidth":25000000000,"shared_bandwidth":true,"tags":["new","install-system-v2"],"gpus":[],"monthly_offer_id":"5d7ced21-ce80-4bf8-ba7a-57195d56e2e8"},{"id":"51131a3a-7a9b-44c7-8228-2c071c185b77","name":"EM-I620E-NVME","stock":"empty","bandwidth":1000000000,"max_bandwidth":25000000000,"commercial_range":"iridium","disks":[{"capacity":3840000000000,"type":"NVMe"},{"capacity":3840000000000,"type":"NVMe"}],"enable":true,"cpus":[{"name":"AMD + EPYC 8534P","core_count":64,"thread_count":128,"frequency":2300,"benchmark":"71900"}],"memories":[{"capacity":576000000000,"type":"DDR5","frequency":3200,"is_ecc":true}],"quota_name":"EM_I620E_NVMe","price_per_hour":{"currency_code":"EUR","units":1,"nanos":644000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["3bc196f5-4b7d-4f60-9dc5-86d4bcf36e1a","d859aa89-8b4a-4551-af42-ff7c0c27260a","86fd5e3a-b023-4fa8-a3ae-1a194d8cd68c","69e740ab-9f0e-4107-8516-16470000729c","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","fd771862-4b75-46a7-ab42-73c46c0ac2db","0058e276-66ef-4883-ad83-0e48536f635c","7c70ff80-dbfa-4e07-be73-1de0e60fe175","8a83777f-6dc1-476a-8d0c-d8b7594ecb6f","c2f3e970-63f0-4f48-aa84-3455e4e13802","5dfefb70-053e-4ba8-9d76-537b230db94e","87a6472b-1bb4-4618-bb91-936d7de1966d","ac5cc157-caee-406a-ae0a-a28d7c30389a","4aff4d9d-b1f4-44b0-ab6f-e4711ac11711","e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","1c376d8a-f237-438d-9cd9-47902050ffd3","6aa3f876-1c83-4434-8cc4-a2dbc94216db","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","f2aeab5d-6015-4b7c-b4ed-d76e89093621","d17d6872-0412-45d9-a198-af82c34d3c5c","847bb37a-dc13-4536-9f07-023d38dba98d","39176c6e-509d-4e6c-8e42-417d103f4579","fa29896b-6b49-468d-a787-966559a55c12","7fb86682-316e-4f6e-a845-de9b230cdd29","bd17a2bb-e686-486a-aacf-44fa8ce6e553","b4816d13-8585-4005-a7c7-54a031dd933b","5a7210ac-9d87-4f4a-b596-cc7f43a89b21"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":1344,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":1344,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"b0a352ae-8aa0-4397-b702-ecfe9563b47b","name":"Public + Bandwidth 20Gbps","price":{"currency_code":"EUR","units":1,"nanos":918000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":20000000000}},{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":1344,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":201,"nanos":600000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"ad1b86f2-4ae4-49f9-a826-a782e8d492f3","name":"Public + Bandwidth 25Gbps","price":{"currency_code":"EUR","units":2,"nanos":55000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":25000000000}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":201,"nanos":600000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":90000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":25000000000}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":201,"nanos":600000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"b92d36c0-9754-4678-9efd-096e4244e798","name":"Public + Bandwidth 2Gbps","price":{"currency_code":"EUR","units":0,"nanos":274000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":2000000000}},{"id":"b37af8cf-8b18-4349-a063-64e9c3d50124","name":"Public + Bandwidth 4Gbps","price":{"currency_code":"EUR","units":0,"nanos":548000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":4000000000}},{"id":"e0063872-115b-413e-bbf9-fff7eeca1065","name":"Public + Bandwidth 5Gbps","price":{"currency_code":"EUR","units":0,"nanos":685000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":5000000000}},{"id":"4ce8bd16-0c16-479d-83bb-492b5f9072fa","name":"Public + Bandwidth 15Gbps","price":{"currency_code":"EUR","units":1,"nanos":644000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":15000000000}},{"id":"31f5cddb-8217-4eb0-ac6a-96dbcb080b88","name":"Public + Bandwidth 10Gbps","price":{"currency_code":"EUR","units":1,"nanos":233000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":10000000000}},{"id":"a905e3e8-690a-4822-9c90-21418a44aa76","name":"Public + Bandwidth 3Gbps","price":{"currency_code":"EUR","units":0,"nanos":411000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":3000000000}},{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}}],"private_bandwidth":25000000000,"shared_bandwidth":true,"tags":["new","install-system-v2"],"gpus":[],"monthly_offer_id":"cda8bdd6-40bc-4352-a1c4-e78941d9243f"},{"id":"49c3ff54-7949-4a53-8f52-f2ea17c451b1","name":"EM-I525E-NVME","stock":"empty","bandwidth":1000000000,"max_bandwidth":25000000000,"commercial_range":"iridium","disks":[{"capacity":7680000000000,"type":"NVMe"},{"capacity":7680000000000,"type":"NVMe"},{"capacity":7680000000000,"type":"NVMe"},{"capacity":7680000000000,"type":"NVMe"}],"enable":true,"cpus":[{"name":"AMD + EPYC 8434P","core_count":48,"thread_count":96,"frequency":2500,"benchmark":"66490"}],"memories":[{"capacity":384000000000,"type":"DDR5","frequency":3200,"is_ecc":true}],"quota_name":"EM_I525E_NVMe","price_per_hour":{"currency_code":"EUR","units":1,"nanos":781000000},"price_per_month":null,"persistent_memories":[],"raid_controllers":[],"incompatible_os_ids":["1c376d8a-f237-438d-9cd9-47902050ffd3","39176c6e-509d-4e6c-8e42-417d103f4579","d17d6872-0412-45d9-a198-af82c34d3c5c","69e740ab-9f0e-4107-8516-16470000729c","3bc196f5-4b7d-4f60-9dc5-86d4bcf36e1a","86fd5e3a-b023-4fa8-a3ae-1a194d8cd68c","2e06fa49-4677-4bd7-8bf5-b1c490d8a966","ac5cc157-caee-406a-ae0a-a28d7c30389a","5dfefb70-053e-4ba8-9d76-537b230db94e","fa29896b-6b49-468d-a787-966559a55c12","5a7210ac-9d87-4f4a-b596-cc7f43a89b21","7c70ff80-dbfa-4e07-be73-1de0e60fe175","e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","8a83777f-6dc1-476a-8d0c-d8b7594ecb6f","93fb3e11-e02e-47d9-aa3a-f77a2f7a7129","0058e276-66ef-4883-ad83-0e48536f635c","f2aeab5d-6015-4b7c-b4ed-d76e89093621","6aa3f876-1c83-4434-8cc4-a2dbc94216db","87a6472b-1bb4-4618-bb91-936d7de1966d","d859aa89-8b4a-4551-af42-ff7c0c27260a","847bb37a-dc13-4536-9f07-023d38dba98d","7fb86682-316e-4f6e-a845-de9b230cdd29","bd17a2bb-e686-486a-aacf-44fa8ce6e553","b4816d13-8585-4005-a7c7-54a031dd933b","fd771862-4b75-46a7-ab42-73c46c0ac2db","c2f3e970-63f0-4f48-aa84-3455e4e13802","4aff4d9d-b1f4-44b0-ab6f-e4711ac11711"],"subscription_period":"hourly","operation_path":"","fee":{"currency_code":"EUR","units":0,"nanos":0},"options":[{"id":"931df052-d713-4674-8b58-96a63244c8e2","name":"Remote + Access","price":{"currency_code":"EUR","units":0,"nanos":990000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","remote_access":{}},{"id":"cd4158d7-2d65-49be-8803-c4b8ab6f760c","name":"Private + Network","price":{"currency_code":"EUR","units":0,"nanos":90000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","private_network":{"bandwidth_in_bps":25000000000}},{"id":"f42a040b-6c91-4b11-beb0-b0b21e641fda","name":"Windows + 2019 standard","price":{"currency_code":"EUR","units":151,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175","license":{"os_id":"7c70ff80-dbfa-4e07-be73-1de0e60fe175"}},{"id":"f74a6322-070e-41dd-a13f-8165ea63aca8","name":"Windows + 2019 datacenter","price":{"currency_code":"EUR","units":1008,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a","license":{"os_id":"e04414b9-16d4-4ffb-8ba1-6b80704c7d2a"}},{"id":"c498071f-4f8d-49f3-bc52-afc219a48fe0","name":"Windows + 2022 datacenter","price":{"currency_code":"EUR","units":1008,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41","license":{"os_id":"3422ae02-d6d7-4980-8a00-eb38c262fb41"}},{"id":"83a8fb91-47b4-4c20-82f9-84c31d79bfd8","name":"Windows + 2022 standard","price":{"currency_code":"EUR","units":151,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860","license":{"os_id":"bf705b90-1548-4368-98ca-d17dbd8dd860"}},{"id":"4b5723e9-5dcc-42e9-afbb-7ee556027051","name":"Windows + 2025 standard","price":{"currency_code":"EUR","units":151,"nanos":200000000},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c","license":{"os_id":"a5cec64e-d7b0-4c6e-a819-60139d30a76c"}},{"id":"9e3498b1-45ef-4c55-b699-efd66d658cca","name":"Windows + 2025 datacenter","price":{"currency_code":"EUR","units":1008,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2","license":{"os_id":"bc7e4ca2-bf32-407f-a04b-72ad6455beb2"}},{"id":"b92d36c0-9754-4678-9efd-096e4244e798","name":"Public + Bandwidth 2Gbps","price":{"currency_code":"EUR","units":0,"nanos":274000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":2000000000}},{"id":"a905e3e8-690a-4822-9c90-21418a44aa76","name":"Public + Bandwidth 3Gbps","price":{"currency_code":"EUR","units":0,"nanos":411000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":3000000000}},{"id":"b0a352ae-8aa0-4397-b702-ecfe9563b47b","name":"Public + Bandwidth 20Gbps","price":{"currency_code":"EUR","units":1,"nanos":918000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":20000000000}},{"id":"b37af8cf-8b18-4349-a063-64e9c3d50124","name":"Public + Bandwidth 4Gbps","price":{"currency_code":"EUR","units":0,"nanos":548000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":4000000000}},{"id":"e0063872-115b-413e-bbf9-fff7eeca1065","name":"Public + Bandwidth 5Gbps","price":{"currency_code":"EUR","units":0,"nanos":685000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":5000000000}},{"id":"ad1b86f2-4ae4-49f9-a826-a782e8d492f3","name":"Public + Bandwidth 25Gbps","price":{"currency_code":"EUR","units":2,"nanos":55000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":25000000000}},{"id":"31f78309-e6e0-4005-99b3-b3de3958ca7d","name":"HDS","price":{"currency_code":"EUR","units":15,"nanos":0},"enabled":false,"subscription_period":"monthly","manageable":false,"os_id":"00000000-0000-0000-0000-000000000000","certification":{}},{"id":"31f5cddb-8217-4eb0-ac6a-96dbcb080b88","name":"Public + Bandwidth 10Gbps","price":{"currency_code":"EUR","units":1,"nanos":233000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":10000000000}},{"id":"4ce8bd16-0c16-479d-83bb-492b5f9072fa","name":"Public + Bandwidth 15Gbps","price":{"currency_code":"EUR","units":1,"nanos":644000000},"enabled":false,"subscription_period":"hourly","manageable":true,"os_id":"00000000-0000-0000-0000-000000000000","public_bandwidth":{"bandwidth_in_bps":15000000000}}],"private_bandwidth":25000000000,"shared_bandwidth":true,"tags":["new","install-system-v2"],"gpus":[],"monthly_offer_id":"fc10fde7-336e-430a-aa58-0f70669e9fab"}]}' + headers: + Content-Length: + - "136304" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 16:06:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9bd0a3e0-07a2-4681-815b-afed0d4cc6ba + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"products":[{"sku":"/baremetal/em-a115x-ssd/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-A115X-SSD","variant":"Elastic Metal EM-A115X-SSD + - Hourly - fr-par-1","description":"Elastic Metal EM-A115X-SSD - Hourly - fr-par-1 + (0.091€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":91000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E3 1220 or equivalent, x64, Sockets: 1, Cores per socket: 4, Threads per + core: 1, Frequency: 3.1 GHz, Benchmark: 3895","arch":"x64","type":"Intel Xeon + E3 1220 or equivalent","physical":{"sockets":1,"cores_per_socket":4,"threads_per_core":1,"frequency":3100000000,"benchmark":3895},"threads":4},"ram":{"description":"32 + GiB DDR3","size":34359738368,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 1.02 TB SSD","total":2048419086336},"network":{"description":"Internal: + 1 Gb/s, Public: 500 Mb/s (max 1 Gb/s)","internal_bandwidth":1000000000,"public_bandwidth":500000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Aluminium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.0163262,"m3_water_usage":0.0000013226781},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-a115x-ssd/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-A115X-SSD","variant":"Elastic Metal EM-A115X-SSD + - Monthly - fr-par-1","description":"Elastic Metal EM-A115X-SSD - Monthly - + fr-par-1 (32.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":32,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E3 1220 or equivalent, x64, Sockets: 1, Cores per socket: 4, Threads per + core: 1, Frequency: 3.1 GHz, Benchmark: 3895","arch":"x64","type":"Intel Xeon + E3 1220 or equivalent","physical":{"sockets":1,"cores_per_socket":4,"threads_per_core":1,"frequency":3100000000,"benchmark":3895},"threads":4},"ram":{"description":"32 + GiB DDR3","size":34359738368,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 1.02 TB SSD","total":2048419086336},"network":{"description":"Internal: + 1 Gb/s, Public: 500 Mb/s (max 1 Gb/s)","internal_bandwidth":1000000000,"public_bandwidth":500000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Aluminium"}},"environmental_impact_estimation":{"kg_co2_equivalent":11.918127,"m3_water_usage":0.0009655551},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-a115x-ssd/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-A115X-SSD","variant":"Elastic Metal EM-A115X-SSD + - Fees - fr-par-1","description":"Elastic Metal EM-A115X-SSD - Fees - fr-par-1 + (32.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":32,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E3 1220 or equivalent, x64, Sockets: 1, Cores per socket: 4, Threads per + core: 1, Frequency: 3.1 GHz, Benchmark: 3895","arch":"x64","type":"Intel Xeon + E3 1220 or equivalent","physical":{"sockets":1,"cores_per_socket":4,"threads_per_core":1,"frequency":3100000000,"benchmark":3895},"threads":4},"ram":{"description":"32 + GiB DDR3","size":34359738368,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 1.02 TB SSD","total":2048419086336},"network":{"description":"Internal: + 1 Gb/s, Public: 500 Mb/s (max 1 Gb/s)","internal_bandwidth":1000000000,"public_bandwidth":500000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Aluminium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-a315x-ssd/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-A315X-SSD","variant":"Elastic Metal EM-A315X-SSD + - Hourly - fr-par-1","description":"Elastic Metal EM-A315X-SSD - Hourly - fr-par-1 + (0.1529€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":152900000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 1410 v2, x64, Sockets: 1, Cores per socket: 4, Threads per core: 2, + Frequency: 2.8 GHz, Benchmark: 5715","arch":"x64","type":"Intel Xeon E5 1410 + v2","physical":{"sockets":1,"cores_per_socket":4,"threads_per_core":2,"frequency":2800000000,"benchmark":5715},"threads":8},"ram":{"description":"64 + GiB DDR3","size":68719476736,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 1.02 TB SSD","total":2048419086336},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Aluminium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.02013874,"m3_water_usage":0.000001728015},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-a315x-ssd/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-A315X-SSD","variant":"Elastic Metal EM-A315X-SSD + - Monthly - fr-par-1","description":"Elastic Metal EM-A315X-SSD - Monthly - + fr-par-1 (54.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":54,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 1410 v2, x64, Sockets: 1, Cores per socket: 4, Threads per core: 2, + Frequency: 2.8 GHz, Benchmark: 5715","arch":"x64","type":"Intel Xeon E5 1410 + v2","physical":{"sockets":1,"cores_per_socket":4,"threads_per_core":2,"frequency":2800000000,"benchmark":5715},"threads":8},"ram":{"description":"64 + GiB DDR3","size":68719476736,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 1.02 TB SSD","total":2048419086336},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Aluminium"}},"environmental_impact_estimation":{"kg_co2_equivalent":14.701281,"m3_water_usage":0.001261451},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-a315x-ssd/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-A315X-SSD","variant":"Elastic Metal EM-A315X-SSD + - Fees - fr-par-1","description":"Elastic Metal EM-A315X-SSD - Fees - fr-par-1 + (54.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":54,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 1410 v2, x64, Sockets: 1, Cores per socket: 4, Threads per core: 2, + Frequency: 2.8 GHz, Benchmark: 5715","arch":"x64","type":"Intel Xeon E5 1410 + v2","physical":{"sockets":1,"cores_per_socket":4,"threads_per_core":2,"frequency":2800000000,"benchmark":5715},"threads":8},"ram":{"description":"64 + GiB DDR3","size":68719476736,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 1.02 TB SSD","total":2048419086336},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Aluminium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-a410x-ssd/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-A410X-SSD","variant":"Elastic Metal EM-A410X-SSD + - Hourly - fr-par-1","description":"Elastic Metal EM-A410X-SSD - Hourly - fr-par-1 + (0.153€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":153000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 1650, x64, Sockets: 1, Cores per socket: 6, Threads per core: 2, Frequency: + 3.2 GHz, Benchmark: 8086","arch":"x64","type":"Intel Xeon E5 1650","physical":{"sockets":1,"cores_per_socket":6,"threads_per_core":2,"frequency":3200000000,"benchmark":8086},"threads":12},"ram":{"description":"64 + GiB DDR3","size":68719476736,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 1.02 TB SSD","total":2048419086336},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Aluminium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.018972898,"m3_water_usage":0.0000014933463},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-a410x-ssd/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-A410X-SSD","variant":"Elastic Metal EM-A410X-SSD + - Monthly - fr-par-1","description":"Elastic Metal EM-A410X-SSD - Monthly - + fr-par-1 (54.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":54,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 1650, x64, Sockets: 1, Cores per socket: 6, Threads per core: 2, Frequency: + 3.2 GHz, Benchmark: 8086","arch":"x64","type":"Intel Xeon E5 1650","physical":{"sockets":1,"cores_per_socket":6,"threads_per_core":2,"frequency":3200000000,"benchmark":8086},"threads":12},"ram":{"description":"64 + GiB DDR3","size":68719476736,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 1.02 TB SSD","total":2048419086336},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Aluminium"}},"environmental_impact_estimation":{"kg_co2_equivalent":13.850215,"m3_water_usage":0.0010901429},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-a410x-ssd/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-A410X-SSD","variant":"Elastic Metal EM-A410X-SSD + - Fees - fr-par-1","description":"Elastic Metal EM-A410X-SSD - Fees - fr-par-1 + (54.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":54,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 1650, x64, Sockets: 1, Cores per socket: 6, Threads per core: 2, Frequency: + 3.2 GHz, Benchmark: 8086","arch":"x64","type":"Intel Xeon E5 1650","physical":{"sockets":1,"cores_per_socket":6,"threads_per_core":2,"frequency":3200000000,"benchmark":8086},"threads":12},"ram":{"description":"64 + GiB DDR3","size":68719476736,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 1.02 TB SSD","total":2048419086336},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Aluminium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-a610r-nvme/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-A610R-NVMe","variant":"Elastic Metal EM-A610R-NVMe + - Hourly - fr-par-1","description":"Elastic Metal EM-A610R-NVMe - Hourly - fr-par-1 + (0.11€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":110000000}},"properties":{"hardware":{"cpu":{"description":"AMD + Ryzen PRO 3600, x64, Sockets: 1, Cores per socket: 6, Threads per core: 2, Frequency: + 3.6 GHz, Benchmark: 17202","arch":"x64","type":"AMD Ryzen PRO 3600","physical":{"sockets":1,"cores_per_socket":6,"threads_per_core":2,"frequency":3600000000,"benchmark":17202},"threads":12},"ram":{"description":"32 + GiB DDR4","size":34359738368,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 1.02 TB NVMe","total":2048419086336},"network":{"description":"Internal: + 1 Gb/s, Public: 500 Mb/s (max 1 Gb/s)","internal_bandwidth":1000000000,"public_bandwidth":500000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Aluminium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.018666351,"m3_water_usage":0.0000017066816},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-a610r-nvme/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-A610R-NVMe","variant":"Elastic Metal EM-A610R-NVMe + - Monthly - fr-par-1","description":"Elastic Metal EM-A610R-NVMe - Monthly - + fr-par-1 (39.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":39,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + Ryzen PRO 3600, x64, Sockets: 1, Cores per socket: 6, Threads per core: 2, Frequency: + 3.6 GHz, Benchmark: 17202","arch":"x64","type":"AMD Ryzen PRO 3600","physical":{"sockets":1,"cores_per_socket":6,"threads_per_core":2,"frequency":3600000000,"benchmark":17202},"threads":12},"ram":{"description":"32 + GiB DDR4","size":34359738368,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 1.02 TB NVMe","total":2048419086336},"network":{"description":"Internal: + 1 Gb/s, Public: 500 Mb/s (max 1 Gb/s)","internal_bandwidth":1000000000,"public_bandwidth":500000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Aluminium"}},"environmental_impact_estimation":{"kg_co2_equivalent":13.626436,"m3_water_usage":0.0012458775},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-a610r-nvme/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-A610R-NVMe","variant":"Elastic Metal EM-A610R-NVMe + - Fees - fr-par-1","description":"Elastic Metal EM-A610R-NVMe - Fees - fr-par-1 + (39.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":39,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + Ryzen PRO 3600, x64, Sockets: 1, Cores per socket: 6, Threads per core: 2, Frequency: + 3.6 GHz, Benchmark: 17202","arch":"x64","type":"AMD Ryzen PRO 3600","physical":{"sockets":1,"cores_per_socket":6,"threads_per_core":2,"frequency":3600000000,"benchmark":17202},"threads":12},"ram":{"description":"32 + GiB DDR4","size":34359738368,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 1.02 TB NVMe","total":2048419086336},"network":{"description":"Internal: + 1 Gb/s, Public: 500 Mb/s (max 1 Gb/s)","internal_bandwidth":1000000000,"public_bandwidth":500000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Aluminium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b111x-sata/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-B111X-SATA","variant":"Elastic Metal EM-B111X-SATA + - Hourly - fr-par-1","description":"Elastic Metal EM-B111X-SATA - Hourly - fr-par-1 + (0.263€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":263000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 2620 or equivalent, x64, Sockets: 2, Cores per socket: 6, Threads per + core: 2, Frequency: 2 GHz","arch":"x64","type":"Intel Xeon E5 2620 or equivalent","physical":{"sockets":2,"cores_per_socket":6,"threads_per_core":2,"frequency":2000000000,"benchmark":0},"threads":24},"ram":{"description":"192 + GiB DDR3","size":206158430208,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 8 TB HDD","total":16000000000000},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Beryllium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.02938525,"m3_water_usage":0.0000024960218},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b111x-sata/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-B111X-SATA","variant":"Elastic Metal EM-B111X-SATA + - Monthly - fr-par-1","description":"Elastic Metal EM-B111X-SATA - Monthly - + fr-par-1 (94.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":94,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 2620 or equivalent, x64, Sockets: 2, Cores per socket: 6, Threads per + core: 2, Frequency: 2 GHz","arch":"x64","type":"Intel Xeon E5 2620 or equivalent","physical":{"sockets":2,"cores_per_socket":6,"threads_per_core":2,"frequency":2000000000,"benchmark":0},"threads":24},"ram":{"description":"192 + GiB DDR3","size":206158430208,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 8 TB HDD","total":16000000000000},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Beryllium"}},"environmental_impact_estimation":{"kg_co2_equivalent":21.451233,"m3_water_usage":0.0018220958},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b111x-sata/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-B111X-SATA","variant":"Elastic Metal EM-B111X-SATA + - Fees - fr-par-1","description":"Elastic Metal EM-B111X-SATA - Fees - fr-par-1 + (94.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":94,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 2620 or equivalent, x64, Sockets: 2, Cores per socket: 6, Threads per + core: 2, Frequency: 2 GHz","arch":"x64","type":"Intel Xeon E5 2620 or equivalent","physical":{"sockets":2,"cores_per_socket":6,"threads_per_core":2,"frequency":2000000000,"benchmark":0},"threads":24},"ram":{"description":"192 + GiB DDR3","size":206158430208,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 8 TB HDD","total":16000000000000},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Beryllium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b112x-ssd/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-B112X-SSD","variant":"Elastic Metal EM-B112X-SSD + - Hourly - fr-par-1","description":"Elastic Metal EM-B112X-SSD - Hourly - fr-par-1 + (0.263€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":263000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 2600 or equivalent, x64, Sockets: 2, Cores per socket: 6, Threads per + core: 2, Frequency: 2 GHz, Benchmark: 5295","arch":"x64","type":"Intel Xeon + E5 2600 or equivalent","physical":{"sockets":2,"cores_per_socket":6,"threads_per_core":2,"frequency":2000000000,"benchmark":5295},"threads":24},"ram":{"description":"192 + GiB DDR3","size":206158430208,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 1 TB SSD","total":2000409772032},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Beryllium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.029575508,"m3_water_usage":0.0000024960218},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b112x-ssd/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-B112X-SSD","variant":"Elastic Metal EM-B112X-SSD + - Monthly - fr-par-1","description":"Elastic Metal EM-B112X-SSD - Monthly - + fr-par-1 (94.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":94,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 2600 or equivalent, x64, Sockets: 2, Cores per socket: 6, Threads per + core: 2, Frequency: 2 GHz, Benchmark: 5295","arch":"x64","type":"Intel Xeon + E5 2600 or equivalent","physical":{"sockets":2,"cores_per_socket":6,"threads_per_core":2,"frequency":2000000000,"benchmark":5295},"threads":24},"ram":{"description":"192 + GiB DDR3","size":206158430208,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 1 TB SSD","total":2000409772032},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Beryllium"}},"environmental_impact_estimation":{"kg_co2_equivalent":21.59012,"m3_water_usage":0.0018220958},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b112x-ssd/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-B112X-SSD","variant":"Elastic Metal EM-B112X-SSD + - Fees - fr-par-1","description":"Elastic Metal EM-B112X-SSD - Fees - fr-par-1 + (94.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":94,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 2600 or equivalent, x64, Sockets: 2, Cores per socket: 6, Threads per + core: 2, Frequency: 2 GHz, Benchmark: 5295","arch":"x64","type":"Intel Xeon + E5 2600 or equivalent","physical":{"sockets":2,"cores_per_socket":6,"threads_per_core":2,"frequency":2000000000,"benchmark":5295},"threads":24},"ram":{"description":"192 + GiB DDR3","size":206158430208,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 1 TB SSD","total":2000409772032},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Beryllium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b211x-sata/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-B211X-SATA","variant":"Elastic Metal EM-B211X-SATA + - Hourly - fr-par-1","description":"Elastic Metal EM-B211X-SATA - Hourly - fr-par-1 + (0.321€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":321000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 2600 or equivalent, x64, Sockets: 2, Cores per socket: 8, Threads per + core: 2, Frequency: 2.6 GHz, Benchmark: 5295","arch":"x64","type":"Intel Xeon + E5 2600 or equivalent","physical":{"sockets":2,"cores_per_socket":8,"threads_per_core":2,"frequency":2600000000,"benchmark":5295},"threads":32},"ram":{"description":"256 + GiB DDR3","size":274877906944,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 8 TB HDD","total":16000000000000},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Beryllium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.030113531,"m3_water_usage":0.000002346687},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b211x-sata/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-B211X-SATA","variant":"Elastic Metal EM-B211X-SATA + - Monthly - fr-par-1","description":"Elastic Metal EM-B211X-SATA - Monthly - + fr-par-1 (115.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":115,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 2600 or equivalent, x64, Sockets: 2, Cores per socket: 8, Threads per + core: 2, Frequency: 2.6 GHz, Benchmark: 5295","arch":"x64","type":"Intel Xeon + E5 2600 or equivalent","physical":{"sockets":2,"cores_per_socket":8,"threads_per_core":2,"frequency":2600000000,"benchmark":5295},"threads":32},"ram":{"description":"256 + GiB DDR3","size":274877906944,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 8 TB HDD","total":16000000000000},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Beryllium"}},"environmental_impact_estimation":{"kg_co2_equivalent":21.982878,"m3_water_usage":0.0017130816},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b211x-sata/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-B211X-SATA","variant":"Elastic Metal EM-B211X-SATA + - Fees - fr-par-1","description":"Elastic Metal EM-B211X-SATA - Fees - fr-par-1 + (115.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":115,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 2600 or equivalent, x64, Sockets: 2, Cores per socket: 8, Threads per + core: 2, Frequency: 2.6 GHz, Benchmark: 5295","arch":"x64","type":"Intel Xeon + E5 2600 or equivalent","physical":{"sockets":2,"cores_per_socket":8,"threads_per_core":2,"frequency":2600000000,"benchmark":5295},"threads":32},"ram":{"description":"256 + GiB DDR3","size":274877906944,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 8 TB HDD","total":16000000000000},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Beryllium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b212x-ssd/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-B212X-SSD","variant":"Elastic Metal EM-B212X-SSD + - Hourly - fr-par-1","description":"Elastic Metal EM-B212X-SSD - Hourly - fr-par-1 + (0.321€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":321000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 2600 or equivalent, x64, Sockets: 2, Cores per socket: 8, Threads per + core: 2, Frequency: 2.6 GHz, Benchmark: 5295","arch":"x64","type":"Intel Xeon + E5 2600 or equivalent","physical":{"sockets":2,"cores_per_socket":8,"threads_per_core":2,"frequency":2600000000,"benchmark":5295},"threads":32},"ram":{"description":"256 + GiB DDR3","size":274877906944,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 1.02 TB SSD","total":2048419086336},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Beryllium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.03368613,"m3_water_usage":0.0000027733574},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b212x-ssd/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-B212X-SSD","variant":"Elastic Metal EM-B212X-SSD + - Monthly - fr-par-1","description":"Elastic Metal EM-B212X-SSD - Monthly - + fr-par-1 (115.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":115,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 2600 or equivalent, x64, Sockets: 2, Cores per socket: 8, Threads per + core: 2, Frequency: 2.6 GHz, Benchmark: 5295","arch":"x64","type":"Intel Xeon + E5 2600 or equivalent","physical":{"sockets":2,"cores_per_socket":8,"threads_per_core":2,"frequency":2600000000,"benchmark":5295},"threads":32},"ram":{"description":"256 + GiB DDR3","size":274877906944,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 1.02 TB SSD","total":2048419086336},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Beryllium"}},"environmental_impact_estimation":{"kg_co2_equivalent":24.590876,"m3_water_usage":0.002024551},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b212x-ssd/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-B212X-SSD","variant":"Elastic Metal EM-B212X-SSD + - Fees - fr-par-1","description":"Elastic Metal EM-B212X-SSD - Fees - fr-par-1 + (115.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":115,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 2600 or equivalent, x64, Sockets: 2, Cores per socket: 8, Threads per + core: 2, Frequency: 2.6 GHz, Benchmark: 5295","arch":"x64","type":"Intel Xeon + E5 2600 or equivalent","physical":{"sockets":2,"cores_per_socket":8,"threads_per_core":2,"frequency":2600000000,"benchmark":5295},"threads":32},"ram":{"description":"256 + GiB DDR3","size":274877906944,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 1.02 TB SSD","total":2048419086336},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Beryllium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b220e-nvme/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-B220E-NVMe","variant":"Elastic Metal EM-B220E-NVMe + - Hourly - fr-par-1","description":"Elastic Metal EM-B220E-NVMe - Hourly - fr-par-1 + (0.333€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":333000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7232P, x64, Sockets: 1, Cores per socket: 8, Threads per core: 2, Frequency: + 3.1 GHz, Benchmark: 17017","arch":"x64","type":"AMD EPYC 7232P","physical":{"sockets":1,"cores_per_socket":8,"threads_per_core":2,"frequency":3100000000,"benchmark":17017},"threads":16},"ram":{"description":"64 + GiB DDR4","size":68719476736,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 1.02 TB NVMe","total":2048419086336},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Beryllium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.020701053,"m3_water_usage":0.0000018133492},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b220e-nvme/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-B220E-NVMe","variant":"Elastic Metal EM-B220E-NVMe + - Monthly - fr-par-1","description":"Elastic Metal EM-B220E-NVMe - Monthly - + fr-par-1 (119.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":119,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7232P, x64, Sockets: 1, Cores per socket: 8, Threads per core: 2, Frequency: + 3.1 GHz, Benchmark: 17017","arch":"x64","type":"AMD EPYC 7232P","physical":{"sockets":1,"cores_per_socket":8,"threads_per_core":2,"frequency":3100000000,"benchmark":17017},"threads":16},"ram":{"description":"64 + GiB DDR4","size":68719476736,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 1.02 TB NVMe","total":2048419086336},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Beryllium"}},"environmental_impact_estimation":{"kg_co2_equivalent":15.111769,"m3_water_usage":0.0013237449},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b220e-nvme/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-B220E-NVMe","variant":"Elastic Metal EM-B220E-NVMe + - Fees - fr-par-1","description":"Elastic Metal EM-B220E-NVMe - Fees - fr-par-1 + (119.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":119,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7232P, x64, Sockets: 1, Cores per socket: 8, Threads per core: 2, Frequency: + 3.1 GHz, Benchmark: 17017","arch":"x64","type":"AMD EPYC 7232P","physical":{"sockets":1,"cores_per_socket":8,"threads_per_core":2,"frequency":3100000000,"benchmark":17017},"threads":16},"ram":{"description":"64 + GiB DDR4","size":68719476736,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 1.02 TB NVMe","total":2048419086336},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Beryllium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b320e-nvme/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-B320E-NVMe","variant":"Elastic Metal EM-B320E-NVMe + - Hourly - fr-par-1","description":"Elastic Metal EM-B320E-NVMe - Hourly - fr-par-1 + (0.417€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":417000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7232P, x64, Sockets: 1, Cores per socket: 8, Threads per core: 2, Frequency: + 3.1 GHz, Benchmark: 17017","arch":"x64","type":"AMD EPYC 7232P","physical":{"sockets":1,"cores_per_socket":8,"threads_per_core":2,"frequency":3100000000,"benchmark":17017},"threads":16},"ram":{"description":"128 + GiB DDR4","size":137438953472,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 2.05 TB NVMe","total":4096816496640},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Beryllium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.025581174,"m3_water_usage":0.0000020053508},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b320e-nvme/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-B320E-NVMe","variant":"Elastic Metal EM-B320E-NVMe + - Monthly - fr-par-1","description":"Elastic Metal EM-B320E-NVMe - Monthly - + fr-par-1 (149.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":149,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7232P, x64, Sockets: 1, Cores per socket: 8, Threads per core: 2, Frequency: + 3.1 GHz, Benchmark: 17017","arch":"x64","type":"AMD EPYC 7232P","physical":{"sockets":1,"cores_per_socket":8,"threads_per_core":2,"frequency":3100000000,"benchmark":17017},"threads":16},"ram":{"description":"128 + GiB DDR4","size":137438953472,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 2.05 TB NVMe","total":4096816496640},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Beryllium"}},"environmental_impact_estimation":{"kg_co2_equivalent":18.674257,"m3_water_usage":0.0014639061},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b320e-nvme/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-B320E-NVMe","variant":"Elastic Metal EM-B320E-NVMe + - Fees - fr-par-1","description":"Elastic Metal EM-B320E-NVMe - Fees - fr-par-1 + (149.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":149,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7232P, x64, Sockets: 1, Cores per socket: 8, Threads per core: 2, Frequency: + 3.1 GHz, Benchmark: 17017","arch":"x64","type":"AMD EPYC 7232P","physical":{"sockets":1,"cores_per_socket":8,"threads_per_core":2,"frequency":3100000000,"benchmark":17017},"threads":16},"ram":{"description":"128 + GiB DDR4","size":137438953472,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 2.05 TB NVMe","total":4096816496640},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Beryllium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b420e-nvme/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-B420E-NVMe","variant":"Elastic Metal EM-B420E-NVMe + - Hourly - fr-par-1","description":"Elastic Metal EM-B420E-NVMe - Hourly - fr-par-1 + (0.444€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":444000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7272, x64, Sockets: 1, Cores per socket: 12, Threads per core: 2, Frequency: + 2.9 GHz, Benchmark: 25568","arch":"x64","type":"AMD EPYC 7272","physical":{"sockets":1,"cores_per_socket":12,"threads_per_core":2,"frequency":2900000000,"benchmark":25568},"threads":24},"ram":{"description":"128 + GiB DDR4","size":137438953472,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 1.02 TB NVMe","total":2048419086336},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Beryllium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.0227939,"m3_water_usage":0.0000018133492},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b420e-nvme/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-B420E-NVMe","variant":"Elastic Metal EM-B420E-NVMe + - Monthly - fr-par-1","description":"Elastic Metal EM-B420E-NVMe - Monthly - + fr-par-1 (159.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":159,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7272, x64, Sockets: 1, Cores per socket: 12, Threads per core: 2, Frequency: + 2.9 GHz, Benchmark: 25568","arch":"x64","type":"AMD EPYC 7272","physical":{"sockets":1,"cores_per_socket":12,"threads_per_core":2,"frequency":2900000000,"benchmark":25568},"threads":24},"ram":{"description":"128 + GiB DDR4","size":137438953472,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 1.02 TB NVMe","total":2048419086336},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Beryllium"}},"environmental_impact_estimation":{"kg_co2_equivalent":16.639547,"m3_water_usage":0.0013237449},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b420e-nvme/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-B420E-NVMe","variant":"Elastic Metal EM-B420E-NVMe + - Fees - fr-par-1","description":"Elastic Metal EM-B420E-NVMe - Fees - fr-par-1 + (159.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":159,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7272, x64, Sockets: 1, Cores per socket: 12, Threads per core: 2, Frequency: + 2.9 GHz, Benchmark: 25568","arch":"x64","type":"AMD EPYC 7272","physical":{"sockets":1,"cores_per_socket":12,"threads_per_core":2,"frequency":2900000000,"benchmark":25568},"threads":24},"ram":{"description":"128 + GiB DDR4","size":137438953472,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 1.02 TB NVMe","total":2048419086336},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Beryllium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b520e-nvme/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-B520E-NVMe","variant":"Elastic Metal EM-B520E-NVMe + - Hourly - fr-par-1","description":"Elastic Metal EM-B520E-NVMe - Hourly - fr-par-1 + (0.528€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":528000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7272, x64, Sockets: 1, Cores per socket: 12, Threads per core: 2, Frequency: + 2.9 GHz, Benchmark: 25568","arch":"x64","type":"AMD EPYC 7272","physical":{"sockets":1,"cores_per_socket":12,"threads_per_core":2,"frequency":2900000000,"benchmark":25568},"threads":24},"ram":{"description":"256 + GiB DDR4","size":274877906944,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 2.05 TB NVMe","total":4096816496640},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Beryllium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.031743426,"m3_water_usage":0.000002218686},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b520e-nvme/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-B520E-NVMe","variant":"Elastic Metal EM-B520E-NVMe + - Monthly - fr-par-1","description":"Elastic Metal EM-B520E-NVMe - Monthly - + fr-par-1 (189.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":189,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7272, x64, Sockets: 1, Cores per socket: 12, Threads per core: 2, Frequency: + 2.9 GHz, Benchmark: 25568","arch":"x64","type":"AMD EPYC 7272","physical":{"sockets":1,"cores_per_socket":12,"threads_per_core":2,"frequency":2900000000,"benchmark":25568},"threads":24},"ram":{"description":"256 + GiB DDR4","size":274877906944,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 2.05 TB NVMe","total":4096816496640},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Beryllium"}},"environmental_impact_estimation":{"kg_co2_equivalent":23.1727,"m3_water_usage":0.0016196407},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b520e-nvme/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-B520E-NVMe","variant":"Elastic Metal EM-B520E-NVMe + - Fees - fr-par-1","description":"Elastic Metal EM-B520E-NVMe - Fees - fr-par-1 + (189.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":189,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7272, x64, Sockets: 1, Cores per socket: 12, Threads per core: 2, Frequency: + 2.9 GHz, Benchmark: 25568","arch":"x64","type":"AMD EPYC 7272","physical":{"sockets":1,"cores_per_socket":12,"threads_per_core":2,"frequency":2900000000,"benchmark":25568},"threads":24},"ram":{"description":"256 + GiB DDR4","size":274877906944,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 2.05 TB NVMe","total":4096816496640},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Beryllium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-l101x-sata/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-L101X-SATA","variant":"Elastic Metal EM-L101X-SATA + - Hourly - fr-par-1","description":"Elastic Metal EM-L101X-SATA - Hourly - fr-par-1 + (0.122€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":122000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 1410 v2, x64, Sockets: 1, Cores per socket: 4, Threads per core: 2, + Frequency: 2.8 GHz, Benchmark: 5715","arch":"x64","type":"Intel Xeon E5 1410 + v2","physical":{"sockets":1,"cores_per_socket":4,"threads_per_core":2,"frequency":2800000000,"benchmark":5715},"threads":8},"ram":{"description":"96 + GiB DDR3","size":103079215104,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 6 TB HDD","total":12002350252032},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Lithium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.019956945,"m3_water_usage":0.000001642681},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-l101x-sata/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-L101X-SATA","variant":"Elastic Metal EM-L101X-SATA + - Monthly - fr-par-1","description":"Elastic Metal EM-L101X-SATA - Monthly - + fr-par-1 (43.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":43,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 1410 v2, x64, Sockets: 1, Cores per socket: 4, Threads per core: 2, + Frequency: 2.8 GHz, Benchmark: 5715","arch":"x64","type":"Intel Xeon E5 1410 + v2","physical":{"sockets":1,"cores_per_socket":4,"threads_per_core":2,"frequency":2800000000,"benchmark":5715},"threads":8},"ram":{"description":"96 + GiB DDR3","size":103079215104,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 6 TB HDD","total":12002350252032},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Lithium"}},"environmental_impact_estimation":{"kg_co2_equivalent":14.568569,"m3_water_usage":0.0011991571},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-l101x-sata/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-L101X-SATA","variant":"Elastic Metal EM-L101X-SATA + - Fees - fr-par-1","description":"Elastic Metal EM-L101X-SATA - Fees - fr-par-1 + (43.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":43,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 1410 v2, x64, Sockets: 1, Cores per socket: 4, Threads per core: 2, + Frequency: 2.8 GHz, Benchmark: 5715","arch":"x64","type":"Intel Xeon E5 1410 + v2","physical":{"sockets":1,"cores_per_socket":4,"threads_per_core":2,"frequency":2800000000,"benchmark":5715},"threads":8},"ram":{"description":"96 + GiB DDR3","size":103079215104,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 6 TB HDD","total":12002350252032},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Lithium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-l105x-sata/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-L105X-SATA","variant":"Elastic Metal EM-L105X-SATA + - Hourly - fr-par-1","description":"Elastic Metal EM-L105X-SATA - Hourly - fr-par-1 + (0.213€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":213000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 1410 v2, x64, Sockets: 1, Cores per socket: 4, Threads per core: 2, + Frequency: 2.8 GHz, Benchmark: 5715","arch":"x64","type":"Intel Xeon E5 1410 + v2","physical":{"sockets":1,"cores_per_socket":4,"threads_per_core":2,"frequency":2800000000,"benchmark":5715},"threads":8},"ram":{"description":"96 + GiB DDR3","size":103079215104,"type":"DDR3"},"storage":{"description":"Fixed + local: 4 x 6 TB HDD","total":24004700504064},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Lithium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.021520233,"m3_water_usage":0.0000017066816},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-l105x-sata/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-L105X-SATA","variant":"Elastic Metal EM-L105X-SATA + - Monthly - fr-par-1","description":"Elastic Metal EM-L105X-SATA - Monthly - + fr-par-1 (76.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":76,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 1410 v2, x64, Sockets: 1, Cores per socket: 4, Threads per core: 2, + Frequency: 2.8 GHz, Benchmark: 5715","arch":"x64","type":"Intel Xeon E5 1410 + v2","physical":{"sockets":1,"cores_per_socket":4,"threads_per_core":2,"frequency":2800000000,"benchmark":5715},"threads":8},"ram":{"description":"96 + GiB DDR3","size":103079215104,"type":"DDR3"},"storage":{"description":"Fixed + local: 4 x 6 TB HDD","total":24004700504064},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Lithium"}},"environmental_impact_estimation":{"kg_co2_equivalent":15.709769,"m3_water_usage":0.0012458775},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-l105x-sata/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-L105X-SATA","variant":"Elastic Metal EM-L105X-SATA + - Fees - fr-par-1","description":"Elastic Metal EM-L105X-SATA - Fees - fr-par-1 + (76.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":76,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 1410 v2, x64, Sockets: 1, Cores per socket: 4, Threads per core: 2, + Frequency: 2.8 GHz, Benchmark: 5715","arch":"x64","type":"Intel Xeon E5 1410 + v2","physical":{"sockets":1,"cores_per_socket":4,"threads_per_core":2,"frequency":2800000000,"benchmark":5715},"threads":8},"ram":{"description":"96 + GiB DDR3","size":103079215104,"type":"DDR3"},"storage":{"description":"Fixed + local: 4 x 6 TB HDD","total":24004700504064},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Lithium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-l110x-sata/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-L110X-SATA","variant":"Elastic Metal EM-L110X-SATA + - Hourly - fr-par-1","description":"Elastic Metal EM-L110X-SATA - Hourly - fr-par-1 + (0.366€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":366000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 1410 v2, x64, Sockets: 1, Cores per socket: 4, Threads per core: 2, + Frequency: 2.8 GHz, Benchmark: 5715","arch":"x64","type":"Intel Xeon E5 1410 + v2","physical":{"sockets":1,"cores_per_socket":4,"threads_per_core":2,"frequency":2800000000,"benchmark":5715},"threads":8},"ram":{"description":"96 + GiB DDR3","size":103079215104,"type":"DDR3"},"storage":{"description":"Fixed + local: 4 x 12 TB HDD","total":48000554500096},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Lithium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.021520233,"m3_water_usage":0.0000017066816},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-l110x-sata/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-L110X-SATA","variant":"Elastic Metal EM-L110X-SATA + - Monthly - fr-par-1","description":"Elastic Metal EM-L110X-SATA - Monthly - + fr-par-1 (131.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":131,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 1410 v2, x64, Sockets: 1, Cores per socket: 4, Threads per core: 2, + Frequency: 2.8 GHz, Benchmark: 5715","arch":"x64","type":"Intel Xeon E5 1410 + v2","physical":{"sockets":1,"cores_per_socket":4,"threads_per_core":2,"frequency":2800000000,"benchmark":5715},"threads":8},"ram":{"description":"96 + GiB DDR3","size":103079215104,"type":"DDR3"},"storage":{"description":"Fixed + local: 4 x 12 TB HDD","total":48000554500096},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Lithium"}},"environmental_impact_estimation":{"kg_co2_equivalent":15.709769,"m3_water_usage":0.0012458775},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-l110x-sata/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-L110X-SATA","variant":"Elastic Metal EM-L110X-SATA + - Fees - fr-par-1","description":"Elastic Metal EM-L110X-SATA - Fees - fr-par-1 + (131.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":131,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 1410 v2, x64, Sockets: 1, Cores per socket: 4, Threads per core: 2, + Frequency: 2.8 GHz, Benchmark: 5715","arch":"x64","type":"Intel Xeon E5 1410 + v2","physical":{"sockets":1,"cores_per_socket":4,"threads_per_core":2,"frequency":2800000000,"benchmark":5715},"threads":8},"ram":{"description":"96 + GiB DDR3","size":103079215104,"type":"DDR3"},"storage":{"description":"Fixed + local: 4 x 12 TB HDD","total":48000554500096},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Lithium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-l220e-nvme/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-L220E-NVMe","variant":"Elastic Metal EM-L220E-NVMe + - Hourly - fr-par-1","description":"Elastic Metal EM-L220E-NVMe - Hourly - fr-par-1 + (0.685€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":685000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7232P, x64, Sockets: 1, Cores per socket: 8, Threads per core: 2, Frequency: + 3.1 GHz, Benchmark: 17017","arch":"x64","type":"AMD EPYC 7232P","physical":{"sockets":1,"cores_per_socket":8,"threads_per_core":2,"frequency":3100000000,"benchmark":17017},"threads":16},"ram":{"description":"64 + GiB DDR4","size":68719476736,"type":"DDR4"},"storage":{"description":"Fixed + local: 4 x 2.05 TB NVMe","total":8193632993280},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Lithium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.025267264,"m3_water_usage":0.0000018133492},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-l220e-nvme/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-L220E-NVMe","variant":"Elastic Metal EM-L220E-NVMe + - Monthly - fr-par-1","description":"Elastic Metal EM-L220E-NVMe - Monthly - + fr-par-1 (249.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":249,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7232P, x64, Sockets: 1, Cores per socket: 8, Threads per core: 2, Frequency: + 3.1 GHz, Benchmark: 17017","arch":"x64","type":"AMD EPYC 7232P","physical":{"sockets":1,"cores_per_socket":8,"threads_per_core":2,"frequency":3100000000,"benchmark":17017},"threads":16},"ram":{"description":"64 + GiB DDR4","size":68719476736,"type":"DDR4"},"storage":{"description":"Fixed + local: 4 x 2.05 TB NVMe","total":8193632993280},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Lithium"}},"environmental_impact_estimation":{"kg_co2_equivalent":18.445103,"m3_water_usage":0.0013237449},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-l220e-nvme/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-L220E-NVMe","variant":"Elastic Metal EM-L220E-NVMe + - Fees - fr-par-1","description":"Elastic Metal EM-L220E-NVMe - Fees - fr-par-1 + (249.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":249,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7232P, x64, Sockets: 1, Cores per socket: 8, Threads per core: 2, Frequency: + 3.1 GHz, Benchmark: 17017","arch":"x64","type":"AMD EPYC 7232P","physical":{"sockets":1,"cores_per_socket":8,"threads_per_core":2,"frequency":3100000000,"benchmark":17017},"threads":16},"ram":{"description":"64 + GiB DDR4","size":68719476736,"type":"DDR4"},"storage":{"description":"Fixed + local: 4 x 2.05 TB NVMe","total":8193632993280},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Lithium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-l420e-nvme/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-L420E-NVMe","variant":"Elastic Metal EM-L420E-NVMe + - Hourly - fr-par-1","description":"Elastic Metal EM-L420E-NVMe - Hourly - fr-par-1 + (1.014€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":1,"nanos":14000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7272, x64, Sockets: 1, Cores per socket: 12, Threads per core: 2, Frequency: + 2.9 GHz, Benchmark: 25568","arch":"x64","type":"AMD EPYC 7272","physical":{"sockets":1,"cores_per_socket":12,"threads_per_core":2,"frequency":2900000000,"benchmark":25568},"threads":24},"ram":{"description":"128 + GiB DDR4","size":137438953472,"type":"DDR4"},"storage":{"description":"Fixed + local: 4 x 4 TB NVMe","total":16003148120064},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Lithium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.033439927,"m3_water_usage":0.0000018986832},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-l420e-nvme/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-L420E-NVMe","variant":"Elastic Metal EM-L420E-NVMe + - Monthly - fr-par-1","description":"Elastic Metal EM-L420E-NVMe - Monthly - + fr-par-1 (369.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":369,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7272, x64, Sockets: 1, Cores per socket: 12, Threads per core: 2, Frequency: + 2.9 GHz, Benchmark: 25568","arch":"x64","type":"AMD EPYC 7272","physical":{"sockets":1,"cores_per_socket":12,"threads_per_core":2,"frequency":2900000000,"benchmark":25568},"threads":24},"ram":{"description":"128 + GiB DDR4","size":137438953472,"type":"DDR4"},"storage":{"description":"Fixed + local: 4 x 4 TB NVMe","total":16003148120064},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Lithium"}},"environmental_impact_estimation":{"kg_co2_equivalent":24.411146,"m3_water_usage":0.0013860387},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-l420e-nvme/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-L420E-NVMe","variant":"Elastic Metal EM-L420E-NVMe + - Fees - fr-par-1","description":"Elastic Metal EM-L420E-NVMe - Fees - fr-par-1 + (369.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":369,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7272, x64, Sockets: 1, Cores per socket: 12, Threads per core: 2, Frequency: + 2.9 GHz, Benchmark: 25568","arch":"x64","type":"AMD EPYC 7272","physical":{"sockets":1,"cores_per_socket":12,"threads_per_core":2,"frequency":2900000000,"benchmark":25568},"threads":24},"ram":{"description":"128 + GiB DDR4","size":137438953472,"type":"DDR4"},"storage":{"description":"Fixed + local: 4 x 4 TB NVMe","total":16003148120064},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Lithium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i120e-nvme/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-I120E-NVMe","variant":"Elastic Metal EM-I120E-NVMe + - Hourly - fr-par-1","description":"Elastic Metal EM-I120E-NVMe - Hourly - fr-par-1 + (0.356€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":356000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8024P, x64, Sockets: 1, Cores per socket: 8, Threads per core: 2, Frequency: + 2.4 GHz, Benchmark: 20556","arch":"x64","type":"AMD EPYC 8024P","physical":{"sockets":1,"cores_per_socket":8,"threads_per_core":2,"frequency":2400000000,"benchmark":20556},"threads":16},"ram":{"description":"64 + GiB DDR5","size":68719476736,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 960 GB NVMe","total":1920000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.021073107,"m3_water_usage":0.0000018986832},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i120e-nvme/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-I120E-NVMe","variant":"Elastic Metal EM-I120E-NVMe + - Monthly - fr-par-1","description":"Elastic Metal EM-I120E-NVMe - Monthly - + fr-par-1 (129.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":129,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8024P, x64, Sockets: 1, Cores per socket: 8, Threads per core: 2, Frequency: + 2.4 GHz, Benchmark: 20556","arch":"x64","type":"AMD EPYC 8024P","physical":{"sockets":1,"cores_per_socket":8,"threads_per_core":2,"frequency":2400000000,"benchmark":20556},"threads":16},"ram":{"description":"64 + GiB DDR5","size":68719476736,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 960 GB NVMe","total":1920000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"environmental_impact_estimation":{"kg_co2_equivalent":15.3833685,"m3_water_usage":0.0013860387},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i120e-nvme/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-I120E-NVMe","variant":"Elastic Metal EM-I120E-NVMe + - Fees - fr-par-1","description":"Elastic Metal EM-I120E-NVMe - Fees - fr-par-1 + (129.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":129,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8024P, x64, Sockets: 1, Cores per socket: 8, Threads per core: 2, Frequency: + 2.4 GHz, Benchmark: 20556","arch":"x64","type":"AMD EPYC 8024P","physical":{"sockets":1,"cores_per_socket":8,"threads_per_core":2,"frequency":2400000000,"benchmark":20556},"threads":16},"ram":{"description":"64 + GiB DDR5","size":68719476736,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 960 GB NVMe","total":1920000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i220e-nvme/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-I220E-NVMe","variant":"Elastic Metal EM-I220E-NVMe + - Hourly - fr-par-1","description":"Elastic Metal EM-I220E-NVMe - Hourly - fr-par-1 + (0.548€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":548000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8124P, x64, Sockets: 1, Cores per socket: 16, Threads per core: 2, Frequency: + 2.45 GHz, Benchmark: 36338","arch":"x64","type":"AMD EPYC 8124P","physical":{"sockets":1,"cores_per_socket":16,"threads_per_core":2,"frequency":2450000000,"benchmark":36338},"threads":32},"ram":{"description":"128 + GiB DDR5","size":137438953472,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 960 GB NVMe","total":1920000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.024902573,"m3_water_usage":0.000002133352},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i220e-nvme/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-I220E-NVMe","variant":"Elastic Metal EM-I220E-NVMe + - Monthly - fr-par-1","description":"Elastic Metal EM-I220E-NVMe - Monthly - + fr-par-1 (199.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":199,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8124P, x64, Sockets: 1, Cores per socket: 16, Threads per core: 2, Frequency: + 2.45 GHz, Benchmark: 36338","arch":"x64","type":"AMD EPYC 8124P","physical":{"sockets":1,"cores_per_socket":16,"threads_per_core":2,"frequency":2450000000,"benchmark":36338},"threads":32},"ram":{"description":"128 + GiB DDR5","size":137438953472,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 960 GB NVMe","total":1920000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"environmental_impact_estimation":{"kg_co2_equivalent":18.178879,"m3_water_usage":0.0015573469},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i220e-nvme/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-I220E-NVMe","variant":"Elastic Metal EM-I220E-NVMe + - Fees - fr-par-1","description":"Elastic Metal EM-I220E-NVMe - Fees - fr-par-1 + (199.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":199,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8124P, x64, Sockets: 1, Cores per socket: 16, Threads per core: 2, Frequency: + 2.45 GHz, Benchmark: 36338","arch":"x64","type":"AMD EPYC 8124P","physical":{"sockets":1,"cores_per_socket":16,"threads_per_core":2,"frequency":2450000000,"benchmark":36338},"threads":32},"ram":{"description":"128 + GiB DDR5","size":137438953472,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 960 GB NVMe","total":1920000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i210e-nvme/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-I210E-NVMe","variant":"Elastic Metal EM-I210E-NVMe + - Hourly - fr-par-1","description":"Elastic Metal EM-I210E-NVMe - Hourly - fr-par-1 + (0.667€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":667000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7313P, x64, Sockets: 1, Cores per socket: 16, Threads per core: 2, Frequency: + 3 GHz, Benchmark: 41609","arch":"x64","type":"AMD EPYC 7313P","physical":{"sockets":1,"cores_per_socket":16,"threads_per_core":2,"frequency":3000000000,"benchmark":41609},"threads":32},"ram":{"description":"128 + GiB DDR4","size":137438953472,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 1.92 TB NVMe","total":3840766820352},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Iridium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.02974884,"m3_water_usage":0.0000026666899},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i210e-nvme/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-I210E-NVMe","variant":"Elastic Metal EM-I210E-NVMe + - Monthly - fr-par-1","description":"Elastic Metal EM-I210E-NVMe - Monthly - + fr-par-1 (239.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":239,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7313P, x64, Sockets: 1, Cores per socket: 16, Threads per core: 2, Frequency: + 3 GHz, Benchmark: 41609","arch":"x64","type":"AMD EPYC 7313P","physical":{"sockets":1,"cores_per_socket":16,"threads_per_core":2,"frequency":3000000000,"benchmark":41609},"threads":32},"ram":{"description":"128 + GiB DDR4","size":137438953472,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 1.92 TB NVMe","total":3840766820352},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Iridium"}},"environmental_impact_estimation":{"kg_co2_equivalent":21.716654,"m3_water_usage":0.0019466836},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i210e-nvme/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-I210E-NVMe","variant":"Elastic Metal EM-I210E-NVMe + - Fees - fr-par-1","description":"Elastic Metal EM-I210E-NVMe - Fees - fr-par-1 + (239.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":239,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7313P, x64, Sockets: 1, Cores per socket: 16, Threads per core: 2, Frequency: + 3 GHz, Benchmark: 41609","arch":"x64","type":"AMD EPYC 7313P","physical":{"sockets":1,"cores_per_socket":16,"threads_per_core":2,"frequency":3000000000,"benchmark":41609},"threads":32},"ram":{"description":"128 + GiB DDR4","size":137438953472,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 1.92 TB NVMe","total":3840766820352},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Iridium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i320e-nvme/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-I320E-NVMe","variant":"Elastic Metal EM-I320E-NVMe + - Hourly - fr-par-1","description":"Elastic Metal EM-I320E-NVMe - Hourly - fr-par-1 + (0.822€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":822000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8224P, x64, Sockets: 1, Cores per socket: 24, Threads per core: 2, Frequency: + 2.55 GHz, Benchmark: 45160","arch":"x64","type":"AMD EPYC 8224P","physical":{"sockets":1,"cores_per_socket":24,"threads_per_core":2,"frequency":2550000000,"benchmark":45160},"threads":48},"ram":{"description":"192 + GiB DDR5","size":206158430208,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 1.92 TB NVMe","total":3840000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.02936096,"m3_water_usage":0.000002261353},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i320e-nvme/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-I320E-NVMe","variant":"Elastic Metal EM-I320E-NVMe + - Monthly - fr-par-1","description":"Elastic Metal EM-I320E-NVMe - Monthly - + fr-par-1 (299.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":299,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8224P, x64, Sockets: 1, Cores per socket: 24, Threads per core: 2, Frequency: + 2.55 GHz, Benchmark: 45160","arch":"x64","type":"AMD EPYC 8224P","physical":{"sockets":1,"cores_per_socket":24,"threads_per_core":2,"frequency":2550000000,"benchmark":45160},"threads":48},"ram":{"description":"192 + GiB DDR5","size":206158430208,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 1.92 TB NVMe","total":3840000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"environmental_impact_estimation":{"kg_co2_equivalent":21.4335,"m3_water_usage":0.0016507878},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i320e-nvme/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-I320E-NVMe","variant":"Elastic Metal EM-I320E-NVMe + - Fees - fr-par-1","description":"Elastic Metal EM-I320E-NVMe - Fees - fr-par-1 + (299.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":299,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8224P, x64, Sockets: 1, Cores per socket: 24, Threads per core: 2, Frequency: + 2.55 GHz, Benchmark: 45160","arch":"x64","type":"AMD EPYC 8224P","physical":{"sockets":1,"cores_per_socket":24,"threads_per_core":2,"frequency":2550000000,"benchmark":45160},"threads":48},"ram":{"description":"192 + GiB DDR5","size":206158430208,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 1.92 TB NVMe","total":3840000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i215e-nvme/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-I215E-NVMe","variant":"Elastic Metal EM-I215E-NVMe + - Hourly - fr-par-1","description":"Elastic Metal EM-I215E-NVMe - Hourly - fr-par-1 + (0.904€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":904000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7313P, x64, Sockets: 1, Cores per socket: 16, Threads per core: 2, Frequency: + 3 GHz, Benchmark: 41609","arch":"x64","type":"AMD EPYC 7313P","physical":{"sockets":1,"cores_per_socket":16,"threads_per_core":2,"frequency":3000000000,"benchmark":41609},"threads":32},"ram":{"description":"256 + GiB DDR4","size":274877906944,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 1.92 TB NVMe","total":3840766820352},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Iridium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.03469557,"m3_water_usage":0.0000026666899},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i215e-nvme/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-I215E-NVMe","variant":"Elastic Metal EM-I215E-NVMe + - Monthly - fr-par-1","description":"Elastic Metal EM-I215E-NVMe - Monthly - + fr-par-1 (329.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":329,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7313P, x64, Sockets: 1, Cores per socket: 16, Threads per core: 2, Frequency: + 3 GHz, Benchmark: 41609","arch":"x64","type":"AMD EPYC 7313P","physical":{"sockets":1,"cores_per_socket":16,"threads_per_core":2,"frequency":3000000000,"benchmark":41609},"threads":32},"ram":{"description":"256 + GiB DDR4","size":274877906944,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 1.92 TB NVMe","total":3840766820352},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Iridium"}},"environmental_impact_estimation":{"kg_co2_equivalent":25.327765,"m3_water_usage":0.0019466836},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i215e-nvme/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-I215E-NVMe","variant":"Elastic Metal EM-I215E-NVMe + - Fees - fr-par-1","description":"Elastic Metal EM-I215E-NVMe - Fees - fr-par-1 + (329.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":329,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7313P, x64, Sockets: 1, Cores per socket: 16, Threads per core: 2, Frequency: + 3 GHz, Benchmark: 41609","arch":"x64","type":"AMD EPYC 7313P","physical":{"sockets":1,"cores_per_socket":16,"threads_per_core":2,"frequency":3000000000,"benchmark":41609},"threads":32},"ram":{"description":"256 + GiB DDR4","size":274877906944,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 1.92 TB NVMe","total":3840766820352},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Iridium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i420e-nvme/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-I420E-NVMe","variant":"Elastic Metal EM-I420E-NVMe + - Hourly - fr-par-1","description":"Elastic Metal EM-I420E-NVMe - Hourly - fr-par-1 + (1.096€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":1,"nanos":96000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8324P, x64, Sockets: 1, Cores per socket: 32, Threads per core: 2, Frequency: + 2.65 GHz, Benchmark: 57127","arch":"x64","type":"AMD EPYC 8324P","physical":{"sockets":1,"cores_per_socket":32,"threads_per_core":2,"frequency":2650000000,"benchmark":57127},"threads":64},"ram":{"description":"256 + GiB DDR5","size":274877906944,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 1.92 TB NVMe","total":3840000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.032586895,"m3_water_usage":0.000002346687},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i420e-nvme/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-I420E-NVMe","variant":"Elastic Metal EM-I420E-NVMe + - Monthly - fr-par-1","description":"Elastic Metal EM-I420E-NVMe - Monthly - + fr-par-1 (399.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":399,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8324P, x64, Sockets: 1, Cores per socket: 32, Threads per core: 2, Frequency: + 2.65 GHz, Benchmark: 57127","arch":"x64","type":"AMD EPYC 8324P","physical":{"sockets":1,"cores_per_socket":32,"threads_per_core":2,"frequency":2650000000,"benchmark":57127},"threads":64},"ram":{"description":"256 + GiB DDR5","size":274877906944,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 1.92 TB NVMe","total":3840000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"environmental_impact_estimation":{"kg_co2_equivalent":23.788433,"m3_water_usage":0.0017130816},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i420e-nvme/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-I420E-NVMe","variant":"Elastic Metal EM-I420E-NVMe + - Fees - fr-par-1","description":"Elastic Metal EM-I420E-NVMe - Fees - fr-par-1 + (399.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":399,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8324P, x64, Sockets: 1, Cores per socket: 32, Threads per core: 2, Frequency: + 2.65 GHz, Benchmark: 57127","arch":"x64","type":"AMD EPYC 8324P","physical":{"sockets":1,"cores_per_socket":32,"threads_per_core":2,"frequency":2650000000,"benchmark":57127},"threads":64},"ram":{"description":"256 + GiB DDR5","size":274877906944,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 1.92 TB NVMe","total":3840000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i520e-nvme/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-I520E-NVMe","variant":"Elastic Metal EM-I520E-NVMe + - Hourly - fr-par-1","description":"Elastic Metal EM-I520E-NVMe - Hourly - fr-par-1 + (1.37€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":1,"nanos":370000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8434P, x64, Sockets: 1, Cores per socket: 48, Threads per core: 2, Frequency: + 2.5 GHz, Benchmark: 66490","arch":"x64","type":"AMD EPYC 8434P","physical":{"sockets":1,"cores_per_socket":48,"threads_per_core":2,"frequency":2500000000,"benchmark":66490},"threads":96},"ram":{"description":"384 + GiB DDR5","size":412316860416,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 3.84 TB NVMe","total":7680000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.041603025,"m3_water_usage":0.0000025600223},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i520e-nvme/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-I520E-NVMe","variant":"Elastic Metal EM-I520E-NVMe + - Monthly - fr-par-1","description":"Elastic Metal EM-I520E-NVMe - Monthly - + fr-par-1 (499.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":499,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8434P, x64, Sockets: 1, Cores per socket: 48, Threads per core: 2, Frequency: + 2.5 GHz, Benchmark: 66490","arch":"x64","type":"AMD EPYC 8434P","physical":{"sockets":1,"cores_per_socket":48,"threads_per_core":2,"frequency":2500000000,"benchmark":66490},"threads":96},"ram":{"description":"384 + GiB DDR5","size":412316860416,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 3.84 TB NVMe","total":7680000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"environmental_impact_estimation":{"kg_co2_equivalent":30.370209,"m3_water_usage":0.0018688163},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i520e-nvme/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-I520E-NVMe","variant":"Elastic Metal EM-I520E-NVMe + - Fees - fr-par-1","description":"Elastic Metal EM-I520E-NVMe - Fees - fr-par-1 + (499.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":499,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8434P, x64, Sockets: 1, Cores per socket: 48, Threads per core: 2, Frequency: + 2.5 GHz, Benchmark: 66490","arch":"x64","type":"AMD EPYC 8434P","physical":{"sockets":1,"cores_per_socket":48,"threads_per_core":2,"frequency":2500000000,"benchmark":66490},"threads":96},"ram":{"description":"384 + GiB DDR5","size":412316860416,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 3.84 TB NVMe","total":7680000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i620e-nvme/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-I620E-NVMe","variant":"Elastic Metal EM-I620E-NVMe + - Hourly - fr-par-1","description":"Elastic Metal EM-I620E-NVMe - Hourly - fr-par-1 + (1.644€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":1,"nanos":644000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8534P, x64, Sockets: 1, Cores per socket: 64, Threads per core: 2, Frequency: + 2.3 GHz, Benchmark: 71900","arch":"x64","type":"AMD EPYC 8534P","physical":{"sockets":1,"cores_per_socket":64,"threads_per_core":2,"frequency":2300000000,"benchmark":71900},"threads":128},"ram":{"description":"576 + GiB DDR5","size":618475290624,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 3.84 TB NVMe","total":7680000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.048575994,"m3_water_usage":0.0000027520239},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i620e-nvme/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-I620E-NVMe","variant":"Elastic Metal EM-I620E-NVMe + - Monthly - fr-par-1","description":"Elastic Metal EM-I620E-NVMe - Monthly - + fr-par-1 (599.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":599,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8534P, x64, Sockets: 1, Cores per socket: 64, Threads per core: 2, Frequency: + 2.3 GHz, Benchmark: 71900","arch":"x64","type":"AMD EPYC 8534P","physical":{"sockets":1,"cores_per_socket":64,"threads_per_core":2,"frequency":2300000000,"benchmark":71900},"threads":128},"ram":{"description":"576 + GiB DDR5","size":618475290624,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 3.84 TB NVMe","total":7680000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"environmental_impact_estimation":{"kg_co2_equivalent":35.460476,"m3_water_usage":0.0020089776},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i620e-nvme/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-I620E-NVMe","variant":"Elastic Metal EM-I620E-NVMe + - Fees - fr-par-1","description":"Elastic Metal EM-I620E-NVMe - Fees - fr-par-1 + (599.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":599,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8534P, x64, Sockets: 1, Cores per socket: 64, Threads per core: 2, Frequency: + 2.3 GHz, Benchmark: 71900","arch":"x64","type":"AMD EPYC 8534P","physical":{"sockets":1,"cores_per_socket":64,"threads_per_core":2,"frequency":2300000000,"benchmark":71900},"threads":128},"ram":{"description":"576 + GiB DDR5","size":618475290624,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 3.84 TB NVMe","total":7680000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"}],"total_count":75}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?product_types=elastic_metal&zone=fr-par-1 + method: GET + response: + body: '{"products":[{"sku":"/baremetal/em-a115x-ssd/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-A115X-SSD","variant":"Elastic Metal EM-A115X-SSD + - Hourly - fr-par-1","description":"Elastic Metal EM-A115X-SSD - Hourly - fr-par-1 + (0.091€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":91000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E3 1220 or equivalent, x64, Sockets: 1, Cores per socket: 4, Threads per + core: 1, Frequency: 3.1 GHz, Benchmark: 3895","arch":"x64","type":"Intel Xeon + E3 1220 or equivalent","physical":{"sockets":1,"cores_per_socket":4,"threads_per_core":1,"frequency":3100000000,"benchmark":3895},"threads":4},"ram":{"description":"32 + GiB DDR3","size":34359738368,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 1.02 TB SSD","total":2048419086336},"network":{"description":"Internal: + 1 Gb/s, Public: 500 Mb/s (max 1 Gb/s)","internal_bandwidth":1000000000,"public_bandwidth":500000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Aluminium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.0163262,"m3_water_usage":0.0000013226781},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-a115x-ssd/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-A115X-SSD","variant":"Elastic Metal EM-A115X-SSD + - Monthly - fr-par-1","description":"Elastic Metal EM-A115X-SSD - Monthly - + fr-par-1 (32.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":32,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E3 1220 or equivalent, x64, Sockets: 1, Cores per socket: 4, Threads per + core: 1, Frequency: 3.1 GHz, Benchmark: 3895","arch":"x64","type":"Intel Xeon + E3 1220 or equivalent","physical":{"sockets":1,"cores_per_socket":4,"threads_per_core":1,"frequency":3100000000,"benchmark":3895},"threads":4},"ram":{"description":"32 + GiB DDR3","size":34359738368,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 1.02 TB SSD","total":2048419086336},"network":{"description":"Internal: + 1 Gb/s, Public: 500 Mb/s (max 1 Gb/s)","internal_bandwidth":1000000000,"public_bandwidth":500000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Aluminium"}},"environmental_impact_estimation":{"kg_co2_equivalent":11.918127,"m3_water_usage":0.0009655551},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-a115x-ssd/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-A115X-SSD","variant":"Elastic Metal EM-A115X-SSD + - Fees - fr-par-1","description":"Elastic Metal EM-A115X-SSD - Fees - fr-par-1 + (32.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":32,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E3 1220 or equivalent, x64, Sockets: 1, Cores per socket: 4, Threads per + core: 1, Frequency: 3.1 GHz, Benchmark: 3895","arch":"x64","type":"Intel Xeon + E3 1220 or equivalent","physical":{"sockets":1,"cores_per_socket":4,"threads_per_core":1,"frequency":3100000000,"benchmark":3895},"threads":4},"ram":{"description":"32 + GiB DDR3","size":34359738368,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 1.02 TB SSD","total":2048419086336},"network":{"description":"Internal: + 1 Gb/s, Public: 500 Mb/s (max 1 Gb/s)","internal_bandwidth":1000000000,"public_bandwidth":500000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Aluminium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-a315x-ssd/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-A315X-SSD","variant":"Elastic Metal EM-A315X-SSD + - Hourly - fr-par-1","description":"Elastic Metal EM-A315X-SSD - Hourly - fr-par-1 + (0.1529€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":152900000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 1410 v2, x64, Sockets: 1, Cores per socket: 4, Threads per core: 2, + Frequency: 2.8 GHz, Benchmark: 5715","arch":"x64","type":"Intel Xeon E5 1410 + v2","physical":{"sockets":1,"cores_per_socket":4,"threads_per_core":2,"frequency":2800000000,"benchmark":5715},"threads":8},"ram":{"description":"64 + GiB DDR3","size":68719476736,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 1.02 TB SSD","total":2048419086336},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Aluminium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.02013874,"m3_water_usage":0.000001728015},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-a315x-ssd/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-A315X-SSD","variant":"Elastic Metal EM-A315X-SSD + - Monthly - fr-par-1","description":"Elastic Metal EM-A315X-SSD - Monthly - + fr-par-1 (54.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":54,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 1410 v2, x64, Sockets: 1, Cores per socket: 4, Threads per core: 2, + Frequency: 2.8 GHz, Benchmark: 5715","arch":"x64","type":"Intel Xeon E5 1410 + v2","physical":{"sockets":1,"cores_per_socket":4,"threads_per_core":2,"frequency":2800000000,"benchmark":5715},"threads":8},"ram":{"description":"64 + GiB DDR3","size":68719476736,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 1.02 TB SSD","total":2048419086336},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Aluminium"}},"environmental_impact_estimation":{"kg_co2_equivalent":14.701281,"m3_water_usage":0.001261451},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-a315x-ssd/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-A315X-SSD","variant":"Elastic Metal EM-A315X-SSD + - Fees - fr-par-1","description":"Elastic Metal EM-A315X-SSD - Fees - fr-par-1 + (54.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":54,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 1410 v2, x64, Sockets: 1, Cores per socket: 4, Threads per core: 2, + Frequency: 2.8 GHz, Benchmark: 5715","arch":"x64","type":"Intel Xeon E5 1410 + v2","physical":{"sockets":1,"cores_per_socket":4,"threads_per_core":2,"frequency":2800000000,"benchmark":5715},"threads":8},"ram":{"description":"64 + GiB DDR3","size":68719476736,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 1.02 TB SSD","total":2048419086336},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Aluminium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-a410x-ssd/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-A410X-SSD","variant":"Elastic Metal EM-A410X-SSD + - Hourly - fr-par-1","description":"Elastic Metal EM-A410X-SSD - Hourly - fr-par-1 + (0.153€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":153000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 1650, x64, Sockets: 1, Cores per socket: 6, Threads per core: 2, Frequency: + 3.2 GHz, Benchmark: 8086","arch":"x64","type":"Intel Xeon E5 1650","physical":{"sockets":1,"cores_per_socket":6,"threads_per_core":2,"frequency":3200000000,"benchmark":8086},"threads":12},"ram":{"description":"64 + GiB DDR3","size":68719476736,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 1.02 TB SSD","total":2048419086336},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Aluminium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.018972898,"m3_water_usage":0.0000014933463},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-a410x-ssd/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-A410X-SSD","variant":"Elastic Metal EM-A410X-SSD + - Monthly - fr-par-1","description":"Elastic Metal EM-A410X-SSD - Monthly - + fr-par-1 (54.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":54,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 1650, x64, Sockets: 1, Cores per socket: 6, Threads per core: 2, Frequency: + 3.2 GHz, Benchmark: 8086","arch":"x64","type":"Intel Xeon E5 1650","physical":{"sockets":1,"cores_per_socket":6,"threads_per_core":2,"frequency":3200000000,"benchmark":8086},"threads":12},"ram":{"description":"64 + GiB DDR3","size":68719476736,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 1.02 TB SSD","total":2048419086336},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Aluminium"}},"environmental_impact_estimation":{"kg_co2_equivalent":13.850215,"m3_water_usage":0.0010901429},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-a410x-ssd/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-A410X-SSD","variant":"Elastic Metal EM-A410X-SSD + - Fees - fr-par-1","description":"Elastic Metal EM-A410X-SSD - Fees - fr-par-1 + (54.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":54,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 1650, x64, Sockets: 1, Cores per socket: 6, Threads per core: 2, Frequency: + 3.2 GHz, Benchmark: 8086","arch":"x64","type":"Intel Xeon E5 1650","physical":{"sockets":1,"cores_per_socket":6,"threads_per_core":2,"frequency":3200000000,"benchmark":8086},"threads":12},"ram":{"description":"64 + GiB DDR3","size":68719476736,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 1.02 TB SSD","total":2048419086336},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Aluminium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-a610r-nvme/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-A610R-NVMe","variant":"Elastic Metal EM-A610R-NVMe + - Hourly - fr-par-1","description":"Elastic Metal EM-A610R-NVMe - Hourly - fr-par-1 + (0.11€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":110000000}},"properties":{"hardware":{"cpu":{"description":"AMD + Ryzen PRO 3600, x64, Sockets: 1, Cores per socket: 6, Threads per core: 2, Frequency: + 3.6 GHz, Benchmark: 17202","arch":"x64","type":"AMD Ryzen PRO 3600","physical":{"sockets":1,"cores_per_socket":6,"threads_per_core":2,"frequency":3600000000,"benchmark":17202},"threads":12},"ram":{"description":"32 + GiB DDR4","size":34359738368,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 1.02 TB NVMe","total":2048419086336},"network":{"description":"Internal: + 1 Gb/s, Public: 500 Mb/s (max 1 Gb/s)","internal_bandwidth":1000000000,"public_bandwidth":500000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Aluminium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.018666351,"m3_water_usage":0.0000017066816},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-a610r-nvme/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-A610R-NVMe","variant":"Elastic Metal EM-A610R-NVMe + - Monthly - fr-par-1","description":"Elastic Metal EM-A610R-NVMe - Monthly - + fr-par-1 (39.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":39,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + Ryzen PRO 3600, x64, Sockets: 1, Cores per socket: 6, Threads per core: 2, Frequency: + 3.6 GHz, Benchmark: 17202","arch":"x64","type":"AMD Ryzen PRO 3600","physical":{"sockets":1,"cores_per_socket":6,"threads_per_core":2,"frequency":3600000000,"benchmark":17202},"threads":12},"ram":{"description":"32 + GiB DDR4","size":34359738368,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 1.02 TB NVMe","total":2048419086336},"network":{"description":"Internal: + 1 Gb/s, Public: 500 Mb/s (max 1 Gb/s)","internal_bandwidth":1000000000,"public_bandwidth":500000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Aluminium"}},"environmental_impact_estimation":{"kg_co2_equivalent":13.626436,"m3_water_usage":0.0012458775},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-a610r-nvme/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-A610R-NVMe","variant":"Elastic Metal EM-A610R-NVMe + - Fees - fr-par-1","description":"Elastic Metal EM-A610R-NVMe - Fees - fr-par-1 + (39.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":39,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + Ryzen PRO 3600, x64, Sockets: 1, Cores per socket: 6, Threads per core: 2, Frequency: + 3.6 GHz, Benchmark: 17202","arch":"x64","type":"AMD Ryzen PRO 3600","physical":{"sockets":1,"cores_per_socket":6,"threads_per_core":2,"frequency":3600000000,"benchmark":17202},"threads":12},"ram":{"description":"32 + GiB DDR4","size":34359738368,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 1.02 TB NVMe","total":2048419086336},"network":{"description":"Internal: + 1 Gb/s, Public: 500 Mb/s (max 1 Gb/s)","internal_bandwidth":1000000000,"public_bandwidth":500000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Aluminium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b111x-sata/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-B111X-SATA","variant":"Elastic Metal EM-B111X-SATA + - Hourly - fr-par-1","description":"Elastic Metal EM-B111X-SATA - Hourly - fr-par-1 + (0.263€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":263000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 2620 or equivalent, x64, Sockets: 2, Cores per socket: 6, Threads per + core: 2, Frequency: 2 GHz","arch":"x64","type":"Intel Xeon E5 2620 or equivalent","physical":{"sockets":2,"cores_per_socket":6,"threads_per_core":2,"frequency":2000000000,"benchmark":0},"threads":24},"ram":{"description":"192 + GiB DDR3","size":206158430208,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 8 TB HDD","total":16000000000000},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Beryllium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.02938525,"m3_water_usage":0.0000024960218},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b111x-sata/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-B111X-SATA","variant":"Elastic Metal EM-B111X-SATA + - Monthly - fr-par-1","description":"Elastic Metal EM-B111X-SATA - Monthly - + fr-par-1 (94.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":94,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 2620 or equivalent, x64, Sockets: 2, Cores per socket: 6, Threads per + core: 2, Frequency: 2 GHz","arch":"x64","type":"Intel Xeon E5 2620 or equivalent","physical":{"sockets":2,"cores_per_socket":6,"threads_per_core":2,"frequency":2000000000,"benchmark":0},"threads":24},"ram":{"description":"192 + GiB DDR3","size":206158430208,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 8 TB HDD","total":16000000000000},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Beryllium"}},"environmental_impact_estimation":{"kg_co2_equivalent":21.451233,"m3_water_usage":0.0018220958},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b111x-sata/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-B111X-SATA","variant":"Elastic Metal EM-B111X-SATA + - Fees - fr-par-1","description":"Elastic Metal EM-B111X-SATA - Fees - fr-par-1 + (94.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":94,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 2620 or equivalent, x64, Sockets: 2, Cores per socket: 6, Threads per + core: 2, Frequency: 2 GHz","arch":"x64","type":"Intel Xeon E5 2620 or equivalent","physical":{"sockets":2,"cores_per_socket":6,"threads_per_core":2,"frequency":2000000000,"benchmark":0},"threads":24},"ram":{"description":"192 + GiB DDR3","size":206158430208,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 8 TB HDD","total":16000000000000},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Beryllium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b112x-ssd/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-B112X-SSD","variant":"Elastic Metal EM-B112X-SSD + - Hourly - fr-par-1","description":"Elastic Metal EM-B112X-SSD - Hourly - fr-par-1 + (0.263€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":263000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 2600 or equivalent, x64, Sockets: 2, Cores per socket: 6, Threads per + core: 2, Frequency: 2 GHz, Benchmark: 5295","arch":"x64","type":"Intel Xeon + E5 2600 or equivalent","physical":{"sockets":2,"cores_per_socket":6,"threads_per_core":2,"frequency":2000000000,"benchmark":5295},"threads":24},"ram":{"description":"192 + GiB DDR3","size":206158430208,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 1 TB SSD","total":2000409772032},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Beryllium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.029575508,"m3_water_usage":0.0000024960218},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b112x-ssd/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-B112X-SSD","variant":"Elastic Metal EM-B112X-SSD + - Monthly - fr-par-1","description":"Elastic Metal EM-B112X-SSD - Monthly - + fr-par-1 (94.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":94,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 2600 or equivalent, x64, Sockets: 2, Cores per socket: 6, Threads per + core: 2, Frequency: 2 GHz, Benchmark: 5295","arch":"x64","type":"Intel Xeon + E5 2600 or equivalent","physical":{"sockets":2,"cores_per_socket":6,"threads_per_core":2,"frequency":2000000000,"benchmark":5295},"threads":24},"ram":{"description":"192 + GiB DDR3","size":206158430208,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 1 TB SSD","total":2000409772032},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Beryllium"}},"environmental_impact_estimation":{"kg_co2_equivalent":21.59012,"m3_water_usage":0.0018220958},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b112x-ssd/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-B112X-SSD","variant":"Elastic Metal EM-B112X-SSD + - Fees - fr-par-1","description":"Elastic Metal EM-B112X-SSD - Fees - fr-par-1 + (94.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":94,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 2600 or equivalent, x64, Sockets: 2, Cores per socket: 6, Threads per + core: 2, Frequency: 2 GHz, Benchmark: 5295","arch":"x64","type":"Intel Xeon + E5 2600 or equivalent","physical":{"sockets":2,"cores_per_socket":6,"threads_per_core":2,"frequency":2000000000,"benchmark":5295},"threads":24},"ram":{"description":"192 + GiB DDR3","size":206158430208,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 1 TB SSD","total":2000409772032},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Beryllium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b211x-sata/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-B211X-SATA","variant":"Elastic Metal EM-B211X-SATA + - Hourly - fr-par-1","description":"Elastic Metal EM-B211X-SATA - Hourly - fr-par-1 + (0.321€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":321000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 2600 or equivalent, x64, Sockets: 2, Cores per socket: 8, Threads per + core: 2, Frequency: 2.6 GHz, Benchmark: 5295","arch":"x64","type":"Intel Xeon + E5 2600 or equivalent","physical":{"sockets":2,"cores_per_socket":8,"threads_per_core":2,"frequency":2600000000,"benchmark":5295},"threads":32},"ram":{"description":"256 + GiB DDR3","size":274877906944,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 8 TB HDD","total":16000000000000},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Beryllium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.030113531,"m3_water_usage":0.000002346687},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b211x-sata/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-B211X-SATA","variant":"Elastic Metal EM-B211X-SATA + - Monthly - fr-par-1","description":"Elastic Metal EM-B211X-SATA - Monthly - + fr-par-1 (115.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":115,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 2600 or equivalent, x64, Sockets: 2, Cores per socket: 8, Threads per + core: 2, Frequency: 2.6 GHz, Benchmark: 5295","arch":"x64","type":"Intel Xeon + E5 2600 or equivalent","physical":{"sockets":2,"cores_per_socket":8,"threads_per_core":2,"frequency":2600000000,"benchmark":5295},"threads":32},"ram":{"description":"256 + GiB DDR3","size":274877906944,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 8 TB HDD","total":16000000000000},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Beryllium"}},"environmental_impact_estimation":{"kg_co2_equivalent":21.982878,"m3_water_usage":0.0017130816},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b211x-sata/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-B211X-SATA","variant":"Elastic Metal EM-B211X-SATA + - Fees - fr-par-1","description":"Elastic Metal EM-B211X-SATA - Fees - fr-par-1 + (115.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":115,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 2600 or equivalent, x64, Sockets: 2, Cores per socket: 8, Threads per + core: 2, Frequency: 2.6 GHz, Benchmark: 5295","arch":"x64","type":"Intel Xeon + E5 2600 or equivalent","physical":{"sockets":2,"cores_per_socket":8,"threads_per_core":2,"frequency":2600000000,"benchmark":5295},"threads":32},"ram":{"description":"256 + GiB DDR3","size":274877906944,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 8 TB HDD","total":16000000000000},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Beryllium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b212x-ssd/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-B212X-SSD","variant":"Elastic Metal EM-B212X-SSD + - Hourly - fr-par-1","description":"Elastic Metal EM-B212X-SSD - Hourly - fr-par-1 + (0.321€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":321000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 2600 or equivalent, x64, Sockets: 2, Cores per socket: 8, Threads per + core: 2, Frequency: 2.6 GHz, Benchmark: 5295","arch":"x64","type":"Intel Xeon + E5 2600 or equivalent","physical":{"sockets":2,"cores_per_socket":8,"threads_per_core":2,"frequency":2600000000,"benchmark":5295},"threads":32},"ram":{"description":"256 + GiB DDR3","size":274877906944,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 1.02 TB SSD","total":2048419086336},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Beryllium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.03368613,"m3_water_usage":0.0000027733574},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b212x-ssd/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-B212X-SSD","variant":"Elastic Metal EM-B212X-SSD + - Monthly - fr-par-1","description":"Elastic Metal EM-B212X-SSD - Monthly - + fr-par-1 (115.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":115,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 2600 or equivalent, x64, Sockets: 2, Cores per socket: 8, Threads per + core: 2, Frequency: 2.6 GHz, Benchmark: 5295","arch":"x64","type":"Intel Xeon + E5 2600 or equivalent","physical":{"sockets":2,"cores_per_socket":8,"threads_per_core":2,"frequency":2600000000,"benchmark":5295},"threads":32},"ram":{"description":"256 + GiB DDR3","size":274877906944,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 1.02 TB SSD","total":2048419086336},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Beryllium"}},"environmental_impact_estimation":{"kg_co2_equivalent":24.590876,"m3_water_usage":0.002024551},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b212x-ssd/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-B212X-SSD","variant":"Elastic Metal EM-B212X-SSD + - Fees - fr-par-1","description":"Elastic Metal EM-B212X-SSD - Fees - fr-par-1 + (115.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":115,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 2600 or equivalent, x64, Sockets: 2, Cores per socket: 8, Threads per + core: 2, Frequency: 2.6 GHz, Benchmark: 5295","arch":"x64","type":"Intel Xeon + E5 2600 or equivalent","physical":{"sockets":2,"cores_per_socket":8,"threads_per_core":2,"frequency":2600000000,"benchmark":5295},"threads":32},"ram":{"description":"256 + GiB DDR3","size":274877906944,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 1.02 TB SSD","total":2048419086336},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Beryllium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b220e-nvme/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-B220E-NVMe","variant":"Elastic Metal EM-B220E-NVMe + - Hourly - fr-par-1","description":"Elastic Metal EM-B220E-NVMe - Hourly - fr-par-1 + (0.333€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":333000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7232P, x64, Sockets: 1, Cores per socket: 8, Threads per core: 2, Frequency: + 3.1 GHz, Benchmark: 17017","arch":"x64","type":"AMD EPYC 7232P","physical":{"sockets":1,"cores_per_socket":8,"threads_per_core":2,"frequency":3100000000,"benchmark":17017},"threads":16},"ram":{"description":"64 + GiB DDR4","size":68719476736,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 1.02 TB NVMe","total":2048419086336},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Beryllium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.020701053,"m3_water_usage":0.0000018133492},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b220e-nvme/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-B220E-NVMe","variant":"Elastic Metal EM-B220E-NVMe + - Monthly - fr-par-1","description":"Elastic Metal EM-B220E-NVMe - Monthly - + fr-par-1 (119.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":119,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7232P, x64, Sockets: 1, Cores per socket: 8, Threads per core: 2, Frequency: + 3.1 GHz, Benchmark: 17017","arch":"x64","type":"AMD EPYC 7232P","physical":{"sockets":1,"cores_per_socket":8,"threads_per_core":2,"frequency":3100000000,"benchmark":17017},"threads":16},"ram":{"description":"64 + GiB DDR4","size":68719476736,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 1.02 TB NVMe","total":2048419086336},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Beryllium"}},"environmental_impact_estimation":{"kg_co2_equivalent":15.111769,"m3_water_usage":0.0013237449},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b220e-nvme/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-B220E-NVMe","variant":"Elastic Metal EM-B220E-NVMe + - Fees - fr-par-1","description":"Elastic Metal EM-B220E-NVMe - Fees - fr-par-1 + (119.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":119,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7232P, x64, Sockets: 1, Cores per socket: 8, Threads per core: 2, Frequency: + 3.1 GHz, Benchmark: 17017","arch":"x64","type":"AMD EPYC 7232P","physical":{"sockets":1,"cores_per_socket":8,"threads_per_core":2,"frequency":3100000000,"benchmark":17017},"threads":16},"ram":{"description":"64 + GiB DDR4","size":68719476736,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 1.02 TB NVMe","total":2048419086336},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Beryllium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b320e-nvme/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-B320E-NVMe","variant":"Elastic Metal EM-B320E-NVMe + - Hourly - fr-par-1","description":"Elastic Metal EM-B320E-NVMe - Hourly - fr-par-1 + (0.417€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":417000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7232P, x64, Sockets: 1, Cores per socket: 8, Threads per core: 2, Frequency: + 3.1 GHz, Benchmark: 17017","arch":"x64","type":"AMD EPYC 7232P","physical":{"sockets":1,"cores_per_socket":8,"threads_per_core":2,"frequency":3100000000,"benchmark":17017},"threads":16},"ram":{"description":"128 + GiB DDR4","size":137438953472,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 2.05 TB NVMe","total":4096816496640},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Beryllium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.025581174,"m3_water_usage":0.0000020053508},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b320e-nvme/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-B320E-NVMe","variant":"Elastic Metal EM-B320E-NVMe + - Monthly - fr-par-1","description":"Elastic Metal EM-B320E-NVMe - Monthly - + fr-par-1 (149.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":149,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7232P, x64, Sockets: 1, Cores per socket: 8, Threads per core: 2, Frequency: + 3.1 GHz, Benchmark: 17017","arch":"x64","type":"AMD EPYC 7232P","physical":{"sockets":1,"cores_per_socket":8,"threads_per_core":2,"frequency":3100000000,"benchmark":17017},"threads":16},"ram":{"description":"128 + GiB DDR4","size":137438953472,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 2.05 TB NVMe","total":4096816496640},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Beryllium"}},"environmental_impact_estimation":{"kg_co2_equivalent":18.674257,"m3_water_usage":0.0014639061},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b320e-nvme/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-B320E-NVMe","variant":"Elastic Metal EM-B320E-NVMe + - Fees - fr-par-1","description":"Elastic Metal EM-B320E-NVMe - Fees - fr-par-1 + (149.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":149,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7232P, x64, Sockets: 1, Cores per socket: 8, Threads per core: 2, Frequency: + 3.1 GHz, Benchmark: 17017","arch":"x64","type":"AMD EPYC 7232P","physical":{"sockets":1,"cores_per_socket":8,"threads_per_core":2,"frequency":3100000000,"benchmark":17017},"threads":16},"ram":{"description":"128 + GiB DDR4","size":137438953472,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 2.05 TB NVMe","total":4096816496640},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Beryllium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b420e-nvme/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-B420E-NVMe","variant":"Elastic Metal EM-B420E-NVMe + - Hourly - fr-par-1","description":"Elastic Metal EM-B420E-NVMe - Hourly - fr-par-1 + (0.444€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":444000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7272, x64, Sockets: 1, Cores per socket: 12, Threads per core: 2, Frequency: + 2.9 GHz, Benchmark: 25568","arch":"x64","type":"AMD EPYC 7272","physical":{"sockets":1,"cores_per_socket":12,"threads_per_core":2,"frequency":2900000000,"benchmark":25568},"threads":24},"ram":{"description":"128 + GiB DDR4","size":137438953472,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 1.02 TB NVMe","total":2048419086336},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Beryllium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.0227939,"m3_water_usage":0.0000018133492},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b420e-nvme/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-B420E-NVMe","variant":"Elastic Metal EM-B420E-NVMe + - Monthly - fr-par-1","description":"Elastic Metal EM-B420E-NVMe - Monthly - + fr-par-1 (159.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":159,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7272, x64, Sockets: 1, Cores per socket: 12, Threads per core: 2, Frequency: + 2.9 GHz, Benchmark: 25568","arch":"x64","type":"AMD EPYC 7272","physical":{"sockets":1,"cores_per_socket":12,"threads_per_core":2,"frequency":2900000000,"benchmark":25568},"threads":24},"ram":{"description":"128 + GiB DDR4","size":137438953472,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 1.02 TB NVMe","total":2048419086336},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Beryllium"}},"environmental_impact_estimation":{"kg_co2_equivalent":16.639547,"m3_water_usage":0.0013237449},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b420e-nvme/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-B420E-NVMe","variant":"Elastic Metal EM-B420E-NVMe + - Fees - fr-par-1","description":"Elastic Metal EM-B420E-NVMe - Fees - fr-par-1 + (159.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":159,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7272, x64, Sockets: 1, Cores per socket: 12, Threads per core: 2, Frequency: + 2.9 GHz, Benchmark: 25568","arch":"x64","type":"AMD EPYC 7272","physical":{"sockets":1,"cores_per_socket":12,"threads_per_core":2,"frequency":2900000000,"benchmark":25568},"threads":24},"ram":{"description":"128 + GiB DDR4","size":137438953472,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 1.02 TB NVMe","total":2048419086336},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Beryllium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b520e-nvme/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-B520E-NVMe","variant":"Elastic Metal EM-B520E-NVMe + - Hourly - fr-par-1","description":"Elastic Metal EM-B520E-NVMe - Hourly - fr-par-1 + (0.528€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":528000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7272, x64, Sockets: 1, Cores per socket: 12, Threads per core: 2, Frequency: + 2.9 GHz, Benchmark: 25568","arch":"x64","type":"AMD EPYC 7272","physical":{"sockets":1,"cores_per_socket":12,"threads_per_core":2,"frequency":2900000000,"benchmark":25568},"threads":24},"ram":{"description":"256 + GiB DDR4","size":274877906944,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 2.05 TB NVMe","total":4096816496640},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Beryllium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.031743426,"m3_water_usage":0.000002218686},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b520e-nvme/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-B520E-NVMe","variant":"Elastic Metal EM-B520E-NVMe + - Monthly - fr-par-1","description":"Elastic Metal EM-B520E-NVMe - Monthly - + fr-par-1 (189.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":189,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7272, x64, Sockets: 1, Cores per socket: 12, Threads per core: 2, Frequency: + 2.9 GHz, Benchmark: 25568","arch":"x64","type":"AMD EPYC 7272","physical":{"sockets":1,"cores_per_socket":12,"threads_per_core":2,"frequency":2900000000,"benchmark":25568},"threads":24},"ram":{"description":"256 + GiB DDR4","size":274877906944,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 2.05 TB NVMe","total":4096816496640},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Beryllium"}},"environmental_impact_estimation":{"kg_co2_equivalent":23.1727,"m3_water_usage":0.0016196407},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-b520e-nvme/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-B520E-NVMe","variant":"Elastic Metal EM-B520E-NVMe + - Fees - fr-par-1","description":"Elastic Metal EM-B520E-NVMe - Fees - fr-par-1 + (189.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":189,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7272, x64, Sockets: 1, Cores per socket: 12, Threads per core: 2, Frequency: + 2.9 GHz, Benchmark: 25568","arch":"x64","type":"AMD EPYC 7272","physical":{"sockets":1,"cores_per_socket":12,"threads_per_core":2,"frequency":2900000000,"benchmark":25568},"threads":24},"ram":{"description":"256 + GiB DDR4","size":274877906944,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 2.05 TB NVMe","total":4096816496640},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Beryllium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-l101x-sata/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-L101X-SATA","variant":"Elastic Metal EM-L101X-SATA + - Hourly - fr-par-1","description":"Elastic Metal EM-L101X-SATA - Hourly - fr-par-1 + (0.122€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":122000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 1410 v2, x64, Sockets: 1, Cores per socket: 4, Threads per core: 2, + Frequency: 2.8 GHz, Benchmark: 5715","arch":"x64","type":"Intel Xeon E5 1410 + v2","physical":{"sockets":1,"cores_per_socket":4,"threads_per_core":2,"frequency":2800000000,"benchmark":5715},"threads":8},"ram":{"description":"96 + GiB DDR3","size":103079215104,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 6 TB HDD","total":12002350252032},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Lithium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.019956945,"m3_water_usage":0.000001642681},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-l101x-sata/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-L101X-SATA","variant":"Elastic Metal EM-L101X-SATA + - Monthly - fr-par-1","description":"Elastic Metal EM-L101X-SATA - Monthly - + fr-par-1 (43.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":43,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 1410 v2, x64, Sockets: 1, Cores per socket: 4, Threads per core: 2, + Frequency: 2.8 GHz, Benchmark: 5715","arch":"x64","type":"Intel Xeon E5 1410 + v2","physical":{"sockets":1,"cores_per_socket":4,"threads_per_core":2,"frequency":2800000000,"benchmark":5715},"threads":8},"ram":{"description":"96 + GiB DDR3","size":103079215104,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 6 TB HDD","total":12002350252032},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Lithium"}},"environmental_impact_estimation":{"kg_co2_equivalent":14.568569,"m3_water_usage":0.0011991571},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-l101x-sata/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-L101X-SATA","variant":"Elastic Metal EM-L101X-SATA + - Fees - fr-par-1","description":"Elastic Metal EM-L101X-SATA - Fees - fr-par-1 + (43.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":43,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 1410 v2, x64, Sockets: 1, Cores per socket: 4, Threads per core: 2, + Frequency: 2.8 GHz, Benchmark: 5715","arch":"x64","type":"Intel Xeon E5 1410 + v2","physical":{"sockets":1,"cores_per_socket":4,"threads_per_core":2,"frequency":2800000000,"benchmark":5715},"threads":8},"ram":{"description":"96 + GiB DDR3","size":103079215104,"type":"DDR3"},"storage":{"description":"Fixed + local: 2 x 6 TB HDD","total":12002350252032},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Lithium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-l105x-sata/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-L105X-SATA","variant":"Elastic Metal EM-L105X-SATA + - Hourly - fr-par-1","description":"Elastic Metal EM-L105X-SATA - Hourly - fr-par-1 + (0.213€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":213000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 1410 v2, x64, Sockets: 1, Cores per socket: 4, Threads per core: 2, + Frequency: 2.8 GHz, Benchmark: 5715","arch":"x64","type":"Intel Xeon E5 1410 + v2","physical":{"sockets":1,"cores_per_socket":4,"threads_per_core":2,"frequency":2800000000,"benchmark":5715},"threads":8},"ram":{"description":"96 + GiB DDR3","size":103079215104,"type":"DDR3"},"storage":{"description":"Fixed + local: 4 x 6 TB HDD","total":24004700504064},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Lithium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.021520233,"m3_water_usage":0.0000017066816},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-l105x-sata/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-L105X-SATA","variant":"Elastic Metal EM-L105X-SATA + - Monthly - fr-par-1","description":"Elastic Metal EM-L105X-SATA - Monthly - + fr-par-1 (76.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":76,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 1410 v2, x64, Sockets: 1, Cores per socket: 4, Threads per core: 2, + Frequency: 2.8 GHz, Benchmark: 5715","arch":"x64","type":"Intel Xeon E5 1410 + v2","physical":{"sockets":1,"cores_per_socket":4,"threads_per_core":2,"frequency":2800000000,"benchmark":5715},"threads":8},"ram":{"description":"96 + GiB DDR3","size":103079215104,"type":"DDR3"},"storage":{"description":"Fixed + local: 4 x 6 TB HDD","total":24004700504064},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Lithium"}},"environmental_impact_estimation":{"kg_co2_equivalent":15.709769,"m3_water_usage":0.0012458775},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-l105x-sata/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-L105X-SATA","variant":"Elastic Metal EM-L105X-SATA + - Fees - fr-par-1","description":"Elastic Metal EM-L105X-SATA - Fees - fr-par-1 + (76.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":76,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 1410 v2, x64, Sockets: 1, Cores per socket: 4, Threads per core: 2, + Frequency: 2.8 GHz, Benchmark: 5715","arch":"x64","type":"Intel Xeon E5 1410 + v2","physical":{"sockets":1,"cores_per_socket":4,"threads_per_core":2,"frequency":2800000000,"benchmark":5715},"threads":8},"ram":{"description":"96 + GiB DDR3","size":103079215104,"type":"DDR3"},"storage":{"description":"Fixed + local: 4 x 6 TB HDD","total":24004700504064},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Lithium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-l110x-sata/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-L110X-SATA","variant":"Elastic Metal EM-L110X-SATA + - Hourly - fr-par-1","description":"Elastic Metal EM-L110X-SATA - Hourly - fr-par-1 + (0.366€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":366000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 1410 v2, x64, Sockets: 1, Cores per socket: 4, Threads per core: 2, + Frequency: 2.8 GHz, Benchmark: 5715","arch":"x64","type":"Intel Xeon E5 1410 + v2","physical":{"sockets":1,"cores_per_socket":4,"threads_per_core":2,"frequency":2800000000,"benchmark":5715},"threads":8},"ram":{"description":"96 + GiB DDR3","size":103079215104,"type":"DDR3"},"storage":{"description":"Fixed + local: 4 x 12 TB HDD","total":48000554500096},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Lithium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.021520233,"m3_water_usage":0.0000017066816},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-l110x-sata/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-L110X-SATA","variant":"Elastic Metal EM-L110X-SATA + - Monthly - fr-par-1","description":"Elastic Metal EM-L110X-SATA - Monthly - + fr-par-1 (131.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":131,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 1410 v2, x64, Sockets: 1, Cores per socket: 4, Threads per core: 2, + Frequency: 2.8 GHz, Benchmark: 5715","arch":"x64","type":"Intel Xeon E5 1410 + v2","physical":{"sockets":1,"cores_per_socket":4,"threads_per_core":2,"frequency":2800000000,"benchmark":5715},"threads":8},"ram":{"description":"96 + GiB DDR3","size":103079215104,"type":"DDR3"},"storage":{"description":"Fixed + local: 4 x 12 TB HDD","total":48000554500096},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Lithium"}},"environmental_impact_estimation":{"kg_co2_equivalent":15.709769,"m3_water_usage":0.0012458775},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-l110x-sata/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-L110X-SATA","variant":"Elastic Metal EM-L110X-SATA + - Fees - fr-par-1","description":"Elastic Metal EM-L110X-SATA - Fees - fr-par-1 + (131.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":131,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"Intel + Xeon E5 1410 v2, x64, Sockets: 1, Cores per socket: 4, Threads per core: 2, + Frequency: 2.8 GHz, Benchmark: 5715","arch":"x64","type":"Intel Xeon E5 1410 + v2","physical":{"sockets":1,"cores_per_socket":4,"threads_per_core":2,"frequency":2800000000,"benchmark":5715},"threads":8},"ram":{"description":"96 + GiB DDR3","size":103079215104,"type":"DDR3"},"storage":{"description":"Fixed + local: 4 x 12 TB HDD","total":48000554500096},"network":{"description":"Internal: + 1 Gb/s, Public: 1 Gb/s","internal_bandwidth":1000000000,"public_bandwidth":1000000000,"max_public_bandwidth":1000000000}},"elastic_metal":{"range":"Lithium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-l220e-nvme/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-L220E-NVMe","variant":"Elastic Metal EM-L220E-NVMe + - Hourly - fr-par-1","description":"Elastic Metal EM-L220E-NVMe - Hourly - fr-par-1 + (0.685€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":685000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7232P, x64, Sockets: 1, Cores per socket: 8, Threads per core: 2, Frequency: + 3.1 GHz, Benchmark: 17017","arch":"x64","type":"AMD EPYC 7232P","physical":{"sockets":1,"cores_per_socket":8,"threads_per_core":2,"frequency":3100000000,"benchmark":17017},"threads":16},"ram":{"description":"64 + GiB DDR4","size":68719476736,"type":"DDR4"},"storage":{"description":"Fixed + local: 4 x 2.05 TB NVMe","total":8193632993280},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Lithium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.025267264,"m3_water_usage":0.0000018133492},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-l220e-nvme/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-L220E-NVMe","variant":"Elastic Metal EM-L220E-NVMe + - Monthly - fr-par-1","description":"Elastic Metal EM-L220E-NVMe - Monthly - + fr-par-1 (249.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":249,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7232P, x64, Sockets: 1, Cores per socket: 8, Threads per core: 2, Frequency: + 3.1 GHz, Benchmark: 17017","arch":"x64","type":"AMD EPYC 7232P","physical":{"sockets":1,"cores_per_socket":8,"threads_per_core":2,"frequency":3100000000,"benchmark":17017},"threads":16},"ram":{"description":"64 + GiB DDR4","size":68719476736,"type":"DDR4"},"storage":{"description":"Fixed + local: 4 x 2.05 TB NVMe","total":8193632993280},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Lithium"}},"environmental_impact_estimation":{"kg_co2_equivalent":18.445103,"m3_water_usage":0.0013237449},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-l220e-nvme/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-L220E-NVMe","variant":"Elastic Metal EM-L220E-NVMe + - Fees - fr-par-1","description":"Elastic Metal EM-L220E-NVMe - Fees - fr-par-1 + (249.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":249,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7232P, x64, Sockets: 1, Cores per socket: 8, Threads per core: 2, Frequency: + 3.1 GHz, Benchmark: 17017","arch":"x64","type":"AMD EPYC 7232P","physical":{"sockets":1,"cores_per_socket":8,"threads_per_core":2,"frequency":3100000000,"benchmark":17017},"threads":16},"ram":{"description":"64 + GiB DDR4","size":68719476736,"type":"DDR4"},"storage":{"description":"Fixed + local: 4 x 2.05 TB NVMe","total":8193632993280},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Lithium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-l420e-nvme/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-L420E-NVMe","variant":"Elastic Metal EM-L420E-NVMe + - Hourly - fr-par-1","description":"Elastic Metal EM-L420E-NVMe - Hourly - fr-par-1 + (1.014€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":1,"nanos":14000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7272, x64, Sockets: 1, Cores per socket: 12, Threads per core: 2, Frequency: + 2.9 GHz, Benchmark: 25568","arch":"x64","type":"AMD EPYC 7272","physical":{"sockets":1,"cores_per_socket":12,"threads_per_core":2,"frequency":2900000000,"benchmark":25568},"threads":24},"ram":{"description":"128 + GiB DDR4","size":137438953472,"type":"DDR4"},"storage":{"description":"Fixed + local: 4 x 4 TB NVMe","total":16003148120064},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Lithium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.033439927,"m3_water_usage":0.0000018986832},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-l420e-nvme/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-L420E-NVMe","variant":"Elastic Metal EM-L420E-NVMe + - Monthly - fr-par-1","description":"Elastic Metal EM-L420E-NVMe - Monthly - + fr-par-1 (369.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":369,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7272, x64, Sockets: 1, Cores per socket: 12, Threads per core: 2, Frequency: + 2.9 GHz, Benchmark: 25568","arch":"x64","type":"AMD EPYC 7272","physical":{"sockets":1,"cores_per_socket":12,"threads_per_core":2,"frequency":2900000000,"benchmark":25568},"threads":24},"ram":{"description":"128 + GiB DDR4","size":137438953472,"type":"DDR4"},"storage":{"description":"Fixed + local: 4 x 4 TB NVMe","total":16003148120064},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Lithium"}},"environmental_impact_estimation":{"kg_co2_equivalent":24.411146,"m3_water_usage":0.0013860387},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-l420e-nvme/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-L420E-NVMe","variant":"Elastic Metal EM-L420E-NVMe + - Fees - fr-par-1","description":"Elastic Metal EM-L420E-NVMe - Fees - fr-par-1 + (369.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":369,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7272, x64, Sockets: 1, Cores per socket: 12, Threads per core: 2, Frequency: + 2.9 GHz, Benchmark: 25568","arch":"x64","type":"AMD EPYC 7272","physical":{"sockets":1,"cores_per_socket":12,"threads_per_core":2,"frequency":2900000000,"benchmark":25568},"threads":24},"ram":{"description":"128 + GiB DDR4","size":137438953472,"type":"DDR4"},"storage":{"description":"Fixed + local: 4 x 4 TB NVMe","total":16003148120064},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Lithium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i120e-nvme/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-I120E-NVMe","variant":"Elastic Metal EM-I120E-NVMe + - Hourly - fr-par-1","description":"Elastic Metal EM-I120E-NVMe - Hourly - fr-par-1 + (0.356€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":356000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8024P, x64, Sockets: 1, Cores per socket: 8, Threads per core: 2, Frequency: + 2.4 GHz, Benchmark: 20556","arch":"x64","type":"AMD EPYC 8024P","physical":{"sockets":1,"cores_per_socket":8,"threads_per_core":2,"frequency":2400000000,"benchmark":20556},"threads":16},"ram":{"description":"64 + GiB DDR5","size":68719476736,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 960 GB NVMe","total":1920000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.021073107,"m3_water_usage":0.0000018986832},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i120e-nvme/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-I120E-NVMe","variant":"Elastic Metal EM-I120E-NVMe + - Monthly - fr-par-1","description":"Elastic Metal EM-I120E-NVMe - Monthly - + fr-par-1 (129.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":129,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8024P, x64, Sockets: 1, Cores per socket: 8, Threads per core: 2, Frequency: + 2.4 GHz, Benchmark: 20556","arch":"x64","type":"AMD EPYC 8024P","physical":{"sockets":1,"cores_per_socket":8,"threads_per_core":2,"frequency":2400000000,"benchmark":20556},"threads":16},"ram":{"description":"64 + GiB DDR5","size":68719476736,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 960 GB NVMe","total":1920000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"environmental_impact_estimation":{"kg_co2_equivalent":15.3833685,"m3_water_usage":0.0013860387},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i120e-nvme/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-I120E-NVMe","variant":"Elastic Metal EM-I120E-NVMe + - Fees - fr-par-1","description":"Elastic Metal EM-I120E-NVMe - Fees - fr-par-1 + (129.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":129,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8024P, x64, Sockets: 1, Cores per socket: 8, Threads per core: 2, Frequency: + 2.4 GHz, Benchmark: 20556","arch":"x64","type":"AMD EPYC 8024P","physical":{"sockets":1,"cores_per_socket":8,"threads_per_core":2,"frequency":2400000000,"benchmark":20556},"threads":16},"ram":{"description":"64 + GiB DDR5","size":68719476736,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 960 GB NVMe","total":1920000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i220e-nvme/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-I220E-NVMe","variant":"Elastic Metal EM-I220E-NVMe + - Hourly - fr-par-1","description":"Elastic Metal EM-I220E-NVMe - Hourly - fr-par-1 + (0.548€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":548000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8124P, x64, Sockets: 1, Cores per socket: 16, Threads per core: 2, Frequency: + 2.45 GHz, Benchmark: 36338","arch":"x64","type":"AMD EPYC 8124P","physical":{"sockets":1,"cores_per_socket":16,"threads_per_core":2,"frequency":2450000000,"benchmark":36338},"threads":32},"ram":{"description":"128 + GiB DDR5","size":137438953472,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 960 GB NVMe","total":1920000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.024902573,"m3_water_usage":0.000002133352},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i220e-nvme/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-I220E-NVMe","variant":"Elastic Metal EM-I220E-NVMe + - Monthly - fr-par-1","description":"Elastic Metal EM-I220E-NVMe - Monthly - + fr-par-1 (199.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":199,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8124P, x64, Sockets: 1, Cores per socket: 16, Threads per core: 2, Frequency: + 2.45 GHz, Benchmark: 36338","arch":"x64","type":"AMD EPYC 8124P","physical":{"sockets":1,"cores_per_socket":16,"threads_per_core":2,"frequency":2450000000,"benchmark":36338},"threads":32},"ram":{"description":"128 + GiB DDR5","size":137438953472,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 960 GB NVMe","total":1920000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"environmental_impact_estimation":{"kg_co2_equivalent":18.178879,"m3_water_usage":0.0015573469},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i220e-nvme/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-I220E-NVMe","variant":"Elastic Metal EM-I220E-NVMe + - Fees - fr-par-1","description":"Elastic Metal EM-I220E-NVMe - Fees - fr-par-1 + (199.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":199,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8124P, x64, Sockets: 1, Cores per socket: 16, Threads per core: 2, Frequency: + 2.45 GHz, Benchmark: 36338","arch":"x64","type":"AMD EPYC 8124P","physical":{"sockets":1,"cores_per_socket":16,"threads_per_core":2,"frequency":2450000000,"benchmark":36338},"threads":32},"ram":{"description":"128 + GiB DDR5","size":137438953472,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 960 GB NVMe","total":1920000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i210e-nvme/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-I210E-NVMe","variant":"Elastic Metal EM-I210E-NVMe + - Hourly - fr-par-1","description":"Elastic Metal EM-I210E-NVMe - Hourly - fr-par-1 + (0.667€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":667000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7313P, x64, Sockets: 1, Cores per socket: 16, Threads per core: 2, Frequency: + 3 GHz, Benchmark: 41609","arch":"x64","type":"AMD EPYC 7313P","physical":{"sockets":1,"cores_per_socket":16,"threads_per_core":2,"frequency":3000000000,"benchmark":41609},"threads":32},"ram":{"description":"128 + GiB DDR4","size":137438953472,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 1.92 TB NVMe","total":3840766820352},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Iridium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.02974884,"m3_water_usage":0.0000026666899},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i210e-nvme/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-I210E-NVMe","variant":"Elastic Metal EM-I210E-NVMe + - Monthly - fr-par-1","description":"Elastic Metal EM-I210E-NVMe - Monthly - + fr-par-1 (239.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":239,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7313P, x64, Sockets: 1, Cores per socket: 16, Threads per core: 2, Frequency: + 3 GHz, Benchmark: 41609","arch":"x64","type":"AMD EPYC 7313P","physical":{"sockets":1,"cores_per_socket":16,"threads_per_core":2,"frequency":3000000000,"benchmark":41609},"threads":32},"ram":{"description":"128 + GiB DDR4","size":137438953472,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 1.92 TB NVMe","total":3840766820352},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Iridium"}},"environmental_impact_estimation":{"kg_co2_equivalent":21.716654,"m3_water_usage":0.0019466836},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i210e-nvme/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-I210E-NVMe","variant":"Elastic Metal EM-I210E-NVMe + - Fees - fr-par-1","description":"Elastic Metal EM-I210E-NVMe - Fees - fr-par-1 + (239.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":239,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7313P, x64, Sockets: 1, Cores per socket: 16, Threads per core: 2, Frequency: + 3 GHz, Benchmark: 41609","arch":"x64","type":"AMD EPYC 7313P","physical":{"sockets":1,"cores_per_socket":16,"threads_per_core":2,"frequency":3000000000,"benchmark":41609},"threads":32},"ram":{"description":"128 + GiB DDR4","size":137438953472,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 1.92 TB NVMe","total":3840766820352},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Iridium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i320e-nvme/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-I320E-NVMe","variant":"Elastic Metal EM-I320E-NVMe + - Hourly - fr-par-1","description":"Elastic Metal EM-I320E-NVMe - Hourly - fr-par-1 + (0.822€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":822000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8224P, x64, Sockets: 1, Cores per socket: 24, Threads per core: 2, Frequency: + 2.55 GHz, Benchmark: 45160","arch":"x64","type":"AMD EPYC 8224P","physical":{"sockets":1,"cores_per_socket":24,"threads_per_core":2,"frequency":2550000000,"benchmark":45160},"threads":48},"ram":{"description":"192 + GiB DDR5","size":206158430208,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 1.92 TB NVMe","total":3840000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.02936096,"m3_water_usage":0.000002261353},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i320e-nvme/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-I320E-NVMe","variant":"Elastic Metal EM-I320E-NVMe + - Monthly - fr-par-1","description":"Elastic Metal EM-I320E-NVMe - Monthly - + fr-par-1 (299.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":299,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8224P, x64, Sockets: 1, Cores per socket: 24, Threads per core: 2, Frequency: + 2.55 GHz, Benchmark: 45160","arch":"x64","type":"AMD EPYC 8224P","physical":{"sockets":1,"cores_per_socket":24,"threads_per_core":2,"frequency":2550000000,"benchmark":45160},"threads":48},"ram":{"description":"192 + GiB DDR5","size":206158430208,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 1.92 TB NVMe","total":3840000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"environmental_impact_estimation":{"kg_co2_equivalent":21.4335,"m3_water_usage":0.0016507878},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i320e-nvme/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-I320E-NVMe","variant":"Elastic Metal EM-I320E-NVMe + - Fees - fr-par-1","description":"Elastic Metal EM-I320E-NVMe - Fees - fr-par-1 + (299.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":299,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8224P, x64, Sockets: 1, Cores per socket: 24, Threads per core: 2, Frequency: + 2.55 GHz, Benchmark: 45160","arch":"x64","type":"AMD EPYC 8224P","physical":{"sockets":1,"cores_per_socket":24,"threads_per_core":2,"frequency":2550000000,"benchmark":45160},"threads":48},"ram":{"description":"192 + GiB DDR5","size":206158430208,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 1.92 TB NVMe","total":3840000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i215e-nvme/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-I215E-NVMe","variant":"Elastic Metal EM-I215E-NVMe + - Hourly - fr-par-1","description":"Elastic Metal EM-I215E-NVMe - Hourly - fr-par-1 + (0.904€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":0,"nanos":904000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7313P, x64, Sockets: 1, Cores per socket: 16, Threads per core: 2, Frequency: + 3 GHz, Benchmark: 41609","arch":"x64","type":"AMD EPYC 7313P","physical":{"sockets":1,"cores_per_socket":16,"threads_per_core":2,"frequency":3000000000,"benchmark":41609},"threads":32},"ram":{"description":"256 + GiB DDR4","size":274877906944,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 1.92 TB NVMe","total":3840766820352},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Iridium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.03469557,"m3_water_usage":0.0000026666899},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i215e-nvme/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-I215E-NVMe","variant":"Elastic Metal EM-I215E-NVMe + - Monthly - fr-par-1","description":"Elastic Metal EM-I215E-NVMe - Monthly - + fr-par-1 (329.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":329,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7313P, x64, Sockets: 1, Cores per socket: 16, Threads per core: 2, Frequency: + 3 GHz, Benchmark: 41609","arch":"x64","type":"AMD EPYC 7313P","physical":{"sockets":1,"cores_per_socket":16,"threads_per_core":2,"frequency":3000000000,"benchmark":41609},"threads":32},"ram":{"description":"256 + GiB DDR4","size":274877906944,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 1.92 TB NVMe","total":3840766820352},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Iridium"}},"environmental_impact_estimation":{"kg_co2_equivalent":25.327765,"m3_water_usage":0.0019466836},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i215e-nvme/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-I215E-NVMe","variant":"Elastic Metal EM-I215E-NVMe + - Fees - fr-par-1","description":"Elastic Metal EM-I215E-NVMe - Fees - fr-par-1 + (329.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":329,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 7313P, x64, Sockets: 1, Cores per socket: 16, Threads per core: 2, Frequency: + 3 GHz, Benchmark: 41609","arch":"x64","type":"AMD EPYC 7313P","physical":{"sockets":1,"cores_per_socket":16,"threads_per_core":2,"frequency":3000000000,"benchmark":41609},"threads":32},"ram":{"description":"256 + GiB DDR4","size":274877906944,"type":"DDR4"},"storage":{"description":"Fixed + local: 2 x 1.92 TB NVMe","total":3840766820352},"network":{"description":"Internal: + 10 Gb/s, Public: 1 Gb/s (max 10 Gb/s)","internal_bandwidth":10000000000,"public_bandwidth":1000000000,"max_public_bandwidth":10000000000}},"elastic_metal":{"range":"Iridium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i420e-nvme/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-I420E-NVMe","variant":"Elastic Metal EM-I420E-NVMe + - Hourly - fr-par-1","description":"Elastic Metal EM-I420E-NVMe - Hourly - fr-par-1 + (1.096€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":1,"nanos":96000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8324P, x64, Sockets: 1, Cores per socket: 32, Threads per core: 2, Frequency: + 2.65 GHz, Benchmark: 57127","arch":"x64","type":"AMD EPYC 8324P","physical":{"sockets":1,"cores_per_socket":32,"threads_per_core":2,"frequency":2650000000,"benchmark":57127},"threads":64},"ram":{"description":"256 + GiB DDR5","size":274877906944,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 1.92 TB NVMe","total":3840000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.032586895,"m3_water_usage":0.000002346687},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i420e-nvme/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-I420E-NVMe","variant":"Elastic Metal EM-I420E-NVMe + - Monthly - fr-par-1","description":"Elastic Metal EM-I420E-NVMe - Monthly - + fr-par-1 (399.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":399,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8324P, x64, Sockets: 1, Cores per socket: 32, Threads per core: 2, Frequency: + 2.65 GHz, Benchmark: 57127","arch":"x64","type":"AMD EPYC 8324P","physical":{"sockets":1,"cores_per_socket":32,"threads_per_core":2,"frequency":2650000000,"benchmark":57127},"threads":64},"ram":{"description":"256 + GiB DDR5","size":274877906944,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 1.92 TB NVMe","total":3840000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"environmental_impact_estimation":{"kg_co2_equivalent":23.788433,"m3_water_usage":0.0017130816},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i420e-nvme/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-I420E-NVMe","variant":"Elastic Metal EM-I420E-NVMe + - Fees - fr-par-1","description":"Elastic Metal EM-I420E-NVMe - Fees - fr-par-1 + (399.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":399,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8324P, x64, Sockets: 1, Cores per socket: 32, Threads per core: 2, Frequency: + 2.65 GHz, Benchmark: 57127","arch":"x64","type":"AMD EPYC 8324P","physical":{"sockets":1,"cores_per_socket":32,"threads_per_core":2,"frequency":2650000000,"benchmark":57127},"threads":64},"ram":{"description":"256 + GiB DDR5","size":274877906944,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 1.92 TB NVMe","total":3840000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i520e-nvme/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-I520E-NVMe","variant":"Elastic Metal EM-I520E-NVMe + - Hourly - fr-par-1","description":"Elastic Metal EM-I520E-NVMe - Hourly - fr-par-1 + (1.37€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":1,"nanos":370000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8434P, x64, Sockets: 1, Cores per socket: 48, Threads per core: 2, Frequency: + 2.5 GHz, Benchmark: 66490","arch":"x64","type":"AMD EPYC 8434P","physical":{"sockets":1,"cores_per_socket":48,"threads_per_core":2,"frequency":2500000000,"benchmark":66490},"threads":96},"ram":{"description":"384 + GiB DDR5","size":412316860416,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 3.84 TB NVMe","total":7680000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.041603025,"m3_water_usage":0.0000025600223},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i520e-nvme/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-I520E-NVMe","variant":"Elastic Metal EM-I520E-NVMe + - Monthly - fr-par-1","description":"Elastic Metal EM-I520E-NVMe - Monthly - + fr-par-1 (499.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":499,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8434P, x64, Sockets: 1, Cores per socket: 48, Threads per core: 2, Frequency: + 2.5 GHz, Benchmark: 66490","arch":"x64","type":"AMD EPYC 8434P","physical":{"sockets":1,"cores_per_socket":48,"threads_per_core":2,"frequency":2500000000,"benchmark":66490},"threads":96},"ram":{"description":"384 + GiB DDR5","size":412316860416,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 3.84 TB NVMe","total":7680000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"environmental_impact_estimation":{"kg_co2_equivalent":30.370209,"m3_water_usage":0.0018688163},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i520e-nvme/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-I520E-NVMe","variant":"Elastic Metal EM-I520E-NVMe + - Fees - fr-par-1","description":"Elastic Metal EM-I520E-NVMe - Fees - fr-par-1 + (499.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":499,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8434P, x64, Sockets: 1, Cores per socket: 48, Threads per core: 2, Frequency: + 2.5 GHz, Benchmark: 66490","arch":"x64","type":"AMD EPYC 8434P","physical":{"sockets":1,"cores_per_socket":48,"threads_per_core":2,"frequency":2500000000,"benchmark":66490},"threads":96},"ram":{"description":"384 + GiB DDR5","size":412316860416,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 3.84 TB NVMe","total":7680000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i620e-nvme/hourly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-I620E-NVMe","variant":"Elastic Metal EM-I620E-NVMe + - Hourly - fr-par-1","description":"Elastic Metal EM-I620E-NVMe - Hourly - fr-par-1 + (1.644€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":1,"nanos":644000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8534P, x64, Sockets: 1, Cores per socket: 64, Threads per core: 2, Frequency: + 2.3 GHz, Benchmark: 71900","arch":"x64","type":"AMD EPYC 8534P","physical":{"sockets":1,"cores_per_socket":64,"threads_per_core":2,"frequency":2300000000,"benchmark":71900},"threads":128},"ram":{"description":"576 + GiB DDR5","size":618475290624,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 3.84 TB NVMe","total":7680000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"environmental_impact_estimation":{"kg_co2_equivalent":0.048575994,"m3_water_usage":0.0000027520239},"unit_of_measure":{"unit":"hour","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i620e-nvme/monthly/run_par1","service_category":"Bare + Metal","product":"Elastic Metal EM-I620E-NVMe","variant":"Elastic Metal EM-I620E-NVMe + - Monthly - fr-par-1","description":"Elastic Metal EM-I620E-NVMe - Monthly - + fr-par-1 (599.99€ per month)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":599,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8534P, x64, Sockets: 1, Cores per socket: 64, Threads per core: 2, Frequency: + 2.3 GHz, Benchmark: 71900","arch":"x64","type":"AMD EPYC 8534P","physical":{"sockets":1,"cores_per_socket":64,"threads_per_core":2,"frequency":2300000000,"benchmark":71900},"threads":128},"ram":{"description":"576 + GiB DDR5","size":618475290624,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 3.84 TB NVMe","total":7680000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"environmental_impact_estimation":{"kg_co2_equivalent":35.460476,"m3_water_usage":0.0020089776},"unit_of_measure":{"unit":"month","size":1},"status":"general_availability"},{"sku":"/baremetal/em-i620e-nvme/monthly/run_par1/fees","service_category":"Bare + Metal","product":"Elastic Metal EM-I620E-NVMe","variant":"Elastic Metal EM-I620E-NVMe + - Fees - fr-par-1","description":"Elastic Metal EM-I620E-NVMe - Fees - fr-par-1 + (599.99€ per setup)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","units":599,"nanos":990000000}},"properties":{"hardware":{"cpu":{"description":"AMD + EPYC 8534P, x64, Sockets: 1, Cores per socket: 64, Threads per core: 2, Frequency: + 2.3 GHz, Benchmark: 71900","arch":"x64","type":"AMD EPYC 8534P","physical":{"sockets":1,"cores_per_socket":64,"threads_per_core":2,"frequency":2300000000,"benchmark":71900},"threads":128},"ram":{"description":"576 + GiB DDR5","size":618475290624,"type":"DDR5"},"storage":{"description":"Fixed + local: 2 x 3.84 TB NVMe","total":7680000000000},"network":{"description":"Internal: + 25 Gb/s, Public: 1 Gb/s (max 25 Gb/s)","internal_bandwidth":25000000000,"public_bandwidth":1000000000,"max_public_bandwidth":25000000000}},"elastic_metal":{"range":"Iridium"}},"unit_of_measure":{"unit":"setup","size":1},"status":"general_availability"}],"total_count":75}' + headers: + Content-Length: + - "90304" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 16:06:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0f1093d0-3a8e-403d-8d82-a3b4207ad825 + status: 200 OK + code: 200 + duration: "" diff --git a/internal/namespaces/baremetal/v1/testdata/test-baremetal-list-offer-monthly.golden b/internal/namespaces/baremetal/v1/testdata/test-baremetal-list-offer-monthly.golden new file mode 100644 index 0000000000..ae6c255784 --- /dev/null +++ b/internal/namespaces/baremetal/v1/testdata/test-baremetal-list-offer-monthly.golden @@ -0,0 +1,1916 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟩🟩🟩 STDOUT️ 🟩🟩🟩️ +ID Name Stock Disks CPUs Memories Options Bandwidth PrivateBandwidth CO2 (kg) Water (m³) +f7241870-c383-4fa2-bbca-5189600df5c4 EM-A115X-SSD available 2 1 1 7 500000000 1000000000 11.918127 0.0009655551 +bd757ca3-a71b-4158-9ef5-39436b6db2a4 EM-L101X-SATA available 2 1 1 7 1000000000 1000000000 14.568569 0.0011991571 +6ec5bbb2-8267-41cd-aaf6-d43ea1b59372 EM-A315X-SSD available 2 1 1 2 1000000000 1000000000 14.701281 0.001261451 +5a505e81-5f6a-42bd-acec-0b290be92697 EM-A410X-SSD empty 2 1 1 8 1000000000 1000000000 13.850215 0.0010901429 +c5853302-63e4-40c7-a711-4a91629565c8 EM-L105X-SATA available 4 1 1 7 1000000000 1000000000 15.709769 0.0012458775 +8c2cf291-a3d3-4dc5-967f-f498a088411d EM-B111X-SATA available 2 2 1 6 1000000000 1000000000 21.451233 0.0018220958 +a5065ba4-dde2-45f3-adec-1ebbb27b766b EM-B112X-SSD available 2 2 1 9 1000000000 1000000000 21.59012 0.0018220958 +c753f736-fbb4-4689-ae93-623f9d08dce5 EM-B211X-SATA empty 2 2 1 9 1000000000 1000000000 21.982878 0.0017130816 +ddaf8ba6-b2b2-4279-8af3-51930fb602f8 EM-B212X-SSD available 2 2 1 9 1000000000 1000000000 24.590876 0.002024551 +a204136d-656b-44b7-9735-88ca2f62cb1f EM-L110X-SATA available 4 1 1 7 1000000000 1000000000 15.709769 0.0012458775 +🟩🟩🟩 JSON STDOUT 🟩🟩🟩 +[ + { + "id": "f7241870-c383-4fa2-bbca-5189600df5c4", + "name": "EM-A115X-SSD", + "stock": "available", + "bandwidth": 500000000, + "max_bandwidth": 1000000000, + "commercial_range": "aluminium", + "price_per_hour": { + "currency_code": "EUR", + "units": 0, + "nanos": 91000000 + }, + "price_per_month": null, + "disks": [ + { + "capacity": 1024209543168, + "type": "SSD" + }, + { + "capacity": 1024209543168, + "type": "SSD" + } + ], + "enable": true, + "cpus": [ + { + "name": "Intel Xeon E3 1220 or equivalent", + "core_count": 4, + "thread_count": 4, + "frequency": 3100, + "benchmark": "3895" + } + ], + "memories": [ + { + "capacity": 32000000000, + "type": "DDR3", + "frequency": 1600, + "is_ecc": true + } + ], + "quota_name": "EM_A115X_SSD", + "persistent_memories": [], + "raid_controllers": [], + "incompatible_os_ids": [ + "6aa3f876-1c83-4434-8cc4-a2dbc94216db", + "2e06fa49-4677-4bd7-8bf5-b1c490d8a966", + "fa29896b-6b49-468d-a787-966559a55c12", + "7fb86682-316e-4f6e-a845-de9b230cdd29", + "e04414b9-16d4-4ffb-8ba1-6b80704c7d2a", + "847bb37a-dc13-4536-9f07-023d38dba98d", + "1c376d8a-f237-438d-9cd9-47902050ffd3", + "bd17a2bb-e686-486a-aacf-44fa8ce6e553", + "bf705b90-1548-4368-98ca-d17dbd8dd860", + "93fb3e11-e02e-47d9-aa3a-f77a2f7a7129", + "69e740ab-9f0e-4107-8516-16470000729c", + "7e865c16-1a63-4dc7-8181-dabc020fc21b", + "b4816d13-8585-4005-a7c7-54a031dd933b", + "4aff4d9d-b1f4-44b0-ab6f-e4711ac11711", + "3422ae02-d6d7-4980-8a00-eb38c262fb41", + "fd771862-4b75-46a7-ab42-73c46c0ac2db", + "a5c00c1b-95b1-4c08-8a33-79cc079f9dac", + "7c70ff80-dbfa-4e07-be73-1de0e60fe175", + "a5cec64e-d7b0-4c6e-a819-60139d30a76c", + "bc7e4ca2-bf32-407f-a04b-72ad6455beb2" + ], + "subscription_period": "hourly", + "operation_path": "", + "fee": { + "currency_code": "EUR", + "units": 0, + "nanos": 0 + }, + "options": [ + { + "id": "83a8fb91-47b4-4c20-82f9-84c31d79bfd8", + "name": "Windows 2022 standard", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 25, + "nanos": 200000000 + }, + "manageable": false, + "os_id": "bf705b90-1548-4368-98ca-d17dbd8dd860", + "license": { + "os_id": "bf705b90-1548-4368-98ca-d17dbd8dd860" + } + }, + { + "id": "9ce714f1-ed03-4e3b-8c69-d46957ab0ebb", + "name": "Public Bandwidth 1Gbps", + "enabled": false, + "subscription_period": "hourly", + "price": { + "currency_code": "EUR", + "units": 0, + "nanos": 28000000 + }, + "manageable": true, + "os_id": "00000000-0000-0000-0000-000000000000", + "public_bandwidth": { + "bandwidth_in_bps": 1000000000 + } + }, + { + "id": "f74a6322-070e-41dd-a13f-8165ea63aca8", + "name": "Windows 2019 datacenter", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 168, + "nanos": 0 + }, + "manageable": false, + "os_id": "e04414b9-16d4-4ffb-8ba1-6b80704c7d2a", + "license": { + "os_id": "e04414b9-16d4-4ffb-8ba1-6b80704c7d2a" + } + }, + { + "id": "cd4158d7-2d65-49be-8803-c4b8ab6f760c", + "name": "Private Network", + "enabled": false, + "subscription_period": "hourly", + "price": { + "currency_code": "EUR", + "units": 0, + "nanos": 30000000 + }, + "manageable": true, + "os_id": "00000000-0000-0000-0000-000000000000", + "private_network": { + "bandwidth_in_bps": 1000000000 + } + }, + { + "id": "931df052-d713-4674-8b58-96a63244c8e2", + "name": "Remote Access", + "enabled": false, + "subscription_period": "hourly", + "price": { + "currency_code": "EUR", + "units": 0, + "nanos": 990000000 + }, + "manageable": true, + "os_id": "00000000-0000-0000-0000-000000000000", + "remote_access": {} + }, + { + "id": "c498071f-4f8d-49f3-bc52-afc219a48fe0", + "name": "Windows 2022 datacenter", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 168, + "nanos": 0 + }, + "manageable": false, + "os_id": "3422ae02-d6d7-4980-8a00-eb38c262fb41", + "license": { + "os_id": "3422ae02-d6d7-4980-8a00-eb38c262fb41" + } + }, + { + "id": "f42a040b-6c91-4b11-beb0-b0b21e641fda", + "name": "Windows 2019 standard", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 25, + "nanos": 200000000 + }, + "manageable": false, + "os_id": "7c70ff80-dbfa-4e07-be73-1de0e60fe175", + "license": { + "os_id": "7c70ff80-dbfa-4e07-be73-1de0e60fe175" + } + } + ], + "private_bandwidth": 1000000000, + "shared_bandwidth": true, + "tags": [ + "install-system-v2" + ], + "gpus": [], + "monthly_offer_id": "f1322af3-53dd-473b-8749-83661fbb73d8", + "kg_co2_equivalent": 11.918127, + "m3_water_usage": 0.0009655551 + }, + { + "id": "bd757ca3-a71b-4158-9ef5-39436b6db2a4", + "name": "EM-L101X-SATA", + "stock": "available", + "bandwidth": 1000000000, + "max_bandwidth": 1000000000, + "commercial_range": "lithium", + "price_per_hour": { + "currency_code": "EUR", + "units": 0, + "nanos": 122000000 + }, + "price_per_month": null, + "disks": [ + { + "capacity": 6001175126016, + "type": "HDD" + }, + { + "capacity": 6001175126016, + "type": "HDD" + } + ], + "enable": true, + "cpus": [ + { + "name": "Intel Xeon E5 1410 v2", + "core_count": 4, + "thread_count": 8, + "frequency": 2800, + "benchmark": "5715" + } + ], + "memories": [ + { + "capacity": 96000000000, + "type": "DDR3", + "frequency": 1600, + "is_ecc": true + } + ], + "quota_name": "EM_L101X_SATA", + "persistent_memories": [], + "raid_controllers": [], + "incompatible_os_ids": [ + "2e06fa49-4677-4bd7-8bf5-b1c490d8a966", + "fa29896b-6b49-468d-a787-966559a55c12", + "bc7e4ca2-bf32-407f-a04b-72ad6455beb2", + "847bb37a-dc13-4536-9f07-023d38dba98d", + "1c376d8a-f237-438d-9cd9-47902050ffd3", + "69e740ab-9f0e-4107-8516-16470000729c", + "93fb3e11-e02e-47d9-aa3a-f77a2f7a7129", + "fd771862-4b75-46a7-ab42-73c46c0ac2db", + "6aa3f876-1c83-4434-8cc4-a2dbc94216db", + "a5cec64e-d7b0-4c6e-a819-60139d30a76c" + ], + "subscription_period": "hourly", + "operation_path": "", + "fee": { + "currency_code": "EUR", + "units": 0, + "nanos": 0 + }, + "options": [ + { + "id": "f42a040b-6c91-4b11-beb0-b0b21e641fda", + "name": "Windows 2019 standard", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 25, + "nanos": 200000000 + }, + "manageable": false, + "os_id": "7c70ff80-dbfa-4e07-be73-1de0e60fe175", + "license": { + "os_id": "7c70ff80-dbfa-4e07-be73-1de0e60fe175" + } + }, + { + "id": "f74a6322-070e-41dd-a13f-8165ea63aca8", + "name": "Windows 2019 datacenter", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 168, + "nanos": 0 + }, + "manageable": false, + "os_id": "e04414b9-16d4-4ffb-8ba1-6b80704c7d2a", + "license": { + "os_id": "e04414b9-16d4-4ffb-8ba1-6b80704c7d2a" + } + }, + { + "id": "931df052-d713-4674-8b58-96a63244c8e2", + "name": "Remote Access", + "enabled": false, + "subscription_period": "hourly", + "price": { + "currency_code": "EUR", + "units": 0, + "nanos": 990000000 + }, + "manageable": true, + "os_id": "00000000-0000-0000-0000-000000000000", + "remote_access": {} + }, + { + "id": "c498071f-4f8d-49f3-bc52-afc219a48fe0", + "name": "Windows 2022 datacenter", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 168, + "nanos": 0 + }, + "manageable": false, + "os_id": "3422ae02-d6d7-4980-8a00-eb38c262fb41", + "license": { + "os_id": "3422ae02-d6d7-4980-8a00-eb38c262fb41" + } + }, + { + "id": "cd4158d7-2d65-49be-8803-c4b8ab6f760c", + "name": "Private Network", + "enabled": false, + "subscription_period": "hourly", + "price": { + "currency_code": "EUR", + "units": 0, + "nanos": 30000000 + }, + "manageable": true, + "os_id": "00000000-0000-0000-0000-000000000000", + "private_network": { + "bandwidth_in_bps": 1000000000 + } + }, + { + "id": "83a8fb91-47b4-4c20-82f9-84c31d79bfd8", + "name": "Windows 2022 standard", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 25, + "nanos": 200000000 + }, + "manageable": false, + "os_id": "bf705b90-1548-4368-98ca-d17dbd8dd860", + "license": { + "os_id": "bf705b90-1548-4368-98ca-d17dbd8dd860" + } + }, + { + "id": "31f78309-e6e0-4005-99b3-b3de3958ca7d", + "name": "HDS", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 15, + "nanos": 0 + }, + "manageable": false, + "os_id": "00000000-0000-0000-0000-000000000000", + "certification": {} + } + ], + "private_bandwidth": 1000000000, + "shared_bandwidth": true, + "tags": [], + "gpus": [], + "monthly_offer_id": "1b067ec1-e383-4756-bbc2-d2ba5a76aa08", + "kg_co2_equivalent": 14.568569, + "m3_water_usage": 0.0011991571 + }, + { + "id": "6ec5bbb2-8267-41cd-aaf6-d43ea1b59372", + "name": "EM-A315X-SSD", + "stock": "available", + "bandwidth": 1000000000, + "max_bandwidth": 1000000000, + "commercial_range": "aluminium", + "price_per_hour": { + "currency_code": "EUR", + "units": 0, + "nanos": 153000000 + }, + "price_per_month": null, + "disks": [ + { + "capacity": 1024209543168, + "type": "SSD" + }, + { + "capacity": 1024209543168, + "type": "SSD" + } + ], + "enable": true, + "cpus": [ + { + "name": "Intel Xeon E5 1410 v2", + "core_count": 4, + "thread_count": 8, + "frequency": 2800, + "benchmark": "5715" + } + ], + "memories": [ + { + "capacity": 64000000000, + "type": "DDR3", + "frequency": 1600, + "is_ecc": true + } + ], + "quota_name": "EM_A315X_SSD", + "persistent_memories": [], + "raid_controllers": [], + "incompatible_os_ids": [ + "a5c00c1b-95b1-4c08-8a33-79cc079f9dac", + "bc7e4ca2-bf32-407f-a04b-72ad6455beb2", + "fd771862-4b75-46a7-ab42-73c46c0ac2db", + "6aa3f876-1c83-4434-8cc4-a2dbc94216db", + "fa29896b-6b49-468d-a787-966559a55c12", + "3ea52186-1e57-499e-8146-ab38051a5c10", + "7e865c16-1a63-4dc7-8181-dabc020fc21b", + "bd17a2bb-e686-486a-aacf-44fa8ce6e553", + "3422ae02-d6d7-4980-8a00-eb38c262fb41", + "a5cec64e-d7b0-4c6e-a819-60139d30a76c", + "7c70ff80-dbfa-4e07-be73-1de0e60fe175", + "69e740ab-9f0e-4107-8516-16470000729c", + "7fb86682-316e-4f6e-a845-de9b230cdd29", + "b4816d13-8585-4005-a7c7-54a031dd933b", + "bf705b90-1548-4368-98ca-d17dbd8dd860", + "e04414b9-16d4-4ffb-8ba1-6b80704c7d2a", + "39176c6e-509d-4e6c-8e42-417d103f4579", + "5dfefb70-053e-4ba8-9d76-537b230db94e", + "1c376d8a-f237-438d-9cd9-47902050ffd3", + "4aff4d9d-b1f4-44b0-ab6f-e4711ac11711", + "847bb37a-dc13-4536-9f07-023d38dba98d", + "93fb3e11-e02e-47d9-aa3a-f77a2f7a7129", + "2e06fa49-4677-4bd7-8bf5-b1c490d8a966" + ], + "subscription_period": "hourly", + "operation_path": "", + "fee": { + "currency_code": "EUR", + "units": 0, + "nanos": 0 + }, + "options": [ + { + "id": "cd4158d7-2d65-49be-8803-c4b8ab6f760c", + "name": "Private Network", + "enabled": false, + "subscription_period": "hourly", + "price": { + "currency_code": "EUR", + "units": 0, + "nanos": 30000000 + }, + "manageable": true, + "os_id": "00000000-0000-0000-0000-000000000000", + "private_network": { + "bandwidth_in_bps": 1000000000 + } + }, + { + "id": "931df052-d713-4674-8b58-96a63244c8e2", + "name": "Remote Access", + "enabled": false, + "subscription_period": "hourly", + "price": { + "currency_code": "EUR", + "units": 0, + "nanos": 990000000 + }, + "manageable": true, + "os_id": "00000000-0000-0000-0000-000000000000", + "remote_access": {} + } + ], + "private_bandwidth": 1000000000, + "shared_bandwidth": true, + "tags": [], + "gpus": [], + "monthly_offer_id": "6b91e989-5251-4d89-b366-0f5565339fdc", + "kg_co2_equivalent": 14.701281, + "m3_water_usage": 0.001261451 + }, + { + "id": "5a505e81-5f6a-42bd-acec-0b290be92697", + "name": "EM-A410X-SSD", + "stock": "empty", + "bandwidth": 1000000000, + "max_bandwidth": 1000000000, + "commercial_range": "aluminium", + "price_per_hour": { + "currency_code": "EUR", + "units": 0, + "nanos": 153000000 + }, + "price_per_month": null, + "disks": [ + { + "capacity": 1024209543168, + "type": "SSD" + }, + { + "capacity": 1024209543168, + "type": "SSD" + } + ], + "enable": true, + "cpus": [ + { + "name": "Intel Xeon E5 1650", + "core_count": 6, + "thread_count": 12, + "frequency": 3200, + "benchmark": "8086" + } + ], + "memories": [ + { + "capacity": 64000000000, + "type": "DDR3", + "frequency": 1600, + "is_ecc": true + } + ], + "quota_name": "EM_A410X_SSD", + "persistent_memories": [], + "raid_controllers": [], + "incompatible_os_ids": [ + "a5c00c1b-95b1-4c08-8a33-79cc079f9dac", + "7c70ff80-dbfa-4e07-be73-1de0e60fe175", + "fd771862-4b75-46a7-ab42-73c46c0ac2db", + "6aa3f876-1c83-4434-8cc4-a2dbc94216db", + "7fb86682-316e-4f6e-a845-de9b230cdd29", + "e04414b9-16d4-4ffb-8ba1-6b80704c7d2a", + "a5cec64e-d7b0-4c6e-a819-60139d30a76c", + "bc7e4ca2-bf32-407f-a04b-72ad6455beb2", + "847bb37a-dc13-4536-9f07-023d38dba98d", + "1c376d8a-f237-438d-9cd9-47902050ffd3", + "93fb3e11-e02e-47d9-aa3a-f77a2f7a7129", + "fa29896b-6b49-468d-a787-966559a55c12", + "bf705b90-1548-4368-98ca-d17dbd8dd860", + "3422ae02-d6d7-4980-8a00-eb38c262fb41", + "69e740ab-9f0e-4107-8516-16470000729c", + "2e06fa49-4677-4bd7-8bf5-b1c490d8a966", + "7e865c16-1a63-4dc7-8181-dabc020fc21b" + ], + "subscription_period": "hourly", + "operation_path": "", + "fee": { + "currency_code": "EUR", + "units": 0, + "nanos": 0 + }, + "options": [ + { + "id": "4b5723e9-5dcc-42e9-afbb-7ee556027051", + "name": "Windows 2025 standard", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 25, + "nanos": 200000000 + }, + "manageable": false, + "os_id": "a5cec64e-d7b0-4c6e-a819-60139d30a76c", + "license": { + "os_id": "a5cec64e-d7b0-4c6e-a819-60139d30a76c" + } + }, + { + "id": "931df052-d713-4674-8b58-96a63244c8e2", + "name": "Remote Access", + "enabled": false, + "subscription_period": "hourly", + "price": { + "currency_code": "EUR", + "units": 0, + "nanos": 990000000 + }, + "manageable": true, + "os_id": "00000000-0000-0000-0000-000000000000", + "remote_access": {} + }, + { + "id": "f42a040b-6c91-4b11-beb0-b0b21e641fda", + "name": "Windows 2019 standard", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 25, + "nanos": 200000000 + }, + "manageable": false, + "os_id": "7c70ff80-dbfa-4e07-be73-1de0e60fe175", + "license": { + "os_id": "7c70ff80-dbfa-4e07-be73-1de0e60fe175" + } + }, + { + "id": "9e3498b1-45ef-4c55-b699-efd66d658cca", + "name": "Windows 2025 datacenter", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 168, + "nanos": 0 + }, + "manageable": false, + "os_id": "bc7e4ca2-bf32-407f-a04b-72ad6455beb2", + "license": { + "os_id": "bc7e4ca2-bf32-407f-a04b-72ad6455beb2" + } + }, + { + "id": "c498071f-4f8d-49f3-bc52-afc219a48fe0", + "name": "Windows 2022 datacenter", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 168, + "nanos": 0 + }, + "manageable": false, + "os_id": "3422ae02-d6d7-4980-8a00-eb38c262fb41", + "license": { + "os_id": "3422ae02-d6d7-4980-8a00-eb38c262fb41" + } + }, + { + "id": "cd4158d7-2d65-49be-8803-c4b8ab6f760c", + "name": "Private Network", + "enabled": false, + "subscription_period": "hourly", + "price": { + "currency_code": "EUR", + "units": 0, + "nanos": 30000000 + }, + "manageable": true, + "os_id": "00000000-0000-0000-0000-000000000000", + "private_network": { + "bandwidth_in_bps": 1000000000 + } + }, + { + "id": "83a8fb91-47b4-4c20-82f9-84c31d79bfd8", + "name": "Windows 2022 standard", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 25, + "nanos": 200000000 + }, + "manageable": false, + "os_id": "bf705b90-1548-4368-98ca-d17dbd8dd860", + "license": { + "os_id": "bf705b90-1548-4368-98ca-d17dbd8dd860" + } + }, + { + "id": "f74a6322-070e-41dd-a13f-8165ea63aca8", + "name": "Windows 2019 datacenter", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 168, + "nanos": 0 + }, + "manageable": false, + "os_id": "e04414b9-16d4-4ffb-8ba1-6b80704c7d2a", + "license": { + "os_id": "e04414b9-16d4-4ffb-8ba1-6b80704c7d2a" + } + } + ], + "private_bandwidth": 1000000000, + "shared_bandwidth": true, + "tags": [], + "gpus": [], + "monthly_offer_id": "7adc4a66-da70-40e3-856b-7b952b77fbf9", + "kg_co2_equivalent": 13.850215, + "m3_water_usage": 0.0010901429 + }, + { + "id": "c5853302-63e4-40c7-a711-4a91629565c8", + "name": "EM-L105X-SATA", + "stock": "available", + "bandwidth": 1000000000, + "max_bandwidth": 1000000000, + "commercial_range": "lithium", + "price_per_hour": { + "currency_code": "EUR", + "units": 0, + "nanos": 213000000 + }, + "price_per_month": null, + "disks": [ + { + "capacity": 6001175126016, + "type": "HDD" + }, + { + "capacity": 6001175126016, + "type": "HDD" + }, + { + "capacity": 6001175126016, + "type": "HDD" + }, + { + "capacity": 6001175126016, + "type": "HDD" + } + ], + "enable": true, + "cpus": [ + { + "name": "Intel Xeon E5 1410 v2", + "core_count": 4, + "thread_count": 8, + "frequency": 2800, + "benchmark": "5715" + } + ], + "memories": [ + { + "capacity": 96000000000, + "type": "DDR3", + "frequency": 1600, + "is_ecc": true + } + ], + "quota_name": "EM_L105X_SATA", + "persistent_memories": [], + "raid_controllers": [], + "incompatible_os_ids": [ + "1c376d8a-f237-438d-9cd9-47902050ffd3", + "2e06fa49-4677-4bd7-8bf5-b1c490d8a966", + "fa29896b-6b49-468d-a787-966559a55c12", + "bc7e4ca2-bf32-407f-a04b-72ad6455beb2", + "847bb37a-dc13-4536-9f07-023d38dba98d", + "69e740ab-9f0e-4107-8516-16470000729c", + "93fb3e11-e02e-47d9-aa3a-f77a2f7a7129", + "fd771862-4b75-46a7-ab42-73c46c0ac2db", + "6aa3f876-1c83-4434-8cc4-a2dbc94216db", + "a5cec64e-d7b0-4c6e-a819-60139d30a76c" + ], + "subscription_period": "hourly", + "operation_path": "", + "fee": { + "currency_code": "EUR", + "units": 0, + "nanos": 0 + }, + "options": [ + { + "id": "931df052-d713-4674-8b58-96a63244c8e2", + "name": "Remote Access", + "enabled": false, + "subscription_period": "hourly", + "price": { + "currency_code": "EUR", + "units": 0, + "nanos": 990000000 + }, + "manageable": true, + "os_id": "00000000-0000-0000-0000-000000000000", + "remote_access": {} + }, + { + "id": "cd4158d7-2d65-49be-8803-c4b8ab6f760c", + "name": "Private Network", + "enabled": false, + "subscription_period": "hourly", + "price": { + "currency_code": "EUR", + "units": 0, + "nanos": 30000000 + }, + "manageable": true, + "os_id": "00000000-0000-0000-0000-000000000000", + "private_network": { + "bandwidth_in_bps": 1000000000 + } + }, + { + "id": "31f78309-e6e0-4005-99b3-b3de3958ca7d", + "name": "HDS", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 15, + "nanos": 0 + }, + "manageable": false, + "os_id": "00000000-0000-0000-0000-000000000000", + "certification": {} + }, + { + "id": "c498071f-4f8d-49f3-bc52-afc219a48fe0", + "name": "Windows 2022 datacenter", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 168, + "nanos": 0 + }, + "manageable": false, + "os_id": "3422ae02-d6d7-4980-8a00-eb38c262fb41", + "license": { + "os_id": "3422ae02-d6d7-4980-8a00-eb38c262fb41" + } + }, + { + "id": "f42a040b-6c91-4b11-beb0-b0b21e641fda", + "name": "Windows 2019 standard", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 25, + "nanos": 200000000 + }, + "manageable": false, + "os_id": "7c70ff80-dbfa-4e07-be73-1de0e60fe175", + "license": { + "os_id": "7c70ff80-dbfa-4e07-be73-1de0e60fe175" + } + }, + { + "id": "f74a6322-070e-41dd-a13f-8165ea63aca8", + "name": "Windows 2019 datacenter", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 168, + "nanos": 0 + }, + "manageable": false, + "os_id": "e04414b9-16d4-4ffb-8ba1-6b80704c7d2a", + "license": { + "os_id": "e04414b9-16d4-4ffb-8ba1-6b80704c7d2a" + } + }, + { + "id": "83a8fb91-47b4-4c20-82f9-84c31d79bfd8", + "name": "Windows 2022 standard", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 25, + "nanos": 200000000 + }, + "manageable": false, + "os_id": "bf705b90-1548-4368-98ca-d17dbd8dd860", + "license": { + "os_id": "bf705b90-1548-4368-98ca-d17dbd8dd860" + } + } + ], + "private_bandwidth": 1000000000, + "shared_bandwidth": true, + "tags": [], + "gpus": [], + "monthly_offer_id": "3b36516b-34e5-4ab1-8b05-0cda2adbc84c", + "kg_co2_equivalent": 15.709769, + "m3_water_usage": 0.0012458775 + }, + { + "id": "8c2cf291-a3d3-4dc5-967f-f498a088411d", + "name": "EM-B111X-SATA", + "stock": "available", + "bandwidth": 1000000000, + "max_bandwidth": 1000000000, + "commercial_range": "beryllium", + "price_per_hour": { + "currency_code": "EUR", + "units": 0, + "nanos": 263000000 + }, + "price_per_month": null, + "disks": [ + { + "capacity": 8000000000000, + "type": "HDD" + }, + { + "capacity": 8000000000000, + "type": "HDD" + } + ], + "enable": true, + "cpus": [ + { + "name": "Intel Xeon E5 2620 or equivalent", + "core_count": 6, + "thread_count": 12, + "frequency": 2000, + "benchmark": "" + }, + { + "name": "Intel Xeon E5 2620 or equivalent", + "core_count": 6, + "thread_count": 12, + "frequency": 2000, + "benchmark": "" + } + ], + "memories": [ + { + "capacity": 192000000000, + "type": "DDR3", + "frequency": 1600, + "is_ecc": true + } + ], + "quota_name": "EM_B111X_SATA", + "persistent_memories": [], + "raid_controllers": [], + "incompatible_os_ids": [], + "subscription_period": "hourly", + "operation_path": "", + "fee": { + "currency_code": "EUR", + "units": 0, + "nanos": 0 + }, + "options": [ + { + "id": "c498071f-4f8d-49f3-bc52-afc219a48fe0", + "name": "Windows 2022 datacenter", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 286, + "nanos": 0 + }, + "manageable": false, + "os_id": "3422ae02-d6d7-4980-8a00-eb38c262fb41", + "license": { + "os_id": "3422ae02-d6d7-4980-8a00-eb38c262fb41" + } + }, + { + "id": "f42a040b-6c91-4b11-beb0-b0b21e641fda", + "name": "Windows 2019 standard", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 44, + "nanos": 0 + }, + "manageable": false, + "os_id": "7c70ff80-dbfa-4e07-be73-1de0e60fe175", + "license": { + "os_id": "7c70ff80-dbfa-4e07-be73-1de0e60fe175" + } + }, + { + "id": "931df052-d713-4674-8b58-96a63244c8e2", + "name": "Remote Access", + "enabled": false, + "subscription_period": "hourly", + "price": { + "currency_code": "EUR", + "units": 0, + "nanos": 990000000 + }, + "manageable": true, + "os_id": "00000000-0000-0000-0000-000000000000", + "remote_access": {} + }, + { + "id": "83a8fb91-47b4-4c20-82f9-84c31d79bfd8", + "name": "Windows 2022 standard", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 44, + "nanos": 0 + }, + "manageable": false, + "os_id": "bf705b90-1548-4368-98ca-d17dbd8dd860", + "license": { + "os_id": "bf705b90-1548-4368-98ca-d17dbd8dd860" + } + }, + { + "id": "f74a6322-070e-41dd-a13f-8165ea63aca8", + "name": "Windows 2019 datacenter", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 286, + "nanos": 0 + }, + "manageable": false, + "os_id": "e04414b9-16d4-4ffb-8ba1-6b80704c7d2a", + "license": { + "os_id": "e04414b9-16d4-4ffb-8ba1-6b80704c7d2a" + } + }, + { + "id": "cd4158d7-2d65-49be-8803-c4b8ab6f760c", + "name": "Private Network", + "enabled": false, + "subscription_period": "hourly", + "price": { + "currency_code": "EUR", + "units": 0, + "nanos": 30000000 + }, + "manageable": true, + "os_id": "00000000-0000-0000-0000-000000000000", + "private_network": { + "bandwidth_in_bps": 1000000000 + } + } + ], + "private_bandwidth": 1000000000, + "shared_bandwidth": true, + "tags": [], + "gpus": [], + "monthly_offer_id": null, + "kg_co2_equivalent": 21.451233, + "m3_water_usage": 0.0018220958 + }, + { + "id": "a5065ba4-dde2-45f3-adec-1ebbb27b766b", + "name": "EM-B112X-SSD", + "stock": "available", + "bandwidth": 1000000000, + "max_bandwidth": 1000000000, + "commercial_range": "beryllium", + "price_per_hour": { + "currency_code": "EUR", + "units": 0, + "nanos": 263000000 + }, + "price_per_month": null, + "disks": [ + { + "capacity": 1000204886016, + "type": "SSD" + }, + { + "capacity": 1000204886016, + "type": "SSD" + } + ], + "enable": true, + "cpus": [ + { + "name": "Intel Xeon E5 2600 or equivalent", + "core_count": 6, + "thread_count": 12, + "frequency": 2000, + "benchmark": "5295" + }, + { + "name": "Intel Xeon E5 2600 or equivalent", + "core_count": 6, + "thread_count": 12, + "frequency": 2000, + "benchmark": "5295" + } + ], + "memories": [ + { + "capacity": 192000000000, + "type": "DDR3", + "frequency": 1600, + "is_ecc": true + } + ], + "quota_name": "EM_B112X_SSD", + "persistent_memories": [], + "raid_controllers": [], + "incompatible_os_ids": [ + "7e865c16-1a63-4dc7-8181-dabc020fc21b", + "a5cec64e-d7b0-4c6e-a819-60139d30a76c", + "847bb37a-dc13-4536-9f07-023d38dba98d", + "fd771862-4b75-46a7-ab42-73c46c0ac2db", + "6aa3f876-1c83-4434-8cc4-a2dbc94216db", + "2e06fa49-4677-4bd7-8bf5-b1c490d8a966", + "bf705b90-1548-4368-98ca-d17dbd8dd860", + "69e740ab-9f0e-4107-8516-16470000729c", + "7c70ff80-dbfa-4e07-be73-1de0e60fe175", + "e04414b9-16d4-4ffb-8ba1-6b80704c7d2a", + "3422ae02-d6d7-4980-8a00-eb38c262fb41", + "93fb3e11-e02e-47d9-aa3a-f77a2f7a7129", + "bc7e4ca2-bf32-407f-a04b-72ad6455beb2", + "1c376d8a-f237-438d-9cd9-47902050ffd3", + "fa29896b-6b49-468d-a787-966559a55c12" + ], + "subscription_period": "hourly", + "operation_path": "", + "fee": { + "currency_code": "EUR", + "units": 0, + "nanos": 0 + }, + "options": [ + { + "id": "9e3498b1-45ef-4c55-b699-efd66d658cca", + "name": "Windows 2025 datacenter", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 336, + "nanos": 0 + }, + "manageable": false, + "os_id": "bc7e4ca2-bf32-407f-a04b-72ad6455beb2", + "license": { + "os_id": "bc7e4ca2-bf32-407f-a04b-72ad6455beb2" + } + }, + { + "id": "f42a040b-6c91-4b11-beb0-b0b21e641fda", + "name": "Windows 2019 standard", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 50, + "nanos": 400000000 + }, + "manageable": false, + "os_id": "7c70ff80-dbfa-4e07-be73-1de0e60fe175", + "license": { + "os_id": "7c70ff80-dbfa-4e07-be73-1de0e60fe175" + } + }, + { + "id": "931df052-d713-4674-8b58-96a63244c8e2", + "name": "Remote Access", + "enabled": false, + "subscription_period": "hourly", + "price": { + "currency_code": "EUR", + "units": 0, + "nanos": 990000000 + }, + "manageable": true, + "os_id": "00000000-0000-0000-0000-000000000000", + "remote_access": {} + }, + { + "id": "31f78309-e6e0-4005-99b3-b3de3958ca7d", + "name": "HDS", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 15, + "nanos": 0 + }, + "manageable": false, + "os_id": "00000000-0000-0000-0000-000000000000", + "certification": {} + }, + { + "id": "83a8fb91-47b4-4c20-82f9-84c31d79bfd8", + "name": "Windows 2022 standard", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 50, + "nanos": 400000000 + }, + "manageable": false, + "os_id": "bf705b90-1548-4368-98ca-d17dbd8dd860", + "license": { + "os_id": "bf705b90-1548-4368-98ca-d17dbd8dd860" + } + }, + { + "id": "c498071f-4f8d-49f3-bc52-afc219a48fe0", + "name": "Windows 2022 datacenter", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 336, + "nanos": 0 + }, + "manageable": false, + "os_id": "3422ae02-d6d7-4980-8a00-eb38c262fb41", + "license": { + "os_id": "3422ae02-d6d7-4980-8a00-eb38c262fb41" + } + }, + { + "id": "cd4158d7-2d65-49be-8803-c4b8ab6f760c", + "name": "Private Network", + "enabled": false, + "subscription_period": "hourly", + "price": { + "currency_code": "EUR", + "units": 0, + "nanos": 30000000 + }, + "manageable": true, + "os_id": "00000000-0000-0000-0000-000000000000", + "private_network": { + "bandwidth_in_bps": 1000000000 + } + }, + { + "id": "4b5723e9-5dcc-42e9-afbb-7ee556027051", + "name": "Windows 2025 standard", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 50, + "nanos": 400000000 + }, + "manageable": false, + "os_id": "a5cec64e-d7b0-4c6e-a819-60139d30a76c", + "license": { + "os_id": "a5cec64e-d7b0-4c6e-a819-60139d30a76c" + } + }, + { + "id": "f74a6322-070e-41dd-a13f-8165ea63aca8", + "name": "Windows 2019 datacenter", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 336, + "nanos": 0 + }, + "manageable": false, + "os_id": "e04414b9-16d4-4ffb-8ba1-6b80704c7d2a", + "license": { + "os_id": "e04414b9-16d4-4ffb-8ba1-6b80704c7d2a" + } + } + ], + "private_bandwidth": 1000000000, + "shared_bandwidth": true, + "tags": [], + "gpus": [], + "monthly_offer_id": null, + "kg_co2_equivalent": 21.59012, + "m3_water_usage": 0.0018220958 + }, + { + "id": "c753f736-fbb4-4689-ae93-623f9d08dce5", + "name": "EM-B211X-SATA", + "stock": "empty", + "bandwidth": 1000000000, + "max_bandwidth": 1000000000, + "commercial_range": "beryllium", + "price_per_hour": { + "currency_code": "EUR", + "units": 0, + "nanos": 321000000 + }, + "price_per_month": null, + "disks": [ + { + "capacity": 8000000000000, + "type": "HDD" + }, + { + "capacity": 8000000000000, + "type": "HDD" + } + ], + "enable": true, + "cpus": [ + { + "name": "Intel Xeon E5 2600 or equivalent", + "core_count": 8, + "thread_count": 16, + "frequency": 2600, + "benchmark": "5295" + }, + { + "name": "Intel Xeon E5 2600 or equivalent", + "core_count": 8, + "thread_count": 16, + "frequency": 2600, + "benchmark": "5295" + } + ], + "memories": [ + { + "capacity": 256000000000, + "type": "DDR3", + "frequency": 1600, + "is_ecc": true + } + ], + "quota_name": "EM_B211X_SATA", + "persistent_memories": [], + "raid_controllers": [], + "incompatible_os_ids": [ + "847bb37a-dc13-4536-9f07-023d38dba98d", + "1c376d8a-f237-438d-9cd9-47902050ffd3", + "69e740ab-9f0e-4107-8516-16470000729c", + "93fb3e11-e02e-47d9-aa3a-f77a2f7a7129", + "fd771862-4b75-46a7-ab42-73c46c0ac2db", + "6aa3f876-1c83-4434-8cc4-a2dbc94216db", + "2e06fa49-4677-4bd7-8bf5-b1c490d8a966", + "fa29896b-6b49-468d-a787-966559a55c12" + ], + "subscription_period": "hourly", + "operation_path": "", + "fee": { + "currency_code": "EUR", + "units": 0, + "nanos": 0 + }, + "options": [ + { + "id": "f74a6322-070e-41dd-a13f-8165ea63aca8", + "name": "Windows 2019 datacenter", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 336, + "nanos": 0 + }, + "manageable": false, + "os_id": "e04414b9-16d4-4ffb-8ba1-6b80704c7d2a", + "license": { + "os_id": "e04414b9-16d4-4ffb-8ba1-6b80704c7d2a" + } + }, + { + "id": "31f78309-e6e0-4005-99b3-b3de3958ca7d", + "name": "HDS", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 15, + "nanos": 0 + }, + "manageable": false, + "os_id": "00000000-0000-0000-0000-000000000000", + "certification": {} + }, + { + "id": "4b5723e9-5dcc-42e9-afbb-7ee556027051", + "name": "Windows 2025 standard", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 50, + "nanos": 400000000 + }, + "manageable": false, + "os_id": "a5cec64e-d7b0-4c6e-a819-60139d30a76c", + "license": { + "os_id": "a5cec64e-d7b0-4c6e-a819-60139d30a76c" + } + }, + { + "id": "9e3498b1-45ef-4c55-b699-efd66d658cca", + "name": "Windows 2025 datacenter", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 336, + "nanos": 0 + }, + "manageable": false, + "os_id": "bc7e4ca2-bf32-407f-a04b-72ad6455beb2", + "license": { + "os_id": "bc7e4ca2-bf32-407f-a04b-72ad6455beb2" + } + }, + { + "id": "83a8fb91-47b4-4c20-82f9-84c31d79bfd8", + "name": "Windows 2022 standard", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 50, + "nanos": 400000000 + }, + "manageable": false, + "os_id": "bf705b90-1548-4368-98ca-d17dbd8dd860", + "license": { + "os_id": "bf705b90-1548-4368-98ca-d17dbd8dd860" + } + }, + { + "id": "c498071f-4f8d-49f3-bc52-afc219a48fe0", + "name": "Windows 2022 datacenter", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 336, + "nanos": 0 + }, + "manageable": false, + "os_id": "3422ae02-d6d7-4980-8a00-eb38c262fb41", + "license": { + "os_id": "3422ae02-d6d7-4980-8a00-eb38c262fb41" + } + }, + { + "id": "931df052-d713-4674-8b58-96a63244c8e2", + "name": "Remote Access", + "enabled": false, + "subscription_period": "hourly", + "price": { + "currency_code": "EUR", + "units": 0, + "nanos": 990000000 + }, + "manageable": true, + "os_id": "00000000-0000-0000-0000-000000000000", + "remote_access": {} + }, + { + "id": "cd4158d7-2d65-49be-8803-c4b8ab6f760c", + "name": "Private Network", + "enabled": false, + "subscription_period": "hourly", + "price": { + "currency_code": "EUR", + "units": 0, + "nanos": 30000000 + }, + "manageable": true, + "os_id": "00000000-0000-0000-0000-000000000000", + "private_network": { + "bandwidth_in_bps": 1000000000 + } + }, + { + "id": "f42a040b-6c91-4b11-beb0-b0b21e641fda", + "name": "Windows 2019 standard", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 50, + "nanos": 400000000 + }, + "manageable": false, + "os_id": "7c70ff80-dbfa-4e07-be73-1de0e60fe175", + "license": { + "os_id": "7c70ff80-dbfa-4e07-be73-1de0e60fe175" + } + } + ], + "private_bandwidth": 1000000000, + "shared_bandwidth": true, + "tags": [], + "gpus": [], + "monthly_offer_id": null, + "kg_co2_equivalent": 21.982878, + "m3_water_usage": 0.0017130816 + }, + { + "id": "ddaf8ba6-b2b2-4279-8af3-51930fb602f8", + "name": "EM-B212X-SSD", + "stock": "available", + "bandwidth": 1000000000, + "max_bandwidth": 1000000000, + "commercial_range": "beryllium", + "price_per_hour": { + "currency_code": "EUR", + "units": 0, + "nanos": 321000000 + }, + "price_per_month": null, + "disks": [ + { + "capacity": 1024209543168, + "type": "SSD" + }, + { + "capacity": 1024209543168, + "type": "SSD" + } + ], + "enable": true, + "cpus": [ + { + "name": "Intel Xeon E5 2600 or equivalent", + "core_count": 8, + "thread_count": 16, + "frequency": 2600, + "benchmark": "5295" + }, + { + "name": "Intel Xeon E5 2600 or equivalent", + "core_count": 8, + "thread_count": 16, + "frequency": 2600, + "benchmark": "5295" + } + ], + "memories": [ + { + "capacity": 256000000000, + "type": "DDR3", + "frequency": 1600, + "is_ecc": true + } + ], + "quota_name": "EM_B212X_SSD", + "persistent_memories": [], + "raid_controllers": [], + "incompatible_os_ids": [ + "847bb37a-dc13-4536-9f07-023d38dba98d", + "1c376d8a-f237-438d-9cd9-47902050ffd3", + "69e740ab-9f0e-4107-8516-16470000729c", + "93fb3e11-e02e-47d9-aa3a-f77a2f7a7129", + "fd771862-4b75-46a7-ab42-73c46c0ac2db", + "6aa3f876-1c83-4434-8cc4-a2dbc94216db", + "2e06fa49-4677-4bd7-8bf5-b1c490d8a966", + "fa29896b-6b49-468d-a787-966559a55c12" + ], + "subscription_period": "hourly", + "operation_path": "", + "fee": { + "currency_code": "EUR", + "units": 0, + "nanos": 0 + }, + "options": [ + { + "id": "c498071f-4f8d-49f3-bc52-afc219a48fe0", + "name": "Windows 2022 datacenter", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 336, + "nanos": 0 + }, + "manageable": false, + "os_id": "3422ae02-d6d7-4980-8a00-eb38c262fb41", + "license": { + "os_id": "3422ae02-d6d7-4980-8a00-eb38c262fb41" + } + }, + { + "id": "9e3498b1-45ef-4c55-b699-efd66d658cca", + "name": "Windows 2025 datacenter", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 336, + "nanos": 0 + }, + "manageable": false, + "os_id": "bc7e4ca2-bf32-407f-a04b-72ad6455beb2", + "license": { + "os_id": "bc7e4ca2-bf32-407f-a04b-72ad6455beb2" + } + }, + { + "id": "cd4158d7-2d65-49be-8803-c4b8ab6f760c", + "name": "Private Network", + "enabled": false, + "subscription_period": "hourly", + "price": { + "currency_code": "EUR", + "units": 0, + "nanos": 30000000 + }, + "manageable": true, + "os_id": "00000000-0000-0000-0000-000000000000", + "private_network": { + "bandwidth_in_bps": 1000000000 + } + }, + { + "id": "4b5723e9-5dcc-42e9-afbb-7ee556027051", + "name": "Windows 2025 standard", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 50, + "nanos": 400000000 + }, + "manageable": false, + "os_id": "a5cec64e-d7b0-4c6e-a819-60139d30a76c", + "license": { + "os_id": "a5cec64e-d7b0-4c6e-a819-60139d30a76c" + } + }, + { + "id": "f74a6322-070e-41dd-a13f-8165ea63aca8", + "name": "Windows 2019 datacenter", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 336, + "nanos": 0 + }, + "manageable": false, + "os_id": "e04414b9-16d4-4ffb-8ba1-6b80704c7d2a", + "license": { + "os_id": "e04414b9-16d4-4ffb-8ba1-6b80704c7d2a" + } + }, + { + "id": "f42a040b-6c91-4b11-beb0-b0b21e641fda", + "name": "Windows 2019 standard", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 50, + "nanos": 400000000 + }, + "manageable": false, + "os_id": "7c70ff80-dbfa-4e07-be73-1de0e60fe175", + "license": { + "os_id": "7c70ff80-dbfa-4e07-be73-1de0e60fe175" + } + }, + { + "id": "931df052-d713-4674-8b58-96a63244c8e2", + "name": "Remote Access", + "enabled": false, + "subscription_period": "hourly", + "price": { + "currency_code": "EUR", + "units": 0, + "nanos": 990000000 + }, + "manageable": true, + "os_id": "00000000-0000-0000-0000-000000000000", + "remote_access": {} + }, + { + "id": "31f78309-e6e0-4005-99b3-b3de3958ca7d", + "name": "HDS", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 15, + "nanos": 0 + }, + "manageable": false, + "os_id": "00000000-0000-0000-0000-000000000000", + "certification": {} + }, + { + "id": "83a8fb91-47b4-4c20-82f9-84c31d79bfd8", + "name": "Windows 2022 standard", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 50, + "nanos": 400000000 + }, + "manageable": false, + "os_id": "bf705b90-1548-4368-98ca-d17dbd8dd860", + "license": { + "os_id": "bf705b90-1548-4368-98ca-d17dbd8dd860" + } + } + ], + "private_bandwidth": 1000000000, + "shared_bandwidth": true, + "tags": [], + "gpus": [], + "monthly_offer_id": null, + "kg_co2_equivalent": 24.590876, + "m3_water_usage": 0.002024551 + }, + { + "id": "a204136d-656b-44b7-9735-88ca2f62cb1f", + "name": "EM-L110X-SATA", + "stock": "available", + "bandwidth": 1000000000, + "max_bandwidth": 1000000000, + "commercial_range": "lithium", + "price_per_hour": { + "currency_code": "EUR", + "units": 0, + "nanos": 366000000 + }, + "price_per_month": null, + "disks": [ + { + "capacity": 12000138625024, + "type": "HDD" + }, + { + "capacity": 12000138625024, + "type": "HDD" + }, + { + "capacity": 12000138625024, + "type": "HDD" + }, + { + "capacity": 12000138625024, + "type": "HDD" + } + ], + "enable": true, + "cpus": [ + { + "name": "Intel Xeon E5 1410 v2", + "core_count": 4, + "thread_count": 8, + "frequency": 2800, + "benchmark": "5715" + } + ], + "memories": [ + { + "capacity": 96000000000, + "type": "DDR3", + "frequency": 1600, + "is_ecc": true + } + ], + "quota_name": "EM_L110X_SATA", + "persistent_memories": [], + "raid_controllers": [], + "incompatible_os_ids": [ + "fd771862-4b75-46a7-ab42-73c46c0ac2db", + "2e06fa49-4677-4bd7-8bf5-b1c490d8a966", + "fa29896b-6b49-468d-a787-966559a55c12", + "a5cec64e-d7b0-4c6e-a819-60139d30a76c", + "bc7e4ca2-bf32-407f-a04b-72ad6455beb2", + "847bb37a-dc13-4536-9f07-023d38dba98d", + "1c376d8a-f237-438d-9cd9-47902050ffd3", + "69e740ab-9f0e-4107-8516-16470000729c", + "93fb3e11-e02e-47d9-aa3a-f77a2f7a7129", + "6aa3f876-1c83-4434-8cc4-a2dbc94216db" + ], + "subscription_period": "hourly", + "operation_path": "", + "fee": { + "currency_code": "EUR", + "units": 0, + "nanos": 0 + }, + "options": [ + { + "id": "cd4158d7-2d65-49be-8803-c4b8ab6f760c", + "name": "Private Network", + "enabled": false, + "subscription_period": "hourly", + "price": { + "currency_code": "EUR", + "units": 0, + "nanos": 30000000 + }, + "manageable": true, + "os_id": "00000000-0000-0000-0000-000000000000", + "private_network": { + "bandwidth_in_bps": 1000000000 + } + }, + { + "id": "931df052-d713-4674-8b58-96a63244c8e2", + "name": "Remote Access", + "enabled": false, + "subscription_period": "hourly", + "price": { + "currency_code": "EUR", + "units": 0, + "nanos": 990000000 + }, + "manageable": true, + "os_id": "00000000-0000-0000-0000-000000000000", + "remote_access": {} + }, + { + "id": "31f78309-e6e0-4005-99b3-b3de3958ca7d", + "name": "HDS", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 15, + "nanos": 0 + }, + "manageable": false, + "os_id": "00000000-0000-0000-0000-000000000000", + "certification": {} + }, + { + "id": "c498071f-4f8d-49f3-bc52-afc219a48fe0", + "name": "Windows 2022 datacenter", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 168, + "nanos": 0 + }, + "manageable": false, + "os_id": "3422ae02-d6d7-4980-8a00-eb38c262fb41", + "license": { + "os_id": "3422ae02-d6d7-4980-8a00-eb38c262fb41" + } + }, + { + "id": "f74a6322-070e-41dd-a13f-8165ea63aca8", + "name": "Windows 2019 datacenter", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 168, + "nanos": 0 + }, + "manageable": false, + "os_id": "e04414b9-16d4-4ffb-8ba1-6b80704c7d2a", + "license": { + "os_id": "e04414b9-16d4-4ffb-8ba1-6b80704c7d2a" + } + }, + { + "id": "83a8fb91-47b4-4c20-82f9-84c31d79bfd8", + "name": "Windows 2022 standard", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 25, + "nanos": 200000000 + }, + "manageable": false, + "os_id": "bf705b90-1548-4368-98ca-d17dbd8dd860", + "license": { + "os_id": "bf705b90-1548-4368-98ca-d17dbd8dd860" + } + }, + { + "id": "f42a040b-6c91-4b11-beb0-b0b21e641fda", + "name": "Windows 2019 standard", + "enabled": false, + "subscription_period": "monthly", + "price": { + "currency_code": "EUR", + "units": 25, + "nanos": 200000000 + }, + "manageable": false, + "os_id": "7c70ff80-dbfa-4e07-be73-1de0e60fe175", + "license": { + "os_id": "7c70ff80-dbfa-4e07-be73-1de0e60fe175" + } + } + ], + "private_bandwidth": 1000000000, + "shared_bandwidth": true, + "tags": [], + "gpus": [], + "monthly_offer_id": "0ca85e34-d35a-494b-9077-70589cf7a6c8", + "kg_co2_equivalent": 15.709769, + "m3_water_usage": 0.0012458775 + } +]