diff --git a/internal/namespaces/instance/v1/custom_server_action.go b/internal/namespaces/instance/v1/custom_server_action.go index 1c70e141ec..8628adac6d 100644 --- a/internal/namespaces/instance/v1/custom_server_action.go +++ b/internal/namespaces/instance/v1/custom_server_action.go @@ -5,10 +5,12 @@ import ( "errors" "fmt" "reflect" + "sort" "strings" "github.com/scaleway/scaleway-cli/v2/core" "github.com/scaleway/scaleway-cli/v2/internal/interactive" + block "github.com/scaleway/scaleway-sdk-go/api/block/v1alpha1" "github.com/scaleway/scaleway-sdk-go/api/instance/v1" "github.com/scaleway/scaleway-sdk-go/scw" ) @@ -394,6 +396,46 @@ func serverTerminateCommand() *core.Command { } _, _ = interactive.Printf("successfully detached volume %s\n", volumeName) } + } else { + successMessages := make(map[string]string) + + for index, volume := range server.Server.Volumes { + if volume.VolumeType != instance.VolumeServerVolumeTypeSbsVolume { + continue + } + + _, err = api.DetachVolume(&instance.DetachVolumeRequest{ + VolumeID: volume.ID, + Zone: volume.Zone, + }, scw.WithContext(ctx)) + if err != nil { + return nil, fmt.Errorf("failed to detach block volume %s: %w", volume.ID, err) + } + + blockAPI := block.NewAPI(client) + terminalStatus := block.VolumeStatusAvailable + + blockVolume, err := blockAPI.WaitForVolume(&block.WaitForVolumeRequest{ + VolumeID: volume.ID, + Zone: volume.Zone, + TerminalStatus: &terminalStatus, + }) + if err != nil { + return nil, fmt.Errorf("failed to wait for block volume %s: %w", volume.ID, err) + } + + err = blockAPI.DeleteVolume(&block.DeleteVolumeRequest{ + VolumeID: blockVolume.ID, + Zone: blockVolume.Zone, + }, scw.WithContext(ctx)) + if err != nil { + return nil, fmt.Errorf("failed to delete block volume %s: %w", blockVolume.Name, err) + } + + successMessages[index] = fmt.Sprintf("successfully deleted block volume %q", blockVolume.Name) + } + + printSuccessMessagesInOrder(successMessages) } if _, err := api.ServerAction(&instance.ServerActionRequest{ @@ -439,7 +481,8 @@ func shouldDeleteBlockVolumes( case withBlockPrompt: // Only prompt user if at least one block volume is attached to the instance for _, volume := range server.Server.Volumes { - if volume.VolumeType != instance.VolumeServerVolumeTypeBSSD { + if volume.VolumeType != instance.VolumeServerVolumeTypeBSSD && + volume.VolumeType != instance.VolumeServerVolumeTypeSbsVolume { continue } @@ -456,6 +499,19 @@ func shouldDeleteBlockVolumes( } } +// printSuccessMessagesInOrder prints volume deletion messages ordered by volume map key "0", "1", "2",... +func printSuccessMessagesInOrder(messages map[string]string) { + indexes := []string(nil) + for index := range messages { + indexes = append(indexes, index) + } + sort.Strings(indexes) + + for _, index := range indexes { + _, _ = interactive.Println(messages[index]) + } +} + type instanceUniqueActionRequest struct { Zone scw.Zone ServerID string diff --git a/internal/namespaces/instance/v1/custom_server_action_test.go b/internal/namespaces/instance/v1/custom_server_action_test.go index 522886ab14..8b6371dad7 100644 --- a/internal/namespaces/instance/v1/custom_server_action_test.go +++ b/internal/namespaces/instance/v1/custom_server_action_test.go @@ -8,6 +8,7 @@ import ( block "github.com/scaleway/scaleway-cli/v2/internal/namespaces/block/v1alpha1" "github.com/scaleway/scaleway-cli/v2/internal/namespaces/instance/v1" "github.com/scaleway/scaleway-cli/v2/internal/testhelpers" + blockSDK "github.com/scaleway/scaleway-sdk-go/api/block/v1alpha1" instanceSDK "github.com/scaleway/scaleway-sdk-go/api/instance/v1" "github.com/scaleway/scaleway-sdk-go/scw" "github.com/stretchr/testify/assert" @@ -25,7 +26,7 @@ func Test_ServerTerminate(t *testing.T) { "Server", testServerCommand("image=ubuntu-jammy ip=new -w"), ), - Cmd: `scw instance server terminate {{ .Server.ID }}`, + Cmd: `scw instance server terminate {{ .Server.ID }} with-block=true`, Check: core.TestCheckCombine( core.TestCheckGolden(), core.TestCheckExitCode(0), @@ -56,7 +57,7 @@ func Test_ServerTerminate(t *testing.T) { "Server", testServerCommand("image=ubuntu-jammy ip=new -w"), ), - Cmd: `scw instance server terminate {{ .Server.ID }} with-ip=true`, + Cmd: `scw instance server terminate {{ .Server.ID }} with-ip=true with-block=true`, Check: core.TestCheckCombine( core.TestCheckGolden(), core.TestCheckExitCode(0), @@ -98,6 +99,10 @@ func Test_ServerTerminate(t *testing.T) { `scw block volume wait terminal-status=available {{ (index .Server.Volumes "1").ID }}`, ), core.ExecAfterCmd(`scw block volume delete {{ (index .Server.Volumes "1").ID }}`), + core.ExecAfterCmd( + `scw block volume wait terminal-status=available {{ (index .Server.Volumes "0").ID }}`, + ), + core.ExecAfterCmd(`scw block volume delete {{ (index .Server.Volumes "0").ID }}`), ), DisableParallel: true, })) @@ -114,16 +119,23 @@ func Test_ServerTerminate(t *testing.T) { core.TestCheckExitCode(0), func(t *testing.T, ctx *core.CheckFuncCtx) { t.Helper() - api := instanceSDK.NewAPI(ctx.Client) + api := blockSDK.NewAPI(ctx.Client) server := testhelpers.MapValue[*instance.ServerWithWarningsResponse]( t, ctx.Meta, "Server", ).Server - volume := testhelpers.MapTValue(t, server.Volumes, "0") + rootVolume := testhelpers.MapTValue(t, server.Volumes, "0") + + _, err := api.GetVolume(&blockSDK.GetVolumeRequest{ + VolumeID: rootVolume.ID, + Zone: server.Zone, + }) + require.IsType(t, &scw.ResourceNotFoundError{}, err) - _, err := api.GetVolume(&instanceSDK.GetVolumeRequest{ - VolumeID: volume.ID, + additionalVolume := testhelpers.MapTValue(t, server.Volumes, "1") + _, err = api.GetVolume(&blockSDK.GetVolumeRequest{ + VolumeID: additionalVolume.ID, Zone: server.Zone, }) require.IsType(t, &scw.ResourceNotFoundError{}, err) diff --git a/internal/namespaces/instance/v1/testdata/test-server-terminate-with-block.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-server-terminate-with-block.cassette.yaml index 7fed79664d..0033108518 100644 --- a/internal/namespaces/instance/v1/testdata/test-server-terminate-with-block.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-server-terminate-with-block.cassette.yaml @@ -3,928 +3,2219 @@ version: 1 interactions: - request: body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": - 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 671088640}, "COPARM1-2C-8G": {"alt_names": - [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": + [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 83886080}, "COPARM1-32C-128G": {"alt_names": - [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 1342177280}, "COPARM1-4C-16G": {"alt_names": - [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, + "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": + [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, + "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": + [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 167772160}, "COPARM1-8C-32G": {"alt_names": - [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": + [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 335544320}, "DEV1-L": {"alt_names": [], "arch": - "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": + 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 209715200}, "DEV1-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": + 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, + "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": + 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": - 300000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 300000000}]}, "block_bandwidth": 157286400}, "DEV1-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, + "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, + "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 104857600}, "DEV1-XL": {"alt_names": [], "arch": - "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "mig_profile": null, "volumes_constraint": + 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, + "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": + 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, + "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, + "block_bandwidth": 262144000, "end_of_service": false}, "ENT1-2XL": {"alt_names": + [], "arch": "x86_64", "ncpus": 96, "ram": 412316860416, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 2576.9, "hourly_price": 3.53, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, + "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, + "block_bandwidth": 21474836480, "end_of_service": true}, "ENT1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, + "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, + "block_bandwidth": 5905580032, "end_of_service": true}, "ENT1-M": {"alt_names": + [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, + "block_bandwidth": 3355443200, "end_of_service": true}, "ENT1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 1677721600, "end_of_service": true}, "ENT1-XL": {"alt_names": + [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, + "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, + "block_bandwidth": 5905580032, "end_of_service": true}, "ENT1-XS": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": true}, "ENT1-XXS": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 53.655, "hourly_price": 0.0735, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": true}, "GP1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, + "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, + "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, + "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": + [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, + "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, + "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, + "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": + [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, + "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, + "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, + "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": + 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": - 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 500000000}]}, "block_bandwidth": 262144000}, "ENT1-2XL": {"alt_names": [], "arch": - "x86_64", "ncpus": 96, "ram": 412316860416, "gpu": 0, "mig_profile": null, "volumes_constraint": + 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, + "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": + 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", + "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2576.9, - "hourly_price": 3.53, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, + "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, - "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": - 20000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 20000000000}]}, "block_bandwidth": 21474836480}, "ENT1-L": {"alt_names": [], - "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "ENT1-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": + 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, + "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": + 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", + "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, - "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, + "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, - "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "ENT1-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": + 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, + "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": + 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", + "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, - "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, + "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, - "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "ENT1-XL": {"alt_names": [], - "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}, "block_bandwidth": 13421772800}, "ENT1-XS": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "ENT1-XXS": {"alt_names": [], "arch": - "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.655, - "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "GP1-L": {"alt_names": [], "arch": - "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": - 5000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 5000000000}]}, "block_bandwidth": 1073741824}, "GP1-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": - 1500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1500000000}]}, "block_bandwidth": 838860800}, "GP1-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 524288000}, "GP1-XL": {"alt_names": [], "arch": - "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": - 10000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 10000000000}]}, "block_bandwidth": 2147483648}, "GP1-XS": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": - 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 500000000}]}, "block_bandwidth": 314572800}, "PLAY2-MICRO": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, + 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, + "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": + 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", + "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, + "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": + 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, + "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", + "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 167772160}, "PLAY2-NANO": {"alt_names": [], - "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 83886080}, "PLAY2-PICO": {"alt_names": [], - "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, + "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": + [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": - 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 100000000}]}, "block_bandwidth": 41943040}, "POP2-16C-64G": {"alt_names": [], - "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-16C-64G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, + "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, + "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": + [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, + "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": + {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": + 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-2C-8G": {"alt_names": [], - "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, + 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, + "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", + "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "POP2-2C-8G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "POP2-32C-128G": {"alt_names": - [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-32C-128G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, + "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, + "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": + {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": + 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-4C-16G": {"alt_names": - [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "POP2-4C-16G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "POP2-64C-256G": {"alt_names": - [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-8C-32G": {"alt_names": - [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-8C-32G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": + 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", + "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, + "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, + "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": + [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, + "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, + "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, + "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, + "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": + 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-HC-16C-32G": {"alt_names": - [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "mig_profile": + 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, + "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", + "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-HC-2C-4G": {"alt_names": - [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, + "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "POP2-HC-32C-64G": {"alt_names": - [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-HC-4C-8G": {"alt_names": - [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, + "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, + "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": + {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": + 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": + 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", + "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "POP2-HC-64C-128G": {"alt_names": - [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": + {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": + 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-HC-8C-16G": {"alt_names": - [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", + "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-HM-16C-128G": {"alt_names": - [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": + {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": + 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-HM-2C-16G": {"alt_names": - [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, + "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", + "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "POP2-HM-32C-256G": {"alt_names": - [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": + {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": + 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-HM-4C-32G": {"alt_names": - [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "POP2-HM-64C-512G": {"alt_names": - [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-HM-8C-64G": {"alt_names": - [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-HN-10": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": - 10000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 10000000000}]}, "block_bandwidth": 838860800}, "POP2-HN-3": {"alt_names": [], - "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": - 3000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3000000000}]}, "block_bandwidth": 419430400}, "POP2-HN-5": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": - 5000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 5000000000}]}, "block_bandwidth": 838860800}}}' + 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}}}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": - 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 671088640}, "COPARM1-2C-8G": {"alt_names": - [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": + [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 83886080}, "COPARM1-32C-128G": {"alt_names": - [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 1342177280}, "COPARM1-4C-16G": {"alt_names": - [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, + "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": + [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, + "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": + [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 167772160}, "COPARM1-8C-32G": {"alt_names": - [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": + [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 335544320}, "DEV1-L": {"alt_names": [], "arch": - "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": + 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 209715200}, "DEV1-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": + 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, + "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": + 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": - 300000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 300000000}]}, "block_bandwidth": 157286400}, "DEV1-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, + "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, + "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 104857600}, "DEV1-XL": {"alt_names": [], "arch": - "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "mig_profile": null, "volumes_constraint": + 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, + "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": + 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, + "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, + "block_bandwidth": 262144000, "end_of_service": false}, "ENT1-2XL": {"alt_names": + [], "arch": "x86_64", "ncpus": 96, "ram": 412316860416, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 2576.9, "hourly_price": 3.53, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, + "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, + "block_bandwidth": 21474836480, "end_of_service": true}, "ENT1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, + "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, + "block_bandwidth": 5905580032, "end_of_service": true}, "ENT1-M": {"alt_names": + [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, + "block_bandwidth": 3355443200, "end_of_service": true}, "ENT1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 1677721600, "end_of_service": true}, "ENT1-XL": {"alt_names": + [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, + "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, + "block_bandwidth": 5905580032, "end_of_service": true}, "ENT1-XS": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": true}, "ENT1-XXS": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 53.655, "hourly_price": 0.0735, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": true}, "GP1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, + "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, + "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, + "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": + [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, + "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, + "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, + "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": + [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, + "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, + "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, + "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": + 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": - 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 500000000}]}, "block_bandwidth": 262144000}, "ENT1-2XL": {"alt_names": [], "arch": - "x86_64", "ncpus": 96, "ram": 412316860416, "gpu": 0, "mig_profile": null, "volumes_constraint": + 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, + "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": + 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", + "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2576.9, - "hourly_price": 3.53, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, + "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, - "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": - 20000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 20000000000}]}, "block_bandwidth": 21474836480}, "ENT1-L": {"alt_names": [], - "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "ENT1-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": + 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, + "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": + 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", + "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, - "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, + "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, - "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "ENT1-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": + 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, + "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": + 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", + "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, - "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, + "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, - "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "ENT1-XL": {"alt_names": [], - "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}, "block_bandwidth": 13421772800}, "ENT1-XS": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "ENT1-XXS": {"alt_names": [], "arch": - "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.655, - "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "GP1-L": {"alt_names": [], "arch": - "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": - 5000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 5000000000}]}, "block_bandwidth": 1073741824}, "GP1-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": - 1500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1500000000}]}, "block_bandwidth": 838860800}, "GP1-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 524288000}, "GP1-XL": {"alt_names": [], "arch": - "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": - 10000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 10000000000}]}, "block_bandwidth": 2147483648}, "GP1-XS": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": - 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 500000000}]}, "block_bandwidth": 314572800}, "PLAY2-MICRO": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, + 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, + "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": + 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", + "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, + "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": + 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, + "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", + "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 167772160}, "PLAY2-NANO": {"alt_names": [], - "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 83886080}, "PLAY2-PICO": {"alt_names": [], - "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, + "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": + [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": - 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 100000000}]}, "block_bandwidth": 41943040}, "POP2-16C-64G": {"alt_names": [], - "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-16C-64G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, + "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, + "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": + [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, + "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": + {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": + 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-2C-8G": {"alt_names": [], - "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, + 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, + "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", + "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "POP2-2C-8G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "POP2-32C-128G": {"alt_names": - [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-32C-128G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, + "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, + "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": + {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": + 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-4C-16G": {"alt_names": - [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "POP2-4C-16G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "POP2-64C-256G": {"alt_names": - [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-8C-32G": {"alt_names": - [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-8C-32G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": + 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", + "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, + "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, + "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": + [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, + "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, + "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, + "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, + "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": + 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-HC-16C-32G": {"alt_names": - [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "mig_profile": + 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, + "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", + "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-HC-2C-4G": {"alt_names": - [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, + "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "POP2-HC-32C-64G": {"alt_names": - [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-HC-4C-8G": {"alt_names": - [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, + "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, + "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": + {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": + 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": + 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", + "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "POP2-HC-64C-128G": {"alt_names": - [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": + {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": + 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-HC-8C-16G": {"alt_names": - [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", + "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-HM-16C-128G": {"alt_names": - [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": + {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": + 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-HM-2C-16G": {"alt_names": - [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, + "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", + "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "POP2-HM-32C-256G": {"alt_names": - [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": + {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": + 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-HM-4C-32G": {"alt_names": - [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}}}' + headers: + Content-Length: + - "39208" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:06:42 GMT + Link: + - ; rel="next",; + rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 468385ad-d89f-4ae9-ba11-73ca384a7b61 + X-Total-Count: + - "75" + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"servers": {"POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": + 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, + "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": + 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", + "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "POP2-HM-64C-512G": {"alt_names": - [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": + {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": + 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": + 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", + "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, + "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, + "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, + "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, + "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, + "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": + [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, + "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, + "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, + "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, + "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, + "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, + "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, + "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, + "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": + {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": + 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": + 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, + "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", + "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, + "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, + "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": + 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, + "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": + 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, + "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": + 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, + "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": + 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, + "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": + ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, + "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": + ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, + "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": + ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": + 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": + 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, + "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": + 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, + "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": + [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, + "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, + "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, + "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, + "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": + [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": + 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": + 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, + "end_of_service": true}}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + method: GET + response: + body: '{"servers": {"POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": + 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, + "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": + 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", + "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": + "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": + {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": + 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-HM-8C-64G": {"alt_names": - [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", + "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-HN-10": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": - 10000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 10000000000}]}, "block_bandwidth": 838860800}, "POP2-HN-3": {"alt_names": [], - "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, + "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": - 3000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3000000000}]}, "block_bandwidth": 419430400}, "POP2-HN-5": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, + "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": - 5000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 5000000000}]}, "block_bandwidth": 838860800}}}' + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, + "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, + "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, + "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": + [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, + "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, + "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, + "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, + "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, + "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, + "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, + "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, + "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": + {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": + 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": + 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, + "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", + "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, + "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, + "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": + 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, + "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": + 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, + "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": + 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, + "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": + 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, + "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": + ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, + "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": + ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, + "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": + ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": + 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": + 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, + "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": + 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, + "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": + [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, + "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, + "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, + "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, + "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": + [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": + 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": + 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, + "end_of_service": true}}}' + headers: + Content-Length: + - "19730" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:06:42 GMT + Link: + - ; rel="first",; + rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 598ad705-9d1a-4b36-8c61-3cc8496cc592 + X-Total-Count: + - "75" + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"local_images":[{"id":"3b131f0d-7075-494e-9c86-b2c424007a0a","arch":"arm64","zone":"fr-par-1","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"label":"ubuntu_jammy","type":"instance_sbs"},{"id":"63d40353-5519-46d0-9172-ccf4885954e1","arch":"x86_64","zone":"fr-par-1","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10","POP2-48C-192G","POP2-HC-48C-96G","POP2-HM-48C-384G"],"label":"ubuntu_jammy","type":"instance_sbs"}],"total_count":2}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET + response: + body: '{"local_images":[{"id":"3b131f0d-7075-494e-9c86-b2c424007a0a","arch":"arm64","zone":"fr-par-1","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"label":"ubuntu_jammy","type":"instance_sbs"},{"id":"63d40353-5519-46d0-9172-ccf4885954e1","arch":"x86_64","zone":"fr-par-1","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10","POP2-48C-192G","POP2-HC-48C-96G","POP2-HM-48C-384G"],"label":"ubuntu_jammy","type":"instance_sbs"}],"total_count":2}' + headers: + Content-Length: + - "1269" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:06:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6cb473d8-0a00-46c6-b73e-18a2195d8cd4 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", "name": "Ubuntu + 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/63d40353-5519-46d0-9172-ccf4885954e1 + method: GET + response: + body: '{"image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", "name": "Ubuntu + 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:06:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2afb01c9-ed47-452d-a196-1944d3d40b1b + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"2e902164-d2bb-4201-835a-87486860e701","name":"cli-vol-strange-driscoll","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:43.216114Z","updated_at":"2025-06-18T19:06:43.216114Z","references":[],"parent_snapshot_id":null,"status":"creating","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes + method: POST + response: + body: '{"id":"2e902164-d2bb-4201-835a-87486860e701","name":"cli-vol-strange-driscoll","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:43.216114Z","updated_at":"2025-06-18T19:06:43.216114Z","references":[],"parent_snapshot_id":null,"status":"creating","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + headers: + Content-Length: + - "407" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:06:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 29a938c1-825d-46b9-88a1-7b371996ee25 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"message": "resource is not found", "type": "not_found", "resource": "instance_volume", + "resource_id": "2e902164-d2bb-4201-835a-87486860e701"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2e902164-d2bb-4201-835a-87486860e701 + method: GET + response: + body: '{"message": "resource is not found", "type": "not_found", "resource": "instance_volume", + "resource_id": "2e902164-d2bb-4201-835a-87486860e701"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:06:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fa01f3df-504a-4afc-a6d4-3b31d10dd6ab + status: 404 Not Found + code: 404 + duration: "" +- request: + body: '{"id":"2e902164-d2bb-4201-835a-87486860e701","name":"cli-vol-strange-driscoll","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:43.216114Z","updated_at":"2025-06-18T19:06:43.216114Z","references":[],"parent_snapshot_id":null,"status":"creating","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2e902164-d2bb-4201-835a-87486860e701 + method: GET + response: + body: '{"id":"2e902164-d2bb-4201-835a-87486860e701","name":"cli-vol-strange-driscoll","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:43.216114Z","updated_at":"2025-06-18T19:06:43.216114Z","references":[],"parent_snapshot_id":null,"status":"creating","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + headers: + Content-Length: + - "407" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:06:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 40e3ea1c-c2d8-406c-bd20-61cd1e15c89e + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "26a3fd41-fd56-484a-bfb3-6714369ba243", "name": "cli-srv-cocky-morse", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-cocky-morse", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", + "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", + "id": "60528f18-c16a-454c-bd3c-8db4fb653bdc", "zone": "fr-par-1"}, "1": {"boot": + false, "volume_type": "sbs_volume", "id": "2e902164-d2bb-4201-835a-87486860e701", + "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": + "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:b7:59:7d", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-06-18T19:06:43.518700+00:00", + "modification_date": "2025-06-18T19:06:43.518700+00:00", "bootscript": null, + "security_group": {"id": "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default + security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", + "filesystems": [], "end_of_service": false}}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + body: '{"server": {"id": "26a3fd41-fd56-484a-bfb3-6714369ba243", "name": "cli-srv-cocky-morse", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-cocky-morse", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", + "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", + "id": "60528f18-c16a-454c-bd3c-8db4fb653bdc", "zone": "fr-par-1"}, "1": {"boot": + false, "volume_type": "sbs_volume", "id": "2e902164-d2bb-4201-835a-87486860e701", + "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": + "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:b7:59:7d", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-06-18T19:06:43.518700+00:00", + "modification_date": "2025-06-18T19:06:43.518700+00:00", "bootscript": null, + "security_group": {"id": "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default + security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", + "filesystems": [], "end_of_service": false}}' + headers: + Content-Length: + - "1833" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:06:44 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/26a3fd41-fd56-484a-bfb3-6714369ba243 + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ef2d6ac6-a5c8-4d4a-806b-078e6c399853 + status: 201 Created + code: 201 + duration: "" +- request: + body: '{"task": {"id": "216b05d7-6585-4709-8bdf-8d01e0641fa3", "description": + "server_batch_poweron", "status": "pending", "href_from": "/servers/26a3fd41-fd56-484a-bfb3-6714369ba243/action", + "href_result": "/servers/26a3fd41-fd56-484a-bfb3-6714369ba243", "started_at": + "2025-06-18T19:06:44.413961+00:00", "terminated_at": null, "progress": 0, "zone": + "fr-par-1"}}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/26a3fd41-fd56-484a-bfb3-6714369ba243/action + method: POST + response: + body: '{"task": {"id": "216b05d7-6585-4709-8bdf-8d01e0641fa3", "description": + "server_batch_poweron", "status": "pending", "href_from": "/servers/26a3fd41-fd56-484a-bfb3-6714369ba243/action", + "href_result": "/servers/26a3fd41-fd56-484a-bfb3-6714369ba243", "started_at": + "2025-06-18T19:06:44.413961+00:00", "terminated_at": null, "progress": 0, "zone": + "fr-par-1"}}' + headers: + Content-Length: + - "357" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:06:44 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/216b05d7-6585-4709-8bdf-8d01e0641fa3 + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 50597fa2-5bd0-4061-99bf-fa9cd8842235 + status: 202 Accepted + code: 202 + duration: "" +- request: + body: '{"server": {"id": "26a3fd41-fd56-484a-bfb3-6714369ba243", "name": "cli-srv-cocky-morse", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-cocky-morse", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", + "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", + "id": "60528f18-c16a-454c-bd3c-8db4fb653bdc", "zone": "fr-par-1"}, "1": {"boot": + false, "volume_type": "sbs_volume", "id": "2e902164-d2bb-4201-835a-87486860e701", + "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": + "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:b7:59:7d", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-06-18T19:06:43.518700+00:00", + "modification_date": "2025-06-18T19:06:44.210003+00:00", "bootscript": null, + "security_group": {"id": "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default + security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", + "filesystems": [], "end_of_service": false}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/26a3fd41-fd56-484a-bfb3-6714369ba243 + method: GET + response: + body: '{"server": {"id": "26a3fd41-fd56-484a-bfb3-6714369ba243", "name": "cli-srv-cocky-morse", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-cocky-morse", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", + "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", + "id": "60528f18-c16a-454c-bd3c-8db4fb653bdc", "zone": "fr-par-1"}, "1": {"boot": + false, "volume_type": "sbs_volume", "id": "2e902164-d2bb-4201-835a-87486860e701", + "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": + "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:b7:59:7d", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-06-18T19:06:43.518700+00:00", + "modification_date": "2025-06-18T19:06:44.210003+00:00", "bootscript": null, + "security_group": {"id": "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default + security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", + "filesystems": [], "end_of_service": false}}' + headers: + Content-Length: + - "1855" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:06:44 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 529db568-02b4-4c3d-9bb6-62a568344032 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "26a3fd41-fd56-484a-bfb3-6714369ba243", "name": "cli-srv-cocky-morse", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-cocky-morse", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", + "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", + "id": "60528f18-c16a-454c-bd3c-8db4fb653bdc", "zone": "fr-par-1"}, "1": {"boot": + false, "volume_type": "sbs_volume", "id": "2e902164-d2bb-4201-835a-87486860e701", + "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": + "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:b7:59:7d", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-06-18T19:06:43.518700+00:00", + "modification_date": "2025-06-18T19:06:49.500476+00:00", "bootscript": null, + "security_group": {"id": "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default + security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": + "40", "hypervisor_id": "1302", "node_id": "36"}, "maintenances": [], "allowed_actions": + ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": + null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": + false}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/26a3fd41-fd56-484a-bfb3-6714369ba243 + method: GET + response: + body: '{"server": {"id": "26a3fd41-fd56-484a-bfb3-6714369ba243", "name": "cli-srv-cocky-morse", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-cocky-morse", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", + "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", + "id": "60528f18-c16a-454c-bd3c-8db4fb653bdc", "zone": "fr-par-1"}, "1": {"boot": + false, "volume_type": "sbs_volume", "id": "2e902164-d2bb-4201-835a-87486860e701", + "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": + "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:b7:59:7d", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-06-18T19:06:43.518700+00:00", + "modification_date": "2025-06-18T19:06:49.500476+00:00", "bootscript": null, + "security_group": {"id": "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default + security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": + "40", "hypervisor_id": "1302", "node_id": "36"}, "maintenances": [], "allowed_actions": + ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": + null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": + false}}' + headers: + Content-Length: + - "1990" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:06:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 19ee539d-2fea-4f73-acf0-c54111b602ca + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "26a3fd41-fd56-484a-bfb3-6714369ba243", "name": "cli-srv-cocky-morse", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-cocky-morse", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", + "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", + "id": "60528f18-c16a-454c-bd3c-8db4fb653bdc", "zone": "fr-par-1"}, "1": {"boot": + false, "volume_type": "sbs_volume", "id": "2e902164-d2bb-4201-835a-87486860e701", + "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": + "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:b7:59:7d", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-06-18T19:06:43.518700+00:00", + "modification_date": "2025-06-18T19:06:49.500476+00:00", "bootscript": null, + "security_group": {"id": "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default + security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": + "40", "hypervisor_id": "1302", "node_id": "36"}, "maintenances": [], "allowed_actions": + ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": + null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": + false}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/26a3fd41-fd56-484a-bfb3-6714369ba243 + method: GET + response: + body: '{"server": {"id": "26a3fd41-fd56-484a-bfb3-6714369ba243", "name": "cli-srv-cocky-morse", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-cocky-morse", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", + "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", + "id": "60528f18-c16a-454c-bd3c-8db4fb653bdc", "zone": "fr-par-1"}, "1": {"boot": + false, "volume_type": "sbs_volume", "id": "2e902164-d2bb-4201-835a-87486860e701", + "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": + "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:b7:59:7d", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-06-18T19:06:43.518700+00:00", + "modification_date": "2025-06-18T19:06:49.500476+00:00", "bootscript": null, + "security_group": {"id": "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default + security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": + "40", "hypervisor_id": "1302", "node_id": "36"}, "maintenances": [], "allowed_actions": + ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": + null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": + false}}' + headers: + Content-Length: + - "1990" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:06:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4b3ae8d9-107b-4dfc-8569-44e878305ed8 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"message": "resource is not found", "type": "not_found", "resource": "instance_volume", + "resource_id": "60528f18-c16a-454c-bd3c-8db4fb653bdc"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/60528f18-c16a-454c-bd3c-8db4fb653bdc + method: GET + response: + body: '{"message": "resource is not found", "type": "not_found", "resource": "instance_volume", + "resource_id": "60528f18-c16a-454c-bd3c-8db4fb653bdc"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:06:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - aee963ac-e946-49a3-a7f4-6db53c4ebf9c + status: 404 Not Found + code: 404 + duration: "" +- request: + body: '{"id":"60528f18-c16a-454c-bd3c-8db4fb653bdc","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:43.637105Z","updated_at":"2025-06-18T19:06:43.637105Z","references":[{"id":"cb334c9f-361d-4999-832c-a74be19a12f5","product_resource_type":"instance_server","product_resource_id":"26a3fd41-fd56-484a-bfb3-6714369ba243","created_at":"2025-06-18T19:06:43.637105Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/60528f18-c16a-454c-bd3c-8db4fb653bdc + method: GET + response: + body: '{"id":"60528f18-c16a-454c-bd3c-8db4fb653bdc","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:43.637105Z","updated_at":"2025-06-18T19:06:43.637105Z","references":[{"id":"cb334c9f-361d-4999-832c-a74be19a12f5","product_resource_type":"instance_server","product_resource_id":"26a3fd41-fd56-484a-bfb3-6714369ba243","created_at":"2025-06-18T19:06:43.637105Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + headers: + Content-Length: + - "686" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:06:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8d43a657-4fe8-499e-beb4-6ac772523215 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "26a3fd41-fd56-484a-bfb3-6714369ba243", "name": "cli-srv-cocky-morse", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-cocky-morse", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", + "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"1": {"boot": false, "volume_type": "sbs_volume", + "id": "2e902164-d2bb-4201-835a-87486860e701", "zone": "fr-par-1"}}, "tags": + [], "state": "running", "protected": false, "state_detail": "booting kernel", + "public_ip": null, "public_ips": [], "mac_address": "de:00:00:b7:59:7d", "routed_ip_enabled": + true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": + false, "private_ip": null, "creation_date": "2025-06-18T19:06:43.518700+00:00", + "modification_date": "2025-06-18T19:06:49.500476+00:00", "bootscript": null, + "security_group": {"id": "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default + security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": + "40", "hypervisor_id": "1302", "node_id": "36"}, "maintenances": [], "allowed_actions": + ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": + null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": + false}}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/26a3fd41-fd56-484a-bfb3-6714369ba243/detach-volume + method: POST + response: + body: '{"server": {"id": "26a3fd41-fd56-484a-bfb3-6714369ba243", "name": "cli-srv-cocky-morse", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-cocky-morse", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", + "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"1": {"boot": false, "volume_type": "sbs_volume", + "id": "2e902164-d2bb-4201-835a-87486860e701", "zone": "fr-par-1"}}, "tags": + [], "state": "running", "protected": false, "state_detail": "booting kernel", + "public_ip": null, "public_ips": [], "mac_address": "de:00:00:b7:59:7d", "routed_ip_enabled": + true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": + false, "private_ip": null, "creation_date": "2025-06-18T19:06:43.518700+00:00", + "modification_date": "2025-06-18T19:06:49.500476+00:00", "bootscript": null, + "security_group": {"id": "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default + security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": + "40", "hypervisor_id": "1302", "node_id": "36"}, "maintenances": [], "allowed_actions": + ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": + null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": + false}}' + headers: + Content-Length: + - "1873" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:06:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 79e76ea2-ffda-4a82-847e-4e96750ec0ef + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"60528f18-c16a-454c-bd3c-8db4fb653bdc","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:43.637105Z","updated_at":"2025-06-18T19:06:43.637105Z","references":[{"id":"cb334c9f-361d-4999-832c-a74be19a12f5","product_resource_type":"instance_server","product_resource_id":"26a3fd41-fd56-484a-bfb3-6714369ba243","created_at":"2025-06-18T19:06:43.637105Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/60528f18-c16a-454c-bd3c-8db4fb653bdc + method: GET + response: + body: '{"id":"60528f18-c16a-454c-bd3c-8db4fb653bdc","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:43.637105Z","updated_at":"2025-06-18T19:06:43.637105Z","references":[{"id":"cb334c9f-361d-4999-832c-a74be19a12f5","product_resource_type":"instance_server","product_resource_id":"26a3fd41-fd56-484a-bfb3-6714369ba243","created_at":"2025-06-18T19:06:43.637105Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + headers: + Content-Length: + - "686" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:06:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 174c1abf-8e3b-4c25-bb4c-fd3efb2fe638 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"60528f18-c16a-454c-bd3c-8db4fb653bdc","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:43.637105Z","updated_at":"2025-06-18T19:06:43.637105Z","references":[{"id":"cb334c9f-361d-4999-832c-a74be19a12f5","product_resource_type":"instance_server","product_resource_id":"26a3fd41-fd56-484a-bfb3-6714369ba243","created_at":"2025-06-18T19:06:43.637105Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/60528f18-c16a-454c-bd3c-8db4fb653bdc + method: GET + response: + body: '{"id":"60528f18-c16a-454c-bd3c-8db4fb653bdc","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:43.637105Z","updated_at":"2025-06-18T19:06:43.637105Z","references":[{"id":"cb334c9f-361d-4999-832c-a74be19a12f5","product_resource_type":"instance_server","product_resource_id":"26a3fd41-fd56-484a-bfb3-6714369ba243","created_at":"2025-06-18T19:06:43.637105Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' headers: Content-Length: - - "38539" + - "687" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:16 GMT - Link: - - ; rel="next",; - rel="last" + - Wed, 18 Jun 2025 19:06:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -932,362 +2223,33 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cbe63ceb-9e3c-4f35-a83a-709c415c5bc9 - X-Total-Count: - - "68" + - 0bbeca41-9846-4161-9b52-6a4cb8edd467 status: 200 OK code: 200 duration: "" - request: - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, - "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": - 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, - "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": - 6000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6000000000}]}, "block_bandwidth": 2097152000}, "PRO2-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, - "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, - "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": - 3000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3000000000}]}, "block_bandwidth": 1048576000}, "PRO2-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, - "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, - "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": - 1500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1500000000}]}, "block_bandwidth": 524288000}, "PRO2-XS": {"alt_names": [], "arch": - "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, - "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": - 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 700000000}]}, "block_bandwidth": - 262144000}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": - 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": - 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": - 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 350000000}]}, "block_bandwidth": - 131072000}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": - 45097156608, "gpu": 1, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": - 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": - 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": - 2000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 2000000000}]}, "block_bandwidth": 2147483648}, "STARDUST1-S": {"alt_names": - [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": - 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 100000000}]}, "block_bandwidth": 52428800}, "START1-L": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 41943040}, "START1-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 100000000000, "max_size": 100000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": - 300000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 300000000}]}, "block_bandwidth": 41943040}, "START1-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 50000000000, "max_size": 50000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 41943040}, "START1-XS": {"alt_names": [], "arch": - "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 25000000000, "max_size": 25000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": - 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 100000000}]}, "block_bandwidth": 41943040}, "VC1L": {"alt_names": ["X64-8GB"], - "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, - "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, - "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": - 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": - 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": - 41943040}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, - "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 100000000000, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 41943040}, "VC1S": {"alt_names": ["X64-2GB"], - "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 41943040}, "X64-120GB": {"alt_names": [], "arch": - "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 500000000000, "max_size": 1000000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": - 1000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1000000000}]}, "block_bandwidth": 41943040}, "X64-15GB": {"alt_names": [], "arch": - "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": - 250000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 250000000}]}, "block_bandwidth": 41943040}, "X64-30GB": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 300000000000, "max_size": 400000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": - 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 500000000}]}, "block_bandwidth": 41943040}, "X64-60GB": {"alt_names": [], "arch": - "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 400000000000, "max_size": 700000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": - 1000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1000000000}]}, "block_bandwidth": 41943040}}}' + body: '{"id":"60528f18-c16a-454c-bd3c-8db4fb653bdc","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:43.637105Z","updated_at":"2025-06-18T19:06:43.637105Z","references":[{"id":"cb334c9f-361d-4999-832c-a74be19a12f5","product_resource_type":"instance_server","product_resource_id":"26a3fd41-fd56-484a-bfb3-6714369ba243","created_at":"2025-06-18T19:06:43.637105Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/60528f18-c16a-454c-bd3c-8db4fb653bdc method: GET response: - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, - "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": - 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, - "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": - 6000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6000000000}]}, "block_bandwidth": 2097152000}, "PRO2-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, - "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, - "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": - 3000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3000000000}]}, "block_bandwidth": 1048576000}, "PRO2-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, - "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, - "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": - 1500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1500000000}]}, "block_bandwidth": 524288000}, "PRO2-XS": {"alt_names": [], "arch": - "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, - "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": - 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 700000000}]}, "block_bandwidth": - 262144000}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": - 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": - 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": - 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 350000000}]}, "block_bandwidth": - 131072000}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": - 45097156608, "gpu": 1, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": - 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": - 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": - 2000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 2000000000}]}, "block_bandwidth": 2147483648}, "STARDUST1-S": {"alt_names": - [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": - 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 100000000}]}, "block_bandwidth": 52428800}, "START1-L": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 41943040}, "START1-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 100000000000, "max_size": 100000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": - 300000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 300000000}]}, "block_bandwidth": 41943040}, "START1-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 50000000000, "max_size": 50000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 41943040}, "START1-XS": {"alt_names": [], "arch": - "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 25000000000, "max_size": 25000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": - 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 100000000}]}, "block_bandwidth": 41943040}, "VC1L": {"alt_names": ["X64-8GB"], - "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, - "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, - "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": - 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": - 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": - 41943040}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, - "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 100000000000, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 41943040}, "VC1S": {"alt_names": ["X64-2GB"], - "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 41943040}, "X64-120GB": {"alt_names": [], "arch": - "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 500000000000, "max_size": 1000000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": - 1000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1000000000}]}, "block_bandwidth": 41943040}, "X64-15GB": {"alt_names": [], "arch": - "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": - 250000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 250000000}]}, "block_bandwidth": 41943040}, "X64-30GB": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 300000000000, "max_size": 400000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": - 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 500000000}]}, "block_bandwidth": 41943040}, "X64-60GB": {"alt_names": [], "arch": - "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 400000000000, "max_size": 700000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": - 1000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1000000000}]}, "block_bandwidth": 41943040}}}' + body: '{"id":"60528f18-c16a-454c-bd3c-8db4fb653bdc","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:43.637105Z","updated_at":"2025-06-18T19:06:43.637105Z","references":[{"id":"cb334c9f-361d-4999-832c-a74be19a12f5","product_resource_type":"instance_server","product_resource_id":"26a3fd41-fd56-484a-bfb3-6714369ba243","created_at":"2025-06-18T19:06:43.637105Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' headers: Content-Length: - - "14208" + - "687" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:17 GMT - Link: - - ; rel="first",; - rel="previous",; rel="last" + - Wed, 18 Jun 2025 19:07:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1295,33 +2257,33 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c08ea3d5-eda0-44aa-bb34-d237c449dfa0 - X-Total-Count: - - "68" + - 6a24cc2d-0b3c-42d8-af35-8191896ef196 status: 200 OK code: 200 duration: "" - request: - body: '{"local_images":[{"id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","arch":"x86_64","zone":"fr-par-1","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"label":"ubuntu_jammy","type":"instance_sbs"},{"id":"7044ae1e-a35d-4364-a962-93811c845f2f","arch":"arm64","zone":"fr-par-1","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"label":"ubuntu_jammy","type":"instance_sbs"}],"total_count":2}' + body: '{"id":"60528f18-c16a-454c-bd3c-8db4fb653bdc","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:43.637105Z","updated_at":"2025-06-18T19:06:43.637105Z","references":[{"id":"cb334c9f-361d-4999-832c-a74be19a12f5","product_resource_type":"instance_server","product_resource_id":"26a3fd41-fd56-484a-bfb3-6714369ba243","created_at":"2025-06-18T19:06:43.637105Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/60528f18-c16a-454c-bd3c-8db4fb653bdc method: GET response: - body: '{"local_images":[{"id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","arch":"x86_64","zone":"fr-par-1","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"label":"ubuntu_jammy","type":"instance_sbs"},{"id":"7044ae1e-a35d-4364-a962-93811c845f2f","arch":"arm64","zone":"fr-par-1","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"label":"ubuntu_jammy","type":"instance_sbs"}],"total_count":2}' + body: '{"id":"60528f18-c16a-454c-bd3c-8db4fb653bdc","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:43.637105Z","updated_at":"2025-06-18T19:06:43.637105Z","references":[{"id":"cb334c9f-361d-4999-832c-a74be19a12f5","product_resource_type":"instance_server","product_resource_id":"26a3fd41-fd56-484a-bfb3-6714369ba243","created_at":"2025-06-18T19:06:43.637105Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' headers: Content-Length: - - "1216" + - "687" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:17 GMT + - Wed, 18 Jun 2025 19:07:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1329,45 +2291,33 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4044b90c-bbb1-4ea8-8e70-86d28dcaa16c + - e2593294-e75e-45af-bddb-3de8b2d44cc5 status: 200 OK code: 200 duration: "" - request: - body: '{"image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", "name": "Ubuntu - 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": - ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", - "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}}' + body: '{"id":"60528f18-c16a-454c-bd3c-8db4fb653bdc","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:43.637105Z","updated_at":"2025-06-18T19:06:43.637105Z","references":[{"id":"cb334c9f-361d-4999-832c-a74be19a12f5","product_resource_type":"instance_server","product_resource_id":"26a3fd41-fd56-484a-bfb3-6714369ba243","created_at":"2025-06-18T19:06:43.637105Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/1fb9bfa4-68c3-4d6f-a362-8913a1af27b0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/60528f18-c16a-454c-bd3c-8db4fb653bdc method: GET response: - body: '{"image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", "name": "Ubuntu - 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": - ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", - "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}}' + body: '{"id":"60528f18-c16a-454c-bd3c-8db4fb653bdc","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:43.637105Z","updated_at":"2025-06-18T19:06:43.637105Z","references":[{"id":"cb334c9f-361d-4999-832c-a74be19a12f5","product_resource_type":"instance_server","product_resource_id":"26a3fd41-fd56-484a-bfb3-6714369ba243","created_at":"2025-06-18T19:06:43.637105Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' headers: Content-Length: - - "587" + - "687" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:17 GMT + - Wed, 18 Jun 2025 19:07:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1375,33 +2325,33 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7145af10-35eb-4cec-9097-8ca45026d5d4 + - d8b5adbc-5729-4fb9-9895-14d6f0b23352 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"edc955af-ecd6-4415-8b34-f617a5d3db8f","name":"cli-vol-condescending-merkle","type":"sbs_5k","size":10000000000,"project_id":"ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b","created_at":"2025-01-29T10:26:17.567868Z","updated_at":"2025-01-29T10:26:17.567868Z","references":[],"parent_snapshot_id":null,"status":"creating","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + body: '{"id":"60528f18-c16a-454c-bd3c-8db4fb653bdc","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:43.637105Z","updated_at":"2025-06-18T19:06:43.637105Z","references":[{"id":"cb334c9f-361d-4999-832c-a74be19a12f5","product_resource_type":"instance_server","product_resource_id":"26a3fd41-fd56-484a-bfb3-6714369ba243","created_at":"2025-06-18T19:06:43.637105Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/60528f18-c16a-454c-bd3c-8db4fb653bdc + method: GET response: - body: '{"id":"edc955af-ecd6-4415-8b34-f617a5d3db8f","name":"cli-vol-condescending-merkle","type":"sbs_5k","size":10000000000,"project_id":"ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b","created_at":"2025-01-29T10:26:17.567868Z","updated_at":"2025-01-29T10:26:17.567868Z","references":[],"parent_snapshot_id":null,"status":"creating","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + body: '{"id":"60528f18-c16a-454c-bd3c-8db4fb653bdc","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:43.637105Z","updated_at":"2025-06-18T19:06:43.637105Z","references":[{"id":"cb334c9f-361d-4999-832c-a74be19a12f5","product_resource_type":"instance_server","product_resource_id":"26a3fd41-fd56-484a-bfb3-6714369ba243","created_at":"2025-06-18T19:06:43.637105Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' headers: Content-Length: - - "411" + - "687" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:17 GMT + - Wed, 18 Jun 2025 19:07:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1409,33 +2359,33 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad1ce692-0c8c-46dc-8aa5-cbbe3ddf9786 + - 7f7ec223-7308-4dfc-9738-03d9f724d17f status: 200 OK code: 200 duration: "" - request: - body: '{"message": "resource is not found", "type": "not_found", "resource": "instance_volume", - "resource_id": "edc955af-ecd6-4415-8b34-f617a5d3db8f"}' + body: '{"id":"60528f18-c16a-454c-bd3c-8db4fb653bdc","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:43.637105Z","updated_at":"2025-06-18T19:07:20.067869Z","references":[],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"available","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":"2025-06-18T19:07:20.067869Z","zone":"fr-par-1"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/edc955af-ecd6-4415-8b34-f617a5d3db8f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/60528f18-c16a-454c-bd3c-8db4fb653bdc method: GET response: - body: '{"message": "resource is not found", "type": "not_found", "resource": "instance_volume", - "resource_id": "edc955af-ecd6-4415-8b34-f617a5d3db8f"}' + body: '{"id":"60528f18-c16a-454c-bd3c-8db4fb653bdc","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:43.637105Z","updated_at":"2025-06-18T19:07:20.067869Z","references":[],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"available","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":"2025-06-18T19:07:20.067869Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "484" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:17 GMT + - Wed, 18 Jun 2025 19:07:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1443,31 +2393,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47a93b0c-83d1-44f9-a530-9c366ecea42e - status: 404 Not Found - code: 404 + - 4530e6b4-d67d-42fe-867b-f5f62dc72a89 + status: 200 OK + code: 200 duration: "" - request: - body: '{"id":"edc955af-ecd6-4415-8b34-f617a5d3db8f","name":"cli-vol-condescending-merkle","type":"sbs_5k","size":10000000000,"project_id":"ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b","created_at":"2025-01-29T10:26:17.567868Z","updated_at":"2025-01-29T10:26:17.567868Z","references":[],"parent_snapshot_id":null,"status":"creating","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + body: "" form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/edc955af-ecd6-4415-8b34-f617a5d3db8f - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/60528f18-c16a-454c-bd3c-8db4fb653bdc + method: DELETE response: - body: '{"id":"edc955af-ecd6-4415-8b34-f617a5d3db8f","name":"cli-vol-condescending-merkle","type":"sbs_5k","size":10000000000,"project_id":"ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b","created_at":"2025-01-29T10:26:17.567868Z","updated_at":"2025-01-29T10:26:17.567868Z","references":[],"parent_snapshot_id":null,"status":"creating","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + body: "" headers: - Content-Length: - - "411" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:17 GMT + - Wed, 18 Jun 2025 19:07:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1475,75 +2423,33 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47d06ec2-1db1-42cc-8f52-fe3db05d3429 - status: 200 OK - code: 200 + - 14d9607c-91b5-46a0-8b13-2f1209dd07e4 + status: 204 No Content + code: 204 duration: "" - request: - body: '{"server": {"id": "a93c011d-bd4b-4d82-b761-9d967c1c73a6", "name": "cli-srv-wizardly-booth", - "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-wizardly-booth", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", - "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": - ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", - "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "0b4a4435-5802-4f8c-8464-fff679906a69", "zone": "fr-par-1"}, "1": {"boot": - false, "volume_type": "sbs_volume", "id": "edc955af-ecd6-4415-8b34-f617a5d3db8f", - "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": - "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:90:7f:41", - "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-01-29T10:26:18.346797+00:00", - "modification_date": "2025-01-29T10:26:18.346797+00:00", "bootscript": null, - "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default - security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", - "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + body: '{"message": "resource is not found", "type": "not_found", "resource": "instance_volume", + "resource_id": "2e902164-d2bb-4201-835a-87486860e701"}' form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2e902164-d2bb-4201-835a-87486860e701 + method: GET response: - body: '{"server": {"id": "a93c011d-bd4b-4d82-b761-9d967c1c73a6", "name": "cli-srv-wizardly-booth", - "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-wizardly-booth", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", - "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": - ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", - "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "0b4a4435-5802-4f8c-8464-fff679906a69", "zone": "fr-par-1"}, "1": {"boot": - false, "volume_type": "sbs_volume", "id": "edc955af-ecd6-4415-8b34-f617a5d3db8f", - "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": - "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:90:7f:41", - "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-01-29T10:26:18.346797+00:00", - "modification_date": "2025-01-29T10:26:18.346797+00:00", "bootscript": null, - "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default - security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", - "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + body: '{"message": "resource is not found", "type": "not_found", "resource": "instance_volume", + "resource_id": "2e902164-d2bb-4201-835a-87486860e701"}' headers: Content-Length: - - "1795" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:19 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a93c011d-bd4b-4d82-b761-9d967c1c73a6 + - Wed, 18 Jun 2025 19:07:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1551,43 +2457,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 035a9cf1-6497-41d7-b147-86046416a171 - status: 201 Created - code: 201 + - c9a7e2d3-6976-4d02-8674-3fb1d706db43 + status: 404 Not Found + code: 404 duration: "" - request: - body: '{"task": {"id": "5857d866-a6c9-46da-8bd2-c46d28acb931", "description": - "server_batch_poweron", "status": "pending", "href_from": "/servers/a93c011d-bd4b-4d82-b761-9d967c1c73a6/action", - "href_result": "/servers/a93c011d-bd4b-4d82-b761-9d967c1c73a6", "started_at": - "2025-01-29T10:26:19.928091+00:00", "terminated_at": null, "progress": 0, "zone": - "fr-par-1"}}' + body: '{"id":"2e902164-d2bb-4201-835a-87486860e701","name":"cli-vol-strange-driscoll","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:43.216114Z","updated_at":"2025-06-18T19:06:43.695761Z","references":[{"id":"7cb4559f-d4d1-41e6-a5cc-c2e53415c949","product_resource_type":"instance_server","product_resource_id":"26a3fd41-fd56-484a-bfb3-6714369ba243","created_at":"2025-06-18T19:06:43.695761Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":null,"status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a93c011d-bd4b-4d82-b761-9d967c1c73a6/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2e902164-d2bb-4201-835a-87486860e701 + method: GET response: - body: '{"task": {"id": "5857d866-a6c9-46da-8bd2-c46d28acb931", "description": - "server_batch_poweron", "status": "pending", "href_from": "/servers/a93c011d-bd4b-4d82-b761-9d967c1c73a6/action", - "href_result": "/servers/a93c011d-bd4b-4d82-b761-9d967c1c73a6", "started_at": - "2025-01-29T10:26:19.928091+00:00", "terminated_at": null, "progress": 0, "zone": - "fr-par-1"}}' + body: '{"id":"2e902164-d2bb-4201-835a-87486860e701","name":"cli-vol-strange-driscoll","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:43.216114Z","updated_at":"2025-06-18T19:06:43.695761Z","references":[{"id":"7cb4559f-d4d1-41e6-a5cc-c2e53415c949","product_resource_type":"instance_server","product_resource_id":"26a3fd41-fd56-484a-bfb3-6714369ba243","created_at":"2025-06-18T19:06:43.695761Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":null,"status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' headers: Content-Length: - - "357" + - "635" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:19 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/5857d866-a6c9-46da-8bd2-c46d28acb931 + - Wed, 18 Jun 2025 19:07:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1595,71 +2489,75 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d03d336-da80-46b4-9849-56265b649b01 - status: 202 Accepted - code: 202 + - 34c2f8ee-b5f5-40db-ad1e-cd8c48e10b6b + status: 200 OK + code: 200 duration: "" - request: - body: '{"server": {"id": "a93c011d-bd4b-4d82-b761-9d967c1c73a6", "name": "cli-srv-wizardly-booth", + body: '{"server": {"id": "26a3fd41-fd56-484a-bfb3-6714369ba243", "name": "cli-srv-cocky-morse", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-wizardly-booth", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-cocky-morse", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "0b4a4435-5802-4f8c-8464-fff679906a69", "zone": "fr-par-1"}, "1": {"boot": - false, "volume_type": "sbs_volume", "id": "edc955af-ecd6-4415-8b34-f617a5d3db8f", - "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": - "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:90:7f:41", - "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-01-29T10:26:18.346797+00:00", - "modification_date": "2025-01-29T10:26:19.399685+00:00", "bootscript": null, - "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default - security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", - "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + [], "zone": "fr-par-1"}, "volumes": {}, "tags": [], "state": "running", "protected": + false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], + "mac_address": "de:00:00:b7:59:7d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": + null, "creation_date": "2025-06-18T19:06:43.518700+00:00", "modification_date": + "2025-06-18T19:06:49.500476+00:00", "bootscript": null, "security_group": {"id": + "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default security group"}, "location": + {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": + "1302", "node_id": "36"}, "maintenances": [], "allowed_actions": ["poweroff", + "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": + false}}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a93c011d-bd4b-4d82-b761-9d967c1c73a6 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/26a3fd41-fd56-484a-bfb3-6714369ba243/detach-volume + method: POST response: - body: '{"server": {"id": "a93c011d-bd4b-4d82-b761-9d967c1c73a6", "name": "cli-srv-wizardly-booth", + body: '{"server": {"id": "26a3fd41-fd56-484a-bfb3-6714369ba243", "name": "cli-srv-cocky-morse", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-wizardly-booth", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-cocky-morse", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "0b4a4435-5802-4f8c-8464-fff679906a69", "zone": "fr-par-1"}, "1": {"boot": - false, "volume_type": "sbs_volume", "id": "edc955af-ecd6-4415-8b34-f617a5d3db8f", - "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": - "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:90:7f:41", - "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-01-29T10:26:18.346797+00:00", - "modification_date": "2025-01-29T10:26:19.399685+00:00", "bootscript": null, - "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default - security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", - "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + [], "zone": "fr-par-1"}, "volumes": {}, "tags": [], "state": "running", "protected": + false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], + "mac_address": "de:00:00:b7:59:7d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": + null, "creation_date": "2025-06-18T19:06:43.518700+00:00", "modification_date": + "2025-06-18T19:06:49.500476+00:00", "bootscript": null, "security_group": {"id": + "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default security group"}, "location": + {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "40", "hypervisor_id": + "1302", "node_id": "36"}, "maintenances": [], "allowed_actions": ["poweroff", + "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": + false}}' headers: Content-Length: - - "1817" + - "1758" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:20 GMT + - Wed, 18 Jun 2025 19:07:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1667,75 +2565,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 277f041e-a38d-4046-8541-c84beca7f776 + - 55139845-e4b8-418f-99f5-103eff93130f status: 200 OK code: 200 duration: "" - request: - body: '{"server": {"id": "a93c011d-bd4b-4d82-b761-9d967c1c73a6", "name": "cli-srv-wizardly-booth", - "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-wizardly-booth", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", - "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": - ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", - "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "0b4a4435-5802-4f8c-8464-fff679906a69", "zone": "fr-par-1"}, "1": {"boot": - false, "volume_type": "sbs_volume", "id": "edc955af-ecd6-4415-8b34-f617a5d3db8f", - "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": - "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:90:7f:41", - "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-01-29T10:26:18.346797+00:00", - "modification_date": "2025-01-29T10:26:24.400644+00:00", "bootscript": null, - "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default - security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": - "43", "hypervisor_id": "301", "node_id": "22"}, "maintenances": [], "allowed_actions": - ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": - null, "private_nics": [], "zone": "fr-par-1"}}' + body: '{"id":"2e902164-d2bb-4201-835a-87486860e701","name":"cli-vol-strange-driscoll","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:43.216114Z","updated_at":"2025-06-18T19:06:43.695761Z","references":[{"id":"7cb4559f-d4d1-41e6-a5cc-c2e53415c949","product_resource_type":"instance_server","product_resource_id":"26a3fd41-fd56-484a-bfb3-6714369ba243","created_at":"2025-06-18T19:06:43.695761Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":null,"status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a93c011d-bd4b-4d82-b761-9d967c1c73a6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2e902164-d2bb-4201-835a-87486860e701 method: GET response: - body: '{"server": {"id": "a93c011d-bd4b-4d82-b761-9d967c1c73a6", "name": "cli-srv-wizardly-booth", - "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-wizardly-booth", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", - "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": - ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", - "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "0b4a4435-5802-4f8c-8464-fff679906a69", "zone": "fr-par-1"}, "1": {"boot": - false, "volume_type": "sbs_volume", "id": "edc955af-ecd6-4415-8b34-f617a5d3db8f", - "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": - "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:90:7f:41", - "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-01-29T10:26:18.346797+00:00", - "modification_date": "2025-01-29T10:26:24.400644+00:00", "bootscript": null, - "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default - security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": - "43", "hypervisor_id": "301", "node_id": "22"}, "maintenances": [], "allowed_actions": - ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": - null, "private_nics": [], "zone": "fr-par-1"}}' + body: '{"id":"2e902164-d2bb-4201-835a-87486860e701","name":"cli-vol-strange-driscoll","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:43.216114Z","updated_at":"2025-06-18T19:06:43.695761Z","references":[{"id":"7cb4559f-d4d1-41e6-a5cc-c2e53415c949","product_resource_type":"instance_server","product_resource_id":"26a3fd41-fd56-484a-bfb3-6714369ba243","created_at":"2025-06-18T19:06:43.695761Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":null,"status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' headers: Content-Length: - - "1951" + - "635" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:25 GMT + - Wed, 18 Jun 2025 19:07:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1743,75 +2597,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e28adab2-b20f-47a9-bcff-54fd7a052d3d + - 1e275e32-5f29-4b45-a9bb-28e42faacf76 status: 200 OK code: 200 duration: "" - request: - body: '{"server": {"id": "a93c011d-bd4b-4d82-b761-9d967c1c73a6", "name": "cli-srv-wizardly-booth", - "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-wizardly-booth", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", - "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": - ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", - "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "0b4a4435-5802-4f8c-8464-fff679906a69", "zone": "fr-par-1"}, "1": {"boot": - false, "volume_type": "sbs_volume", "id": "edc955af-ecd6-4415-8b34-f617a5d3db8f", - "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": - "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:90:7f:41", - "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-01-29T10:26:18.346797+00:00", - "modification_date": "2025-01-29T10:26:24.400644+00:00", "bootscript": null, - "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default - security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": - "43", "hypervisor_id": "301", "node_id": "22"}, "maintenances": [], "allowed_actions": - ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": - null, "private_nics": [], "zone": "fr-par-1"}}' + body: '{"id":"2e902164-d2bb-4201-835a-87486860e701","name":"cli-vol-strange-driscoll","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:43.216114Z","updated_at":"2025-06-18T19:07:21.904889Z","references":[],"parent_snapshot_id":null,"status":"available","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":"2025-06-18T19:07:21.904889Z","zone":"fr-par-1"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a93c011d-bd4b-4d82-b761-9d967c1c73a6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2e902164-d2bb-4201-835a-87486860e701 method: GET response: - body: '{"server": {"id": "a93c011d-bd4b-4d82-b761-9d967c1c73a6", "name": "cli-srv-wizardly-booth", - "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-wizardly-booth", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", - "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": - ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", - "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "0b4a4435-5802-4f8c-8464-fff679906a69", "zone": "fr-par-1"}, "1": {"boot": - false, "volume_type": "sbs_volume", "id": "edc955af-ecd6-4415-8b34-f617a5d3db8f", - "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": - "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:90:7f:41", - "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-01-29T10:26:18.346797+00:00", - "modification_date": "2025-01-29T10:26:24.400644+00:00", "bootscript": null, - "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default - security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": - "43", "hypervisor_id": "301", "node_id": "22"}, "maintenances": [], "allowed_actions": - ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": - null, "private_nics": [], "zone": "fr-par-1"}}' + body: '{"id":"2e902164-d2bb-4201-835a-87486860e701","name":"cli-vol-strange-driscoll","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:43.216114Z","updated_at":"2025-06-18T19:07:21.904889Z","references":[],"parent_snapshot_id":null,"status":"available","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":"2025-06-18T19:07:21.904889Z","zone":"fr-par-1"}' headers: Content-Length: - - "1951" + - "433" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:25 GMT + - Wed, 18 Jun 2025 19:07:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1819,29 +2629,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86adaa41-23e6-4ebb-bb05-a0df9131c753 + - 0045745f-f29b-470c-9f21-85a15ebe2830 status: 200 OK code: 200 duration: "" - request: - body: '{"task": {"id": "9a8b0d42-b01c-426a-8c7b-baa64b2cfff4", "description": - "server_terminate", "status": "pending", "href_from": "/servers/a93c011d-bd4b-4d82-b761-9d967c1c73a6/action", - "href_result": "/servers/a93c011d-bd4b-4d82-b761-9d967c1c73a6", "started_at": - "2025-01-29T10:26:25.924397+00:00", "terminated_at": null, "progress": 0, "zone": + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2e902164-d2bb-4201-835a-87486860e701 + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:07:26 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 46e2eeb1-44f4-425f-af0b-51e6d934c4e2 + status: 204 No Content + code: 204 + duration: "" +- request: + body: '{"task": {"id": "816e7a41-336e-4d6f-bba8-86c14c9d5fb2", "description": + "server_terminate", "status": "pending", "href_from": "/servers/26a3fd41-fd56-484a-bfb3-6714369ba243/action", + "href_result": "/servers/26a3fd41-fd56-484a-bfb3-6714369ba243", "started_at": + "2025-06-18T19:07:26.490429+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a93c011d-bd4b-4d82-b761-9d967c1c73a6/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/26a3fd41-fd56-484a-bfb3-6714369ba243/action method: POST response: - body: '{"task": {"id": "9a8b0d42-b01c-426a-8c7b-baa64b2cfff4", "description": - "server_terminate", "status": "pending", "href_from": "/servers/a93c011d-bd4b-4d82-b761-9d967c1c73a6/action", - "href_result": "/servers/a93c011d-bd4b-4d82-b761-9d967c1c73a6", "started_at": - "2025-01-29T10:26:25.924397+00:00", "terminated_at": null, "progress": 0, "zone": + body: '{"task": {"id": "816e7a41-336e-4d6f-bba8-86c14c9d5fb2", "description": + "server_terminate", "status": "pending", "href_from": "/servers/26a3fd41-fd56-484a-bfb3-6714369ba243/action", + "href_result": "/servers/26a3fd41-fd56-484a-bfb3-6714369ba243", "started_at": + "2025-06-18T19:07:26.490429+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: @@ -1851,11 +2691,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:25 GMT + - Wed, 18 Jun 2025 19:07:26 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9a8b0d42-b01c-426a-8c7b-baa64b2cfff4 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/816e7a41-336e-4d6f-bba8-86c14c9d5fb2 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1863,75 +2703,71 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc9e2fe6-f161-4bf6-b773-d168f3c380b8 + - 9391b78a-4705-4b3a-8a89-7aa2ab3a0509 status: 202 Accepted code: 202 duration: "" - request: - body: '{"server": {"id": "a93c011d-bd4b-4d82-b761-9d967c1c73a6", "name": "cli-srv-wizardly-booth", + body: '{"server": {"id": "26a3fd41-fd56-484a-bfb3-6714369ba243", "name": "cli-srv-cocky-morse", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-wizardly-booth", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-cocky-morse", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "0b4a4435-5802-4f8c-8464-fff679906a69", "zone": "fr-par-1"}, "1": {"boot": - false, "volume_type": "sbs_volume", "id": "edc955af-ecd6-4415-8b34-f617a5d3db8f", - "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": - "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:90:7f:41", - "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-01-29T10:26:18.346797+00:00", - "modification_date": "2025-01-29T10:26:25.754759+00:00", "bootscript": null, - "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default - security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": - "43", "hypervisor_id": "301", "node_id": "22"}, "maintenances": [], "allowed_actions": - ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": - "fr-par-1"}}' + [], "zone": "fr-par-1"}, "volumes": {}, "tags": [], "state": "stopping", "protected": + false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": + "de:00:00:b7:59:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": + [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, + "creation_date": "2025-06-18T19:06:43.518700+00:00", "modification_date": "2025-06-18T19:07:26.274317+00:00", + "bootscript": null, "security_group": {"id": "8e34ee28-25f2-4952-aca9-68ba0bbae245", + "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": + "14", "cluster_id": "40", "hypervisor_id": "1302", "node_id": "36"}, "maintenances": + [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": + false}}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a93c011d-bd4b-4d82-b761-9d967c1c73a6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/26a3fd41-fd56-484a-bfb3-6714369ba243 method: GET response: - body: '{"server": {"id": "a93c011d-bd4b-4d82-b761-9d967c1c73a6", "name": "cli-srv-wizardly-booth", + body: '{"server": {"id": "26a3fd41-fd56-484a-bfb3-6714369ba243", "name": "cli-srv-cocky-morse", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-wizardly-booth", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-cocky-morse", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "0b4a4435-5802-4f8c-8464-fff679906a69", "zone": "fr-par-1"}, "1": {"boot": - false, "volume_type": "sbs_volume", "id": "edc955af-ecd6-4415-8b34-f617a5d3db8f", - "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": - "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:90:7f:41", - "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-01-29T10:26:18.346797+00:00", - "modification_date": "2025-01-29T10:26:25.754759+00:00", "bootscript": null, - "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default - security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": - "43", "hypervisor_id": "301", "node_id": "22"}, "maintenances": [], "allowed_actions": - ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": - "fr-par-1"}}' + [], "zone": "fr-par-1"}, "volumes": {}, "tags": [], "state": "stopping", "protected": + false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": + "de:00:00:b7:59:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": + [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, + "creation_date": "2025-06-18T19:06:43.518700+00:00", "modification_date": "2025-06-18T19:07:26.274317+00:00", + "bootscript": null, "security_group": {"id": "8e34ee28-25f2-4952-aca9-68ba0bbae245", + "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": + "14", "cluster_id": "40", "hypervisor_id": "1302", "node_id": "36"}, "maintenances": + [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": + false}}' headers: Content-Length: - - "1914" + - "1721" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:25 GMT + - Wed, 18 Jun 2025 19:07:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1939,75 +2775,33 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3166785a-7b26-40c1-9145-858f53a1bdc8 + - 6b172a39-a201-4acd-8131-fa80ea5df909 status: 200 OK code: 200 duration: "" - request: - body: '{"server": {"id": "a93c011d-bd4b-4d82-b761-9d967c1c73a6", "name": "cli-srv-wizardly-booth", - "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-wizardly-booth", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", - "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": - ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", - "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "0b4a4435-5802-4f8c-8464-fff679906a69", "zone": "fr-par-1"}, "1": {"boot": - false, "volume_type": "sbs_volume", "id": "edc955af-ecd6-4415-8b34-f617a5d3db8f", - "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": - "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:90:7f:41", - "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-01-29T10:26:18.346797+00:00", - "modification_date": "2025-01-29T10:26:25.754759+00:00", "bootscript": null, - "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default - security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": - "43", "hypervisor_id": "301", "node_id": "22"}, "maintenances": [], "allowed_actions": - ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": - "fr-par-1"}}' + body: '{"message": "resource is not found", "type": "not_found", "resource": "instance_server", + "resource_id": "26a3fd41-fd56-484a-bfb3-6714369ba243"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a93c011d-bd4b-4d82-b761-9d967c1c73a6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/26a3fd41-fd56-484a-bfb3-6714369ba243 method: GET response: - body: '{"server": {"id": "a93c011d-bd4b-4d82-b761-9d967c1c73a6", "name": "cli-srv-wizardly-booth", - "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-wizardly-booth", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", - "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": - ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", - "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "0b4a4435-5802-4f8c-8464-fff679906a69", "zone": "fr-par-1"}, "1": {"boot": - false, "volume_type": "sbs_volume", "id": "edc955af-ecd6-4415-8b34-f617a5d3db8f", - "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": - "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:90:7f:41", - "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-01-29T10:26:18.346797+00:00", - "modification_date": "2025-01-29T10:26:25.754759+00:00", "bootscript": null, - "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default - security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": - "43", "hypervisor_id": "301", "node_id": "22"}, "maintenances": [], "allowed_actions": - ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": - "fr-par-1"}}' + body: '{"message": "resource is not found", "type": "not_found", "resource": "instance_server", + "resource_id": "26a3fd41-fd56-484a-bfb3-6714369ba243"}' headers: Content-Length: - - "1914" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:31 GMT + - Wed, 18 Jun 2025 19:07:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2015,33 +2809,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21fb017f-d66b-46a3-8627-d8c804fece92 - status: 200 OK - code: 200 + - a425d3e6-a93e-4c7c-8ac1-a6038b797ca6 + status: 404 Not Found + code: 404 duration: "" - request: - body: '{"message": "resource is not found", "type": "not_found", "resource": "instance_server", - "resource_id": "a93c011d-bd4b-4d82-b761-9d967c1c73a6"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"60528f18-c16a-454c-bd3c-8db4fb653bdc","type":"not_found"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a93c011d-bd4b-4d82-b761-9d967c1c73a6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/60528f18-c16a-454c-bd3c-8db4fb653bdc method: GET response: - body: '{"message": "resource is not found", "type": "not_found", "resource": "instance_server", - "resource_id": "a93c011d-bd4b-4d82-b761-9d967c1c73a6"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"60528f18-c16a-454c-bd3c-8db4fb653bdc","type":"not_found"}' headers: Content-Length: - - "143" + - "127" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:36 GMT + - Wed, 18 Jun 2025 19:07:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2049,33 +2841,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20b7832b-b0ad-4539-9e63-cc8e8bdf40ba + - 80e094fc-6745-49cc-9913-dc9699ddff0c status: 404 Not Found code: 404 duration: "" - request: - body: '{"message": "resource is not found", "type": "not_found", "resource": "instance_volume", - "resource_id": "0b4a4435-5802-4f8c-8464-fff679906a69"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"2e902164-d2bb-4201-835a-87486860e701","type":"not_found"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0b4a4435-5802-4f8c-8464-fff679906a69 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2e902164-d2bb-4201-835a-87486860e701 method: GET response: - body: '{"message": "resource is not found", "type": "not_found", "resource": "instance_volume", - "resource_id": "0b4a4435-5802-4f8c-8464-fff679906a69"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"2e902164-d2bb-4201-835a-87486860e701","type":"not_found"}' headers: Content-Length: - - "143" + - "127" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:36 GMT + - Wed, 18 Jun 2025 19:07:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2083,7 +2873,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1f44a95-2f50-483a-90d2-3b7e2760a4ac + - 63033998-f5ad-49ed-af68-e75e99fe1825 status: 404 Not Found code: 404 duration: "" diff --git a/internal/namespaces/instance/v1/testdata/test-server-terminate-with-block.golden b/internal/namespaces/instance/v1/testdata/test-server-terminate-with-block.golden index 87818d7a08..0d161acbaf 100644 --- a/internal/namespaces/instance/v1/testdata/test-server-terminate-with-block.golden +++ b/internal/namespaces/instance/v1/testdata/test-server-terminate-with-block.golden @@ -1,6 +1,9 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ βœ… Success. +πŸŸ₯πŸŸ₯πŸŸ₯ STDERR️️ πŸŸ₯πŸŸ₯πŸŸ₯️ +successfully deleted block volume "Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0" +successfully deleted block volume "cli-vol-strange-driscoll" 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 { "message": "Success", diff --git a/internal/namespaces/instance/v1/testdata/test-server-terminate-with-ip.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-server-terminate-with-ip.cassette.yaml index aa6ba0c859..07586b46d3 100644 --- a/internal/namespaces/instance/v1/testdata/test-server-terminate-with-ip.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-server-terminate-with-ip.cassette.yaml @@ -3,928 +3,2379 @@ version: 1 interactions: - request: body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": - 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 671088640}, "COPARM1-2C-8G": {"alt_names": - [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": + [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 83886080}, "COPARM1-32C-128G": {"alt_names": - [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 1342177280}, "COPARM1-4C-16G": {"alt_names": - [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, + "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": + [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, + "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": + [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 167772160}, "COPARM1-8C-32G": {"alt_names": - [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": + [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 335544320}, "DEV1-L": {"alt_names": [], "arch": - "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": + 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 209715200}, "DEV1-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": + 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, + "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": + 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": - 300000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 300000000}]}, "block_bandwidth": 157286400}, "DEV1-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, + "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, + "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 104857600}, "DEV1-XL": {"alt_names": [], "arch": - "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "mig_profile": null, "volumes_constraint": + 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, + "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": + 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, + "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, + "block_bandwidth": 262144000, "end_of_service": false}, "ENT1-2XL": {"alt_names": + [], "arch": "x86_64", "ncpus": 96, "ram": 412316860416, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 2576.9, "hourly_price": 3.53, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, + "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, + "block_bandwidth": 21474836480, "end_of_service": true}, "ENT1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, + "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, + "block_bandwidth": 5905580032, "end_of_service": true}, "ENT1-M": {"alt_names": + [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, + "block_bandwidth": 3355443200, "end_of_service": true}, "ENT1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 1677721600, "end_of_service": true}, "ENT1-XL": {"alt_names": + [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, + "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, + "block_bandwidth": 5905580032, "end_of_service": true}, "ENT1-XS": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": true}, "ENT1-XXS": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 53.655, "hourly_price": 0.0735, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": true}, "GP1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, + "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, + "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, + "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": + [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, + "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, + "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, + "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": + [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, + "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, + "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, + "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": + 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": - 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 500000000}]}, "block_bandwidth": 262144000}, "ENT1-2XL": {"alt_names": [], "arch": - "x86_64", "ncpus": 96, "ram": 412316860416, "gpu": 0, "mig_profile": null, "volumes_constraint": + 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, + "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": + 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", + "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2576.9, - "hourly_price": 3.53, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, + "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, - "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": - 20000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 20000000000}]}, "block_bandwidth": 21474836480}, "ENT1-L": {"alt_names": [], - "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "ENT1-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": + 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, + "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": + 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", + "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, - "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, + "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, - "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "ENT1-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": + 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, + "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": + 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", + "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, - "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, + "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, - "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "ENT1-XL": {"alt_names": [], - "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}, "block_bandwidth": 13421772800}, "ENT1-XS": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "ENT1-XXS": {"alt_names": [], "arch": - "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.655, - "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "GP1-L": {"alt_names": [], "arch": - "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": - 5000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 5000000000}]}, "block_bandwidth": 1073741824}, "GP1-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": - 1500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1500000000}]}, "block_bandwidth": 838860800}, "GP1-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 524288000}, "GP1-XL": {"alt_names": [], "arch": - "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": - 10000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 10000000000}]}, "block_bandwidth": 2147483648}, "GP1-XS": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": - 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 500000000}]}, "block_bandwidth": 314572800}, "PLAY2-MICRO": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, + 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, + "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": + 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", + "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, + "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": + 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, + "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", + "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 167772160}, "PLAY2-NANO": {"alt_names": [], - "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 83886080}, "PLAY2-PICO": {"alt_names": [], - "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, + "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": + [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": - 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 100000000}]}, "block_bandwidth": 41943040}, "POP2-16C-64G": {"alt_names": [], - "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-16C-64G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, + "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, + "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": + [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, + "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": + {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": + 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-2C-8G": {"alt_names": [], - "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, + 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, + "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", + "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "POP2-2C-8G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "POP2-32C-128G": {"alt_names": - [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-32C-128G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, + "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, + "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": + {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": + 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-4C-16G": {"alt_names": - [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "POP2-4C-16G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "POP2-64C-256G": {"alt_names": - [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-8C-32G": {"alt_names": - [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-8C-32G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": + 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", + "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, + "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, + "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": + [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, + "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, + "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, + "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, + "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": + 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-HC-16C-32G": {"alt_names": - [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "mig_profile": + 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, + "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", + "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-HC-2C-4G": {"alt_names": - [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, + "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "POP2-HC-32C-64G": {"alt_names": - [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-HC-4C-8G": {"alt_names": - [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, + "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, + "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": + {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": + 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": + 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", + "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "POP2-HC-64C-128G": {"alt_names": - [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": + {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": + 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-HC-8C-16G": {"alt_names": - [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", + "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-HM-16C-128G": {"alt_names": - [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": + {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": + 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-HM-2C-16G": {"alt_names": - [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, + "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", + "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "POP2-HM-32C-256G": {"alt_names": - [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": + {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": + 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-HM-4C-32G": {"alt_names": - [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "POP2-HM-64C-512G": {"alt_names": - [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-HM-8C-64G": {"alt_names": - [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-HN-10": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": - 10000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 10000000000}]}, "block_bandwidth": 838860800}, "POP2-HN-3": {"alt_names": [], - "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": - 3000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3000000000}]}, "block_bandwidth": 419430400}, "POP2-HN-5": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": - 5000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 5000000000}]}, "block_bandwidth": 838860800}}}' + 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}}}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": - 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 671088640}, "COPARM1-2C-8G": {"alt_names": - [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": + [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 83886080}, "COPARM1-32C-128G": {"alt_names": - [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 1342177280}, "COPARM1-4C-16G": {"alt_names": - [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, + "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": + [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, + "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": + [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 167772160}, "COPARM1-8C-32G": {"alt_names": - [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": + [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 335544320}, "DEV1-L": {"alt_names": [], "arch": - "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": + 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 209715200}, "DEV1-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": + 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, + "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": + 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": - 300000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 300000000}]}, "block_bandwidth": 157286400}, "DEV1-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, + "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, + "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 104857600}, "DEV1-XL": {"alt_names": [], "arch": - "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "mig_profile": null, "volumes_constraint": + 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, + "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": + 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, + "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, + "block_bandwidth": 262144000, "end_of_service": false}, "ENT1-2XL": {"alt_names": + [], "arch": "x86_64", "ncpus": 96, "ram": 412316860416, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 2576.9, "hourly_price": 3.53, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, + "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, + "block_bandwidth": 21474836480, "end_of_service": true}, "ENT1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, + "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, + "block_bandwidth": 5905580032, "end_of_service": true}, "ENT1-M": {"alt_names": + [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, + "block_bandwidth": 3355443200, "end_of_service": true}, "ENT1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 1677721600, "end_of_service": true}, "ENT1-XL": {"alt_names": + [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, + "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, + "block_bandwidth": 5905580032, "end_of_service": true}, "ENT1-XS": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": true}, "ENT1-XXS": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 53.655, "hourly_price": 0.0735, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": true}, "GP1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, + "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, + "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, + "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": + [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, + "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, + "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, + "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": + [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, + "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, + "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, + "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": + 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": - 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 500000000}]}, "block_bandwidth": 262144000}, "ENT1-2XL": {"alt_names": [], "arch": - "x86_64", "ncpus": 96, "ram": 412316860416, "gpu": 0, "mig_profile": null, "volumes_constraint": + 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, + "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": + 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", + "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2576.9, - "hourly_price": 3.53, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, + "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, - "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": - 20000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 20000000000}]}, "block_bandwidth": 21474836480}, "ENT1-L": {"alt_names": [], - "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "ENT1-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": + 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, + "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": + 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", + "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, - "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, + "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, - "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "ENT1-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": + 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, + "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": + 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", + "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, - "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, + "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, - "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "ENT1-XL": {"alt_names": [], - "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}, "block_bandwidth": 13421772800}, "ENT1-XS": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "ENT1-XXS": {"alt_names": [], "arch": - "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.655, - "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "GP1-L": {"alt_names": [], "arch": - "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": - 5000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 5000000000}]}, "block_bandwidth": 1073741824}, "GP1-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": - 1500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1500000000}]}, "block_bandwidth": 838860800}, "GP1-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 524288000}, "GP1-XL": {"alt_names": [], "arch": - "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": - 10000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 10000000000}]}, "block_bandwidth": 2147483648}, "GP1-XS": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": - 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 500000000}]}, "block_bandwidth": 314572800}, "PLAY2-MICRO": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, + 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, + "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": + 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", + "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, + "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": + 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, + "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", + "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 167772160}, "PLAY2-NANO": {"alt_names": [], - "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 83886080}, "PLAY2-PICO": {"alt_names": [], - "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, + "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": + [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": - 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 100000000}]}, "block_bandwidth": 41943040}, "POP2-16C-64G": {"alt_names": [], - "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-16C-64G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, + "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, + "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": + [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, + "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": + {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": + 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-2C-8G": {"alt_names": [], - "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, + 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, + "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", + "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "POP2-2C-8G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "POP2-32C-128G": {"alt_names": - [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-32C-128G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, + "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, + "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": + {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": + 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-4C-16G": {"alt_names": - [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "POP2-4C-16G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "POP2-64C-256G": {"alt_names": - [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-8C-32G": {"alt_names": - [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-8C-32G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": + 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", + "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, + "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, + "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": + [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, + "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, + "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, + "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, + "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": + 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-HC-16C-32G": {"alt_names": - [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "mig_profile": + 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, + "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", + "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-HC-2C-4G": {"alt_names": - [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, + "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "POP2-HC-32C-64G": {"alt_names": - [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-HC-4C-8G": {"alt_names": - [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, + "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, + "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": + {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": + 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": + 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", + "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "POP2-HC-64C-128G": {"alt_names": - [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": + {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": + 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-HC-8C-16G": {"alt_names": - [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", + "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-HM-16C-128G": {"alt_names": - [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": + {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": + 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-HM-2C-16G": {"alt_names": - [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, + "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", + "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "POP2-HM-32C-256G": {"alt_names": - [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": + {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": + 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-HM-4C-32G": {"alt_names": - [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}}}' + headers: + Content-Length: + - "39208" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:04:59 GMT + Link: + - ; rel="next",; + rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 332f6852-6447-445d-9b6d-1100240b986a + X-Total-Count: + - "75" + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"servers": {"POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": + 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, + "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": + 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", + "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "POP2-HM-64C-512G": {"alt_names": - [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": + {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": + 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": + 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", + "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, + "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, + "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, + "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, + "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, + "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": + [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, + "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, + "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, + "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, + "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, + "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, + "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, + "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, + "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": + {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": + 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": + 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, + "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", + "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, + "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, + "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": + 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, + "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": + 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, + "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": + 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, + "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": + 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, + "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": + ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, + "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": + ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, + "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": + ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": + 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": + 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, + "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": + 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, + "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": + [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, + "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, + "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, + "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, + "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": + [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": + 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": + 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, + "end_of_service": true}}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + method: GET + response: + body: '{"servers": {"POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": + 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, + "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": + 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", + "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": + "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": + {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": + 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-HM-8C-64G": {"alt_names": - [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", + "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-HN-10": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": - 10000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 10000000000}]}, "block_bandwidth": 838860800}, "POP2-HN-3": {"alt_names": [], - "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, + "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": - 3000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3000000000}]}, "block_bandwidth": 419430400}, "POP2-HN-5": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, + "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": - 5000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 5000000000}]}, "block_bandwidth": 838860800}}}' + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, + "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, + "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, + "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": + [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, + "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, + "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, + "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, + "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, + "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, + "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, + "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, + "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": + {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": + 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": + 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, + "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", + "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, + "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, + "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": + 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, + "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": + 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, + "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": + 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, + "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": + 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, + "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": + ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, + "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": + ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, + "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": + ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": + 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": + 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, + "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": + 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, + "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": + [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, + "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, + "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, + "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, + "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": + [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": + 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": + 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, + "end_of_service": true}}}' + headers: + Content-Length: + - "19730" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:04:59 GMT + Link: + - ; rel="first",; + rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3ffb9605-b7e4-43af-b3f1-d3a65acd5898 + X-Total-Count: + - "75" + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"local_images":[{"id":"3b131f0d-7075-494e-9c86-b2c424007a0a","arch":"arm64","zone":"fr-par-1","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"label":"ubuntu_jammy","type":"instance_sbs"},{"id":"63d40353-5519-46d0-9172-ccf4885954e1","arch":"x86_64","zone":"fr-par-1","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10","POP2-48C-192G","POP2-HC-48C-96G","POP2-HM-48C-384G"],"label":"ubuntu_jammy","type":"instance_sbs"}],"total_count":2}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET + response: + body: '{"local_images":[{"id":"3b131f0d-7075-494e-9c86-b2c424007a0a","arch":"arm64","zone":"fr-par-1","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"label":"ubuntu_jammy","type":"instance_sbs"},{"id":"63d40353-5519-46d0-9172-ccf4885954e1","arch":"x86_64","zone":"fr-par-1","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10","POP2-48C-192G","POP2-HC-48C-96G","POP2-HM-48C-384G"],"label":"ubuntu_jammy","type":"instance_sbs"}],"total_count":2}' + headers: + Content-Length: + - "1269" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:04:59 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 34c0f6b3-ef2b-4937-8ace-a17fcf263685 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", "name": "Ubuntu + 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/63d40353-5519-46d0-9172-ccf4885954e1 + method: GET + response: + body: '{"image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", "name": "Ubuntu + 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:05:00 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3277b1f5-91c0-4d8e-855c-682217c3d4f3 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"ip": {"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "prefix": null, "reverse": null, "server": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project": "19a4819b-24bf-4d44-969f-935ef0061b71", "zone": "fr-par-1", "type": + "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "86ec90b1-7c45-4a7e-9810-dec39c749d6b"}}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips + method: POST + response: + body: '{"ip": {"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "prefix": null, "reverse": null, "server": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project": "19a4819b-24bf-4d44-969f-935ef0061b71", "zone": "fr-par-1", "type": + "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "86ec90b1-7c45-4a7e-9810-dec39c749d6b"}}' + headers: + Content-Length: + - "366" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:05:00 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aed1ddef-0a76-4eec-a879-45a0a7aa2f32 + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6136d2c8-a381-4365-8cd1-e5aec4836280 + status: 201 Created + code: 201 + duration: "" +- request: + body: '{"server": {"id": "e20b4dd0-5632-494d-9bd8-45fb9b832a21", "name": "cli-srv-friendly-buck", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-friendly-buck", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", + "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", + "id": "54204ae0-e341-4dad-9e6e-d6bdbb93c2b5", "zone": "fr-par-1"}}, "tags": + [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": + {"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "86ec90b1-7c45-4a7e-9810-dec39c749d6b"}, + "public_ips": [{"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "86ec90b1-7c45-4a7e-9810-dec39c749d6b"}], + "mac_address": "de:00:00:b7:59:77", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2025-06-18T19:05:00.745141+00:00", "modification_date": + "2025-06-18T19:05:00.745141+00:00", "bootscript": null, "security_group": {"id": + "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default security group"}, "location": + null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": + null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": + false}}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + body: '{"server": {"id": "e20b4dd0-5632-494d-9bd8-45fb9b832a21", "name": "cli-srv-friendly-buck", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-friendly-buck", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", + "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", + "id": "54204ae0-e341-4dad-9e6e-d6bdbb93c2b5", "zone": "fr-par-1"}}, "tags": + [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": + {"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "86ec90b1-7c45-4a7e-9810-dec39c749d6b"}, + "public_ips": [{"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "86ec90b1-7c45-4a7e-9810-dec39c749d6b"}], + "mac_address": "de:00:00:b7:59:77", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2025-06-18T19:05:00.745141+00:00", "modification_date": + "2025-06-18T19:05:00.745141+00:00", "bootscript": null, "security_group": {"id": + "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default security group"}, "location": + null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": + null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": + false}}' + headers: + Content-Length: + - "2247" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:05:01 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e20b4dd0-5632-494d-9bd8-45fb9b832a21 + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1da39157-787e-4342-a6af-23f6cd8b533a + status: 201 Created + code: 201 + duration: "" +- request: + body: '{"task": {"id": "e02e92b7-fbd5-4b8d-b31b-d68e16f02671", "description": + "server_batch_poweron", "status": "pending", "href_from": "/servers/e20b4dd0-5632-494d-9bd8-45fb9b832a21/action", + "href_result": "/servers/e20b4dd0-5632-494d-9bd8-45fb9b832a21", "started_at": + "2025-06-18T19:05:01.673496+00:00", "terminated_at": null, "progress": 0, "zone": + "fr-par-1"}}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e20b4dd0-5632-494d-9bd8-45fb9b832a21/action + method: POST + response: + body: '{"task": {"id": "e02e92b7-fbd5-4b8d-b31b-d68e16f02671", "description": + "server_batch_poweron", "status": "pending", "href_from": "/servers/e20b4dd0-5632-494d-9bd8-45fb9b832a21/action", + "href_result": "/servers/e20b4dd0-5632-494d-9bd8-45fb9b832a21", "started_at": + "2025-06-18T19:05:01.673496+00:00", "terminated_at": null, "progress": 0, "zone": + "fr-par-1"}}' + headers: + Content-Length: + - "357" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:05:01 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/e02e92b7-fbd5-4b8d-b31b-d68e16f02671 + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e151fd00-54f7-4b69-9d47-a5bc8738ae8e + status: 202 Accepted + code: 202 + duration: "" +- request: + body: '{"server": {"id": "e20b4dd0-5632-494d-9bd8-45fb9b832a21", "name": "cli-srv-friendly-buck", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-friendly-buck", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", + "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", + "id": "54204ae0-e341-4dad-9e6e-d6bdbb93c2b5", "zone": "fr-par-1"}}, "tags": + [], "state": "starting", "protected": false, "state_detail": "allocating node", + "public_ip": {"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "86ec90b1-7c45-4a7e-9810-dec39c749d6b"}, + "public_ips": [{"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "86ec90b1-7c45-4a7e-9810-dec39c749d6b"}], + "mac_address": "de:00:00:b7:59:77", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2025-06-18T19:05:00.745141+00:00", "modification_date": + "2025-06-18T19:05:01.476584+00:00", "bootscript": null, "security_group": {"id": + "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default security group"}, "location": + null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": + null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": + false}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e20b4dd0-5632-494d-9bd8-45fb9b832a21 + method: GET + response: + body: '{"server": {"id": "e20b4dd0-5632-494d-9bd8-45fb9b832a21", "name": "cli-srv-friendly-buck", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-friendly-buck", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", + "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", + "id": "54204ae0-e341-4dad-9e6e-d6bdbb93c2b5", "zone": "fr-par-1"}}, "tags": + [], "state": "starting", "protected": false, "state_detail": "allocating node", + "public_ip": {"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "86ec90b1-7c45-4a7e-9810-dec39c749d6b"}, + "public_ips": [{"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "86ec90b1-7c45-4a7e-9810-dec39c749d6b"}], + "mac_address": "de:00:00:b7:59:77", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2025-06-18T19:05:00.745141+00:00", "modification_date": + "2025-06-18T19:05:01.476584+00:00", "bootscript": null, "security_group": {"id": + "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default security group"}, "location": + null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": + null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": + false}}' + headers: + Content-Length: + - "2269" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:05:01 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - eaddff93-7bac-41ca-8b7e-d5109e5ea52f + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "e20b4dd0-5632-494d-9bd8-45fb9b832a21", "name": "cli-srv-friendly-buck", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-friendly-buck", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", + "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", + "id": "54204ae0-e341-4dad-9e6e-d6bdbb93c2b5", "zone": "fr-par-1"}}, "tags": + [], "state": "running", "protected": false, "state_detail": "booting kernel", + "public_ip": {"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "86ec90b1-7c45-4a7e-9810-dec39c749d6b"}, + "public_ips": [{"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "86ec90b1-7c45-4a7e-9810-dec39c749d6b"}], + "mac_address": "de:00:00:b7:59:77", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2025-06-18T19:05:00.745141+00:00", "modification_date": + "2025-06-18T19:05:05.202005+00:00", "bootscript": null, "security_group": {"id": + "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default security group"}, "location": + {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "102", "node_id": "1"}, "maintenances": [], "allowed_actions": ["poweroff", + "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": + false}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e20b4dd0-5632-494d-9bd8-45fb9b832a21 + method: GET + response: + body: '{"server": {"id": "e20b4dd0-5632-494d-9bd8-45fb9b832a21", "name": "cli-srv-friendly-buck", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-friendly-buck", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", + "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", + "id": "54204ae0-e341-4dad-9e6e-d6bdbb93c2b5", "zone": "fr-par-1"}}, "tags": + [], "state": "running", "protected": false, "state_detail": "booting kernel", + "public_ip": {"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "86ec90b1-7c45-4a7e-9810-dec39c749d6b"}, + "public_ips": [{"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "86ec90b1-7c45-4a7e-9810-dec39c749d6b"}], + "mac_address": "de:00:00:b7:59:77", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2025-06-18T19:05:00.745141+00:00", "modification_date": + "2025-06-18T19:05:05.202005+00:00", "bootscript": null, "security_group": {"id": + "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default security group"}, "location": + {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "102", "node_id": "1"}, "maintenances": [], "allowed_actions": ["poweroff", + "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": + false}}' + headers: + Content-Length: + - "2402" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:05:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f60e26f8-e523-4909-93d3-4ee8623bfba2 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "e20b4dd0-5632-494d-9bd8-45fb9b832a21", "name": "cli-srv-friendly-buck", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-friendly-buck", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", + "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", + "id": "54204ae0-e341-4dad-9e6e-d6bdbb93c2b5", "zone": "fr-par-1"}}, "tags": + [], "state": "running", "protected": false, "state_detail": "booting kernel", + "public_ip": {"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "86ec90b1-7c45-4a7e-9810-dec39c749d6b"}, + "public_ips": [{"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "86ec90b1-7c45-4a7e-9810-dec39c749d6b"}], + "mac_address": "de:00:00:b7:59:77", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2025-06-18T19:05:00.745141+00:00", "modification_date": + "2025-06-18T19:05:05.202005+00:00", "bootscript": null, "security_group": {"id": + "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default security group"}, "location": + {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "102", "node_id": "1"}, "maintenances": [], "allowed_actions": ["poweroff", + "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": + false}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e20b4dd0-5632-494d-9bd8-45fb9b832a21 + method: GET + response: + body: '{"server": {"id": "e20b4dd0-5632-494d-9bd8-45fb9b832a21", "name": "cli-srv-friendly-buck", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-friendly-buck", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", + "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", + "id": "54204ae0-e341-4dad-9e6e-d6bdbb93c2b5", "zone": "fr-par-1"}}, "tags": + [], "state": "running", "protected": false, "state_detail": "booting kernel", + "public_ip": {"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "86ec90b1-7c45-4a7e-9810-dec39c749d6b"}, + "public_ips": [{"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "86ec90b1-7c45-4a7e-9810-dec39c749d6b"}], + "mac_address": "de:00:00:b7:59:77", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2025-06-18T19:05:00.745141+00:00", "modification_date": + "2025-06-18T19:05:05.202005+00:00", "bootscript": null, "security_group": {"id": + "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default security group"}, "location": + {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "102", "node_id": "1"}, "maintenances": [], "allowed_actions": ["poweroff", + "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": + false}}' + headers: + Content-Length: + - "2402" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:05:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fd0fe717-5389-4563-a40e-3a84218a03f5 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"message": "resource is not found", "type": "not_found", "resource": "instance_volume", + "resource_id": "54204ae0-e341-4dad-9e6e-d6bdbb93c2b5"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/54204ae0-e341-4dad-9e6e-d6bdbb93c2b5 + method: GET + response: + body: '{"message": "resource is not found", "type": "not_found", "resource": "instance_volume", + "resource_id": "54204ae0-e341-4dad-9e6e-d6bdbb93c2b5"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:05:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0cfba017-c1c8-4102-96af-819c9f393c9c + status: 404 Not Found + code: 404 + duration: "" +- request: + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:05:00.838415Z","references":[{"id":"2e93168b-9bfa-4083-8f93-04b17559bfca","product_resource_type":"instance_server","product_resource_id":"e20b4dd0-5632-494d-9bd8-45fb9b832a21","created_at":"2025-06-18T19:05:00.838415Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/54204ae0-e341-4dad-9e6e-d6bdbb93c2b5 + method: GET + response: + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:05:00.838415Z","references":[{"id":"2e93168b-9bfa-4083-8f93-04b17559bfca","product_resource_type":"instance_server","product_resource_id":"e20b4dd0-5632-494d-9bd8-45fb9b832a21","created_at":"2025-06-18T19:05:00.838415Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + headers: + Content-Length: + - "686" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:05:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e6dfe2cf-964c-450d-a0fa-b109e1dffc8e + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "e20b4dd0-5632-494d-9bd8-45fb9b832a21", "name": "cli-srv-friendly-buck", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-friendly-buck", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", + "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {}, "tags": [], "state": "running", "protected": + false, "state_detail": "booting kernel", "public_ip": {"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", + "address": "212.47.240.125", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "86ec90b1-7c45-4a7e-9810-dec39c749d6b"}, "public_ips": [{"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", + "address": "212.47.240.125", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "86ec90b1-7c45-4a7e-9810-dec39c749d6b"}], "mac_address": "de:00:00:b7:59:77", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-06-18T19:05:00.745141+00:00", + "modification_date": "2025-06-18T19:05:05.202005+00:00", "bootscript": null, + "security_group": {"id": "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default + security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": + "37", "hypervisor_id": "102", "node_id": "1"}, "maintenances": [], "allowed_actions": + ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": + null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": + false}}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e20b4dd0-5632-494d-9bd8-45fb9b832a21/detach-volume + method: POST + response: + body: '{"server": {"id": "e20b4dd0-5632-494d-9bd8-45fb9b832a21", "name": "cli-srv-friendly-buck", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-friendly-buck", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", + "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {}, "tags": [], "state": "running", "protected": + false, "state_detail": "booting kernel", "public_ip": {"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", + "address": "212.47.240.125", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "86ec90b1-7c45-4a7e-9810-dec39c749d6b"}, "public_ips": [{"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", + "address": "212.47.240.125", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "86ec90b1-7c45-4a7e-9810-dec39c749d6b"}], "mac_address": "de:00:00:b7:59:77", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-06-18T19:05:00.745141+00:00", + "modification_date": "2025-06-18T19:05:05.202005+00:00", "bootscript": null, + "security_group": {"id": "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default + security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": + "37", "hypervisor_id": "102", "node_id": "1"}, "maintenances": [], "allowed_actions": + ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": + null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": + false}}' + headers: + Content-Length: + - "2287" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:05:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6f442f62-35bc-4582-b806-ff68f0317be9 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:05:00.838415Z","references":[{"id":"2e93168b-9bfa-4083-8f93-04b17559bfca","product_resource_type":"instance_server","product_resource_id":"e20b4dd0-5632-494d-9bd8-45fb9b832a21","created_at":"2025-06-18T19:05:00.838415Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/54204ae0-e341-4dad-9e6e-d6bdbb93c2b5 + method: GET + response: + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:05:00.838415Z","references":[{"id":"2e93168b-9bfa-4083-8f93-04b17559bfca","product_resource_type":"instance_server","product_resource_id":"e20b4dd0-5632-494d-9bd8-45fb9b832a21","created_at":"2025-06-18T19:05:00.838415Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + headers: + Content-Length: + - "686" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:05:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2902351e-91da-4ad4-9dcf-ddcbfa0a114e + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:05:00.838415Z","references":[{"id":"2e93168b-9bfa-4083-8f93-04b17559bfca","product_resource_type":"instance_server","product_resource_id":"e20b4dd0-5632-494d-9bd8-45fb9b832a21","created_at":"2025-06-18T19:05:00.838415Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/54204ae0-e341-4dad-9e6e-d6bdbb93c2b5 + method: GET + response: + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:05:00.838415Z","references":[{"id":"2e93168b-9bfa-4083-8f93-04b17559bfca","product_resource_type":"instance_server","product_resource_id":"e20b4dd0-5632-494d-9bd8-45fb9b832a21","created_at":"2025-06-18T19:05:00.838415Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + headers: + Content-Length: + - "687" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:05:12 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fb78a581-5b74-4035-afdc-8347095aad3c + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:05:00.838415Z","references":[{"id":"2e93168b-9bfa-4083-8f93-04b17559bfca","product_resource_type":"instance_server","product_resource_id":"e20b4dd0-5632-494d-9bd8-45fb9b832a21","created_at":"2025-06-18T19:05:00.838415Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/54204ae0-e341-4dad-9e6e-d6bdbb93c2b5 + method: GET + response: + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:05:00.838415Z","references":[{"id":"2e93168b-9bfa-4083-8f93-04b17559bfca","product_resource_type":"instance_server","product_resource_id":"e20b4dd0-5632-494d-9bd8-45fb9b832a21","created_at":"2025-06-18T19:05:00.838415Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + headers: + Content-Length: + - "687" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:05:17 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 80ff34f9-18c6-41ab-96f5-f51cf1a3c84f + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:05:00.838415Z","references":[{"id":"2e93168b-9bfa-4083-8f93-04b17559bfca","product_resource_type":"instance_server","product_resource_id":"e20b4dd0-5632-494d-9bd8-45fb9b832a21","created_at":"2025-06-18T19:05:00.838415Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/54204ae0-e341-4dad-9e6e-d6bdbb93c2b5 + method: GET + response: + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:05:00.838415Z","references":[{"id":"2e93168b-9bfa-4083-8f93-04b17559bfca","product_resource_type":"instance_server","product_resource_id":"e20b4dd0-5632-494d-9bd8-45fb9b832a21","created_at":"2025-06-18T19:05:00.838415Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + headers: + Content-Length: + - "687" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:05:22 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 95799e54-5316-4461-b61a-a55d42ae2c2c + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:05:00.838415Z","references":[{"id":"2e93168b-9bfa-4083-8f93-04b17559bfca","product_resource_type":"instance_server","product_resource_id":"e20b4dd0-5632-494d-9bd8-45fb9b832a21","created_at":"2025-06-18T19:05:00.838415Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/54204ae0-e341-4dad-9e6e-d6bdbb93c2b5 + method: GET + response: + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:05:00.838415Z","references":[{"id":"2e93168b-9bfa-4083-8f93-04b17559bfca","product_resource_type":"instance_server","product_resource_id":"e20b4dd0-5632-494d-9bd8-45fb9b832a21","created_at":"2025-06-18T19:05:00.838415Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + headers: + Content-Length: + - "687" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:05:27 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 68de3a39-d8aa-4605-bc29-9124c01419e9 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:05:00.838415Z","references":[{"id":"2e93168b-9bfa-4083-8f93-04b17559bfca","product_resource_type":"instance_server","product_resource_id":"e20b4dd0-5632-494d-9bd8-45fb9b832a21","created_at":"2025-06-18T19:05:00.838415Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/54204ae0-e341-4dad-9e6e-d6bdbb93c2b5 + method: GET + response: + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:05:00.838415Z","references":[{"id":"2e93168b-9bfa-4083-8f93-04b17559bfca","product_resource_type":"instance_server","product_resource_id":"e20b4dd0-5632-494d-9bd8-45fb9b832a21","created_at":"2025-06-18T19:05:00.838415Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + headers: + Content-Length: + - "687" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:05:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 60c4ff59-a785-4961-bd79-c0834c51dad9 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:05:00.838415Z","references":[{"id":"2e93168b-9bfa-4083-8f93-04b17559bfca","product_resource_type":"instance_server","product_resource_id":"e20b4dd0-5632-494d-9bd8-45fb9b832a21","created_at":"2025-06-18T19:05:00.838415Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/54204ae0-e341-4dad-9e6e-d6bdbb93c2b5 + method: GET + response: + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:05:00.838415Z","references":[{"id":"2e93168b-9bfa-4083-8f93-04b17559bfca","product_resource_type":"instance_server","product_resource_id":"e20b4dd0-5632-494d-9bd8-45fb9b832a21","created_at":"2025-06-18T19:05:00.838415Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' headers: Content-Length: - - "38539" + - "687" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:25:54 GMT - Link: - - ; rel="next",; - rel="last" + - Wed, 18 Jun 2025 19:05:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -932,362 +2383,33 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f28eb4a8-1591-461f-994f-16958c7365bb - X-Total-Count: - - "68" + - ebaeba2a-d6eb-446e-8b7e-daf117d83131 status: 200 OK code: 200 duration: "" - request: - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, - "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": - 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, - "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": - 6000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6000000000}]}, "block_bandwidth": 2097152000}, "PRO2-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, - "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, - "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": - 3000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3000000000}]}, "block_bandwidth": 1048576000}, "PRO2-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, - "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, - "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": - 1500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1500000000}]}, "block_bandwidth": 524288000}, "PRO2-XS": {"alt_names": [], "arch": - "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, - "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": - 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 700000000}]}, "block_bandwidth": - 262144000}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": - 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": - 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": - 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 350000000}]}, "block_bandwidth": - 131072000}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": - 45097156608, "gpu": 1, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": - 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": - 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": - 2000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 2000000000}]}, "block_bandwidth": 2147483648}, "STARDUST1-S": {"alt_names": - [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": - 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 100000000}]}, "block_bandwidth": 52428800}, "START1-L": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 41943040}, "START1-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 100000000000, "max_size": 100000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": - 300000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 300000000}]}, "block_bandwidth": 41943040}, "START1-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 50000000000, "max_size": 50000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 41943040}, "START1-XS": {"alt_names": [], "arch": - "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 25000000000, "max_size": 25000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": - 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 100000000}]}, "block_bandwidth": 41943040}, "VC1L": {"alt_names": ["X64-8GB"], - "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, - "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, - "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": - 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": - 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": - 41943040}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, - "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 100000000000, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 41943040}, "VC1S": {"alt_names": ["X64-2GB"], - "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 41943040}, "X64-120GB": {"alt_names": [], "arch": - "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 500000000000, "max_size": 1000000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": - 1000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1000000000}]}, "block_bandwidth": 41943040}, "X64-15GB": {"alt_names": [], "arch": - "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": - 250000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 250000000}]}, "block_bandwidth": 41943040}, "X64-30GB": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 300000000000, "max_size": 400000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": - 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 500000000}]}, "block_bandwidth": 41943040}, "X64-60GB": {"alt_names": [], "arch": - "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 400000000000, "max_size": 700000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": - 1000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1000000000}]}, "block_bandwidth": 41943040}}}' + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:05:00.838415Z","references":[{"id":"2e93168b-9bfa-4083-8f93-04b17559bfca","product_resource_type":"instance_server","product_resource_id":"e20b4dd0-5632-494d-9bd8-45fb9b832a21","created_at":"2025-06-18T19:05:00.838415Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/54204ae0-e341-4dad-9e6e-d6bdbb93c2b5 method: GET response: - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, - "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": - 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, - "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": - 6000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6000000000}]}, "block_bandwidth": 2097152000}, "PRO2-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, - "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, - "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": - 3000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3000000000}]}, "block_bandwidth": 1048576000}, "PRO2-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, - "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, - "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": - 1500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1500000000}]}, "block_bandwidth": 524288000}, "PRO2-XS": {"alt_names": [], "arch": - "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, - "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": - 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 700000000}]}, "block_bandwidth": - 262144000}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": - 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": - 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": - 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 350000000}]}, "block_bandwidth": - 131072000}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": - 45097156608, "gpu": 1, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": - 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": - 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": - 2000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 2000000000}]}, "block_bandwidth": 2147483648}, "STARDUST1-S": {"alt_names": - [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": - 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 100000000}]}, "block_bandwidth": 52428800}, "START1-L": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 41943040}, "START1-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 100000000000, "max_size": 100000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": - 300000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 300000000}]}, "block_bandwidth": 41943040}, "START1-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 50000000000, "max_size": 50000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 41943040}, "START1-XS": {"alt_names": [], "arch": - "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 25000000000, "max_size": 25000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": - 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 100000000}]}, "block_bandwidth": 41943040}, "VC1L": {"alt_names": ["X64-8GB"], - "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, - "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, - "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": - 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": - 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": - 41943040}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, - "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 100000000000, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 41943040}, "VC1S": {"alt_names": ["X64-2GB"], - "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 41943040}, "X64-120GB": {"alt_names": [], "arch": - "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 500000000000, "max_size": 1000000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": - 1000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1000000000}]}, "block_bandwidth": 41943040}, "X64-15GB": {"alt_names": [], "arch": - "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": - 250000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 250000000}]}, "block_bandwidth": 41943040}, "X64-30GB": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 300000000000, "max_size": 400000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": - 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 500000000}]}, "block_bandwidth": 41943040}, "X64-60GB": {"alt_names": [], "arch": - "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 400000000000, "max_size": 700000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": - 1000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1000000000}]}, "block_bandwidth": 41943040}}}' + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:05:00.838415Z","references":[{"id":"2e93168b-9bfa-4083-8f93-04b17559bfca","product_resource_type":"instance_server","product_resource_id":"e20b4dd0-5632-494d-9bd8-45fb9b832a21","created_at":"2025-06-18T19:05:00.838415Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' headers: Content-Length: - - "14208" + - "687" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:25:54 GMT - Link: - - ; rel="first",; - rel="previous",; rel="last" + - Wed, 18 Jun 2025 19:05:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1295,33 +2417,33 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b166deaf-ccd8-4109-b404-d1dec0b84ed5 - X-Total-Count: - - "68" + - 0f30bbef-be1a-491e-ba94-7563c6a5d26b status: 200 OK code: 200 duration: "" - request: - body: '{"local_images":[{"id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","arch":"x86_64","zone":"fr-par-1","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"label":"ubuntu_jammy","type":"instance_sbs"},{"id":"7044ae1e-a35d-4364-a962-93811c845f2f","arch":"arm64","zone":"fr-par-1","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"label":"ubuntu_jammy","type":"instance_sbs"}],"total_count":2}' + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:05:00.838415Z","references":[{"id":"2e93168b-9bfa-4083-8f93-04b17559bfca","product_resource_type":"instance_server","product_resource_id":"e20b4dd0-5632-494d-9bd8-45fb9b832a21","created_at":"2025-06-18T19:05:00.838415Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/54204ae0-e341-4dad-9e6e-d6bdbb93c2b5 method: GET response: - body: '{"local_images":[{"id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","arch":"x86_64","zone":"fr-par-1","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"label":"ubuntu_jammy","type":"instance_sbs"},{"id":"7044ae1e-a35d-4364-a962-93811c845f2f","arch":"arm64","zone":"fr-par-1","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"label":"ubuntu_jammy","type":"instance_sbs"}],"total_count":2}' + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:05:00.838415Z","references":[{"id":"2e93168b-9bfa-4083-8f93-04b17559bfca","product_resource_type":"instance_server","product_resource_id":"e20b4dd0-5632-494d-9bd8-45fb9b832a21","created_at":"2025-06-18T19:05:00.838415Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' headers: Content-Length: - - "1216" + - "687" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:25:54 GMT + - Wed, 18 Jun 2025 19:05:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1329,45 +2451,33 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2797c2d5-690d-4bd7-be53-e4541fd8523f + - d4ade04d-d961-4fc9-992a-1c66825c17d9 status: 200 OK code: 200 duration: "" - request: - body: '{"image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", "name": "Ubuntu - 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": - ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", - "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}}' + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:05:00.838415Z","references":[{"id":"2e93168b-9bfa-4083-8f93-04b17559bfca","product_resource_type":"instance_server","product_resource_id":"e20b4dd0-5632-494d-9bd8-45fb9b832a21","created_at":"2025-06-18T19:05:00.838415Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/1fb9bfa4-68c3-4d6f-a362-8913a1af27b0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/54204ae0-e341-4dad-9e6e-d6bdbb93c2b5 method: GET response: - body: '{"image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", "name": "Ubuntu - 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": - ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", - "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}}' + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:05:00.838415Z","references":[{"id":"2e93168b-9bfa-4083-8f93-04b17559bfca","product_resource_type":"instance_server","product_resource_id":"e20b4dd0-5632-494d-9bd8-45fb9b832a21","created_at":"2025-06-18T19:05:00.838415Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' headers: Content-Length: - - "587" + - "687" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:25:54 GMT + - Wed, 18 Jun 2025 19:05:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1375,41 +2485,33 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7bd5da43-12fc-4f16-a1e8-f698392cd2b0 + - 13d362c0-85ae-4823-bf37-fd2aca6e9a5b status: 200 OK code: 200 duration: "" - request: - body: '{"ip": {"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", - "prefix": null, "reverse": null, "server": null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "zone": "fr-par-1", "type": - "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "799e6c35-3502-477f-ad86-13612b1887f9"}}' + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:05:00.838415Z","references":[{"id":"2e93168b-9bfa-4083-8f93-04b17559bfca","product_resource_type":"instance_server","product_resource_id":"e20b4dd0-5632-494d-9bd8-45fb9b832a21","created_at":"2025-06-18T19:05:00.838415Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/54204ae0-e341-4dad-9e6e-d6bdbb93c2b5 + method: GET response: - body: '{"ip": {"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", - "prefix": null, "reverse": null, "server": null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "zone": "fr-par-1", "type": - "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "799e6c35-3502-477f-ad86-13612b1887f9"}}' + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:05:00.838415Z","references":[{"id":"2e93168b-9bfa-4083-8f93-04b17559bfca","product_resource_type":"instance_server","product_resource_id":"e20b4dd0-5632-494d-9bd8-45fb9b832a21","created_at":"2025-06-18T19:05:00.838415Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' headers: Content-Length: - - "364" + - "687" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:25:54 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/bf0e239d-7331-415a-adfd-ebf90a264d21 + - Wed, 18 Jun 2025 19:05:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1417,85 +2519,33 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0711f657-fc57-4d6c-91f1-c3a6d643ec6b - status: 201 Created - code: 201 + - 6fdc0a68-6b9c-4b62-9417-28c628fe06b2 + status: 200 OK + code: 200 duration: "" - request: - body: '{"server": {"id": "f5db78ef-b758-4a64-a045-02b0b4e86060", "name": "cli-srv-laughing-bohr", - "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-laughing-bohr", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", - "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": - ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", - "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "9bca326e-9da4-4c87-9ea6-d303f2915c7a", "zone": "fr-par-1"}}, "tags": - [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": - {"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", "dynamic": - false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": - "dhcp", "tags": [], "state": "attached", "ipam_id": "799e6c35-3502-477f-ad86-13612b1887f9"}, - "public_ips": [{"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", - "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "799e6c35-3502-477f-ad86-13612b1887f9"}], - "mac_address": "de:00:00:90:7f:3b", "routed_ip_enabled": true, "ipv6": null, - "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": - null, "creation_date": "2025-01-29T10:25:55.192664+00:00", "modification_date": - "2025-01-29T10:25:55.192664+00:00", "bootscript": null, "security_group": {"id": - "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": - null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": - null, "private_nics": [], "zone": "fr-par-1"}}' + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:05:00.838415Z","references":[{"id":"2e93168b-9bfa-4083-8f93-04b17559bfca","product_resource_type":"instance_server","product_resource_id":"e20b4dd0-5632-494d-9bd8-45fb9b832a21","created_at":"2025-06-18T19:05:00.838415Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/54204ae0-e341-4dad-9e6e-d6bdbb93c2b5 + method: GET response: - body: '{"server": {"id": "f5db78ef-b758-4a64-a045-02b0b4e86060", "name": "cli-srv-laughing-bohr", - "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-laughing-bohr", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", - "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": - ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", - "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "9bca326e-9da4-4c87-9ea6-d303f2915c7a", "zone": "fr-par-1"}}, "tags": - [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": - {"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", "dynamic": - false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": - "dhcp", "tags": [], "state": "attached", "ipam_id": "799e6c35-3502-477f-ad86-13612b1887f9"}, - "public_ips": [{"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", - "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "799e6c35-3502-477f-ad86-13612b1887f9"}], - "mac_address": "de:00:00:90:7f:3b", "routed_ip_enabled": true, "ipv6": null, - "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": - null, "creation_date": "2025-01-29T10:25:55.192664+00:00", "modification_date": - "2025-01-29T10:25:55.192664+00:00", "bootscript": null, "security_group": {"id": - "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": - null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": - null, "private_nics": [], "zone": "fr-par-1"}}' + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:05:00.838415Z","references":[{"id":"2e93168b-9bfa-4083-8f93-04b17559bfca","product_resource_type":"instance_server","product_resource_id":"e20b4dd0-5632-494d-9bd8-45fb9b832a21","created_at":"2025-06-18T19:05:00.838415Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' headers: Content-Length: - - "2199" + - "687" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:25:56 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5db78ef-b758-4a64-a045-02b0b4e86060 + - Wed, 18 Jun 2025 19:06:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1503,43 +2553,67 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd238907-9461-486e-8c2e-4abf82e3fb7b - status: 201 Created - code: 201 + - af5f92c9-2739-4a34-b021-a6c1972cdd65 + status: 200 OK + code: 200 duration: "" - request: - body: '{"task": {"id": "900869a8-b13c-4e68-9b22-bfcc8ff0b260", "description": - "server_batch_poweron", "status": "pending", "href_from": "/servers/f5db78ef-b758-4a64-a045-02b0b4e86060/action", - "href_result": "/servers/f5db78ef-b758-4a64-a045-02b0b4e86060", "started_at": - "2025-01-29T10:25:57.015441+00:00", "terminated_at": null, "progress": 0, "zone": - "fr-par-1"}}' + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:05:00.838415Z","references":[{"id":"2e93168b-9bfa-4083-8f93-04b17559bfca","product_resource_type":"instance_server","product_resource_id":"e20b4dd0-5632-494d-9bd8-45fb9b832a21","created_at":"2025-06-18T19:05:00.838415Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' form: {} headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/54204ae0-e341-4dad-9e6e-d6bdbb93c2b5 + method: GET + response: + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:05:00.838415Z","references":[{"id":"2e93168b-9bfa-4083-8f93-04b17559bfca","product_resource_type":"instance_server","product_resource_id":"e20b4dd0-5632-494d-9bd8-45fb9b832a21","created_at":"2025-06-18T19:05:00.838415Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + headers: + Content-Length: + - "687" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json + Date: + - Wed, 18 Jun 2025 19:06:09 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6171e226-9024-447d-9089-9d19704c9f2e + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:05:00.838415Z","references":[{"id":"2e93168b-9bfa-4083-8f93-04b17559bfca","product_resource_type":"instance_server","product_resource_id":"e20b4dd0-5632-494d-9bd8-45fb9b832a21","created_at":"2025-06-18T19:05:00.838415Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + form: {} + headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5db78ef-b758-4a64-a045-02b0b4e86060/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/54204ae0-e341-4dad-9e6e-d6bdbb93c2b5 + method: GET response: - body: '{"task": {"id": "900869a8-b13c-4e68-9b22-bfcc8ff0b260", "description": - "server_batch_poweron", "status": "pending", "href_from": "/servers/f5db78ef-b758-4a64-a045-02b0b4e86060/action", - "href_result": "/servers/f5db78ef-b758-4a64-a045-02b0b4e86060", "started_at": - "2025-01-29T10:25:57.015441+00:00", "terminated_at": null, "progress": 0, "zone": - "fr-par-1"}}' + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:05:00.838415Z","references":[{"id":"2e93168b-9bfa-4083-8f93-04b17559bfca","product_resource_type":"instance_server","product_resource_id":"e20b4dd0-5632-494d-9bd8-45fb9b832a21","created_at":"2025-06-18T19:05:00.838415Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' headers: Content-Length: - - "357" + - "687" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:25:56 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/900869a8-b13c-4e68-9b22-bfcc8ff0b260 + - Wed, 18 Jun 2025 19:06:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1547,81 +2621,33 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06ecfbe8-047a-409d-a012-baa06b84da00 - status: 202 Accepted - code: 202 + - e0aa35fc-52f6-40cd-93ee-b3694a0788fb + status: 200 OK + code: 200 duration: "" - request: - body: '{"server": {"id": "f5db78ef-b758-4a64-a045-02b0b4e86060", "name": "cli-srv-laughing-bohr", - "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-laughing-bohr", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", - "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": - ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", - "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "9bca326e-9da4-4c87-9ea6-d303f2915c7a", "zone": "fr-par-1"}}, "tags": - [], "state": "starting", "protected": false, "state_detail": "allocating node", - "public_ip": {"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", - "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "799e6c35-3502-477f-ad86-13612b1887f9"}, - "public_ips": [{"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", - "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "799e6c35-3502-477f-ad86-13612b1887f9"}], - "mac_address": "de:00:00:90:7f:3b", "routed_ip_enabled": true, "ipv6": null, - "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": - null, "creation_date": "2025-01-29T10:25:55.192664+00:00", "modification_date": - "2025-01-29T10:25:56.727851+00:00", "bootscript": null, "security_group": {"id": - "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": - null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": - null, "private_nics": [], "zone": "fr-par-1"}}' + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:05:00.838415Z","references":[{"id":"2e93168b-9bfa-4083-8f93-04b17559bfca","product_resource_type":"instance_server","product_resource_id":"e20b4dd0-5632-494d-9bd8-45fb9b832a21","created_at":"2025-06-18T19:05:00.838415Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5db78ef-b758-4a64-a045-02b0b4e86060 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/54204ae0-e341-4dad-9e6e-d6bdbb93c2b5 method: GET response: - body: '{"server": {"id": "f5db78ef-b758-4a64-a045-02b0b4e86060", "name": "cli-srv-laughing-bohr", - "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-laughing-bohr", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", - "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": - ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", - "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "9bca326e-9da4-4c87-9ea6-d303f2915c7a", "zone": "fr-par-1"}}, "tags": - [], "state": "starting", "protected": false, "state_detail": "allocating node", - "public_ip": {"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", - "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "799e6c35-3502-477f-ad86-13612b1887f9"}, - "public_ips": [{"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", - "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "799e6c35-3502-477f-ad86-13612b1887f9"}], - "mac_address": "de:00:00:90:7f:3b", "routed_ip_enabled": true, "ipv6": null, - "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": - null, "creation_date": "2025-01-29T10:25:55.192664+00:00", "modification_date": - "2025-01-29T10:25:56.727851+00:00", "bootscript": null, "security_group": {"id": - "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": - null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": - null, "private_nics": [], "zone": "fr-par-1"}}' + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:05:00.838415Z","references":[{"id":"2e93168b-9bfa-4083-8f93-04b17559bfca","product_resource_type":"instance_server","product_resource_id":"e20b4dd0-5632-494d-9bd8-45fb9b832a21","created_at":"2025-06-18T19:05:00.838415Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' headers: Content-Length: - - "2221" + - "687" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:25:57 GMT + - Wed, 18 Jun 2025 19:06:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1629,85 +2655,33 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c34fc278-f711-4592-bab6-98b6c6213935 + - 0330a951-1c1d-4989-a14d-af6c5f333545 status: 200 OK code: 200 duration: "" - request: - body: '{"server": {"id": "f5db78ef-b758-4a64-a045-02b0b4e86060", "name": "cli-srv-laughing-bohr", - "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-laughing-bohr", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", - "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": - ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", - "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "9bca326e-9da4-4c87-9ea6-d303f2915c7a", "zone": "fr-par-1"}}, "tags": - [], "state": "running", "protected": false, "state_detail": "booting kernel", - "public_ip": {"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", - "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "799e6c35-3502-477f-ad86-13612b1887f9"}, - "public_ips": [{"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", - "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "799e6c35-3502-477f-ad86-13612b1887f9"}], - "mac_address": "de:00:00:90:7f:3b", "routed_ip_enabled": true, "ipv6": null, - "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": - null, "creation_date": "2025-01-29T10:25:55.192664+00:00", "modification_date": - "2025-01-29T10:26:01.819501+00:00", "bootscript": null, "security_group": {"id": - "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": - {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": - "101", "node_id": "30"}, "maintenances": [], "allowed_actions": ["poweroff", - "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, - "private_nics": [], "zone": "fr-par-1"}}' + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:05:00.838415Z","references":[{"id":"2e93168b-9bfa-4083-8f93-04b17559bfca","product_resource_type":"instance_server","product_resource_id":"e20b4dd0-5632-494d-9bd8-45fb9b832a21","created_at":"2025-06-18T19:05:00.838415Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5db78ef-b758-4a64-a045-02b0b4e86060 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/54204ae0-e341-4dad-9e6e-d6bdbb93c2b5 method: GET response: - body: '{"server": {"id": "f5db78ef-b758-4a64-a045-02b0b4e86060", "name": "cli-srv-laughing-bohr", - "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-laughing-bohr", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", - "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": - ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", - "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "9bca326e-9da4-4c87-9ea6-d303f2915c7a", "zone": "fr-par-1"}}, "tags": - [], "state": "running", "protected": false, "state_detail": "booting kernel", - "public_ip": {"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", - "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "799e6c35-3502-477f-ad86-13612b1887f9"}, - "public_ips": [{"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", - "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "799e6c35-3502-477f-ad86-13612b1887f9"}], - "mac_address": "de:00:00:90:7f:3b", "routed_ip_enabled": true, "ipv6": null, - "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": - null, "creation_date": "2025-01-29T10:25:55.192664+00:00", "modification_date": - "2025-01-29T10:26:01.819501+00:00", "bootscript": null, "security_group": {"id": - "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": - {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": - "101", "node_id": "30"}, "maintenances": [], "allowed_actions": ["poweroff", - "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, - "private_nics": [], "zone": "fr-par-1"}}' + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:05:00.838415Z","references":[{"id":"2e93168b-9bfa-4083-8f93-04b17559bfca","product_resource_type":"instance_server","product_resource_id":"e20b4dd0-5632-494d-9bd8-45fb9b832a21","created_at":"2025-06-18T19:05:00.838415Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' headers: Content-Length: - - "2355" + - "687" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:02 GMT + - Wed, 18 Jun 2025 19:06:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1715,85 +2689,33 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0c6af5c-d4ed-4429-ac10-af53c4f5a3f7 + - 269e35a7-9461-49a1-b176-67a9389b2afa status: 200 OK code: 200 duration: "" - request: - body: '{"server": {"id": "f5db78ef-b758-4a64-a045-02b0b4e86060", "name": "cli-srv-laughing-bohr", - "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-laughing-bohr", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", - "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": - ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", - "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "9bca326e-9da4-4c87-9ea6-d303f2915c7a", "zone": "fr-par-1"}}, "tags": - [], "state": "running", "protected": false, "state_detail": "booting kernel", - "public_ip": {"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", - "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "799e6c35-3502-477f-ad86-13612b1887f9"}, - "public_ips": [{"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", - "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "799e6c35-3502-477f-ad86-13612b1887f9"}], - "mac_address": "de:00:00:90:7f:3b", "routed_ip_enabled": true, "ipv6": null, - "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": - null, "creation_date": "2025-01-29T10:25:55.192664+00:00", "modification_date": - "2025-01-29T10:26:01.819501+00:00", "bootscript": null, "security_group": {"id": - "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": - {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": - "101", "node_id": "30"}, "maintenances": [], "allowed_actions": ["poweroff", - "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, - "private_nics": [], "zone": "fr-par-1"}}' + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:06:29.069506Z","references":[],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"available","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":"2025-06-18T19:06:29.069506Z","zone":"fr-par-1"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5db78ef-b758-4a64-a045-02b0b4e86060 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/54204ae0-e341-4dad-9e6e-d6bdbb93c2b5 method: GET response: - body: '{"server": {"id": "f5db78ef-b758-4a64-a045-02b0b4e86060", "name": "cli-srv-laughing-bohr", - "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-laughing-bohr", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", - "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": - ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", - "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "9bca326e-9da4-4c87-9ea6-d303f2915c7a", "zone": "fr-par-1"}}, "tags": - [], "state": "running", "protected": false, "state_detail": "booting kernel", - "public_ip": {"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", - "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "799e6c35-3502-477f-ad86-13612b1887f9"}, - "public_ips": [{"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", - "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "799e6c35-3502-477f-ad86-13612b1887f9"}], - "mac_address": "de:00:00:90:7f:3b", "routed_ip_enabled": true, "ipv6": null, - "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": - null, "creation_date": "2025-01-29T10:25:55.192664+00:00", "modification_date": - "2025-01-29T10:26:01.819501+00:00", "bootscript": null, "security_group": {"id": - "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": - {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": - "101", "node_id": "30"}, "maintenances": [], "allowed_actions": ["poweroff", - "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, - "private_nics": [], "zone": "fr-par-1"}}' + body: '{"id":"54204ae0-e341-4dad-9e6e-d6bdbb93c2b5","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:05:00.838415Z","updated_at":"2025-06-18T19:06:29.069506Z","references":[],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"available","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":"2025-06-18T19:06:29.069506Z","zone":"fr-par-1"}' headers: Content-Length: - - "2355" + - "484" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:02 GMT + - Wed, 18 Jun 2025 19:06:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1801,29 +2723,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6290c2cc-af85-4733-99bb-1582bfc1c329 + - d4cabae0-483c-4963-8079-e48cbfcb4c93 status: 200 OK code: 200 duration: "" - request: - body: '{"task": {"id": "100ac7a9-42d7-42cc-b146-89510c880b51", "description": - "server_terminate", "status": "pending", "href_from": "/servers/f5db78ef-b758-4a64-a045-02b0b4e86060/action", - "href_result": "/servers/f5db78ef-b758-4a64-a045-02b0b4e86060", "started_at": - "2025-01-29T10:26:03.014036+00:00", "terminated_at": null, "progress": 0, "zone": + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/54204ae0-e341-4dad-9e6e-d6bdbb93c2b5 + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:06:29 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ecf42356-d4ce-47a1-aed5-6f83cbeddf06 + status: 204 No Content + code: 204 + duration: "" +- request: + body: '{"task": {"id": "551c33af-5ae6-4d90-82ec-a7d2243b8e9f", "description": + "server_terminate", "status": "pending", "href_from": "/servers/e20b4dd0-5632-494d-9bd8-45fb9b832a21/action", + "href_result": "/servers/e20b4dd0-5632-494d-9bd8-45fb9b832a21", "started_at": + "2025-06-18T19:06:29.506031+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5db78ef-b758-4a64-a045-02b0b4e86060/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e20b4dd0-5632-494d-9bd8-45fb9b832a21/action method: POST response: - body: '{"task": {"id": "100ac7a9-42d7-42cc-b146-89510c880b51", "description": - "server_terminate", "status": "pending", "href_from": "/servers/f5db78ef-b758-4a64-a045-02b0b4e86060/action", - "href_result": "/servers/f5db78ef-b758-4a64-a045-02b0b4e86060", "started_at": - "2025-01-29T10:26:03.014036+00:00", "terminated_at": null, "progress": 0, "zone": + body: '{"task": {"id": "551c33af-5ae6-4d90-82ec-a7d2243b8e9f", "description": + "server_terminate", "status": "pending", "href_from": "/servers/e20b4dd0-5632-494d-9bd8-45fb9b832a21/action", + "href_result": "/servers/e20b4dd0-5632-494d-9bd8-45fb9b832a21", "started_at": + "2025-06-18T19:06:29.506031+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: @@ -1833,11 +2785,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:02 GMT + - Wed, 18 Jun 2025 19:06:29 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/100ac7a9-42d7-42cc-b146-89510c880b51 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/551c33af-5ae6-4d90-82ec-a7d2243b8e9f Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1845,7 +2797,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7285e414-2046-4004-a021-e18d70ce4013 + - fc721a57-1d33-48ac-a854-260d815d2d87 status: 202 Accepted code: 202 duration: "" @@ -1854,8 +2806,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/bf0e239d-7331-415a-adfd-ebf90a264d21 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aed1ddef-0a76-4eec-a879-45a0a7aa2f32 method: DELETE response: body: "" @@ -1865,9 +2817,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:03 GMT + - Wed, 18 Jun 2025 19:06:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1875,7 +2827,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62ed9462-b333-4c62-8b8e-e1612de1dc8d + - 86e2da43-5c4b-477b-99dc-ff4cfbfb3767 status: 204 No Content code: 204 duration: "" @@ -1885,8 +2837,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/bf0e239d-7331-415a-adfd-ebf90a264d21 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aed1ddef-0a76-4eec-a879-45a0a7aa2f32 method: GET response: body: '{"message": "insufficient permissions", "type": "permissions_denied", "details": @@ -1899,9 +2851,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:03 GMT + - Wed, 18 Jun 2025 19:06:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1909,7 +2861,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad683a7a-0a60-4442-8033-f27d1d927d02 + - 496f3311-6d03-4b3d-85fe-9b2404b9b78c status: 403 Forbidden code: 403 duration: "" diff --git a/internal/namespaces/instance/v1/testdata/test-server-terminate-with-ip.golden b/internal/namespaces/instance/v1/testdata/test-server-terminate-with-ip.golden index 7fe07f50a2..fa82665ed5 100644 --- a/internal/namespaces/instance/v1/testdata/test-server-terminate-with-ip.golden +++ b/internal/namespaces/instance/v1/testdata/test-server-terminate-with-ip.golden @@ -2,7 +2,8 @@ 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ βœ… Success. πŸŸ₯πŸŸ₯πŸŸ₯ STDERR️️ πŸŸ₯πŸŸ₯πŸŸ₯️ -successfully deleted ip 51.15.134.67 +successfully deleted block volume "Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0" +successfully deleted ip 212.47.240.125 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 { "message": "Success", diff --git a/internal/namespaces/instance/v1/testdata/test-server-terminate-without-block.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-server-terminate-without-block.cassette.yaml index ce3d65d7ed..9f677ef67c 100644 --- a/internal/namespaces/instance/v1/testdata/test-server-terminate-without-block.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-server-terminate-without-block.cassette.yaml @@ -3,928 +3,964 @@ version: 1 interactions: - request: body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": - 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 671088640}, "COPARM1-2C-8G": {"alt_names": - [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": + [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 83886080}, "COPARM1-32C-128G": {"alt_names": - [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 1342177280}, "COPARM1-4C-16G": {"alt_names": - [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, + "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": + [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, + "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": + [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 167772160}, "COPARM1-8C-32G": {"alt_names": - [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": + [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 335544320}, "DEV1-L": {"alt_names": [], "arch": - "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": + 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 209715200}, "DEV1-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": + 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, + "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": + 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": - 300000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 300000000}]}, "block_bandwidth": 157286400}, "DEV1-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, + "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, + "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 104857600}, "DEV1-XL": {"alt_names": [], "arch": - "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "mig_profile": null, "volumes_constraint": + 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, + "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": + 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, + "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, + "block_bandwidth": 262144000, "end_of_service": false}, "ENT1-2XL": {"alt_names": + [], "arch": "x86_64", "ncpus": 96, "ram": 412316860416, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 2576.9, "hourly_price": 3.53, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, + "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, + "block_bandwidth": 21474836480, "end_of_service": true}, "ENT1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, + "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, + "block_bandwidth": 5905580032, "end_of_service": true}, "ENT1-M": {"alt_names": + [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, + "block_bandwidth": 3355443200, "end_of_service": true}, "ENT1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 1677721600, "end_of_service": true}, "ENT1-XL": {"alt_names": + [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, + "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, + "block_bandwidth": 5905580032, "end_of_service": true}, "ENT1-XS": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": true}, "ENT1-XXS": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 53.655, "hourly_price": 0.0735, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": true}, "GP1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, + "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, + "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, + "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": + [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, + "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, + "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, + "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": + [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, + "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, + "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, + "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": + 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": - 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 500000000}]}, "block_bandwidth": 262144000}, "ENT1-2XL": {"alt_names": [], "arch": - "x86_64", "ncpus": 96, "ram": 412316860416, "gpu": 0, "mig_profile": null, "volumes_constraint": + 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, + "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": + 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", + "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2576.9, - "hourly_price": 3.53, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, + "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, - "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": - 20000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 20000000000}]}, "block_bandwidth": 21474836480}, "ENT1-L": {"alt_names": [], - "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "ENT1-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": + 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, + "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": + 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", + "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, - "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, + "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, - "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "ENT1-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": + 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, + "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": + 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", + "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, - "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, + "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, - "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "ENT1-XL": {"alt_names": [], - "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}, "block_bandwidth": 13421772800}, "ENT1-XS": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "ENT1-XXS": {"alt_names": [], "arch": - "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.655, - "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "GP1-L": {"alt_names": [], "arch": - "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": - 5000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 5000000000}]}, "block_bandwidth": 1073741824}, "GP1-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": - 1500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1500000000}]}, "block_bandwidth": 838860800}, "GP1-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 524288000}, "GP1-XL": {"alt_names": [], "arch": - "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": - 10000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 10000000000}]}, "block_bandwidth": 2147483648}, "GP1-XS": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": - 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 500000000}]}, "block_bandwidth": 314572800}, "PLAY2-MICRO": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, + 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, + "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": + 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", + "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, + "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": + 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, + "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", + "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 167772160}, "PLAY2-NANO": {"alt_names": [], - "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 83886080}, "PLAY2-PICO": {"alt_names": [], - "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, + "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": + [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": - 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 100000000}]}, "block_bandwidth": 41943040}, "POP2-16C-64G": {"alt_names": [], - "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-16C-64G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, + "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, + "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": + [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, + "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": + {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": + 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-2C-8G": {"alt_names": [], - "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, + 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, + "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", + "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "POP2-2C-8G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "POP2-32C-128G": {"alt_names": - [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-32C-128G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, + "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, + "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": + {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": + 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-4C-16G": {"alt_names": - [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": + 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", + "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "POP2-4C-16G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "POP2-64C-256G": {"alt_names": - [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-8C-32G": {"alt_names": - [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-8C-32G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, + "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, + "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": + [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, + "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, + "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, + "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, + "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": + 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-HC-16C-32G": {"alt_names": - [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "mig_profile": + 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, + "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", + "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-HC-2C-4G": {"alt_names": - [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, + "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "POP2-HC-32C-64G": {"alt_names": - [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-HC-4C-8G": {"alt_names": - [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, + "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, + "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": + {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": + 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": + 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", + "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "POP2-HC-64C-128G": {"alt_names": - [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": + {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": + 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-HC-8C-16G": {"alt_names": - [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", + "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-HM-16C-128G": {"alt_names": - [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": + {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": + 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-HM-2C-16G": {"alt_names": - [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, + "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", + "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "POP2-HM-32C-256G": {"alt_names": - [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": + {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": + 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-HM-4C-32G": {"alt_names": - [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "POP2-HM-64C-512G": {"alt_names": - [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-HM-8C-64G": {"alt_names": - [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-HN-10": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": - 10000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 10000000000}]}, "block_bandwidth": 838860800}, "POP2-HN-3": {"alt_names": [], - "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": - 3000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3000000000}]}, "block_bandwidth": 419430400}, "POP2-HN-5": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": - 5000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 5000000000}]}, "block_bandwidth": 838860800}}}' + 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}}}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": - 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 671088640}, "COPARM1-2C-8G": {"alt_names": - [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": + [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 83886080}, "COPARM1-32C-128G": {"alt_names": - [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 1342177280}, "COPARM1-4C-16G": {"alt_names": - [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, + "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": + [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, + "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": + [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 167772160}, "COPARM1-8C-32G": {"alt_names": - [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": + [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 335544320}, "DEV1-L": {"alt_names": [], "arch": - "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": + 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 209715200}, "DEV1-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": + 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, + "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": + 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": - 300000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 300000000}]}, "block_bandwidth": 157286400}, "DEV1-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, + "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, + "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 104857600}, "DEV1-XL": {"alt_names": [], "arch": - "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "mig_profile": null, "volumes_constraint": + 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, + "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": + 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, + "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, + "block_bandwidth": 262144000, "end_of_service": false}, "ENT1-2XL": {"alt_names": + [], "arch": "x86_64", "ncpus": 96, "ram": 412316860416, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 2576.9, "hourly_price": 3.53, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, + "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, + "block_bandwidth": 21474836480, "end_of_service": true}, "ENT1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, + "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, + "block_bandwidth": 5905580032, "end_of_service": true}, "ENT1-M": {"alt_names": + [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, + "block_bandwidth": 3355443200, "end_of_service": true}, "ENT1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 1677721600, "end_of_service": true}, "ENT1-XL": {"alt_names": + [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, + "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, + "block_bandwidth": 5905580032, "end_of_service": true}, "ENT1-XS": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": true}, "ENT1-XXS": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 53.655, "hourly_price": 0.0735, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": true}, "GP1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, + "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, + "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, + "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": + [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, + "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, + "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, + "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": + [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, + "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, + "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, + "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": + 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": - 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 500000000}]}, "block_bandwidth": 262144000}, "ENT1-2XL": {"alt_names": [], "arch": - "x86_64", "ncpus": 96, "ram": 412316860416, "gpu": 0, "mig_profile": null, "volumes_constraint": + 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, + "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": + 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", + "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2576.9, - "hourly_price": 3.53, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, + "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, - "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": - 20000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 20000000000}]}, "block_bandwidth": 21474836480}, "ENT1-L": {"alt_names": [], - "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "ENT1-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": + 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, + "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": + 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", + "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, - "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, + "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, - "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "ENT1-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": + 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, + "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": + 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", + "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, - "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, + "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, - "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "ENT1-XL": {"alt_names": [], - "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}, "block_bandwidth": 13421772800}, "ENT1-XS": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "ENT1-XXS": {"alt_names": [], "arch": - "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.655, - "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "GP1-L": {"alt_names": [], "arch": - "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": - 5000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 5000000000}]}, "block_bandwidth": 1073741824}, "GP1-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": - 1500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1500000000}]}, "block_bandwidth": 838860800}, "GP1-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 524288000}, "GP1-XL": {"alt_names": [], "arch": - "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": - 10000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 10000000000}]}, "block_bandwidth": 2147483648}, "GP1-XS": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": - 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 500000000}]}, "block_bandwidth": 314572800}, "PLAY2-MICRO": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, + 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, + "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": + 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", + "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, + "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": + 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, + "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", + "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 167772160}, "PLAY2-NANO": {"alt_names": [], - "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 83886080}, "PLAY2-PICO": {"alt_names": [], - "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, + "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": + [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": - 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 100000000}]}, "block_bandwidth": 41943040}, "POP2-16C-64G": {"alt_names": [], - "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-16C-64G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, + "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, + "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": + [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, + "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": + {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": + 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-2C-8G": {"alt_names": [], - "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, + 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, + "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", + "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "POP2-2C-8G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "POP2-32C-128G": {"alt_names": - [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-32C-128G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, + "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, + "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": + {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": + 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-4C-16G": {"alt_names": - [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "POP2-4C-16G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "POP2-64C-256G": {"alt_names": - [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "mig_profile": + 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", + "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-8C-32G": {"alt_names": - [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-8C-32G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, + "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, + "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": + [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, + "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, + "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, + "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, + "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": + 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-HC-16C-32G": {"alt_names": - [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "mig_profile": + 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, + "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", + "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-HC-2C-4G": {"alt_names": - [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, + "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "POP2-HC-32C-64G": {"alt_names": - [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-HC-4C-8G": {"alt_names": - [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, + "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, + "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": + {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": + 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": + 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", + "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "POP2-HC-64C-128G": {"alt_names": - [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": + {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": + 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-HC-8C-16G": {"alt_names": - [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", + "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-HM-16C-128G": {"alt_names": - [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": + {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": + 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-HM-2C-16G": {"alt_names": - [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, + "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", + "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "POP2-HM-32C-256G": {"alt_names": - [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": + {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": + 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-HM-4C-32G": {"alt_names": - [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "POP2-HM-64C-512G": {"alt_names": - [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-HM-8C-64G": {"alt_names": - [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-HN-10": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": - 10000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 10000000000}]}, "block_bandwidth": 838860800}, "POP2-HN-3": {"alt_names": [], - "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": - 3000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3000000000}]}, "block_bandwidth": 419430400}, "POP2-HN-5": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": - 5000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 5000000000}]}, "block_bandwidth": 838860800}}}' + 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}}}' headers: Content-Length: - - "38539" + - "39208" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:03 GMT + - Wed, 18 Jun 2025 19:06:30 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -932,362 +968,508 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9eac12c-ee30-4cbd-950b-7844b625fb98 + - 1e361008-4aa3-4bf3-8fcd-6bf4e5390241 X-Total-Count: - - "68" + - "75" status: 200 OK code: 200 duration: "" - request: - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, - "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": - 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, - "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": - 6000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6000000000}]}, "block_bandwidth": 2097152000}, "PRO2-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + body: '{"servers": {"POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": + 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, - "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, + "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, - "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": - 3000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3000000000}]}, "block_bandwidth": 1048576000}, "PRO2-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, - "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, - "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": - 1500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1500000000}]}, "block_bandwidth": 524288000}, "PRO2-XS": {"alt_names": [], "arch": - "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, - "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": - 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 700000000}]}, "block_bandwidth": - 262144000}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": - 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": + 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", + "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": + {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": - 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": + 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": - 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 350000000}]}, "block_bandwidth": - 131072000}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": - 45097156608, "gpu": 1, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": - 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": - 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": + 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", + "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, + "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, + "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, + "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, + "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, + "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": + [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, + "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, + "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, + "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, + "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, + "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, + "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, + "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, + "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": + {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": + 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": - 2000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 2000000000}]}, "block_bandwidth": 2147483648}, "STARDUST1-S": {"alt_names": - [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": + 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, + "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", + "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": - 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 100000000}]}, "block_bandwidth": 52428800}, "START1-L": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, + "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, + "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 41943040}, "START1-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 100000000000, "max_size": 100000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, + "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": + 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": - 300000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 300000000}]}, "block_bandwidth": 41943040}, "START1-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 50000000000, "max_size": 50000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, + "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 41943040}, "START1-XS": {"alt_names": [], "arch": - "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 25000000000, "max_size": 25000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, + "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": + 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": - 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 100000000}]}, "block_bandwidth": 41943040}, "VC1L": {"alt_names": ["X64-8GB"], - "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, - "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, - "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": - 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, + "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": + ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, + "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": + ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, + "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": + ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": + 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": - 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": - 41943040}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, - "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 100000000000, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 41943040}, "VC1S": {"alt_names": ["X64-2GB"], - "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 41943040}, "X64-120GB": {"alt_names": [], "arch": - "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 500000000000, "max_size": 1000000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, + "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": + 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": - 1000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1000000000}]}, "block_bandwidth": 41943040}, "X64-15GB": {"alt_names": [], "arch": - "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": - 250000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 250000000}]}, "block_bandwidth": 41943040}, "X64-30GB": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 300000000000, "max_size": 400000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": - 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 500000000}]}, "block_bandwidth": 41943040}, "X64-60GB": {"alt_names": [], "arch": - "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 400000000000, "max_size": 700000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, + "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": + [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, + "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, + "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, + "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, + "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": + [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": + 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": - 1000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1000000000}]}, "block_bandwidth": 41943040}}}' + 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, + "end_of_service": true}}}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, - "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": - 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, - "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": - 6000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6000000000}]}, "block_bandwidth": 2097152000}, "PRO2-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, - "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, - "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": - 3000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3000000000}]}, "block_bandwidth": 1048576000}, "PRO2-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": + body: '{"servers": {"POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": + 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, - "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, + "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, - "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": - 1500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1500000000}]}, "block_bandwidth": 524288000}, "PRO2-XS": {"alt_names": [], "arch": - "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, - "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": - 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 700000000}]}, "block_bandwidth": - 262144000}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": - 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": + 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", + "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": + {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": - 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": + 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": - 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 350000000}]}, "block_bandwidth": - 131072000}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": - 45097156608, "gpu": 1, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": - 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": - 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": + 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", + "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, + "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, + "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, + "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, + "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, + "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": + [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, + "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, + "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, + "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, + "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, + "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, + "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, + "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, + "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": + {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": + 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": - 2000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 2000000000}]}, "block_bandwidth": 2147483648}, "STARDUST1-S": {"alt_names": - [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": + 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, + "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", + "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": - 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 100000000}]}, "block_bandwidth": 52428800}, "START1-L": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, + "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, + "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 41943040}, "START1-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 100000000000, "max_size": 100000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, + "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": + 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": - 300000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 300000000}]}, "block_bandwidth": 41943040}, "START1-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 50000000000, "max_size": 50000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, + "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 41943040}, "START1-XS": {"alt_names": [], "arch": - "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 25000000000, "max_size": 25000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, + "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": + 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": - 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 100000000}]}, "block_bandwidth": 41943040}, "VC1L": {"alt_names": ["X64-8GB"], - "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, - "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, - "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": - 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, + "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": + ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, + "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": + ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, + "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": + ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": + 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": - 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": - 41943040}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, - "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 100000000000, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 41943040}, "VC1S": {"alt_names": ["X64-2GB"], - "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 41943040}, "X64-120GB": {"alt_names": [], "arch": - "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 500000000000, "max_size": 1000000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, + "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": + 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": - 1000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1000000000}]}, "block_bandwidth": 41943040}, "X64-15GB": {"alt_names": [], "arch": - "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": - 250000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 250000000}]}, "block_bandwidth": 41943040}, "X64-30GB": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 300000000000, "max_size": 400000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": - 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 500000000}]}, "block_bandwidth": 41943040}, "X64-60GB": {"alt_names": [], "arch": - "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 400000000000, "max_size": 700000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, + "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": + [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, + "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, + "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, + "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, + "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": + [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": + 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": - 1000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1000000000}]}, "block_bandwidth": 41943040}}}' + 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, + "end_of_service": true}}}' headers: Content-Length: - - "14208" + - "19730" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:03 GMT + - Wed, 18 Jun 2025 19:06:30 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1295,33 +1477,33 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d822c3a-bba4-4cd0-8cb1-cc7dd97cb104 + - b44d252b-8235-4a1b-a85a-107882bc103b X-Total-Count: - - "68" + - "75" status: 200 OK code: 200 duration: "" - request: - body: '{"local_images":[{"id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","arch":"x86_64","zone":"fr-par-1","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"label":"ubuntu_jammy","type":"instance_sbs"},{"id":"7044ae1e-a35d-4364-a962-93811c845f2f","arch":"arm64","zone":"fr-par-1","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"label":"ubuntu_jammy","type":"instance_sbs"}],"total_count":2}' + body: '{"local_images":[{"id":"3b131f0d-7075-494e-9c86-b2c424007a0a","arch":"arm64","zone":"fr-par-1","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"label":"ubuntu_jammy","type":"instance_sbs"},{"id":"63d40353-5519-46d0-9172-ccf4885954e1","arch":"x86_64","zone":"fr-par-1","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10","POP2-48C-192G","POP2-HC-48C-96G","POP2-HM-48C-384G"],"label":"ubuntu_jammy","type":"instance_sbs"}],"total_count":2}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: - body: '{"local_images":[{"id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","arch":"x86_64","zone":"fr-par-1","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"label":"ubuntu_jammy","type":"instance_sbs"},{"id":"7044ae1e-a35d-4364-a962-93811c845f2f","arch":"arm64","zone":"fr-par-1","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"label":"ubuntu_jammy","type":"instance_sbs"}],"total_count":2}' + body: '{"local_images":[{"id":"3b131f0d-7075-494e-9c86-b2c424007a0a","arch":"arm64","zone":"fr-par-1","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"label":"ubuntu_jammy","type":"instance_sbs"},{"id":"63d40353-5519-46d0-9172-ccf4885954e1","arch":"x86_64","zone":"fr-par-1","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10","POP2-48C-192G","POP2-HC-48C-96G","POP2-HM-48C-384G"],"label":"ubuntu_jammy","type":"instance_sbs"}],"total_count":2}' headers: Content-Length: - - "1216" + - "1269" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:04 GMT + - Wed, 18 Jun 2025 19:06:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1329,32 +1511,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad690e8f-c0b7-4f2d-ae14-91e19c70ee0d + - b005afb2-8a26-49ea-91b5-f61a9ff3b71d status: 200 OK code: 200 duration: "" - request: - body: '{"image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", "name": "Ubuntu + body: '{"image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/1fb9bfa4-68c3-4d6f-a362-8913a1af27b0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/63d40353-5519-46d0-9172-ccf4885954e1 method: GET response: - body: '{"image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", "name": "Ubuntu + body: '{"image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: @@ -1365,9 +1547,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:03 GMT + - Wed, 18 Jun 2025 19:06:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1375,33 +1557,33 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2875fa4f-cbf9-4c57-b424-32a480fdeb87 + - 8e575bdd-062d-4254-9870-5e0e04d80a6f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c40aa193-9aa2-4b98-9c82-33c9d12cc360","name":"cli-vol-thirsty-tereshkova","type":"sbs_5k","size":10000000000,"project_id":"ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b","created_at":"2025-01-29T10:26:04.493573Z","updated_at":"2025-01-29T10:26:04.493573Z","references":[],"parent_snapshot_id":null,"status":"creating","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + body: '{"id":"a88df247-a207-4982-920f-247c2d3dc705","name":"cli-vol-distracted-haibt","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:30.528315Z","updated_at":"2025-06-18T19:06:30.528315Z","references":[],"parent_snapshot_id":null,"status":"creating","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes method: POST response: - body: '{"id":"c40aa193-9aa2-4b98-9c82-33c9d12cc360","name":"cli-vol-thirsty-tereshkova","type":"sbs_5k","size":10000000000,"project_id":"ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b","created_at":"2025-01-29T10:26:04.493573Z","updated_at":"2025-01-29T10:26:04.493573Z","references":[],"parent_snapshot_id":null,"status":"creating","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + body: '{"id":"a88df247-a207-4982-920f-247c2d3dc705","name":"cli-vol-distracted-haibt","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:30.528315Z","updated_at":"2025-06-18T19:06:30.528315Z","references":[],"parent_snapshot_id":null,"status":"creating","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' headers: Content-Length: - - "409" + - "407" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:04 GMT + - Wed, 18 Jun 2025 19:06:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1409,22 +1591,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98a88d47-0be9-4cd9-98a7-651eae25bb9f + - 534c96a9-f715-44bf-9e92-12fcb51e8377 status: 200 OK code: 200 duration: "" - request: body: '{"message": "resource is not found", "type": "not_found", "resource": "instance_volume", - "resource_id": "c40aa193-9aa2-4b98-9c82-33c9d12cc360"}' + "resource_id": "a88df247-a207-4982-920f-247c2d3dc705"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c40aa193-9aa2-4b98-9c82-33c9d12cc360 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a88df247-a207-4982-920f-247c2d3dc705 method: GET response: body: '{"message": "resource is not found", "type": "not_found", "resource": "instance_volume", - "resource_id": "c40aa193-9aa2-4b98-9c82-33c9d12cc360"}' + "resource_id": "a88df247-a207-4982-920f-247c2d3dc705"}' headers: Content-Length: - "143" @@ -1433,9 +1615,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:04 GMT + - Wed, 18 Jun 2025 19:06:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1443,31 +1625,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 655210dd-ddee-44cd-a2da-4eb9ffee0dd6 + - 6f8fc9aa-2c53-4c0a-b7e3-05af5f679da9 status: 404 Not Found code: 404 duration: "" - request: - body: '{"id":"c40aa193-9aa2-4b98-9c82-33c9d12cc360","name":"cli-vol-thirsty-tereshkova","type":"sbs_5k","size":10000000000,"project_id":"ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b","created_at":"2025-01-29T10:26:04.493573Z","updated_at":"2025-01-29T10:26:04.493573Z","references":[],"parent_snapshot_id":null,"status":"creating","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + body: '{"id":"a88df247-a207-4982-920f-247c2d3dc705","name":"cli-vol-distracted-haibt","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:30.528315Z","updated_at":"2025-06-18T19:06:30.528315Z","references":[],"parent_snapshot_id":null,"status":"creating","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c40aa193-9aa2-4b98-9c82-33c9d12cc360 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a88df247-a207-4982-920f-247c2d3dc705 method: GET response: - body: '{"id":"c40aa193-9aa2-4b98-9c82-33c9d12cc360","name":"cli-vol-thirsty-tereshkova","type":"sbs_5k","size":10000000000,"project_id":"ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b","created_at":"2025-01-29T10:26:04.493573Z","updated_at":"2025-01-29T10:26:04.493573Z","references":[],"parent_snapshot_id":null,"status":"creating","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + body: '{"id":"a88df247-a207-4982-920f-247c2d3dc705","name":"cli-vol-distracted-haibt","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:30.528315Z","updated_at":"2025-06-18T19:06:30.528315Z","references":[],"parent_snapshot_id":null,"status":"creating","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' headers: Content-Length: - - "409" + - "407" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:04 GMT + - Wed, 18 Jun 2025 19:06:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1475,75 +1657,77 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64a359aa-d4e4-45ce-8ff5-c1d597d5f67f + - 9916aa2c-ef33-409b-809c-29ecaba708f0 status: 200 OK code: 200 duration: "" - request: - body: '{"server": {"id": "e0a0cdea-9f2b-45d9-9be3-f9a3d6ebaa3f", "name": "cli-srv-cranky-spence", + body: '{"server": {"id": "5b9f7f3c-0ea2-44bc-bc86-1e8d58386ddb", "name": "cli-srv-intelligent-mclean", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-cranky-spence", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-intelligent-mclean", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "b7b404f5-54a8-41c8-b5a7-68507e7f5d1e", "zone": "fr-par-1"}, "1": {"boot": - false, "volume_type": "sbs_volume", "id": "c40aa193-9aa2-4b98-9c82-33c9d12cc360", + "id": "f04c0dc6-3f08-4ff2-b680-6da4139b02d6", "zone": "fr-par-1"}, "1": {"boot": + false, "volume_type": "sbs_volume", "id": "a88df247-a207-4982-920f-247c2d3dc705", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": - "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:90:7f:3d", + "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:b7:59:7b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-01-29T10:26:04.793947+00:00", - "modification_date": "2025-01-29T10:26:04.793947+00:00", "bootscript": null, - "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default + false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-06-18T19:06:30.822486+00:00", + "modification_date": "2025-06-18T19:06:30.822486+00:00", "bootscript": null, + "security_group": {"id": "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", - "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", + "filesystems": [], "end_of_service": false}}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: - body: '{"server": {"id": "e0a0cdea-9f2b-45d9-9be3-f9a3d6ebaa3f", "name": "cli-srv-cranky-spence", + body: '{"server": {"id": "5b9f7f3c-0ea2-44bc-bc86-1e8d58386ddb", "name": "cli-srv-intelligent-mclean", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-cranky-spence", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-intelligent-mclean", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "b7b404f5-54a8-41c8-b5a7-68507e7f5d1e", "zone": "fr-par-1"}, "1": {"boot": - false, "volume_type": "sbs_volume", "id": "c40aa193-9aa2-4b98-9c82-33c9d12cc360", + "id": "f04c0dc6-3f08-4ff2-b680-6da4139b02d6", "zone": "fr-par-1"}, "1": {"boot": + false, "volume_type": "sbs_volume", "id": "a88df247-a207-4982-920f-247c2d3dc705", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": - "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:90:7f:3d", + "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:b7:59:7b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-01-29T10:26:04.793947+00:00", - "modification_date": "2025-01-29T10:26:04.793947+00:00", "bootscript": null, - "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default + false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-06-18T19:06:30.822486+00:00", + "modification_date": "2025-06-18T19:06:30.822486+00:00", "bootscript": null, + "security_group": {"id": "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", - "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", + "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1793" + - "1847" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:04 GMT + - Wed, 18 Jun 2025 19:06:31 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e0a0cdea-9f2b-45d9-9be3-f9a3d6ebaa3f + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5b9f7f3c-0ea2-44bc-bc86-1e8d58386ddb Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1551,29 +1735,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6cd3888-194c-4aee-be32-32d4a020ffc2 + - 95eae9c2-c3d5-485f-a43c-d92622f5edc2 status: 201 Created code: 201 duration: "" - request: - body: '{"task": {"id": "3a0a4b21-4174-493c-a92d-48e36ce79e32", "description": - "server_batch_poweron", "status": "pending", "href_from": "/servers/e0a0cdea-9f2b-45d9-9be3-f9a3d6ebaa3f/action", - "href_result": "/servers/e0a0cdea-9f2b-45d9-9be3-f9a3d6ebaa3f", "started_at": - "2025-01-29T10:26:05.826865+00:00", "terminated_at": null, "progress": 0, "zone": + body: '{"task": {"id": "09fab7a3-ae2f-45d0-8b1c-d8a447dae337", "description": + "server_batch_poweron", "status": "pending", "href_from": "/servers/5b9f7f3c-0ea2-44bc-bc86-1e8d58386ddb/action", + "href_result": "/servers/5b9f7f3c-0ea2-44bc-bc86-1e8d58386ddb", "started_at": + "2025-06-18T19:06:31.557793+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e0a0cdea-9f2b-45d9-9be3-f9a3d6ebaa3f/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5b9f7f3c-0ea2-44bc-bc86-1e8d58386ddb/action method: POST response: - body: '{"task": {"id": "3a0a4b21-4174-493c-a92d-48e36ce79e32", "description": - "server_batch_poweron", "status": "pending", "href_from": "/servers/e0a0cdea-9f2b-45d9-9be3-f9a3d6ebaa3f/action", - "href_result": "/servers/e0a0cdea-9f2b-45d9-9be3-f9a3d6ebaa3f", "started_at": - "2025-01-29T10:26:05.826865+00:00", "terminated_at": null, "progress": 0, "zone": + body: '{"task": {"id": "09fab7a3-ae2f-45d0-8b1c-d8a447dae337", "description": + "server_batch_poweron", "status": "pending", "href_from": "/servers/5b9f7f3c-0ea2-44bc-bc86-1e8d58386ddb/action", + "href_result": "/servers/5b9f7f3c-0ea2-44bc-bc86-1e8d58386ddb", "started_at": + "2025-06-18T19:06:31.557793+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: @@ -1583,11 +1767,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:05 GMT + - Wed, 18 Jun 2025 19:06:31 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/3a0a4b21-4174-493c-a92d-48e36ce79e32 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/09fab7a3-ae2f-45d0-8b1c-d8a447dae337 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1595,71 +1779,73 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9649c36e-a7a7-4ece-9cfa-6b581aa9ad90 + - 3a366812-863b-490a-9deb-5ddb487ac341 status: 202 Accepted code: 202 duration: "" - request: - body: '{"server": {"id": "e0a0cdea-9f2b-45d9-9be3-f9a3d6ebaa3f", "name": "cli-srv-cranky-spence", + body: '{"server": {"id": "5b9f7f3c-0ea2-44bc-bc86-1e8d58386ddb", "name": "cli-srv-intelligent-mclean", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-cranky-spence", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-intelligent-mclean", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "b7b404f5-54a8-41c8-b5a7-68507e7f5d1e", "zone": "fr-par-1"}, "1": {"boot": - false, "volume_type": "sbs_volume", "id": "c40aa193-9aa2-4b98-9c82-33c9d12cc360", + "id": "f04c0dc6-3f08-4ff2-b680-6da4139b02d6", "zone": "fr-par-1"}, "1": {"boot": + false, "volume_type": "sbs_volume", "id": "a88df247-a207-4982-920f-247c2d3dc705", "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": - "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:90:7f:3d", + "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:b7:59:7b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-01-29T10:26:04.793947+00:00", - "modification_date": "2025-01-29T10:26:05.563973+00:00", "bootscript": null, - "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default + false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-06-18T19:06:30.822486+00:00", + "modification_date": "2025-06-18T19:06:31.365006+00:00", "bootscript": null, + "security_group": {"id": "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", - "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", + "filesystems": [], "end_of_service": false}}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e0a0cdea-9f2b-45d9-9be3-f9a3d6ebaa3f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5b9f7f3c-0ea2-44bc-bc86-1e8d58386ddb method: GET response: - body: '{"server": {"id": "e0a0cdea-9f2b-45d9-9be3-f9a3d6ebaa3f", "name": "cli-srv-cranky-spence", + body: '{"server": {"id": "5b9f7f3c-0ea2-44bc-bc86-1e8d58386ddb", "name": "cli-srv-intelligent-mclean", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-cranky-spence", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-intelligent-mclean", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "b7b404f5-54a8-41c8-b5a7-68507e7f5d1e", "zone": "fr-par-1"}, "1": {"boot": - false, "volume_type": "sbs_volume", "id": "c40aa193-9aa2-4b98-9c82-33c9d12cc360", + "id": "f04c0dc6-3f08-4ff2-b680-6da4139b02d6", "zone": "fr-par-1"}, "1": {"boot": + false, "volume_type": "sbs_volume", "id": "a88df247-a207-4982-920f-247c2d3dc705", "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": - "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:90:7f:3d", + "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:b7:59:7b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-01-29T10:26:04.793947+00:00", - "modification_date": "2025-01-29T10:26:05.563973+00:00", "bootscript": null, - "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default + false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-06-18T19:06:30.822486+00:00", + "modification_date": "2025-06-18T19:06:31.365006+00:00", "bootscript": null, + "security_group": {"id": "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", - "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", + "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "1815" + - "1869" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:05 GMT + - Wed, 18 Jun 2025 19:06:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1667,75 +1853,77 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee41a792-d258-4a51-b90d-754d28bb7238 + - ec445762-f3b0-4d90-b4f0-de5a7e18b3e2 status: 200 OK code: 200 duration: "" - request: - body: '{"server": {"id": "e0a0cdea-9f2b-45d9-9be3-f9a3d6ebaa3f", "name": "cli-srv-cranky-spence", + body: '{"server": {"id": "5b9f7f3c-0ea2-44bc-bc86-1e8d58386ddb", "name": "cli-srv-intelligent-mclean", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-cranky-spence", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-intelligent-mclean", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "b7b404f5-54a8-41c8-b5a7-68507e7f5d1e", "zone": "fr-par-1"}, "1": {"boot": - false, "volume_type": "sbs_volume", "id": "c40aa193-9aa2-4b98-9c82-33c9d12cc360", + "id": "f04c0dc6-3f08-4ff2-b680-6da4139b02d6", "zone": "fr-par-1"}, "1": {"boot": + false, "volume_type": "sbs_volume", "id": "a88df247-a207-4982-920f-247c2d3dc705", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": - "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:90:7f:3d", + "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:b7:59:7b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-01-29T10:26:04.793947+00:00", - "modification_date": "2025-01-29T10:26:10.309158+00:00", "bootscript": null, - "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default + false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-06-18T19:06:30.822486+00:00", + "modification_date": "2025-06-18T19:06:35.810408+00:00", "bootscript": null, + "security_group": {"id": "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": - "36", "hypervisor_id": "102", "node_id": "6"}, "maintenances": [], "allowed_actions": + "31", "hypervisor_id": "302", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": - null, "private_nics": [], "zone": "fr-par-1"}}' + null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": + false}}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e0a0cdea-9f2b-45d9-9be3-f9a3d6ebaa3f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5b9f7f3c-0ea2-44bc-bc86-1e8d58386ddb method: GET response: - body: '{"server": {"id": "e0a0cdea-9f2b-45d9-9be3-f9a3d6ebaa3f", "name": "cli-srv-cranky-spence", + body: '{"server": {"id": "5b9f7f3c-0ea2-44bc-bc86-1e8d58386ddb", "name": "cli-srv-intelligent-mclean", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-cranky-spence", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-intelligent-mclean", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "b7b404f5-54a8-41c8-b5a7-68507e7f5d1e", "zone": "fr-par-1"}, "1": {"boot": - false, "volume_type": "sbs_volume", "id": "c40aa193-9aa2-4b98-9c82-33c9d12cc360", + "id": "f04c0dc6-3f08-4ff2-b680-6da4139b02d6", "zone": "fr-par-1"}, "1": {"boot": + false, "volume_type": "sbs_volume", "id": "a88df247-a207-4982-920f-247c2d3dc705", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": - "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:90:7f:3d", + "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:b7:59:7b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-01-29T10:26:04.793947+00:00", - "modification_date": "2025-01-29T10:26:10.309158+00:00", "bootscript": null, - "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default + false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-06-18T19:06:30.822486+00:00", + "modification_date": "2025-06-18T19:06:35.810408+00:00", "bootscript": null, + "security_group": {"id": "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": - "36", "hypervisor_id": "102", "node_id": "6"}, "maintenances": [], "allowed_actions": + "31", "hypervisor_id": "302", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": - null, "private_nics": [], "zone": "fr-par-1"}}' + null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": + false}}' headers: Content-Length: - - "1948" + - "2003" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:10 GMT + - Wed, 18 Jun 2025 19:06:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1743,75 +1931,77 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5de7dc07-7e2e-487f-89e4-ca68f43336cc + - 5c2276c8-2587-46bd-a5c6-bc04035708a5 status: 200 OK code: 200 duration: "" - request: - body: '{"server": {"id": "e0a0cdea-9f2b-45d9-9be3-f9a3d6ebaa3f", "name": "cli-srv-cranky-spence", + body: '{"server": {"id": "5b9f7f3c-0ea2-44bc-bc86-1e8d58386ddb", "name": "cli-srv-intelligent-mclean", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-cranky-spence", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-intelligent-mclean", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "b7b404f5-54a8-41c8-b5a7-68507e7f5d1e", "zone": "fr-par-1"}, "1": {"boot": - false, "volume_type": "sbs_volume", "id": "c40aa193-9aa2-4b98-9c82-33c9d12cc360", + "id": "f04c0dc6-3f08-4ff2-b680-6da4139b02d6", "zone": "fr-par-1"}, "1": {"boot": + false, "volume_type": "sbs_volume", "id": "a88df247-a207-4982-920f-247c2d3dc705", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": - "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:90:7f:3d", + "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:b7:59:7b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-01-29T10:26:04.793947+00:00", - "modification_date": "2025-01-29T10:26:10.309158+00:00", "bootscript": null, - "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default + false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-06-18T19:06:30.822486+00:00", + "modification_date": "2025-06-18T19:06:35.810408+00:00", "bootscript": null, + "security_group": {"id": "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": - "36", "hypervisor_id": "102", "node_id": "6"}, "maintenances": [], "allowed_actions": + "31", "hypervisor_id": "302", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": - null, "private_nics": [], "zone": "fr-par-1"}}' + null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": + false}}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e0a0cdea-9f2b-45d9-9be3-f9a3d6ebaa3f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5b9f7f3c-0ea2-44bc-bc86-1e8d58386ddb method: GET response: - body: '{"server": {"id": "e0a0cdea-9f2b-45d9-9be3-f9a3d6ebaa3f", "name": "cli-srv-cranky-spence", + body: '{"server": {"id": "5b9f7f3c-0ea2-44bc-bc86-1e8d58386ddb", "name": "cli-srv-intelligent-mclean", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-cranky-spence", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-intelligent-mclean", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "b7b404f5-54a8-41c8-b5a7-68507e7f5d1e", "zone": "fr-par-1"}, "1": {"boot": - false, "volume_type": "sbs_volume", "id": "c40aa193-9aa2-4b98-9c82-33c9d12cc360", + "id": "f04c0dc6-3f08-4ff2-b680-6da4139b02d6", "zone": "fr-par-1"}, "1": {"boot": + false, "volume_type": "sbs_volume", "id": "a88df247-a207-4982-920f-247c2d3dc705", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": - "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:90:7f:3d", + "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:b7:59:7b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-01-29T10:26:04.793947+00:00", - "modification_date": "2025-01-29T10:26:10.309158+00:00", "bootscript": null, - "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default + false, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-06-18T19:06:30.822486+00:00", + "modification_date": "2025-06-18T19:06:35.810408+00:00", "bootscript": null, + "security_group": {"id": "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": - "36", "hypervisor_id": "102", "node_id": "6"}, "maintenances": [], "allowed_actions": + "31", "hypervisor_id": "302", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": - null, "private_nics": [], "zone": "fr-par-1"}}' + null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": + false}}' headers: Content-Length: - - "1948" + - "2003" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:11 GMT + - Wed, 18 Jun 2025 19:06:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1819,29 +2009,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 654bae2d-8697-4fe6-8c66-2e8f2d9a7bba + - 643f0760-4eeb-484f-9514-a091f4744836 status: 200 OK code: 200 duration: "" - request: - body: '{"task": {"id": "604228cb-292a-4cd5-9c1d-217e0df2597f", "description": - "server_terminate", "status": "pending", "href_from": "/servers/e0a0cdea-9f2b-45d9-9be3-f9a3d6ebaa3f/action", - "href_result": "/servers/e0a0cdea-9f2b-45d9-9be3-f9a3d6ebaa3f", "started_at": - "2025-01-29T10:26:11.921984+00:00", "terminated_at": null, "progress": 0, "zone": + body: '{"task": {"id": "9be58403-3728-42f5-8834-e93d526117c0", "description": + "server_terminate", "status": "pending", "href_from": "/servers/5b9f7f3c-0ea2-44bc-bc86-1e8d58386ddb/action", + "href_result": "/servers/5b9f7f3c-0ea2-44bc-bc86-1e8d58386ddb", "started_at": + "2025-06-18T19:06:37.498799+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e0a0cdea-9f2b-45d9-9be3-f9a3d6ebaa3f/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5b9f7f3c-0ea2-44bc-bc86-1e8d58386ddb/action method: POST response: - body: '{"task": {"id": "604228cb-292a-4cd5-9c1d-217e0df2597f", "description": - "server_terminate", "status": "pending", "href_from": "/servers/e0a0cdea-9f2b-45d9-9be3-f9a3d6ebaa3f/action", - "href_result": "/servers/e0a0cdea-9f2b-45d9-9be3-f9a3d6ebaa3f", "started_at": - "2025-01-29T10:26:11.921984+00:00", "terminated_at": null, "progress": 0, "zone": + body: '{"task": {"id": "9be58403-3728-42f5-8834-e93d526117c0", "description": + "server_terminate", "status": "pending", "href_from": "/servers/5b9f7f3c-0ea2-44bc-bc86-1e8d58386ddb/action", + "href_result": "/servers/5b9f7f3c-0ea2-44bc-bc86-1e8d58386ddb", "started_at": + "2025-06-18T19:06:37.498799+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: @@ -1851,11 +2041,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:11 GMT + - Wed, 18 Jun 2025 19:06:37 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/604228cb-292a-4cd5-9c1d-217e0df2597f + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9be58403-3728-42f5-8834-e93d526117c0 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1863,31 +2053,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13500707-3b69-4d22-9ed9-9b0a349d8406 + - 0afa4c3e-c7c7-4ee5-876d-308d9c5bbbb5 status: 202 Accepted code: 202 duration: "" - request: - body: '{"id":"c40aa193-9aa2-4b98-9c82-33c9d12cc360","name":"cli-vol-thirsty-tereshkova","type":"sbs_5k","size":10000000000,"project_id":"ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b","created_at":"2025-01-29T10:26:04.493573Z","updated_at":"2025-01-29T10:26:04.964440Z","references":[{"id":"30b9452f-4222-4d34-8b0f-e3d78231659d","product_resource_type":"instance_server","product_resource_id":"e0a0cdea-9f2b-45d9-9be3-f9a3d6ebaa3f","created_at":"2025-01-29T10:26:04.964440Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":null,"status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + body: '{"id":"a88df247-a207-4982-920f-247c2d3dc705","name":"cli-vol-distracted-haibt","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:30.528315Z","updated_at":"2025-06-18T19:06:30.982944Z","references":[{"id":"fbcb4523-481d-4dc3-9add-7cb60d889cb8","product_resource_type":"instance_server","product_resource_id":"5b9f7f3c-0ea2-44bc-bc86-1e8d58386ddb","created_at":"2025-06-18T19:06:30.982944Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":null,"status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a88df247-a207-4982-920f-247c2d3dc705 + method: GET + response: + body: '{"id":"a88df247-a207-4982-920f-247c2d3dc705","name":"cli-vol-distracted-haibt","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:30.528315Z","updated_at":"2025-06-18T19:06:30.982944Z","references":[{"id":"fbcb4523-481d-4dc3-9add-7cb60d889cb8","product_resource_type":"instance_server","product_resource_id":"5b9f7f3c-0ea2-44bc-bc86-1e8d58386ddb","created_at":"2025-06-18T19:06:30.982944Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":null,"status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + headers: + Content-Length: + - "636" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:06:37 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8f8ab5d8-6f45-40b5-9af5-9cf7b65943ad + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"a88df247-a207-4982-920f-247c2d3dc705","name":"cli-vol-distracted-haibt","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:30.528315Z","updated_at":"2025-06-18T19:06:38.792176Z","references":[],"parent_snapshot_id":null,"status":"available","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":"2025-06-18T19:06:38.792176Z","zone":"fr-par-1"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c40aa193-9aa2-4b98-9c82-33c9d12cc360 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a88df247-a207-4982-920f-247c2d3dc705 method: GET response: - body: '{"id":"c40aa193-9aa2-4b98-9c82-33c9d12cc360","name":"cli-vol-thirsty-tereshkova","type":"sbs_5k","size":10000000000,"project_id":"ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b","created_at":"2025-01-29T10:26:04.493573Z","updated_at":"2025-01-29T10:26:04.964440Z","references":[{"id":"30b9452f-4222-4d34-8b0f-e3d78231659d","product_resource_type":"instance_server","product_resource_id":"e0a0cdea-9f2b-45d9-9be3-f9a3d6ebaa3f","created_at":"2025-01-29T10:26:04.964440Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":null,"status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + body: '{"id":"a88df247-a207-4982-920f-247c2d3dc705","name":"cli-vol-distracted-haibt","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:30.528315Z","updated_at":"2025-06-18T19:06:38.792176Z","references":[],"parent_snapshot_id":null,"status":"available","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":"2025-06-18T19:06:38.792176Z","zone":"fr-par-1"}' headers: Content-Length: - - "637" + - "433" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:12 GMT + - Wed, 18 Jun 2025 19:06:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1895,31 +2117,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a15908f-03fd-467b-bf25-bca67813b518 + - 39489ffd-e843-4a36-8485-0471225da612 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c40aa193-9aa2-4b98-9c82-33c9d12cc360","name":"cli-vol-thirsty-tereshkova","type":"sbs_5k","size":10000000000,"project_id":"ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b","created_at":"2025-01-29T10:26:04.493573Z","updated_at":"2025-01-29T10:26:13.435636Z","references":[],"parent_snapshot_id":null,"status":"available","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":"2025-01-29T10:26:13.435636Z","zone":"fr-par-1"}' + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a88df247-a207-4982-920f-247c2d3dc705 + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:06:42 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2dfeff6e-ac2b-4da0-bbb7-c489c0064f12 + status: 204 No Content + code: 204 + duration: "" +- request: + body: '{"id":"f04c0dc6-3f08-4ff2-b680-6da4139b02d6","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:30.930830Z","updated_at":"2025-06-18T19:06:38.704548Z","references":[],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"available","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":"2025-06-18T19:06:38.704548Z","zone":"fr-par-1"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c40aa193-9aa2-4b98-9c82-33c9d12cc360 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f04c0dc6-3f08-4ff2-b680-6da4139b02d6 method: GET response: - body: '{"id":"c40aa193-9aa2-4b98-9c82-33c9d12cc360","name":"cli-vol-thirsty-tereshkova","type":"sbs_5k","size":10000000000,"project_id":"ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b","created_at":"2025-01-29T10:26:04.493573Z","updated_at":"2025-01-29T10:26:13.435636Z","references":[],"parent_snapshot_id":null,"status":"available","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":"2025-01-29T10:26:13.435636Z","zone":"fr-par-1"}' + body: '{"id":"f04c0dc6-3f08-4ff2-b680-6da4139b02d6","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:06:30.930830Z","updated_at":"2025-06-18T19:06:38.704548Z","references":[],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"available","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":"2025-06-18T19:06:38.704548Z","zone":"fr-par-1"}' headers: Content-Length: - - "435" + - "484" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:17 GMT + - Wed, 18 Jun 2025 19:06:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1927,7 +2181,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f58dd6fa-ef99-413d-b985-2f48550c58df + - e4aef6a2-26c2-4896-aaa0-ecc4321ac1ad status: 200 OK code: 200 duration: "" @@ -1936,8 +2190,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c40aa193-9aa2-4b98-9c82-33c9d12cc360 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f04c0dc6-3f08-4ff2-b680-6da4139b02d6 method: DELETE response: body: "" @@ -1947,9 +2201,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:26:17 GMT + - Wed, 18 Jun 2025 19:06:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1957,7 +2211,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92f56e39-d081-4836-a349-488610c81e87 + - 32f925e3-ca7f-491b-a542-0e253feb7200 status: 204 No Content code: 204 duration: "" diff --git a/internal/namespaces/instance/v1/testdata/test-server-terminate-without-ip.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-server-terminate-without-ip.cassette.yaml index d627115622..00a7fbfc9e 100644 --- a/internal/namespaces/instance/v1/testdata/test-server-terminate-without-ip.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-server-terminate-without-ip.cassette.yaml @@ -3,928 +3,2243 @@ version: 1 interactions: - request: body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": - 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 671088640}, "COPARM1-2C-8G": {"alt_names": - [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": + [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 83886080}, "COPARM1-32C-128G": {"alt_names": - [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 1342177280}, "COPARM1-4C-16G": {"alt_names": - [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, + "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": + [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, + "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": + [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 167772160}, "COPARM1-8C-32G": {"alt_names": - [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": + [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 335544320}, "DEV1-L": {"alt_names": [], "arch": - "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": + 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 209715200}, "DEV1-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": + 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, + "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": + 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": - 300000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 300000000}]}, "block_bandwidth": 157286400}, "DEV1-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, + "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, + "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 104857600}, "DEV1-XL": {"alt_names": [], "arch": - "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "mig_profile": null, "volumes_constraint": + 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, + "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": + 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, + "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, + "block_bandwidth": 262144000, "end_of_service": false}, "ENT1-2XL": {"alt_names": + [], "arch": "x86_64", "ncpus": 96, "ram": 412316860416, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 2576.9, "hourly_price": 3.53, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, + "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, + "block_bandwidth": 21474836480, "end_of_service": true}, "ENT1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, + "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, + "block_bandwidth": 5905580032, "end_of_service": true}, "ENT1-M": {"alt_names": + [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, + "block_bandwidth": 3355443200, "end_of_service": true}, "ENT1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 1677721600, "end_of_service": true}, "ENT1-XL": {"alt_names": + [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, + "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, + "block_bandwidth": 5905580032, "end_of_service": true}, "ENT1-XS": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": true}, "ENT1-XXS": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 53.655, "hourly_price": 0.0735, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": true}, "GP1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, + "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, + "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, + "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": + [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, + "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, + "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, + "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": + [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, + "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, + "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, + "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": + 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": - 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 500000000}]}, "block_bandwidth": 262144000}, "ENT1-2XL": {"alt_names": [], "arch": - "x86_64", "ncpus": 96, "ram": 412316860416, "gpu": 0, "mig_profile": null, "volumes_constraint": + 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, + "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": + 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", + "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2576.9, - "hourly_price": 3.53, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, + "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, - "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": - 20000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 20000000000}]}, "block_bandwidth": 21474836480}, "ENT1-L": {"alt_names": [], - "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "ENT1-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": + 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, + "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": + 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", + "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, - "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, + "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, - "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "ENT1-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": + 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, + "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": + 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", + "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, - "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, + "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, - "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "ENT1-XL": {"alt_names": [], - "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}, "block_bandwidth": 13421772800}, "ENT1-XS": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "ENT1-XXS": {"alt_names": [], "arch": - "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.655, - "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "GP1-L": {"alt_names": [], "arch": - "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": - 5000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 5000000000}]}, "block_bandwidth": 1073741824}, "GP1-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": - 1500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1500000000}]}, "block_bandwidth": 838860800}, "GP1-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 524288000}, "GP1-XL": {"alt_names": [], "arch": - "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": - 10000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 10000000000}]}, "block_bandwidth": 2147483648}, "GP1-XS": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": - 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 500000000}]}, "block_bandwidth": 314572800}, "PLAY2-MICRO": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, + 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, + "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": + 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", + "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, + "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": + 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, + "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", + "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 167772160}, "PLAY2-NANO": {"alt_names": [], - "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 83886080}, "PLAY2-PICO": {"alt_names": [], - "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, + "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": + [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": - 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 100000000}]}, "block_bandwidth": 41943040}, "POP2-16C-64G": {"alt_names": [], - "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-16C-64G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, + "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, + "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": + [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, + "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": + {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": + 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-2C-8G": {"alt_names": [], - "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, + 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, + "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", + "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "POP2-2C-8G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "POP2-32C-128G": {"alt_names": - [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-32C-128G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, + "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, + "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": + {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": + 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-4C-16G": {"alt_names": - [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "POP2-4C-16G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "POP2-64C-256G": {"alt_names": - [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-8C-32G": {"alt_names": - [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-8C-32G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": + 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", + "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, + "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, + "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": + [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, + "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, + "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, + "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, + "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": + 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-HC-16C-32G": {"alt_names": - [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "mig_profile": + 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, + "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", + "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-HC-2C-4G": {"alt_names": - [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, + "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "POP2-HC-32C-64G": {"alt_names": - [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-HC-4C-8G": {"alt_names": - [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, + "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, + "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": + {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": + 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": + 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", + "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "POP2-HC-64C-128G": {"alt_names": - [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": + {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": + 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-HC-8C-16G": {"alt_names": - [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", + "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-HM-16C-128G": {"alt_names": - [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": + {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": + 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-HM-2C-16G": {"alt_names": - [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, + "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", + "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "POP2-HM-32C-256G": {"alt_names": - [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": + {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": + 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-HM-4C-32G": {"alt_names": - [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "POP2-HM-64C-512G": {"alt_names": - [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-HM-8C-64G": {"alt_names": - [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-HN-10": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": - 10000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 10000000000}]}, "block_bandwidth": 838860800}, "POP2-HN-3": {"alt_names": [], - "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": - 3000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3000000000}]}, "block_bandwidth": 419430400}, "POP2-HN-5": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": - 5000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 5000000000}]}, "block_bandwidth": 838860800}}}' + 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}}}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": - 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 671088640}, "COPARM1-2C-8G": {"alt_names": - [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": + [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 83886080}, "COPARM1-32C-128G": {"alt_names": - [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 1342177280}, "COPARM1-4C-16G": {"alt_names": - [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, + "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": + [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, + "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": + [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 167772160}, "COPARM1-8C-32G": {"alt_names": - [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": + [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 335544320}, "DEV1-L": {"alt_names": [], "arch": - "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 36.1496, "hourly_price": + 0.04952, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 209715200}, "DEV1-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": + 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, + "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": + 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": - 300000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 300000000}]}, "block_bandwidth": 157286400}, "DEV1-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, + "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, + "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 9.9864, "hourly_price": 0.01368, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 104857600}, "DEV1-XL": {"alt_names": [], "arch": - "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "mig_profile": null, "volumes_constraint": + 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, + "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": + 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, + "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, + "block_bandwidth": 262144000, "end_of_service": false}, "ENT1-2XL": {"alt_names": + [], "arch": "x86_64", "ncpus": 96, "ram": 412316860416, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 2576.9, "hourly_price": 3.53, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, + "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, + "block_bandwidth": 21474836480, "end_of_service": true}, "ENT1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, + "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, + "block_bandwidth": 5905580032, "end_of_service": true}, "ENT1-M": {"alt_names": + [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, + "block_bandwidth": 3355443200, "end_of_service": true}, "ENT1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 1677721600, "end_of_service": true}, "ENT1-XL": {"alt_names": + [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, + "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, + "block_bandwidth": 5905580032, "end_of_service": true}, "ENT1-XS": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": true}, "ENT1-XXS": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 53.655, "hourly_price": 0.0735, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": true}, "GP1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 576.262, + "hourly_price": 0.7894, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, + "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, + "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": + [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 296.672, + "hourly_price": 0.4064, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, + "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 149.066, + "hourly_price": 0.2042, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": + [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 1220.122, + "hourly_price": 1.6714, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, + "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, + "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 74.168, "hourly_price": + 0.1016, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": - 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 500000000}]}, "block_bandwidth": 262144000}, "ENT1-2XL": {"alt_names": [], "arch": - "x86_64", "ncpus": 96, "ram": 412316860416, "gpu": 0, "mig_profile": null, "volumes_constraint": + 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, + "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": + 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", + "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2576.9, - "hourly_price": 3.53, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 547.5, + "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, - "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": - 20000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 20000000000}]}, "block_bandwidth": 21474836480}, "ENT1-L": {"alt_names": [], - "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "ENT1-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": + 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, + "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": + 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", + "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 430.7, - "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1095.0, + "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, - "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "ENT1-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": + 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, + "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": + 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", + "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 211.7, - "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 2190.0, + "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, - "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "ENT1-XL": {"alt_names": [], - "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}, "block_bandwidth": 13421772800}, "ENT1-XS": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "ENT1-XXS": {"alt_names": [], "arch": - "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.655, - "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "GP1-L": {"alt_names": [], "arch": - "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": - 5000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 5000000000}]}, "block_bandwidth": 1073741824}, "GP1-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": - 1500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1500000000}]}, "block_bandwidth": 838860800}, "GP1-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 524288000}, "GP1-XL": {"alt_names": [], "arch": - "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": - 10000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 10000000000}]}, "block_bandwidth": 2147483648}, "GP1-XS": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": - 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 500000000}]}, "block_bandwidth": 314572800}, "PLAY2-MICRO": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, + 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, + "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": + 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", + "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 4380.0, + "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": + 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, + "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", + "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 167772160}, "PLAY2-NANO": {"alt_names": [], - "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 83886080}, "PLAY2-PICO": {"alt_names": [], - "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, + "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": + [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": - 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 100000000}]}, "block_bandwidth": 41943040}, "POP2-16C-64G": {"alt_names": [], - "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-16C-64G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, + "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, + "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": + [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, + "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": + {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 1063.391, "hourly_price": + 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-2C-8G": {"alt_names": [], - "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, + 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, + "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", + "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "POP2-2C-8G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "POP2-32C-128G": {"alt_names": - [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-32C-128G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, + "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, + "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": + {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 2126.709, "hourly_price": + 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-4C-16G": {"alt_names": - [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "POP2-4C-16G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "POP2-64C-256G": {"alt_names": - [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-8C-32G": {"alt_names": - [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-8C-32G-WIN": {"alt_names": - [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": + 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", + "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, + "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, + "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": + [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, + "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, + "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, + "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, + "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 528.009, "hourly_price": + 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-HC-16C-32G": {"alt_names": - [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "mig_profile": + 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, + "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", + "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-HC-2C-4G": {"alt_names": - [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, + "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "POP2-HC-32C-64G": {"alt_names": - [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-HC-4C-8G": {"alt_names": - [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, + "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, + "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": + {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 914.4, "hourly_price": + 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": + 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", + "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "POP2-HC-64C-128G": {"alt_names": - [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": + {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 1242.75, "hourly_price": + 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-HC-8C-16G": {"alt_names": - [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", + "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-HM-16C-128G": {"alt_names": - [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": + {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 601.52, "hourly_price": + 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-HM-2C-16G": {"alt_names": - [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, + "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", + "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 419430400}, "POP2-HM-32C-256G": {"alt_names": - [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HM-32C-256G": + {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 1203.04, "hourly_price": + 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-HM-4C-32G": {"alt_names": - [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}}}' + headers: + Content-Length: + - "39208" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:03:49 GMT + Link: + - ; rel="next",; + rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4330aa71-5812-474f-9367-9861704e1c2d + X-Total-Count: + - "75" + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"servers": {"POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": + 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, + "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": + 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", + "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}, "block_bandwidth": 838860800}, "POP2-HM-64C-512G": {"alt_names": - [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": + {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": + 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": + 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", + "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, + "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, + "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, + "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, + "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, + "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": + [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, + "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, + "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, + "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, + "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, + "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, + "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, + "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, + "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": + {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": + 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": + 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, + "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", + "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, + "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, + "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": + 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, + "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": + 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, + "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": + 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, + "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": + 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, + "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": + ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, + "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": + ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, + "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": + ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": + 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": + 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, + "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": + 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, + "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": + [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, + "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, + "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, + "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, + "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": + [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": + 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": + 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, + "end_of_service": true}}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + method: GET + response: + body: '{"servers": {"POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": + 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 1778.4, + "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": + 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", + "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, - "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": + "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": + {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": + 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "monthly_price": 2406.08, "hourly_price": + 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": + 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-HM-8C-64G": {"alt_names": - [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, + "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", + "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-HN-10": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, + "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": - 10000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 10000000000}]}, "block_bandwidth": 838860800}, "POP2-HN-3": {"alt_names": [], - "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, + "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": - 3000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3000000000}]}, "block_bandwidth": 419430400}, "POP2-HN-5": {"alt_names": [], - "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, + "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, + "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": - 5000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 5000000000}]}, "block_bandwidth": 838860800}}}' + false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, + "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, + "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, + "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, + "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": + [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, + "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, + "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, + "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, + "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": + null, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, + "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, + "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, + "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, + "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": + {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 907.098, "hourly_price": + 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": + 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, + "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", + "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, + "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, + "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 26.864, "hourly_price": 0.0368, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": + 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, + "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": + 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, + "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, + "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "scratch_storage_max_size": null, "monthly_price": 7.738, "hourly_price": 0.0106, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": + 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, + "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": + 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, + "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": + ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 18.0164, + "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": + ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 11.3515, + "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": + ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 6.2926, "hourly_price": + 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": + 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, + "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": + 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, + "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": + [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 44.0336, + "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, + "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 86.9138, + "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, + "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, + "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": + [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": + null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": + 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "scratch_storage_max_size": null, "monthly_price": 155.49, "hourly_price": + 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": + true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": + 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, + "end_of_service": true}}}' + headers: + Content-Length: + - "19730" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:03:49 GMT + Link: + - ; rel="first",; + rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 41a441c5-e900-4e7c-832f-43e0f2ff066c + X-Total-Count: + - "75" + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"local_images":[{"id":"3b131f0d-7075-494e-9c86-b2c424007a0a","arch":"arm64","zone":"fr-par-1","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"label":"ubuntu_jammy","type":"instance_sbs"},{"id":"63d40353-5519-46d0-9172-ccf4885954e1","arch":"x86_64","zone":"fr-par-1","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10","POP2-48C-192G","POP2-HC-48C-96G","POP2-HM-48C-384G"],"label":"ubuntu_jammy","type":"instance_sbs"}],"total_count":2}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET + response: + body: '{"local_images":[{"id":"3b131f0d-7075-494e-9c86-b2c424007a0a","arch":"arm64","zone":"fr-par-1","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"label":"ubuntu_jammy","type":"instance_sbs"},{"id":"63d40353-5519-46d0-9172-ccf4885954e1","arch":"x86_64","zone":"fr-par-1","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10","POP2-48C-192G","POP2-HC-48C-96G","POP2-HM-48C-384G"],"label":"ubuntu_jammy","type":"instance_sbs"}],"total_count":2}' + headers: + Content-Length: + - "1269" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:03:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 96d0490f-1f2f-46b4-a19b-bcfeb28111ce + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", "name": "Ubuntu + 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/63d40353-5519-46d0-9172-ccf4885954e1 + method: GET + response: + body: '{"image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", "name": "Ubuntu + 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "587" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:03:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 159cb6ef-ba3e-492b-a7bd-5d57eda712e2 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"ip": {"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "prefix": null, "reverse": null, "server": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project": "19a4819b-24bf-4d44-969f-935ef0061b71", "zone": "fr-par-1", "type": + "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "f72b5e46-e454-4bd4-8e8c-7ff1113e79f7"}}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips + method: POST + response: + body: '{"ip": {"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "prefix": null, "reverse": null, "server": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project": "19a4819b-24bf-4d44-969f-935ef0061b71", "zone": "fr-par-1", "type": + "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "f72b5e46-e454-4bd4-8e8c-7ff1113e79f7"}}' + headers: + Content-Length: + - "366" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:03:50 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aed1ddef-0a76-4eec-a879-45a0a7aa2f32 + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 791480a4-c267-4f3b-8fd6-2cf43f9603a2 + status: 201 Created + code: 201 + duration: "" +- request: + body: '{"server": {"id": "0c860aea-8832-4604-a989-7f750d810ed9", "name": "cli-srv-blissful-chandrasekhar", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-blissful-chandrasekhar", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", + "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", + "id": "be73d11d-e2f5-4f69-811c-3047acca32ae", "zone": "fr-par-1"}}, "tags": + [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": + {"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f72b5e46-e454-4bd4-8e8c-7ff1113e79f7"}, + "public_ips": [{"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f72b5e46-e454-4bd4-8e8c-7ff1113e79f7"}], + "mac_address": "de:00:00:b7:59:75", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2025-06-18T19:03:50.533203+00:00", "modification_date": + "2025-06-18T19:03:50.533203+00:00", "bootscript": null, "security_group": {"id": + "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default security group"}, "location": + null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": + null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": + false}}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + body: '{"server": {"id": "0c860aea-8832-4604-a989-7f750d810ed9", "name": "cli-srv-blissful-chandrasekhar", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-blissful-chandrasekhar", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", + "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", + "id": "be73d11d-e2f5-4f69-811c-3047acca32ae", "zone": "fr-par-1"}}, "tags": + [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": + {"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f72b5e46-e454-4bd4-8e8c-7ff1113e79f7"}, + "public_ips": [{"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f72b5e46-e454-4bd4-8e8c-7ff1113e79f7"}], + "mac_address": "de:00:00:b7:59:75", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2025-06-18T19:03:50.533203+00:00", "modification_date": + "2025-06-18T19:03:50.533203+00:00", "bootscript": null, "security_group": {"id": + "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default security group"}, "location": + null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": + null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": + false}}' + headers: + Content-Length: + - "2265" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:03:51 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0c860aea-8832-4604-a989-7f750d810ed9 + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 83e3b8c8-57bf-4fa8-83d5-489dd291cc9d + status: 201 Created + code: 201 + duration: "" +- request: + body: '{"task": {"id": "9e395091-d55a-4252-8906-06161ac81620", "description": + "server_batch_poweron", "status": "pending", "href_from": "/servers/0c860aea-8832-4604-a989-7f750d810ed9/action", + "href_result": "/servers/0c860aea-8832-4604-a989-7f750d810ed9", "started_at": + "2025-06-18T19:03:51.612371+00:00", "terminated_at": null, "progress": 0, "zone": + "fr-par-1"}}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0c860aea-8832-4604-a989-7f750d810ed9/action + method: POST + response: + body: '{"task": {"id": "9e395091-d55a-4252-8906-06161ac81620", "description": + "server_batch_poweron", "status": "pending", "href_from": "/servers/0c860aea-8832-4604-a989-7f750d810ed9/action", + "href_result": "/servers/0c860aea-8832-4604-a989-7f750d810ed9", "started_at": + "2025-06-18T19:03:51.612371+00:00", "terminated_at": null, "progress": 0, "zone": + "fr-par-1"}}' + headers: + Content-Length: + - "357" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:03:51 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9e395091-d55a-4252-8906-06161ac81620 + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 97dad7b0-9d63-4cec-9a0f-7f52d8f33f1c + status: 202 Accepted + code: 202 + duration: "" +- request: + body: '{"server": {"id": "0c860aea-8832-4604-a989-7f750d810ed9", "name": "cli-srv-blissful-chandrasekhar", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-blissful-chandrasekhar", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", + "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", + "id": "be73d11d-e2f5-4f69-811c-3047acca32ae", "zone": "fr-par-1"}}, "tags": + [], "state": "starting", "protected": false, "state_detail": "allocating node", + "public_ip": {"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f72b5e46-e454-4bd4-8e8c-7ff1113e79f7"}, + "public_ips": [{"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f72b5e46-e454-4bd4-8e8c-7ff1113e79f7"}], + "mac_address": "de:00:00:b7:59:75", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2025-06-18T19:03:50.533203+00:00", "modification_date": + "2025-06-18T19:03:51.206861+00:00", "bootscript": null, "security_group": {"id": + "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default security group"}, "location": + null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": + null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": + false}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0c860aea-8832-4604-a989-7f750d810ed9 + method: GET + response: + body: '{"server": {"id": "0c860aea-8832-4604-a989-7f750d810ed9", "name": "cli-srv-blissful-chandrasekhar", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-blissful-chandrasekhar", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", + "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", + "id": "be73d11d-e2f5-4f69-811c-3047acca32ae", "zone": "fr-par-1"}}, "tags": + [], "state": "starting", "protected": false, "state_detail": "allocating node", + "public_ip": {"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f72b5e46-e454-4bd4-8e8c-7ff1113e79f7"}, + "public_ips": [{"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f72b5e46-e454-4bd4-8e8c-7ff1113e79f7"}], + "mac_address": "de:00:00:b7:59:75", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2025-06-18T19:03:50.533203+00:00", "modification_date": + "2025-06-18T19:03:51.206861+00:00", "bootscript": null, "security_group": {"id": + "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default security group"}, "location": + null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": + null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": + false}}' + headers: + Content-Length: + - "2287" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:03:51 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6c503391-6f7e-48a3-914d-dcb8b9aeba63 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "0c860aea-8832-4604-a989-7f750d810ed9", "name": "cli-srv-blissful-chandrasekhar", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-blissful-chandrasekhar", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", + "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", + "id": "be73d11d-e2f5-4f69-811c-3047acca32ae", "zone": "fr-par-1"}}, "tags": + [], "state": "running", "protected": false, "state_detail": "booting kernel", + "public_ip": {"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f72b5e46-e454-4bd4-8e8c-7ff1113e79f7"}, + "public_ips": [{"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f72b5e46-e454-4bd4-8e8c-7ff1113e79f7"}], + "mac_address": "de:00:00:b7:59:75", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2025-06-18T19:03:50.533203+00:00", "modification_date": + "2025-06-18T19:03:54.588117+00:00", "bootscript": null, "security_group": {"id": + "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default security group"}, "location": + {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": + "1801", "node_id": "11"}, "maintenances": [], "allowed_actions": ["poweroff", + "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": + false}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0c860aea-8832-4604-a989-7f750d810ed9 + method: GET + response: + body: '{"server": {"id": "0c860aea-8832-4604-a989-7f750d810ed9", "name": "cli-srv-blissful-chandrasekhar", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-blissful-chandrasekhar", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", + "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", + "id": "be73d11d-e2f5-4f69-811c-3047acca32ae", "zone": "fr-par-1"}}, "tags": + [], "state": "running", "protected": false, "state_detail": "booting kernel", + "public_ip": {"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f72b5e46-e454-4bd4-8e8c-7ff1113e79f7"}, + "public_ips": [{"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f72b5e46-e454-4bd4-8e8c-7ff1113e79f7"}], + "mac_address": "de:00:00:b7:59:75", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2025-06-18T19:03:50.533203+00:00", "modification_date": + "2025-06-18T19:03:54.588117+00:00", "bootscript": null, "security_group": {"id": + "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default security group"}, "location": + {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": + "1801", "node_id": "11"}, "maintenances": [], "allowed_actions": ["poweroff", + "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": + false}}' + headers: + Content-Length: + - "2422" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:03:56 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2f62832c-d597-4245-9be2-62e318d7f0a5 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "0c860aea-8832-4604-a989-7f750d810ed9", "name": "cli-srv-blissful-chandrasekhar", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-blissful-chandrasekhar", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", + "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", + "id": "be73d11d-e2f5-4f69-811c-3047acca32ae", "zone": "fr-par-1"}}, "tags": + [], "state": "running", "protected": false, "state_detail": "booting kernel", + "public_ip": {"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f72b5e46-e454-4bd4-8e8c-7ff1113e79f7"}, + "public_ips": [{"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f72b5e46-e454-4bd4-8e8c-7ff1113e79f7"}], + "mac_address": "de:00:00:b7:59:75", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2025-06-18T19:03:50.533203+00:00", "modification_date": + "2025-06-18T19:03:54.588117+00:00", "bootscript": null, "security_group": {"id": + "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default security group"}, "location": + {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": + "1801", "node_id": "11"}, "maintenances": [], "allowed_actions": ["poweroff", + "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": + false}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0c860aea-8832-4604-a989-7f750d810ed9 + method: GET + response: + body: '{"server": {"id": "0c860aea-8832-4604-a989-7f750d810ed9", "name": "cli-srv-blissful-chandrasekhar", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-blissful-chandrasekhar", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", + "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", + "id": "be73d11d-e2f5-4f69-811c-3047acca32ae", "zone": "fr-par-1"}}, "tags": + [], "state": "running", "protected": false, "state_detail": "booting kernel", + "public_ip": {"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f72b5e46-e454-4bd4-8e8c-7ff1113e79f7"}, + "public_ips": [{"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f72b5e46-e454-4bd4-8e8c-7ff1113e79f7"}], + "mac_address": "de:00:00:b7:59:75", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2025-06-18T19:03:50.533203+00:00", "modification_date": + "2025-06-18T19:03:54.588117+00:00", "bootscript": null, "security_group": {"id": + "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default security group"}, "location": + {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": + "1801", "node_id": "11"}, "maintenances": [], "allowed_actions": ["poweroff", + "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": + false}}' + headers: + Content-Length: + - "2422" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:03:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b879063a-d75c-4434-b8ad-402a2e5b6476 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"message": "resource is not found", "type": "not_found", "resource": "instance_volume", + "resource_id": "be73d11d-e2f5-4f69-811c-3047acca32ae"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/be73d11d-e2f5-4f69-811c-3047acca32ae + method: GET + response: + body: '{"message": "resource is not found", "type": "not_found", "resource": "instance_volume", + "resource_id": "be73d11d-e2f5-4f69-811c-3047acca32ae"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:03:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - abd68fa5-f743-4dd0-881c-4408b26d7366 + status: 404 Not Found + code: 404 + duration: "" +- request: + body: '{"id":"be73d11d-e2f5-4f69-811c-3047acca32ae","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:03:50.636586Z","updated_at":"2025-06-18T19:03:50.636586Z","references":[{"id":"f9d0c5bf-0cdd-4652-8096-f1e84ca20221","product_resource_type":"instance_server","product_resource_id":"0c860aea-8832-4604-a989-7f750d810ed9","created_at":"2025-06-18T19:03:50.636586Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/be73d11d-e2f5-4f69-811c-3047acca32ae + method: GET + response: + body: '{"id":"be73d11d-e2f5-4f69-811c-3047acca32ae","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:03:50.636586Z","updated_at":"2025-06-18T19:03:50.636586Z","references":[{"id":"f9d0c5bf-0cdd-4652-8096-f1e84ca20221","product_resource_type":"instance_server","product_resource_id":"0c860aea-8832-4604-a989-7f750d810ed9","created_at":"2025-06-18T19:03:50.636586Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + headers: + Content-Length: + - "686" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:03:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 69167b4f-ca8e-48e7-be9f-874298d13a37 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "0c860aea-8832-4604-a989-7f750d810ed9", "name": "cli-srv-blissful-chandrasekhar", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-blissful-chandrasekhar", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", + "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {}, "tags": [], "state": "running", "protected": + false, "state_detail": "booting kernel", "public_ip": {"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", + "address": "212.47.240.125", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f72b5e46-e454-4bd4-8e8c-7ff1113e79f7"}, "public_ips": [{"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", + "address": "212.47.240.125", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f72b5e46-e454-4bd4-8e8c-7ff1113e79f7"}], "mac_address": "de:00:00:b7:59:75", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-06-18T19:03:50.533203+00:00", + "modification_date": "2025-06-18T19:03:54.588117+00:00", "bootscript": null, + "security_group": {"id": "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default + security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": + "19", "hypervisor_id": "1801", "node_id": "11"}, "maintenances": [], "allowed_actions": + ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": + null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": + false}}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0c860aea-8832-4604-a989-7f750d810ed9/detach-volume + method: POST + response: + body: '{"server": {"id": "0c860aea-8832-4604-a989-7f750d810ed9", "name": "cli-srv-blissful-chandrasekhar", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "19a4819b-24bf-4d44-969f-935ef0061b71", + "hostname": "cli-srv-blissful-chandrasekhar", "image": {"id": "63d40353-5519-46d0-9172-ccf4885954e1", + "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "905845fc-a6eb-4401-8e9d-5810071b7119", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:22:53.227105+00:00", "modification_date": "2025-02-03T13:22:53.227105+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {}, "tags": [], "state": "running", "protected": + false, "state_detail": "booting kernel", "public_ip": {"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", + "address": "212.47.240.125", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f72b5e46-e454-4bd4-8e8c-7ff1113e79f7"}, "public_ips": [{"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", + "address": "212.47.240.125", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f72b5e46-e454-4bd4-8e8c-7ff1113e79f7"}], "mac_address": "de:00:00:b7:59:75", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2025-06-18T19:03:50.533203+00:00", + "modification_date": "2025-06-18T19:03:54.588117+00:00", "bootscript": null, + "security_group": {"id": "8e34ee28-25f2-4952-aca9-68ba0bbae245", "name": "Default + security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": + "19", "hypervisor_id": "1801", "node_id": "11"}, "maintenances": [], "allowed_actions": + ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": + null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": + false}}' + headers: + Content-Length: + - "2307" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:03:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 516ec76b-b4ed-4e29-9a5a-789578ac7bf1 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"be73d11d-e2f5-4f69-811c-3047acca32ae","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:03:50.636586Z","updated_at":"2025-06-18T19:03:50.636586Z","references":[{"id":"f9d0c5bf-0cdd-4652-8096-f1e84ca20221","product_resource_type":"instance_server","product_resource_id":"0c860aea-8832-4604-a989-7f750d810ed9","created_at":"2025-06-18T19:03:50.636586Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/be73d11d-e2f5-4f69-811c-3047acca32ae + method: GET + response: + body: '{"id":"be73d11d-e2f5-4f69-811c-3047acca32ae","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:03:50.636586Z","updated_at":"2025-06-18T19:03:50.636586Z","references":[{"id":"f9d0c5bf-0cdd-4652-8096-f1e84ca20221","product_resource_type":"instance_server","product_resource_id":"0c860aea-8832-4604-a989-7f750d810ed9","created_at":"2025-06-18T19:03:50.636586Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + headers: + Content-Length: + - "686" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:03:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b32f757b-f4e1-48e1-a8a8-e3f1721ffed7 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"be73d11d-e2f5-4f69-811c-3047acca32ae","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:03:50.636586Z","updated_at":"2025-06-18T19:03:50.636586Z","references":[{"id":"f9d0c5bf-0cdd-4652-8096-f1e84ca20221","product_resource_type":"instance_server","product_resource_id":"0c860aea-8832-4604-a989-7f750d810ed9","created_at":"2025-06-18T19:03:50.636586Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/be73d11d-e2f5-4f69-811c-3047acca32ae + method: GET + response: + body: '{"id":"be73d11d-e2f5-4f69-811c-3047acca32ae","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:03:50.636586Z","updated_at":"2025-06-18T19:03:50.636586Z","references":[{"id":"f9d0c5bf-0cdd-4652-8096-f1e84ca20221","product_resource_type":"instance_server","product_resource_id":"0c860aea-8832-4604-a989-7f750d810ed9","created_at":"2025-06-18T19:03:50.636586Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + headers: + Content-Length: + - "687" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:04:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fd881425-c6ba-4c8d-8f09-eaca5875f861 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"be73d11d-e2f5-4f69-811c-3047acca32ae","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:03:50.636586Z","updated_at":"2025-06-18T19:03:50.636586Z","references":[{"id":"f9d0c5bf-0cdd-4652-8096-f1e84ca20221","product_resource_type":"instance_server","product_resource_id":"0c860aea-8832-4604-a989-7f750d810ed9","created_at":"2025-06-18T19:03:50.636586Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/be73d11d-e2f5-4f69-811c-3047acca32ae + method: GET + response: + body: '{"id":"be73d11d-e2f5-4f69-811c-3047acca32ae","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:03:50.636586Z","updated_at":"2025-06-18T19:03:50.636586Z","references":[{"id":"f9d0c5bf-0cdd-4652-8096-f1e84ca20221","product_resource_type":"instance_server","product_resource_id":"0c860aea-8832-4604-a989-7f750d810ed9","created_at":"2025-06-18T19:03:50.636586Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' headers: Content-Length: - - "38539" + - "687" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:25:45 GMT - Link: - - ; rel="next",; - rel="last" + - Wed, 18 Jun 2025 19:04:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -932,362 +2247,33 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c5467e1-d59d-4100-b89d-00f42ad52cf6 - X-Total-Count: - - "68" + - 2fa664ef-f0da-40c3-9b96-ebeeb4b2a8e8 status: 200 OK code: 200 duration: "" - request: - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, - "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": - 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, - "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": - 6000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6000000000}]}, "block_bandwidth": 2097152000}, "PRO2-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, - "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, - "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": - 3000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3000000000}]}, "block_bandwidth": 1048576000}, "PRO2-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, - "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, - "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": - 1500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1500000000}]}, "block_bandwidth": 524288000}, "PRO2-XS": {"alt_names": [], "arch": - "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, - "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": - 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 700000000}]}, "block_bandwidth": - 262144000}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": - 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": - 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": - 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 350000000}]}, "block_bandwidth": - 131072000}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": - 45097156608, "gpu": 1, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": - 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": - 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": - 2000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 2000000000}]}, "block_bandwidth": 2147483648}, "STARDUST1-S": {"alt_names": - [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": - 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 100000000}]}, "block_bandwidth": 52428800}, "START1-L": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 41943040}, "START1-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 100000000000, "max_size": 100000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": - 300000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 300000000}]}, "block_bandwidth": 41943040}, "START1-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 50000000000, "max_size": 50000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 41943040}, "START1-XS": {"alt_names": [], "arch": - "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 25000000000, "max_size": 25000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": - 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 100000000}]}, "block_bandwidth": 41943040}, "VC1L": {"alt_names": ["X64-8GB"], - "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, - "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, - "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": - 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": - 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": - 41943040}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, - "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 100000000000, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 41943040}, "VC1S": {"alt_names": ["X64-2GB"], - "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 41943040}, "X64-120GB": {"alt_names": [], "arch": - "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 500000000000, "max_size": 1000000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": - 1000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1000000000}]}, "block_bandwidth": 41943040}, "X64-15GB": {"alt_names": [], "arch": - "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": - 250000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 250000000}]}, "block_bandwidth": 41943040}, "X64-30GB": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 300000000000, "max_size": 400000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": - 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 500000000}]}, "block_bandwidth": 41943040}, "X64-60GB": {"alt_names": [], "arch": - "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 400000000000, "max_size": 700000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": - 1000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1000000000}]}, "block_bandwidth": 41943040}}}' + body: '{"id":"be73d11d-e2f5-4f69-811c-3047acca32ae","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:03:50.636586Z","updated_at":"2025-06-18T19:03:50.636586Z","references":[{"id":"f9d0c5bf-0cdd-4652-8096-f1e84ca20221","product_resource_type":"instance_server","product_resource_id":"0c860aea-8832-4604-a989-7f750d810ed9","created_at":"2025-06-18T19:03:50.636586Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/be73d11d-e2f5-4f69-811c-3047acca32ae method: GET response: - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, - "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "monthly_price": 640.21, "hourly_price": - 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, - "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": - 6000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6000000000}]}, "block_bandwidth": 2097152000}, "PRO2-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 319.74, - "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, - "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": - 3000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3000000000}]}, "block_bandwidth": 1048576000}, "PRO2-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 159.87, - "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, - "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": - 1500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1500000000}]}, "block_bandwidth": 524288000}, "PRO2-XS": {"alt_names": [], "arch": - "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "monthly_price": 80.3, - "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": - 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 700000000}]}, "block_bandwidth": - 262144000}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": - 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "monthly_price": 40.15, "hourly_price": - 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": - 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 350000000}]}, "block_bandwidth": - 131072000}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": - 45097156608, "gpu": 1, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": - 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "monthly_price": - 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": - 2000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 2000000000}]}, "block_bandwidth": 2147483648}, "STARDUST1-S": {"alt_names": - [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "mig_profile": - null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": - null, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": - 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 100000000}]}, "block_bandwidth": 52428800}, "START1-L": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}, "block_bandwidth": 41943040}, "START1-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 100000000000, "max_size": 100000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": - 300000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 300000000}]}, "block_bandwidth": 41943040}, "START1-S": {"alt_names": [], "arch": - "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 50000000000, "max_size": 50000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 41943040}, "START1-XS": {"alt_names": [], "arch": - "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 25000000000, "max_size": 25000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": - 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 100000000}]}, "block_bandwidth": 41943040}, "VC1L": {"alt_names": ["X64-8GB"], - "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, - "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, - "scratch_storage_max_size": null, "monthly_price": 18.0164, "hourly_price": - 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": - true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": - 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": - 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": - 41943040}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, - "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 100000000000, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 41943040}, "VC1S": {"alt_names": ["X64-2GB"], - "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "mig_profile": null, - "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}, "block_bandwidth": 41943040}, "X64-120GB": {"alt_names": [], "arch": - "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 500000000000, "max_size": 1000000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": - 1000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1000000000}]}, "block_bandwidth": 41943040}, "X64-15GB": {"alt_names": [], "arch": - "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": - 250000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 250000000}]}, "block_bandwidth": 41943040}, "X64-30GB": {"alt_names": [], "arch": - "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 300000000000, "max_size": 400000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": - 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 500000000}]}, "block_bandwidth": 41943040}, "X64-60GB": {"alt_names": [], "arch": - "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 400000000000, "max_size": 700000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": - null, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": - 1000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1000000000}]}, "block_bandwidth": 41943040}}}' + body: '{"id":"be73d11d-e2f5-4f69-811c-3047acca32ae","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:03:50.636586Z","updated_at":"2025-06-18T19:03:50.636586Z","references":[{"id":"f9d0c5bf-0cdd-4652-8096-f1e84ca20221","product_resource_type":"instance_server","product_resource_id":"0c860aea-8832-4604-a989-7f750d810ed9","created_at":"2025-06-18T19:03:50.636586Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' headers: Content-Length: - - "14208" + - "687" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:25:45 GMT - Link: - - ; rel="first",; - rel="previous",; rel="last" + - Wed, 18 Jun 2025 19:04:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1295,33 +2281,33 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1422757-5544-43b3-925e-0c42eae012b9 - X-Total-Count: - - "68" + - b3919b51-dbad-4020-8a47-f1b36e5fc908 status: 200 OK code: 200 duration: "" - request: - body: '{"local_images":[{"id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","arch":"x86_64","zone":"fr-par-1","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"label":"ubuntu_jammy","type":"instance_sbs"},{"id":"7044ae1e-a35d-4364-a962-93811c845f2f","arch":"arm64","zone":"fr-par-1","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"label":"ubuntu_jammy","type":"instance_sbs"}],"total_count":2}' + body: '{"id":"be73d11d-e2f5-4f69-811c-3047acca32ae","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:03:50.636586Z","updated_at":"2025-06-18T19:03:50.636586Z","references":[{"id":"f9d0c5bf-0cdd-4652-8096-f1e84ca20221","product_resource_type":"instance_server","product_resource_id":"0c860aea-8832-4604-a989-7f750d810ed9","created_at":"2025-06-18T19:03:50.636586Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/be73d11d-e2f5-4f69-811c-3047acca32ae method: GET response: - body: '{"local_images":[{"id":"1fb9bfa4-68c3-4d6f-a362-8913a1af27b0","arch":"x86_64","zone":"fr-par-1","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"label":"ubuntu_jammy","type":"instance_sbs"},{"id":"7044ae1e-a35d-4364-a962-93811c845f2f","arch":"arm64","zone":"fr-par-1","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"label":"ubuntu_jammy","type":"instance_sbs"}],"total_count":2}' + body: '{"id":"be73d11d-e2f5-4f69-811c-3047acca32ae","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:03:50.636586Z","updated_at":"2025-06-18T19:03:50.636586Z","references":[{"id":"f9d0c5bf-0cdd-4652-8096-f1e84ca20221","product_resource_type":"instance_server","product_resource_id":"0c860aea-8832-4604-a989-7f750d810ed9","created_at":"2025-06-18T19:03:50.636586Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' headers: Content-Length: - - "1216" + - "687" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:25:45 GMT + - Wed, 18 Jun 2025 19:04:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1329,45 +2315,33 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7dd60cc9-6920-4b0d-9399-729e5e781285 + - 5ee62222-6bef-44ce-beba-b6e99156dbfc status: 200 OK code: 200 duration: "" - request: - body: '{"image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", "name": "Ubuntu - 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": - ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", - "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}}' + body: '{"id":"be73d11d-e2f5-4f69-811c-3047acca32ae","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:03:50.636586Z","updated_at":"2025-06-18T19:03:50.636586Z","references":[{"id":"f9d0c5bf-0cdd-4652-8096-f1e84ca20221","product_resource_type":"instance_server","product_resource_id":"0c860aea-8832-4604-a989-7f750d810ed9","created_at":"2025-06-18T19:03:50.636586Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/1fb9bfa4-68c3-4d6f-a362-8913a1af27b0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/be73d11d-e2f5-4f69-811c-3047acca32ae method: GET response: - body: '{"image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", "name": "Ubuntu - 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": - ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", - "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}}' + body: '{"id":"be73d11d-e2f5-4f69-811c-3047acca32ae","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:03:50.636586Z","updated_at":"2025-06-18T19:03:50.636586Z","references":[{"id":"f9d0c5bf-0cdd-4652-8096-f1e84ca20221","product_resource_type":"instance_server","product_resource_id":"0c860aea-8832-4604-a989-7f750d810ed9","created_at":"2025-06-18T19:03:50.636586Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' headers: Content-Length: - - "587" + - "687" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:25:45 GMT + - Wed, 18 Jun 2025 19:04:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1375,41 +2349,33 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a8aeb0c-3f3c-4c25-842e-1949fbc1ec3e + - 27fafcb8-94b7-4a6a-9d87-767746ddfbb3 status: 200 OK code: 200 duration: "" - request: - body: '{"ip": {"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", - "prefix": null, "reverse": null, "server": null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "zone": "fr-par-1", "type": - "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "04e9b6c5-02f9-462d-a45a-d8dd63f37898"}}' + body: '{"id":"be73d11d-e2f5-4f69-811c-3047acca32ae","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:03:50.636586Z","updated_at":"2025-06-18T19:03:50.636586Z","references":[{"id":"f9d0c5bf-0cdd-4652-8096-f1e84ca20221","product_resource_type":"instance_server","product_resource_id":"0c860aea-8832-4604-a989-7f750d810ed9","created_at":"2025-06-18T19:03:50.636586Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/be73d11d-e2f5-4f69-811c-3047acca32ae + method: GET response: - body: '{"ip": {"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", - "prefix": null, "reverse": null, "server": null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "zone": "fr-par-1", "type": - "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "04e9b6c5-02f9-462d-a45a-d8dd63f37898"}}' + body: '{"id":"be73d11d-e2f5-4f69-811c-3047acca32ae","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:03:50.636586Z","updated_at":"2025-06-18T19:03:50.636586Z","references":[{"id":"f9d0c5bf-0cdd-4652-8096-f1e84ca20221","product_resource_type":"instance_server","product_resource_id":"0c860aea-8832-4604-a989-7f750d810ed9","created_at":"2025-06-18T19:03:50.636586Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' headers: Content-Length: - - "364" + - "687" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:25:46 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/bf0e239d-7331-415a-adfd-ebf90a264d21 + - Wed, 18 Jun 2025 19:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1417,85 +2383,33 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8406cd25-5361-494b-9da8-7eaaeead2ce0 - status: 201 Created - code: 201 + - 963d3b7f-6e4d-4cf1-b793-b842b3f2028f + status: 200 OK + code: 200 duration: "" - request: - body: '{"server": {"id": "4d4d5fc8-e374-4d3f-b851-70697f357aaa", "name": "cli-srv-jolly-kowalevski", - "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-jolly-kowalevski", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", - "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": - ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", - "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "ace14693-a3a5-44ef-8af3-80abdf31f6e7", "zone": "fr-par-1"}}, "tags": - [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": - {"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", "dynamic": - false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": - "dhcp", "tags": [], "state": "attached", "ipam_id": "04e9b6c5-02f9-462d-a45a-d8dd63f37898"}, - "public_ips": [{"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", - "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "04e9b6c5-02f9-462d-a45a-d8dd63f37898"}], - "mac_address": "de:00:00:90:7f:39", "routed_ip_enabled": true, "ipv6": null, - "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": - null, "creation_date": "2025-01-29T10:25:46.306453+00:00", "modification_date": - "2025-01-29T10:25:46.306453+00:00", "bootscript": null, "security_group": {"id": - "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": - null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": - null, "private_nics": [], "zone": "fr-par-1"}}' + body: '{"id":"be73d11d-e2f5-4f69-811c-3047acca32ae","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:03:50.636586Z","updated_at":"2025-06-18T19:03:50.636586Z","references":[{"id":"f9d0c5bf-0cdd-4652-8096-f1e84ca20221","product_resource_type":"instance_server","product_resource_id":"0c860aea-8832-4604-a989-7f750d810ed9","created_at":"2025-06-18T19:03:50.636586Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/be73d11d-e2f5-4f69-811c-3047acca32ae + method: GET response: - body: '{"server": {"id": "4d4d5fc8-e374-4d3f-b851-70697f357aaa", "name": "cli-srv-jolly-kowalevski", - "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-jolly-kowalevski", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", - "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": - ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", - "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "ace14693-a3a5-44ef-8af3-80abdf31f6e7", "zone": "fr-par-1"}}, "tags": - [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": - {"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", "dynamic": - false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": - "dhcp", "tags": [], "state": "attached", "ipam_id": "04e9b6c5-02f9-462d-a45a-d8dd63f37898"}, - "public_ips": [{"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", - "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "04e9b6c5-02f9-462d-a45a-d8dd63f37898"}], - "mac_address": "de:00:00:90:7f:39", "routed_ip_enabled": true, "ipv6": null, - "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": - null, "creation_date": "2025-01-29T10:25:46.306453+00:00", "modification_date": - "2025-01-29T10:25:46.306453+00:00", "bootscript": null, "security_group": {"id": - "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": - null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": - null, "private_nics": [], "zone": "fr-par-1"}}' + body: '{"id":"be73d11d-e2f5-4f69-811c-3047acca32ae","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:03:50.636586Z","updated_at":"2025-06-18T19:03:50.636586Z","references":[{"id":"f9d0c5bf-0cdd-4652-8096-f1e84ca20221","product_resource_type":"instance_server","product_resource_id":"0c860aea-8832-4604-a989-7f750d810ed9","created_at":"2025-06-18T19:03:50.636586Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' headers: Content-Length: - - "2205" + - "687" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:25:46 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4d4d5fc8-e374-4d3f-b851-70697f357aaa + - Wed, 18 Jun 2025 19:04:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1503,43 +2417,67 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86cd58c4-db5a-4d24-b137-7b86fe28ebff - status: 201 Created - code: 201 + - 2a474178-5dcc-4da6-8e8d-e886cd4104d0 + status: 200 OK + code: 200 duration: "" - request: - body: '{"task": {"id": "2149fc75-e891-45e9-9b30-181ea82b51aa", "description": - "server_batch_poweron", "status": "pending", "href_from": "/servers/4d4d5fc8-e374-4d3f-b851-70697f357aaa/action", - "href_result": "/servers/4d4d5fc8-e374-4d3f-b851-70697f357aaa", "started_at": - "2025-01-29T10:25:47.304592+00:00", "terminated_at": null, "progress": 0, "zone": - "fr-par-1"}}' + body: '{"id":"be73d11d-e2f5-4f69-811c-3047acca32ae","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:03:50.636586Z","updated_at":"2025-06-18T19:03:50.636586Z","references":[{"id":"f9d0c5bf-0cdd-4652-8096-f1e84ca20221","product_resource_type":"instance_server","product_resource_id":"0c860aea-8832-4604-a989-7f750d810ed9","created_at":"2025-06-18T19:03:50.636586Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' form: {} headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/be73d11d-e2f5-4f69-811c-3047acca32ae + method: GET + response: + body: '{"id":"be73d11d-e2f5-4f69-811c-3047acca32ae","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:03:50.636586Z","updated_at":"2025-06-18T19:03:50.636586Z","references":[{"id":"f9d0c5bf-0cdd-4652-8096-f1e84ca20221","product_resource_type":"instance_server","product_resource_id":"0c860aea-8832-4604-a989-7f750d810ed9","created_at":"2025-06-18T19:03:50.636586Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + headers: + Content-Length: + - "687" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json + Date: + - Wed, 18 Jun 2025 19:04:38 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 706168d1-375d-4c38-bf99-64fcd18ce7fc + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"be73d11d-e2f5-4f69-811c-3047acca32ae","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:03:50.636586Z","updated_at":"2025-06-18T19:03:50.636586Z","references":[{"id":"f9d0c5bf-0cdd-4652-8096-f1e84ca20221","product_resource_type":"instance_server","product_resource_id":"0c860aea-8832-4604-a989-7f750d810ed9","created_at":"2025-06-18T19:03:50.636586Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' + form: {} + headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4d4d5fc8-e374-4d3f-b851-70697f357aaa/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/be73d11d-e2f5-4f69-811c-3047acca32ae + method: GET response: - body: '{"task": {"id": "2149fc75-e891-45e9-9b30-181ea82b51aa", "description": - "server_batch_poweron", "status": "pending", "href_from": "/servers/4d4d5fc8-e374-4d3f-b851-70697f357aaa/action", - "href_result": "/servers/4d4d5fc8-e374-4d3f-b851-70697f357aaa", "started_at": - "2025-01-29T10:25:47.304592+00:00", "terminated_at": null, "progress": 0, "zone": - "fr-par-1"}}' + body: '{"id":"be73d11d-e2f5-4f69-811c-3047acca32ae","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:03:50.636586Z","updated_at":"2025-06-18T19:03:50.636586Z","references":[{"id":"f9d0c5bf-0cdd-4652-8096-f1e84ca20221","product_resource_type":"instance_server","product_resource_id":"0c860aea-8832-4604-a989-7f750d810ed9","created_at":"2025-06-18T19:03:50.636586Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' headers: Content-Length: - - "357" + - "687" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:25:47 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/2149fc75-e891-45e9-9b30-181ea82b51aa + - Wed, 18 Jun 2025 19:04:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1547,81 +2485,33 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e33c5e3-4ace-45a5-9e5b-ecd827ddb229 - status: 202 Accepted - code: 202 + - b5f7e285-5092-4fb8-b63c-3e964fe65930 + status: 200 OK + code: 200 duration: "" - request: - body: '{"server": {"id": "4d4d5fc8-e374-4d3f-b851-70697f357aaa", "name": "cli-srv-jolly-kowalevski", - "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-jolly-kowalevski", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", - "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": - ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", - "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "ace14693-a3a5-44ef-8af3-80abdf31f6e7", "zone": "fr-par-1"}}, "tags": - [], "state": "starting", "protected": false, "state_detail": "allocating node", - "public_ip": {"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", - "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "04e9b6c5-02f9-462d-a45a-d8dd63f37898"}, - "public_ips": [{"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", - "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "04e9b6c5-02f9-462d-a45a-d8dd63f37898"}], - "mac_address": "de:00:00:90:7f:39", "routed_ip_enabled": true, "ipv6": null, - "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": - null, "creation_date": "2025-01-29T10:25:46.306453+00:00", "modification_date": - "2025-01-29T10:25:47.049872+00:00", "bootscript": null, "security_group": {"id": - "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": - null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": - null, "private_nics": [], "zone": "fr-par-1"}}' + body: '{"id":"be73d11d-e2f5-4f69-811c-3047acca32ae","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:03:50.636586Z","updated_at":"2025-06-18T19:03:50.636586Z","references":[{"id":"f9d0c5bf-0cdd-4652-8096-f1e84ca20221","product_resource_type":"instance_server","product_resource_id":"0c860aea-8832-4604-a989-7f750d810ed9","created_at":"2025-06-18T19:03:50.636586Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4d4d5fc8-e374-4d3f-b851-70697f357aaa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/be73d11d-e2f5-4f69-811c-3047acca32ae method: GET response: - body: '{"server": {"id": "4d4d5fc8-e374-4d3f-b851-70697f357aaa", "name": "cli-srv-jolly-kowalevski", - "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-jolly-kowalevski", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", - "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": - ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", - "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "ace14693-a3a5-44ef-8af3-80abdf31f6e7", "zone": "fr-par-1"}}, "tags": - [], "state": "starting", "protected": false, "state_detail": "allocating node", - "public_ip": {"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", - "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "04e9b6c5-02f9-462d-a45a-d8dd63f37898"}, - "public_ips": [{"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", - "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "04e9b6c5-02f9-462d-a45a-d8dd63f37898"}], - "mac_address": "de:00:00:90:7f:39", "routed_ip_enabled": true, "ipv6": null, - "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": - null, "creation_date": "2025-01-29T10:25:46.306453+00:00", "modification_date": - "2025-01-29T10:25:47.049872+00:00", "bootscript": null, "security_group": {"id": - "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": - null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": - null, "private_nics": [], "zone": "fr-par-1"}}' + body: '{"id":"be73d11d-e2f5-4f69-811c-3047acca32ae","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:03:50.636586Z","updated_at":"2025-06-18T19:03:50.636586Z","references":[{"id":"f9d0c5bf-0cdd-4652-8096-f1e84ca20221","product_resource_type":"instance_server","product_resource_id":"0c860aea-8832-4604-a989-7f750d810ed9","created_at":"2025-06-18T19:03:50.636586Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' headers: Content-Length: - - "2227" + - "687" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:25:47 GMT + - Wed, 18 Jun 2025 19:04:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1629,85 +2519,33 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bdc32c94-eec7-4173-8d3c-3c5e07084a9b + - 2b2ce4d4-b64d-423f-b22a-173016580c3d status: 200 OK code: 200 duration: "" - request: - body: '{"server": {"id": "4d4d5fc8-e374-4d3f-b851-70697f357aaa", "name": "cli-srv-jolly-kowalevski", - "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-jolly-kowalevski", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", - "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": - ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", - "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "ace14693-a3a5-44ef-8af3-80abdf31f6e7", "zone": "fr-par-1"}}, "tags": - [], "state": "running", "protected": false, "state_detail": "booting kernel", - "public_ip": {"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", - "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "04e9b6c5-02f9-462d-a45a-d8dd63f37898"}, - "public_ips": [{"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", - "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "04e9b6c5-02f9-462d-a45a-d8dd63f37898"}], - "mac_address": "de:00:00:90:7f:39", "routed_ip_enabled": true, "ipv6": null, - "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": - null, "creation_date": "2025-01-29T10:25:46.306453+00:00", "modification_date": - "2025-01-29T10:25:50.243217+00:00", "bootscript": null, "security_group": {"id": - "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": - {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "31", "hypervisor_id": - "701", "node_id": "11"}, "maintenances": [], "allowed_actions": ["poweroff", - "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, - "private_nics": [], "zone": "fr-par-1"}}' + body: '{"id":"be73d11d-e2f5-4f69-811c-3047acca32ae","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:03:50.636586Z","updated_at":"2025-06-18T19:03:50.636586Z","references":[{"id":"f9d0c5bf-0cdd-4652-8096-f1e84ca20221","product_resource_type":"instance_server","product_resource_id":"0c860aea-8832-4604-a989-7f750d810ed9","created_at":"2025-06-18T19:03:50.636586Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4d4d5fc8-e374-4d3f-b851-70697f357aaa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/be73d11d-e2f5-4f69-811c-3047acca32ae method: GET response: - body: '{"server": {"id": "4d4d5fc8-e374-4d3f-b851-70697f357aaa", "name": "cli-srv-jolly-kowalevski", - "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-jolly-kowalevski", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", - "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": - ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", - "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "ace14693-a3a5-44ef-8af3-80abdf31f6e7", "zone": "fr-par-1"}}, "tags": - [], "state": "running", "protected": false, "state_detail": "booting kernel", - "public_ip": {"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", - "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "04e9b6c5-02f9-462d-a45a-d8dd63f37898"}, - "public_ips": [{"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", - "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "04e9b6c5-02f9-462d-a45a-d8dd63f37898"}], - "mac_address": "de:00:00:90:7f:39", "routed_ip_enabled": true, "ipv6": null, - "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": - null, "creation_date": "2025-01-29T10:25:46.306453+00:00", "modification_date": - "2025-01-29T10:25:50.243217+00:00", "bootscript": null, "security_group": {"id": - "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": - {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "31", "hypervisor_id": - "701", "node_id": "11"}, "maintenances": [], "allowed_actions": ["poweroff", - "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, - "private_nics": [], "zone": "fr-par-1"}}' + body: '{"id":"be73d11d-e2f5-4f69-811c-3047acca32ae","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:03:50.636586Z","updated_at":"2025-06-18T19:03:50.636586Z","references":[{"id":"f9d0c5bf-0cdd-4652-8096-f1e84ca20221","product_resource_type":"instance_server","product_resource_id":"0c860aea-8832-4604-a989-7f750d810ed9","created_at":"2025-06-18T19:03:50.636586Z","type":"exclusive","status":"detaching"}],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' headers: Content-Length: - - "2361" + - "687" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:25:52 GMT + - Wed, 18 Jun 2025 19:04:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1715,85 +2553,33 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 236977e8-c914-46aa-9cee-a583b4ccff72 + - 05de068c-9e22-4e18-93c7-3e273645529f status: 200 OK code: 200 duration: "" - request: - body: '{"server": {"id": "4d4d5fc8-e374-4d3f-b851-70697f357aaa", "name": "cli-srv-jolly-kowalevski", - "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-jolly-kowalevski", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", - "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": - ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", - "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "ace14693-a3a5-44ef-8af3-80abdf31f6e7", "zone": "fr-par-1"}}, "tags": - [], "state": "running", "protected": false, "state_detail": "booting kernel", - "public_ip": {"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", - "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "04e9b6c5-02f9-462d-a45a-d8dd63f37898"}, - "public_ips": [{"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", - "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "04e9b6c5-02f9-462d-a45a-d8dd63f37898"}], - "mac_address": "de:00:00:90:7f:39", "routed_ip_enabled": true, "ipv6": null, - "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": - null, "creation_date": "2025-01-29T10:25:46.306453+00:00", "modification_date": - "2025-01-29T10:25:50.243217+00:00", "bootscript": null, "security_group": {"id": - "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": - {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "31", "hypervisor_id": - "701", "node_id": "11"}, "maintenances": [], "allowed_actions": ["poweroff", - "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, - "private_nics": [], "zone": "fr-par-1"}}' + body: '{"id":"be73d11d-e2f5-4f69-811c-3047acca32ae","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:03:50.636586Z","updated_at":"2025-06-18T19:04:54.663728Z","references":[],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"available","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":"2025-06-18T19:04:54.663728Z","zone":"fr-par-1"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4d4d5fc8-e374-4d3f-b851-70697f357aaa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/be73d11d-e2f5-4f69-811c-3047acca32ae method: GET response: - body: '{"server": {"id": "4d4d5fc8-e374-4d3f-b851-70697f357aaa", "name": "cli-srv-jolly-kowalevski", - "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "hostname": "cli-srv-jolly-kowalevski", "image": {"id": "1fb9bfa4-68c3-4d6f-a362-8913a1af27b0", - "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "4eb9437f-8993-444a-b564-f7654add2131", "size": 0, "name": - ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2024-10-07T11:39:13.069801+00:00", "modification_date": "2024-10-07T11:39:13.069801+00:00", - "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "ace14693-a3a5-44ef-8af3-80abdf31f6e7", "zone": "fr-par-1"}}, "tags": - [], "state": "running", "protected": false, "state_detail": "booting kernel", - "public_ip": {"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", - "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "04e9b6c5-02f9-462d-a45a-d8dd63f37898"}, - "public_ips": [{"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", - "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "04e9b6c5-02f9-462d-a45a-d8dd63f37898"}], - "mac_address": "de:00:00:90:7f:39", "routed_ip_enabled": true, "ipv6": null, - "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": - null, "creation_date": "2025-01-29T10:25:46.306453+00:00", "modification_date": - "2025-01-29T10:25:50.243217+00:00", "bootscript": null, "security_group": {"id": - "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": - {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "31", "hypervisor_id": - "701", "node_id": "11"}, "maintenances": [], "allowed_actions": ["poweroff", - "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, - "private_nics": [], "zone": "fr-par-1"}}' + body: '{"id":"be73d11d-e2f5-4f69-811c-3047acca32ae","name":"Ubuntu 22.04 Jammy + Jellyfish_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","created_at":"2025-06-18T19:03:50.636586Z","updated_at":"2025-06-18T19:04:54.663728Z","references":[],"parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","status":"available","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":"2025-06-18T19:04:54.663728Z","zone":"fr-par-1"}' headers: Content-Length: - - "2361" + - "484" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:25:52 GMT + - Wed, 18 Jun 2025 19:04:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1801,29 +2587,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5e8d2e6-a849-464e-8798-900ffa257339 + - dfe71665-7318-4743-b27e-1fbbfe608bef status: 200 OK code: 200 duration: "" - request: - body: '{"task": {"id": "05fe3565-0baa-4089-b492-6f7af8dd9787", "description": - "server_terminate", "status": "pending", "href_from": "/servers/4d4d5fc8-e374-4d3f-b851-70697f357aaa/action", - "href_result": "/servers/4d4d5fc8-e374-4d3f-b851-70697f357aaa", "started_at": - "2025-01-29T10:25:53.123577+00:00", "terminated_at": null, "progress": 0, "zone": + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/be73d11d-e2f5-4f69-811c-3047acca32ae + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 18 Jun 2025 19:04:58 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1ea17dd4-a7bd-4703-9445-dc432db0873d + status: 204 No Content + code: 204 + duration: "" +- request: + body: '{"task": {"id": "913db56f-902b-4ed0-9afe-cba150bf3ce6", "description": + "server_terminate", "status": "pending", "href_from": "/servers/0c860aea-8832-4604-a989-7f750d810ed9/action", + "href_result": "/servers/0c860aea-8832-4604-a989-7f750d810ed9", "started_at": + "2025-06-18T19:04:59.072959+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4d4d5fc8-e374-4d3f-b851-70697f357aaa/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0c860aea-8832-4604-a989-7f750d810ed9/action method: POST response: - body: '{"task": {"id": "05fe3565-0baa-4089-b492-6f7af8dd9787", "description": - "server_terminate", "status": "pending", "href_from": "/servers/4d4d5fc8-e374-4d3f-b851-70697f357aaa/action", - "href_result": "/servers/4d4d5fc8-e374-4d3f-b851-70697f357aaa", "started_at": - "2025-01-29T10:25:53.123577+00:00", "terminated_at": null, "progress": 0, "zone": + body: '{"task": {"id": "913db56f-902b-4ed0-9afe-cba150bf3ce6", "description": + "server_terminate", "status": "pending", "href_from": "/servers/0c860aea-8832-4604-a989-7f750d810ed9/action", + "href_result": "/servers/0c860aea-8832-4604-a989-7f750d810ed9", "started_at": + "2025-06-18T19:04:59.072959+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: @@ -1833,11 +2649,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:25:53 GMT + - Wed, 18 Jun 2025 19:04:59 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/05fe3565-0baa-4089-b492-6f7af8dd9787 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/913db56f-902b-4ed0-9afe-cba150bf3ce6 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1845,39 +2661,39 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f92cc56e-a9b6-4bc8-9787-7aed54812ef8 + - 13489985-687c-4844-abff-74f8970a5e37 status: 202 Accepted code: 202 duration: "" - request: - body: '{"ip": {"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", - "prefix": null, "reverse": null, "server": {"id": "4d4d5fc8-e374-4d3f-b851-70697f357aaa", - "name": "cli-srv-jolly-kowalevski"}, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "zone": "fr-par-1", "type": - "routed_ipv4", "state": "attached", "tags": [], "ipam_id": "04e9b6c5-02f9-462d-a45a-d8dd63f37898"}}' + body: '{"ip": {"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "prefix": null, "reverse": null, "server": {"id": "0c860aea-8832-4604-a989-7f750d810ed9", + "name": "cli-srv-blissful-chandrasekhar"}, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project": "19a4819b-24bf-4d44-969f-935ef0061b71", "zone": "fr-par-1", "type": + "routed_ipv4", "state": "attached", "tags": [], "ipam_id": "f72b5e46-e454-4bd4-8e8c-7ff1113e79f7"}}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/bf0e239d-7331-415a-adfd-ebf90a264d21 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aed1ddef-0a76-4eec-a879-45a0a7aa2f32 method: GET response: - body: '{"ip": {"id": "bf0e239d-7331-415a-adfd-ebf90a264d21", "address": "51.15.134.67", - "prefix": null, "reverse": null, "server": {"id": "4d4d5fc8-e374-4d3f-b851-70697f357aaa", - "name": "cli-srv-jolly-kowalevski"}, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", - "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "zone": "fr-par-1", "type": - "routed_ipv4", "state": "attached", "tags": [], "ipam_id": "04e9b6c5-02f9-462d-a45a-d8dd63f37898"}}' + body: '{"ip": {"id": "aed1ddef-0a76-4eec-a879-45a0a7aa2f32", "address": "212.47.240.125", + "prefix": null, "reverse": null, "server": {"id": "0c860aea-8832-4604-a989-7f750d810ed9", + "name": "cli-srv-blissful-chandrasekhar"}, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", + "project": "19a4819b-24bf-4d44-969f-935ef0061b71", "zone": "fr-par-1", "type": + "routed_ipv4", "state": "attached", "tags": [], "ipam_id": "f72b5e46-e454-4bd4-8e8c-7ff1113e79f7"}}' headers: Content-Length: - - "442" + - "450" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:25:53 GMT + - Wed, 18 Jun 2025 19:04:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1885,7 +2701,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32cac880-2669-4ac9-95b2-3c1941bec34d + - c7e58c85-1721-4b01-b2a0-b2fd7bf3342f status: 200 OK code: 200 duration: "" @@ -1894,8 +2710,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.4; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/bf0e239d-7331-415a-adfd-ebf90a264d21 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aed1ddef-0a76-4eec-a879-45a0a7aa2f32 method: DELETE response: body: "" @@ -1905,9 +2721,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 29 Jan 2025 10:25:53 GMT + - Wed, 18 Jun 2025 19:04:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1915,7 +2731,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b9c565e-7b44-46a0-a39b-5e954e4722ce + - 28005a35-2f05-40a9-a79f-282c796182a6 status: 204 No Content code: 204 duration: "" diff --git a/internal/namespaces/instance/v1/testdata/test-server-terminate-without-ip.golden b/internal/namespaces/instance/v1/testdata/test-server-terminate-without-ip.golden index 87818d7a08..4d13dcd093 100644 --- a/internal/namespaces/instance/v1/testdata/test-server-terminate-without-ip.golden +++ b/internal/namespaces/instance/v1/testdata/test-server-terminate-without-ip.golden @@ -1,6 +1,8 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ βœ… Success. +πŸŸ₯πŸŸ₯πŸŸ₯ STDERR️️ πŸŸ₯πŸŸ₯πŸŸ₯️ +successfully deleted block volume "Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0" 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 { "message": "Success",